-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.js
392 lines (356 loc) · 10.6 KB
/
App.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
import React, { Component } from 'react';
import { Platform, AppRegistry, StyleSheet, Text, View, Button, TextInput, FlatList, List } from 'react-native';
import { StackNavigator} from 'react-navigation';
import { Constants, Location, Permissions, MapView } from 'expo';
// 1.0.0-beta.11
import * as firebase from 'firebase';
// 4.3.1
// Initialize Firebase
const firebaseConfig = {
apiKey: "AIzaSyAYvr_RQWQaTRxR9ImblpKBjGWHMUuUUgg",
authDomain: "unisupport-a0808.firebaseapp.com",
databaseURL: "https://unisupport-a0808.firebaseio.com",
storageBucket: "unisupport-a0808.appspot.com"
};
if(!firebase.apps.length){
firebase.initializeApp(firebaseConfig);
}
var int = 0;
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
}
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Button
onPress={() => navigate('Offer')}
title="Offer"
/>
<Button
onPress={() => navigate('Request')}
title="Request"
/>
<Button
onPress={() => navigate('RequestView')}
title="View Map"
/>
</View>
);
}
};
//
// class OfferScreen extends React.Component {
//
class OfferScreen extends React.Component {
static navigationOptions = {
title: 'Offer',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Button
onPress={() => navigate('OfferShelter')}
title="Offer Shelter"
/>
<Button
onPress={() => navigate('OfferAssistance')}
title="Offer Assistance"
/>
<Button
onPress={() => navigate('OfferRides')}
title="Offer Rides"
/>
<Button
onPress={() => navigate('OfferSupplies')}
title="Offer Supplies"
/>
</View>
);
}
}
class RequestScreen extends React.Component {
static navigationOptions = {
title: 'Request',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Button
onPress={() => navigate('RequestShelter')}
title="Request Shelter"
/>
<Button
onPress={() => navigate('RequestAssistance')}
title="Request Assistance"
/>
<Button
onPress={() => navigate('RequestRides')}
title="Request Rides"
/>
<Button
onPress={() => navigate('RequestSupplies')}
title="Request Supplies"
/>
</View>
);
}
}
//
//
// class InfoScreen extends React.Component {
// static navigationOptions = {
// title: 'Info',
// };
// render() {
// return (
// <View>
// <Button
// onPress={this.storeRequest}
// title="Submit"
// />
// </View>
// );
// }
// }
class ShelterOfferScreen extends React.Component {
static navigationOptions = {
title: 'Offer Shelter',
};
constructor(props) {
super(props);
this.state = {
type: '',
address: '',
details: '',
active: true,
numberOfPeopleAffected: 0,
}
}
state = {
location: null,
errorMessage: null,
};
componentWillMount() {
if (Platform.OS === 'android' && !Constants.isDevice) {
this.setState({
errorMessage: 'Oops, this will not work on Sketch in an Android emulator. Try it on your device!',
});
}
}
_getLocationAsync = async () => {
let { status } = await Permissions.askAsync(Permissions.LOCATION);
if (status !== 'granted') {
this.setState({
errorMessage: 'Permission to access location was denied',
});
}
let location = await Location.getCurrentPositionAsync({});
this.setState({ location });
};
storeRequest = async(request) => {
//retrieve the location
// add the location to the request object
// name of the branch
await this._getLocationAsync();
firebase.database().ref('request' + int).set(
this.state
);
int = int + 1;
};
render() {
const { navigate } = this.props.navigation;
const {goBack} = this.props.navigation;
let text = 'Waiting..';
if (this.state.errorMessage) {
text = this.state.errorMessage;
} else if (this.state.location) {
text = JSON.stringify(this.state.location);
}
return (
<View>
<Text>Type of help requested (First Aid, Shelter, Water, etc.)</Text>
<TextInput
title="Type"
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(type) => this.setState({type})}
value={this.state.type}
/>
<Text>Address</Text>
<TextInput
title="Address"
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(address) => this.setState({address})}
value={this.state.address}
/>
<Text>Details</Text>
<TextInput
title="Details"
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(details) => this.setState({details})}
value={this.state.details}
/>
<Text>Number of People Affected</Text>
<TextInput
title="Number of People Affected"
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(numberOfPeopleAffected) => this.setState({numberOfPeopleAffected})}
value={this.state.numberOfPeopleAffected}
/>
<Button
onPress={() => this.storeRequest(this.state)}
title="Submit"
/>
</View>
);
}
}
class ShelterRequestScreen extends React.Component {
static navigationOptions = {
title: 'Request Shelter',
};
constructor(props) {
super(props);
this.state = { text: 'Placeholder' };
}
storeRequest = type => {
firebase.database().ref('request').set({
request: type
});
// int = int + 1;
};
render() {
const { navigate } = this.props.navigation;
const {goBack} = this.props.navigation;
return (
<View>
<TextInput
title="Type"
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(text) => this.setState({text})}
value={this.state.text}
/>
<TextInput
title="Address"
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(text) => this.setState({text})}
value={this.state.text}
/>
<TextInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(text) => this.setState({text})}
value={this.state.text}
/>
<Button
onPress={() => this.storeRequest(''), () => goBack()}
title="Submit"
/>
</View>
);
}
}
//
// class AssistanceOfferScreen extends React.Component {
//
// class AssistanceRequestScreen extends React.Component {
//
// class RidesOfferScreen extends React.Component {
// class RidesRequestScreen extends React.Component {
//
// class SuppliesOfferScreen extends React.Component {
// class SuppliesRequestScreen extends React.Component {
class RequestViewScreen extends React.Component {
static navigationOptions = {
title: 'Requests',
};
componentWillMount() {
this.setState({childData:[]});
this.loadRequests(this);
}
loadRequests(x) {
console.log("this is being called");
var leadsRef = firebase.database().ref('/');
leadsRef.on('value', function(snapshot) {
childData = [];
var counter = 0;
snapshot.forEach(function(childSnapshot) {
counter += 1;
var obj = childSnapshot.val();
obj.key = counter;
childData.push(obj);
});
x.setState({
childData
})
});
}
render() {
const { navigate } = this.props.navigation;
console.log(this.state.childData);
const { goBack } = this.props.navigation;
return (
<View style={{flex: 1}}>
<MapView
style={{ flex: 5 }}
initialRegion={{
latitude: 27.6648,
longitude: -81.5158,
latitudeDelta: 9.0,
longitudeDelta: 9.0,
}}
region={this.state.region}
onRegionChange={this.onRegionChange}
>
{this.state.childData.map(item => (
<MapView.Marker
coordinate={{
latitude: item.location.coords.latitude,
longitude: item.location.coords.longitude,
}}
title={"Helloooooo"}
description={"marker.description"}
/>
))}
</MapView>
<View style={{flex: 2, backgroundColor: 'skyblue'}}>
<FlatList
data={this.state.childData}
renderItem={({item}) => <Text> {item.type} {item.location.timestamp} {item.details} {item.location.coords.latitude} {item.location.coords.longitude}</Text>}
// JSON.stringify(item)
/>
</View>
</View>
);
}
}
export default StackNavigator({
Home: { screen: HomeScreen },
Offer: { screen: OfferScreen },
Request: { screen: RequestScreen },
// Info: { screen: InfoScreen },
RequestShelter: { screen: ShelterRequestScreen },
// RequestAssistance: { screen: AssistanceRequestScreen },
// RequestSupplies: { screen: SuppliesRequestScreen },
// RequestRides: { screen: RidesRequestScreen },
OfferShelter: { screen: ShelterOfferScreen },
// OfferAssistance: { screen: AssistanceOfferScreen },
// OfferSupplies: { screen: SuppliesOfferScreen },
// OfferRides: { screen: RidesOfferScreen }
RequestView: { screen: RequestViewScreen },
});
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
paragraph: {
margin: 24,
fontSize: 18,
textAlign: 'center',
},
});