-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWebViewLeafletRouting.js
executable file
·405 lines (362 loc) · 13.2 KB
/
WebViewLeafletRouting.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
import React from 'react';
import {
Button,
View,
StyleSheet,
ActivityIndicator,
WebView,
Platform,
Text
} from 'react-native';
import {Asset, Location, Permissions} from 'expo';
import util from 'util';
import isValidCoordinates from 'is-valid-coordinates';
const MESSAGE_PREFIX = 'react-native-webview-leaflet';
const INDEX_FILE_PATH = `./dist/index.html`;
const INDEX_FILE_ASSET_URI = Asset.fromModule(require(INDEX_FILE_PATH)).uri;
export default class WebViewLeafletRouting extends React.Component {
constructor(props) {
super(props);
this.state = {
mapLoaded: false,
webviewErrorMessages: [],
hasError: false,
hasErrorMessage: '',
hasErrorInfo: ''
};
}
componentDidCatch(error, info) {
this.setState({hasError: true, hasErrorMessage: error, hasErrorInfo: info});
}
componentDidUpdate = (prevProps, prevState) => {
console.log(prevProps, prevState);
// check that centerPosition prop exists,
// that the current centerPosition does not equal the previous one,
// and that the centerPosition is a valid lat, lng
// if so, send a message to the map to update its current position
if (this.props.centerPosition && this.props.centerPosition.length == 2 && prevProps.centerPosition !== this.props.centerPosition) {
if (isValidCoordinates(this.props.centerPosition[1], this.props.centerPosition[0])) {
console.log('****** sending centerPosition');
this.sendMessage({centerPosition: this.props.centerPosition});
// store the center position so that we can ensure the map gets it upon
// its loading since it is possible that the position might
// be availible before the map has been loaded
this.setState({centerPosition: this.props.centerPosition});
} else {
console.warn('Invalid coordinates provided to centerPosition: ', this.props.centerPosition);
}
}
// handle updates to own position
if (this.props.ownPositionMarker && this.props.ownPositionMarker.coords && this.props.ownPositionMarker.coords.length === 2 && JSON.stringify(prevProps.ownPositionMarker) !== JSON.stringify(this.props.ownPositionMarker)) {
if (isValidCoordinates(this.props.ownPositionMarker.coords[1], this.props.ownPositionMarker.coords[0])) {
console.log('****** sending position');
this.sendMessage({ownPositionMarker: this.props.ownPositionMarker});
// store the own position so that we can ensure the map gets it upon
// its loading since it is possible that the position might
// be availible before the map has been loaded
this.setState({ownPositionMarker: this.props.ownPositionMarker});
} else {
console.warn('Invalid coordinates provided to ownPositionMarker: ', this.props.ownPositionMarker.coords);
}
}
// handle updates to urlRouter
if (this.props.urlRouter && this.props.urlRouter !== prevProps.urlRouter) {
console.log('****** sending urlRouter');
this.sendMessage({urlRouter: this.props.urlRouter});
// store the url routing so that we can ensure the map gets it upon
// its loading since it is possible that the position might
// be availible before the map has been loaded
this.setState({urlRouter: this.props.urlRouter});
}
// handle updates to urlRouter
if (this.props.mapLayer && this.props.mapLayer !== prevProps.mapLayer) {
console.log('****** sending mapLayer');
this.sendMessage({mapLayer: this.props.mapLayer});
// store the map layer so that we can ensure the map gets it upon
// its loading since it is possible that the position might
// be availible before the map has been loaded
this.setState({mapLayer: this.props.mapLayer});
}
// handle updates to routingMarkers
if (this.props.routingMarkers && this.props.routingMarkers.from.length === 2 && this.props.routingMarkers.to.length === 2 && JSON.stringify(prevProps.routingMarkers) !== JSON.stringify(this.props.routingMarkers)) {
if (isValidCoordinates(this.props.routingMarkers.from[1], this.props.routingMarkers.from[0]) && isValidCoordinates(this.props.routingMarkers.to[1], this.props.routingMarkers.to[0])) {
console.log('****** sending routing');
this.sendMessage({routingMarkers: this.props.routingMarkers});
// store the routing so that we can ensure the map gets it upon
// its loading since it is possible that the position might
// be availible before the map has been loaded
this.setState({routingMarkers: this.props.routingMarkers});
} else {
console.warn('Invalid coordinates provided to routingMarkers: ', this.props.routingMarkers);
}
}
// handle updates to markers
if (this.props.markers && this.props.markers !== prevProps.markers) {
console.log('****** sending markers');
this.sendMessage({markers: this.props.markers});
// store the markers so that we can ensure the map gets it upon
// its loading since it is possible that the position might
// be availible before the map has been loaded
this.setState({markers: this.props.markers});
}
// actions to be performed one time immediately after the map
// completes loading
if (!prevState.mapLoaded && this.state.mapLoaded) {
this.doPostMapLoadedActions();
}
};
doPostMapLoadedActions = () => {
// Here is our chance to send stuff to the map once it has loaded
// Create an object that will have the update that the map will
// get once it has loaded
let onMapLoadedUpdate = {};
// Check the state for any items that may have been received prior to
// the map loading, and send them to the map
// check if we have a center position
if (this.props.centerPosition && this.props.centerPosition.length === 2 && isValidCoordinates(this.props.centerPosition[1], this.props.centerPosition[0])) {
onMapLoadedUpdate = {
...onMapLoadedUpdate,
centerPosition: this.props.centerPosition
};
}
// do the same for ownPositionMarker
if (this.props.ownPositionMarker && this.props.ownPositionMarker.coords && this.props.ownPositionMarker.coords.length == 2 && isValidCoordinates(this.props.ownPositionMarker.coords[1], this.props.ownPositionMarker.coords[0])) {
onMapLoadedUpdate = {
...onMapLoadedUpdate,
ownPositionMarker: this.props.ownPositionMarker
};
}
// do the same for zoom
if (this.props.zoom) {
onMapLoadedUpdate = {
...onMapLoadedUpdate,
zoom: this.props.zoom
};
}
// do the same for map layer
if (this.props.mapLayer) {
onMapLoadedUpdate = {
...onMapLoadedUpdate,
mapLayer: this.props.mapLayer
};
}
// do the same for markers
if (this.props.markers) {
onMapLoadedUpdate = {
...onMapLoadedUpdate,
markers: this.props.markers
};
}
if (Object.keys(onMapLoadedUpdate).length > 0) {
this.sendMessage(onMapLoadedUpdate);
}
};
// data to send is an object containing key value pairs that will be
// spread into the destination's state
sendMessage = (payload) => {
if (!this.state.mapLoaded) {
return console.log('map unloaded ! unable to send the message: ', payload);
}
// only send message when webview is loaded
const message = JSON.stringify({prefix: MESSAGE_PREFIX, payload});
console.log(`WebViewLeaflet: sending message: `, JSON.stringify(message));
this.webview.postMessage(message, '*');
};
handleMessage = (data) => {
let msgData = JSON.parse(data);
if (msgData.hasOwnProperty('prefix') && msgData.prefix === MESSAGE_PREFIX) {
console.log(`WebViewLeaflet: received message: `, msgData.payload);
// if we receive an event, then pass it to the parent by calling
// the parent function wtith the same name as the event, and passing
// the entire payload as a parameter
if (msgData.payload.event && this.props.eventReceiver.hasOwnProperty(msgData.payload.event)) {
this.props.eventReceiver[msgData.payload.event](msgData.payload) // WebViewLeaflet will also need to know of some state changes, such as when the mapComponent is mounted;
} else {
this.props.eventReceiver.setState({
state: {
...this.props.eventReceiver.state,
mapState: {
...this.props.eventReceiver.mapState,
...msgData.payload
}
}
});
}
}
};
doCenterMap = async () => {
let centerPosition;
let ownPositionMarker;
try {
if (!this.props.ownPositionMarker) {
let {status} = await Permissions.askAsync(Permissions.LOCATION);
if (status !== 'granted') {
throw new Error('Permission to access location was denied');
}
const location = await Location.getCurrentPositionAsync({});
centerPosition = [location.coords.latitude, location.coords.longitude];
} else {
centerPosition = this.props.ownPositionMarker.coords;
}
} catch (e) {
console.log(e);
} finally {
ownPositionMarker = {
coords: centerPosition
};
this.sendMessage({centerPosition, ownPositionMarker});
}
};
onError = (error) => {
this.setState({
webviewErrorMessages: [
...this.state.webviewErrorMessages,
error
]
});
};
renderError = (error) => {
this.setState({
webviewErrorMessages: [
...this.state.webviewErrorMessages,
error
]
});
};
renderLoadingIndicator = () => {
return (<View style={styles.activityOverlayStyle}>
<View style={styles.activityIndicatorContainer}>
<ActivityIndicator size='large' animating={!this.props.eventReceiver.state.mapsState.mapLoaded}/>
</View>
</View>);
};
maybeRenderMap = () => {
return (<WebView style={{
...StyleSheet.absoluteFillObject
}}
// ref
ref={(ref) => this.webview = ref}
// source
source={Platform.OS === 'ios'
? require(INDEX_FILE_PATH)
: {
uri: INDEX_FILE_ASSET_URI
}}
// render loading handler
renderLoading={this.renderLoading}
// render error handler
renderError={(error) => {
console.log('RENDER ERROR: ', util.inspect(error, {
showHidden: false,
depth: null
}));
}}
//options
startInLoadingState={true} javaScriptEnabled={true} domStorageEnabled={true} scalesPageToFit={false} mixedContentMode={'always'}
// message handler
onMessage={(event) => {
if (event && event.nativeEvent && event.nativeEvent.data) {
this.handleMessage(event.nativeEvent.data);
}
}}
// load start handler
onLoadStart={() => console.log('WebView loading')}
// load end handler
onLoadEnd={() => {
if (this.props.eventReceiver.hasOwnProperty('onLoad')) {
this.props.eventReceiver.onLoad();
}
// Set the component state to showw that the map has been loaded.
// This will let us do things during component update once the map
// is loaded.
this.setState({mapLoaded: true});
console.log('WebView loaded');
}}
// error hadnler
onError={(error) => {
console.log('ERROR: ', util.inspect(error, {
showHidden: false,
depth: null
}));
}}/>);
};
maybeRenderWebviewError = () => {
if (this.state.webviewErrorMessages.length > 0) {
return (<View style={{
zIndex: 2000,
backgroundColor: 'orange',
margin: 4
}}>
{
this.state.webviewErrorMessages.map((errorMessage, index) => {
return <Text key={index}>{errorMessage}</Text>;
})
}
</View>);
}
return null;
};
maybeRenderErrorBoundaryMessage = () => {
if (this.state.hasError)
return (<View style={{
zIndex: 2000,
backgroundColor: 'red',
margin: 5
}}>
{
util.inspect(this.state.webviewErrorMessages, {
showHidden: false,
depth: null
})
}
</View>);
return null;
};
renderCenterOnOwnPositionMarkerButton = () => {
return (<View style={{
position: 'absolute',
right: 10,
bottom: 20,
padding: 10
}}>
<Button onPress={this.doCenterMap} title={'🎯'}/>
</View>);
};
render() {
return (<View style={{
flex: 1
}}>
<View style={{
...StyleSheet.absoluteFillObject
}}>
{this.maybeRenderMap()}
{this.maybeRenderErrorBoundaryMessage()}
{this.maybeRenderWebviewError()}
{this.renderCenterOnOwnPositionMarkerButton()}
</View>
</View>);
}
}
const styles = StyleSheet.create({
activityOverlayStyle: {
...StyleSheet.absoluteFillObject,
backgroundColor: 'rgba(255, 255, 255, .5)',
display: 'flex',
justifyContent: 'center',
alignContent: 'center',
borderRadius: 5
},
activityIndicatorContainer: {
backgroundColor: 'lightgray',
padding: 10,
borderRadius: 50,
alignSelf: 'center',
shadowColor: '#000000',
shadowOffset: {
width: 0,
height: 3
},
shadowRadius: 5,
shadowOpacity: 1.0
}
});