forked from HSLdevcom/digitransit-ui
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathStopPageMap.js
258 lines (243 loc) · 7.56 KB
/
StopPageMap.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
import PropTypes from 'prop-types';
import React, { useEffect, useContext, useState } from 'react';
import { matchShape, routerShape } from 'found';
import moment from 'moment-timezone';
import { connectToStores } from 'fluxible-addons-react';
import distance from '@digitransit-search-util/digitransit-search-util-distance';
import { graphql, fetchQuery } from 'react-relay';
import ReactRelayContext from 'react-relay/lib/ReactRelayContext';
import { getSettings } from '../../util/planParamUtil';
import TimeStore from '../../store/TimeStore';
import PositionStore from '../../store/PositionStore';
import MapLayerStore, { mapLayerShape } from '../../store/MapLayerStore';
import MapWithTracking from './MapWithTracking';
import SelectedStopPopup from './popups/SelectedStopPopup';
import SelectedStopPopupContent from '../SelectedStopPopupContent';
import { dtLocationShape, mapLayerOptionsShape } from '../../util/shapes';
import withBreakpoint from '../../util/withBreakpoint';
import VehicleMarkerContainer from './VehicleMarkerContainer';
import BackButton from '../BackButton';
import { addressToItinerarySearch } from '../../util/otpStrings';
import ItineraryLine from './ItineraryLine';
import Loading from '../Loading';
import { getMapLayerOptions } from '../../util/mapLayerUtils';
import MapRoutingButton from '../mapRoutingButton';
const getModeFromProps = props => {
if (props.citybike) {
return 'citybike';
}
if (props.stop.bikeParkId) {
return 'parkAndRideForBikes';
}
if (props.stop.carParkId) {
return 'parkAndRide';
}
if (props.stop.vehicleMode) {
return props.stop.vehicleMode.toLowerCase();
}
return 'stop';
};
const StopPageMap = (
{ stop, breakpoint, currentTime, locationState, mapLayers, mapLayerOptions },
{ config, match },
) => {
if (!stop) {
return false;
}
const maxShowRouteDistance = breakpoint === 'large' ? 900 : 470;
const { environment } = useContext(ReactRelayContext);
const [plan, setPlan] = useState({ plan: {}, isFetching: false });
useEffect(() => {
let isMounted = true;
const fetchPlan = async targetStop => {
if (locationState.hasLocation && locationState.address) {
if (distance(locationState, stop) < maxShowRouteDistance) {
const toPlace = {
address: targetStop.name ? targetStop.name : 'stop',
lon: targetStop.lon,
lat: targetStop.lat,
};
const settings = getSettings(config);
const variables = {
fromPlace: addressToItinerarySearch(locationState),
toPlace: addressToItinerarySearch(toPlace),
date: moment(currentTime * 1000).format('YYYY-MM-DD'),
time: moment(currentTime * 1000).format('HH:mm:ss'),
walkSpeed: settings.walkSpeed,
wheelchair: !!settings.accessibilityOption,
};
const query = graphql`
query StopPageMapQuery(
$fromPlace: String!
$toPlace: String!
$date: String!
$time: String!
$walkSpeed: Float
$wheelchair: Boolean
) {
plan: plan(
fromPlace: $fromPlace
toPlace: $toPlace
date: $date
time: $time
transportModes: [{ mode: WALK }]
walkSpeed: $walkSpeed
wheelchair: $wheelchair
) {
itineraries {
legs {
mode
...ItineraryLine_legs
}
}
}
}
`;
fetchQuery(environment, query, variables).then(({ plan: result }) => {
if (isMounted) {
setPlan({ plan: result, isFetching: false });
}
});
}
}
};
if (stop && locationState.hasLocation) {
setPlan({ plan: plan.plan, isFetching: true });
fetchPlan(stop);
}
return () => {
isMounted = false;
};
}, [locationState.status]);
if (locationState.loadingPosition) {
return <Loading />;
}
const leafletObjs = [];
const children = [];
if (config.showVehiclesOnStopPage) {
leafletObjs.push(<VehicleMarkerContainer key="vehicles" useLargeIcon />);
}
if (breakpoint === 'large') {
leafletObjs.push(
<SelectedStopPopup lat={stop.lat} lon={stop.lon} key="SelectedStopPopup">
<SelectedStopPopupContent stop={stop} />
</SelectedStopPopup>,
);
} else {
children.push(
<BackButton
icon="icon-icon_arrow-collapse--left"
iconClassName="arrow-icon"
key="stop-page-back-button"
/>,
);
}
if (plan.plan.itineraries) {
leafletObjs.push(
...plan.plan.itineraries.map((itinerary, i) => (
<ItineraryLine
key="itinerary"
hash={i}
legs={itinerary.legs}
passive={false}
showIntermediateStops={false}
streetMode="walk"
/>
)),
);
}
const id = match.params.stopId || match.params.terminalId || match.params.id;
const mwtProps = {};
if (
locationState &&
locationState.lat &&
locationState.lon &&
stop.lat &&
stop.lon &&
distance(locationState, stop) < maxShowRouteDistance
) {
mwtProps.bounds = [
[locationState.lat, locationState.lon],
[
stop.lat + (stop.lat - locationState.lat),
stop.lon + (stop.lon - locationState.lon),
],
];
} else {
mwtProps.lat = stop.lat;
mwtProps.lon = stop.lon;
mwtProps.zoom = !match.params.stopId || stop.platformCode ? 18 : 16;
}
let topButtons = [];
if (config.showMapRoutingButton) {
topButtons = <MapRoutingButton stop={stop} />;
}
return (
<MapWithTracking
className="flex-grow"
hilightedStops={[id]}
leafletObjs={leafletObjs}
{...mwtProps}
mapLayers={mapLayers}
mapLayerOptions={mapLayerOptions}
topButtons={topButtons}
>
{children}
</MapWithTracking>
);
};
StopPageMap.contextTypes = {
config: PropTypes.object.isRequired,
match: matchShape.isRequired,
router: routerShape.isRequired,
getStore: PropTypes.func.isRequired,
};
StopPageMap.propTypes = {
stop: PropTypes.shape({
lat: PropTypes.number.isRequired,
lon: PropTypes.number.isRequired,
platformCode: PropTypes.string,
}),
breakpoint: PropTypes.string.isRequired,
locationState: dtLocationShape,
currentTime: PropTypes.number.isRequired,
mapLayers: mapLayerShape.isRequired,
mapLayerOptions: mapLayerOptionsShape.isRequired,
};
StopPageMap.defaultProps = {
stop: undefined,
};
const componentWithBreakpoint = withBreakpoint(StopPageMap);
const StopPageMapWithStores = connectToStores(
componentWithBreakpoint,
[TimeStore, PositionStore, MapLayerStore],
({ config, getStore }, props) => {
const currentTime = getStore(TimeStore).getCurrentTime().unix();
const locationState = getStore(PositionStore).getLocationState();
const ml = config.showVehiclesOnStopPage ? { notThese: ['vehicles'] } : {};
if (props.citybike) {
ml.force = ['citybike']; // show always
} else {
ml.force = ['terminal'];
}
const mapLayers = getStore(MapLayerStore).getMapLayers(ml);
const mode = getModeFromProps(props);
const mapLayerOptions = getMapLayerOptions({
lockedMapLayers: ['vehicles', mode],
selectedMapLayers: ['vehicles', mode],
});
return {
locationState,
currentTime,
mapLayers,
mapLayerOptions,
};
},
{
config: PropTypes.object,
},
);
export {
StopPageMapWithStores as default,
componentWithBreakpoint as Component,
};