-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "Merge pull request #397 from HSLdevcom/AB#32085_line_…
…timetable"" This reverts commit 89aa890.
- Loading branch information
Showing
15 changed files
with
857 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
.stopListsContainer { | ||
margin-top: 2rem; | ||
max-width: 1171px; | ||
} | ||
|
||
.stopList { | ||
margin-bottom: 2rem; | ||
padding-left: 1.2rem; | ||
} | ||
|
||
.lineInfoText { | ||
font-family: GothamRounded-Medium; | ||
font-weight: bold; | ||
font-size: 2rem; | ||
} | ||
|
||
.stopListText { | ||
font-size: medium; | ||
font-family: GothamRounded-Book; | ||
} | ||
|
||
@media print { | ||
.stopListsContainer { | ||
page-break-inside: avoid; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import styles from './allStopsList.css'; | ||
|
||
const TEXT_LANG = { | ||
FI: 'fi', | ||
SE: 'se', | ||
}; | ||
|
||
const getLineInfoText = (lang, lineId) => { | ||
let infoText = null; | ||
switch (lang) { | ||
case TEXT_LANG.FI: | ||
infoText = `Linjan ${lineId} pysäkit:`; | ||
break; | ||
|
||
case TEXT_LANG.SE: | ||
infoText = `Hållplatser for linje ${lineId}:`; | ||
break; | ||
|
||
default: | ||
infoText = ''; | ||
} | ||
|
||
return infoText; | ||
}; | ||
|
||
const parseStopNames = stops => { | ||
return { | ||
namesFi: stops.map(item => { | ||
return item.stop.nameFi; | ||
}), | ||
namesSe: stops.map(item => { | ||
return item.stop.nameSe; | ||
}), | ||
}; | ||
}; | ||
|
||
const StopList = props => { | ||
const { stops, lang, lineId } = props; | ||
return ( | ||
<div className={styles.stopList}> | ||
<p className={styles.lineInfoText}>{getLineInfoText(lang, lineId)}</p> | ||
<p className={styles.stopListText}>{stops.join(' - ')}</p> | ||
</div> | ||
); | ||
}; | ||
|
||
StopList.propTypes = { | ||
stops: PropTypes.array.isRequired, | ||
lang: PropTypes.string.isRequired, | ||
lineId: PropTypes.string.isRequired, | ||
}; | ||
|
||
const AllStopsList = props => { | ||
const { stops, lineId } = props; | ||
const parsedStopLists = parseStopNames(stops); | ||
return ( | ||
<div className={styles.stopListsContainer}> | ||
<StopList stops={parsedStopLists.namesFi} lang={TEXT_LANG.FI} lineId={lineId} /> | ||
<StopList stops={parsedStopLists.namesSe} lang={TEXT_LANG.SE} lineId={lineId} /> | ||
</div> | ||
); | ||
}; | ||
|
||
AllStopsList.propTypes = { | ||
stops: PropTypes.array.isRequired, | ||
lineId: PropTypes.string.isRequired, | ||
}; | ||
|
||
export default AllStopsList; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.departureRowContainer { | ||
max-width: 1171px; | ||
font-family: GothamRounded-Medium; | ||
} | ||
|
||
.departureRowContainer > *:nth-child(odd) { | ||
background-color: #e8e8e8; | ||
} | ||
|
||
.departureRow { | ||
font-size: 1.2rem; | ||
margin-left: 2rem; | ||
padding-top: 5px; | ||
padding-bottom: 5px; | ||
} | ||
|
||
.departureColumnContainer { | ||
flex-grow: 1; | ||
align-items: normal; | ||
} | ||
|
||
.tableContainer { | ||
display: flex; | ||
margin-top: 1rem; | ||
} | ||
|
||
@media print { | ||
.departureRow { | ||
page-break-inside: avoid; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import { combineConsecutiveDays } from '../timetable/timetableContainer'; | ||
import { Column, Row, WrappingRow } from '../util'; | ||
import LineTableHeader from './lineTableHeader'; | ||
import styles from './lineTableColumns.css'; | ||
|
||
const LineTimetableRow = props => { | ||
const { hours, minutes } = props; | ||
const paddedMins = minutes.toString().padStart(2, '0'); | ||
return ( | ||
<WrappingRow> | ||
<Row className={styles.departureRow}> | ||
{hours}.{paddedMins} | ||
</Row> | ||
</WrappingRow> | ||
); | ||
}; | ||
|
||
LineTimetableRow.propTypes = { | ||
hours: PropTypes.number.isRequired, | ||
minutes: PropTypes.number.isRequired, | ||
}; | ||
|
||
const DeparturesColumn = props => { | ||
const { departures, stop } = props; | ||
const departureRows = departures.map(departure => ( | ||
<LineTimetableRow hours={departure.hours} minutes={departure.minutes} /> | ||
)); | ||
|
||
return ( | ||
<div> | ||
<LineTableHeader stop={stop} /> | ||
<div className={styles.departureRowContainer}>{departureRows}</div> | ||
</div> | ||
); | ||
}; | ||
|
||
DeparturesColumn.propTypes = { | ||
departures: PropTypes.array.isRequired, | ||
stop: PropTypes.object.isRequired, | ||
}; | ||
|
||
const LineTableColumns = props => { | ||
const selectedDepartureDays = props.days; | ||
|
||
const mapWeekdayDepartures = props.departures.map(departuresForStop => { | ||
const { | ||
mondays, | ||
tuesdays, | ||
wednesdays, | ||
thursdays, | ||
fridays, | ||
saturdays, | ||
sundays, | ||
} = departuresForStop.departures; | ||
|
||
return { | ||
stop: departuresForStop.stop, | ||
combinedDays: combineConsecutiveDays({ | ||
mondays, | ||
tuesdays, | ||
wednesdays, | ||
thursdays, | ||
fridays, | ||
saturdays, | ||
sundays, | ||
}), | ||
}; | ||
}); | ||
|
||
const departureColums = mapWeekdayDepartures.map(departures => { | ||
return ( | ||
<Column className={styles.departureColumnContainer}> | ||
<DeparturesColumn | ||
departures={departures.combinedDays[selectedDepartureDays]} | ||
stop={departures.stop} | ||
/> | ||
</Column> | ||
); | ||
}); | ||
|
||
return <div className={styles.tableContainer}>{departureColums}</div>; | ||
}; | ||
|
||
LineTableColumns.propTypes = { | ||
departures: PropTypes.arrayOf(PropTypes.any).isRequired, | ||
stopSequence: PropTypes.arrayOf(PropTypes.string).isRequired, | ||
days: PropTypes.string.isRequired, | ||
}; | ||
|
||
export default LineTableColumns; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.stop { | ||
flex-grow: 1; | ||
} | ||
|
||
.stopName { | ||
font-size: 1.2em; | ||
margin: 0 0 0 2rem; | ||
font-family: GothamRounded-Medium; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from 'react'; | ||
import PropTypes from 'prop-types'; | ||
import classNames from 'classnames'; | ||
|
||
import styles from './lineTableHeader.css'; | ||
|
||
const LineTableHeader = props => { | ||
const { stop } = props; | ||
return ( | ||
<div className={styles.stop}> | ||
<p className={styles.stopName}>{stop.nameFi}</p> | ||
<p className={styles.stopName}>{stop.nameSe}</p> | ||
</div> | ||
); | ||
}; | ||
|
||
LineTableHeader.propTypes = { | ||
stop: PropTypes.object.isRequired, | ||
}; | ||
|
||
export default LineTableHeader; |
Oops, something went wrong.