forked from HSLdevcom/digitransit-ui
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathTripStopListContainer.js
212 lines (199 loc) · 5.85 KB
/
TripStopListContainer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import PropTypes from 'prop-types';
import React from 'react';
import { createFragmentContainer, graphql } from 'react-relay';
import cx from 'classnames';
import isEmpty from 'lodash/isEmpty';
import connectToStores from 'fluxible-addons-react/connectToStores';
import groupBy from 'lodash/groupBy';
import values from 'lodash/values';
import moment from 'moment-timezone';
import { getRouteMode } from '../util/modeUtils';
import TripRouteStop from './TripRouteStop';
import withBreakpoint from '../util/withBreakpoint';
class TripStopListContainer extends React.PureComponent {
static propTypes = {
trip: PropTypes.shape({
gtfsId: PropTypes.string.isRequired,
route: PropTypes.shape({
gtfsId: PropTypes.string,
shortName: PropTypes.string,
type: PropTypes.number,
mode: PropTypes.string,
color: PropTypes.string,
}),
stoptimesForDate: PropTypes.arrayOf(
PropTypes.shape({
stop: PropTypes.shape({
gtfsId: PropTypes.string,
}),
realtimeDeparture: PropTypes.number,
serviceDay: PropTypes.number,
}),
).isRequired,
pattern: PropTypes.shape({
code: PropTypes.string.isRequired,
directionId: PropTypes.number.isRequired,
}).isRequired,
}).isRequired,
className: PropTypes.string,
vehicles: PropTypes.objectOf(
PropTypes.shape({
id: PropTypes.string,
next_stop: PropTypes.string,
timestamp: PropTypes.number,
}),
),
currentTime: PropTypes.instanceOf(moment).isRequired,
tripStart: PropTypes.string.isRequired,
breakpoint: PropTypes.string.isRequired,
keepTracking: PropTypes.bool,
setHumanScrolling: PropTypes.func,
};
static defaultProps = {
vehicles: {},
className: undefined,
keepTracking: false,
setHumanScrolling: () => {},
};
static contextTypes = {
config: PropTypes.object.isRequired,
};
getStops() {
const {
breakpoint,
currentTime,
trip,
tripStart,
vehicles: propVehicles,
} = this.props;
const mode = getRouteMode(trip.route);
const vehicles = groupBy(
values(propVehicles).filter(
vehicle => currentTime - vehicle.timestamp * 1000 < 5 * 60 * 1000,
),
vehicle => vehicle.next_stop,
);
const matchingVehicles = Object.keys(propVehicles)
.map(key => propVehicles[key])
.filter(
vehicle =>
vehicle.direction === undefined ||
vehicle.direction === trip.pattern.directionId,
)
.filter(
vehicle =>
vehicle.tripStartTime === undefined ||
vehicle.tripStartTime === tripStart,
)
.filter(
vehicle =>
vehicle.tripId === undefined || vehicle.tripId === trip.gtfsId,
);
// selected vehicle
const vehicle = matchingVehicles.length > 0 && matchingVehicles[0];
const nextStop = vehicle && vehicle.next_stop;
let stopPassed = true;
return trip.stoptimesForDate.map((stoptime, index) => {
if (nextStop === stoptime.stop.gtfsId) {
stopPassed = false;
} else if (
stoptime.realtimeDeparture + stoptime.serviceDay > currentTime.unix() &&
(isEmpty(vehicle) || (vehicle && vehicle.next_stop === undefined))
) {
stopPassed = false;
}
const nextStoptimeForDate = trip.stoptimesForDate[index + 1];
const prevStop = trip.stoptimesForDate[index - 1]?.stop;
return (
<TripRouteStop
key={stoptime.stop.gtfsId}
stoptime={stoptime}
stop={stoptime.stop}
nextStop={nextStoptimeForDate ? nextStoptimeForDate.stop : null}
prevStop={prevStop || null}
mode={mode}
color={trip.route && trip.route.color ? `#${trip.route.color}` : null}
vehicles={vehicles[stoptime.stop.gtfsId]}
selectedVehicle={vehicle}
stopPassed={stopPassed}
realtime={stoptime.realtime}
currentTime={currentTime.unix()}
realtimeDeparture={stoptime.realtimeDeparture}
pattern={trip.pattern.code}
route={trip.route.gtfsId}
last={index === trip.stoptimesForDate.length - 1}
first={index === 0}
className={`bp-${breakpoint}`}
shortName={trip.route && trip.route.shortName}
keepTracking={this.props.keepTracking}
setHumanScrolling={this.props.setHumanScrolling}
/>
);
});
}
render() {
return (
<>
<div
className={cx('route-stop-list', this.props.className)}
role="tabpanel"
aria-labelledby="route-tab"
>
{this.getStops()}
</div>
<div className="bottom-whitespace" />
</>
);
}
}
const connectedComponent = createFragmentContainer(
connectToStores(
withBreakpoint(TripStopListContainer),
['RealTimeInformationStore', 'PositionStore', 'TimeStore'],
({ getStore }) => ({
vehicles: getStore('RealTimeInformationStore').vehicles,
currentTime: getStore('TimeStore').getCurrentTime(),
}),
),
{
trip: graphql`
fragment TripStopListContainer_trip on Trip {
route {
mode
type
gtfsId
color
shortName
}
pattern {
code
directionId
}
stoptimesForDate {
stop {
gtfsId
name
desc
code
lat
lon
zoneId
alerts {
alertSeverityLevel
effectiveEndDate
effectiveStartDate
}
}
realtimeArrival
realtimeDeparture
realtime
scheduledDeparture
serviceDay
realtimeState
}
gtfsId
}
`,
},
);
export { connectedComponent as default, TripStopListContainer as Component };