-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
385 lines (358 loc) · 10.1 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
/* eslint-disable react-native/no-inline-styles */
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React, { Component, Fragment } from 'react';
import { createAppContainer } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
import { api } from './api';
import DateTimePicker from '@react-native-community/datetimepicker';
import { WebView } from 'react-native-webview';
import Geolocation from '@react-native-community/geolocation';
import ImagePicker from 'react-native-image-picker';
import {
SafeAreaView,
StyleSheet,
ScrollView,
Platform,
View,
Text,
Button,
StatusBar,
FlatList,
TouchableWithoutFeedback,
TouchableOpacity,
TouchableHighlight,
KeyboardAvoidingView,
TextInput,
Linking
} from 'react-native';
// import {
// Header,
// LearnMoreLinks,
// Colors,
// DebugInstructions,
// ReloadInstructions,
// } from 'react-native/Libraries/NewAppScreen';
const DATA = [
{
id: 'bd7acbea-c1b1-46c2-aed5-3ad53abb28ba',
title: 'First Item',
},
{
id: '3ac68afc-c605-48d3-a4f8-fbd91aa97f63',
title: 'Second Item',
},
{
id: '58694a0f-3da1-471f-bd96-145571e29d72',
title: 'Third Item',
},
];
const options = {
title: 'Select Avatar',
customButtons: [{ name: 'fb', title: 'Choose Photo from Facebook' }],
storageOptions: {
skipBackup: true,
path: 'images',
},
};
const tasks1 =
[{
id: '1',
title: 'get banana',
completed: 0,
assignedTo: 'manish',
dueBy: '1/1/2019'
},
{
id: '2',
title: 'get oragne',
completed: 0,
assignedTo: 'manish',
dueBy: '1/1/2019'
}
];
function Separator() {
return <View style={styles.separator} />;
}
function Item({ props, id, title, dueBy, assignedTo }) {
// ImagePicker.showImagePicker(options, (response) => {
// console.log('Response = ', response);
// if (response.didCancel) {
// console.log('User cancelled image picker');
// } else if (response.error) {
// console.log('ImagePicker Error: ', response.error);
// } else if (response.customButton) {
// console.log('User tapped custom button: ', response.customButton);
// } else {
// const source = { uri: response.uri };
// // You can also display the image using data:
// // const source = { uri: 'data:image/jpeg;base64,' + response.data };
// this.setState({
// avatarSource: source,
// });
// }
// });
return (
<TouchableOpacity onPress={() => props.navigation.navigate('Details', {
id: id,
otherParam: {id, title, dueBy, assignedTo},
})} style={styles.item}>
<View>
<View style={styles.cellContainer}>
<Text>Task:</Text><Text style={[styles.subTitle, styles.mt5]}>{title}</Text>
</View>
<Separator />
<View style={styles.cellContainer}>
<Text>Due By:</Text><Text style={[styles.subTitle, styles.mt5]}>{dueBy}</Text>
<Text>Assigned To:</Text><Text style={[styles.subTitle, styles.mt5]}>{assignedTo}</Text>
</View>
</View>
</TouchableOpacity>
);
}
class HomeScreen extends Component {
constructor(props) {
super(props);
this.state = {
tasks: []
}
};
async componentDidMount() {
let tasks = await api.getTasks();
this.setState((prevState, props) => (
{
tasks: tasks
}
)
);
};
render() {
Geolocation.getCurrentPosition(info => console.log(info));
return (
<ScrollView>
<SafeAreaView style={styles.container}>
<FlatList
data={this.state.tasks}
renderItem={({ item }) => <Item props={this.props} title={item.title} dueBy={item.dueBy} assignedTo={item.assignedTo}/>}
keyExtractor={item => item.id}
/>
</SafeAreaView>
</ScrollView>
// {/* <View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
// <Text>Home Screen</Text>
// <Button
// title="Go to Details"
// onPress={() => this.props.navigation.navigate('Details')}
// />
// </View> */}
);
}
}
class DetailsScreen extends React.Component {
setDate = (event, date) => {
if (date !== undefined) {
// timeSetAction
}
}
render() {
const { navigation } = this.props;
const id = navigation.getParam('id', 'NO-ID');
const otherParam = navigation.getParam('otherParam', null);
const d = new Date(otherParam.dueBy);
return (
<KeyboardAvoidingView style={styles.detailContainer}>
<Text style={styles.title}>Details Screen</Text>
<Text style={styles.marginTop}>Task:</Text><TextInput style={styles.formfield}>{otherParam.title}</TextInput>
<Text style={styles.marginTop}>Due By:</Text>
<DateTimePicker value={d}
mode='date'
is24Hour={true}
display="default"
onChange={this.setDate}/>
{/* <TextInput style={styles.formfield}>{otherParam.dueBy}</TextInput> */}
<Text style={styles.marginTop}>Assigned To:</Text><TextInput style={styles.formfield}>{otherParam.assignedTo}</TextInput>
<View style={styles.marginTop}>
<View style={styles.formfield}>
<WebView
source={{ uri: 'https://infinite.red' }}
style={{ marginTop: 20, height: 100 }}
/>
</View>
<View style={styles.marginTop}>
<Button title='Click Here To Open Website URL' onPress={ ()=> Linking.openURL('https://reactnativecode.com') } />
</View>
<Button
title="Go back"
onPress={() => this.props.navigation.goBack()}
/></View>
</KeyboardAvoidingView>
);
}
}
const RootStack = createStackNavigator(
{
Home: HomeScreen,
Details: DetailsScreen,
},
{
initialRouteName: 'Home',
}
);
const AppContainer = createAppContainer(RootStack);
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
tasks: []
}
}
async componentDidMount() {
//
};
render() {
return <AppContainer />;
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
marginTop: 10,
},
detailContainer: {
flex: 1,
marginTop: 20,
alignItems: 'stretch',
justifyContent: 'flex-start'
},
cellContainer: {
flex: 1,
flexDirection: 'row',
justifyContent: 'space-between'
},
item: {
backgroundColor: 'lightgrey',
padding: 20,
marginVertical: 8,
marginHorizontal: 16,
},
formfield: {
// flex: 1,
// flexDirection: 'row',
marginTop: 10,
borderColor: 'gray',
borderWidth: 1,
height: 40,
// width: 320
},
title: {
fontSize: 32,
},
subTitle: {
fontSize: 20,
},
separator: {
marginVertical: 8,
borderBottomColor: '#737373',
borderBottomWidth: StyleSheet.hairlineWidth,
},
buttonGoBack: {
marginTop: 30
},
marginTop: {
marginTop: 20
},
mt5: {
marginTop: -5
}
});
// const App = () => {
// return (
// <Fragment>
// <StatusBar barStyle="dark-content" />
// <SafeAreaView>
// <ScrollView
// contentInsetAdjustmentBehavior="automatic"
// style={styles.scrollView}>
// <Header />
// {global.HermesInternal == null ? null : (
// <View style={styles.engine}>
// <Text style={styles.footer}>Engine: Hermes</Text>
// </View>
// )}
// <View style={styles.body}>
// <View style={styles.sectionContainer}>
// <Text style={styles.sectionTitle}>Step One</Text>
// <Text style={styles.sectionDescription}>
// Edit <Text style={styles.highlight}>App.js</Text> to change this
// screen and then come back to see your edits.
// </Text>
// </View>
// <View style={styles.sectionContainer}>
// <Text style={styles.sectionTitle}>See Your Changes</Text>
// <Text style={styles.sectionDescription}>
// <ReloadInstructions />
// </Text>
// </View>
// <View style={styles.sectionContainer}>
// <Text style={styles.sectionTitle}>Debug</Text>
// <Text style={styles.sectionDescription}>
// <DebugInstructions />
// </Text>
// </View>
// <View style={styles.sectionContainer}>
// <Text style={styles.sectionTitle}>Learn More</Text>
// <Text style={styles.sectionDescription}>
// Read the docs to discover what to do next:
// </Text>
// </View>
// <LearnMoreLinks />
// </View>
// </ScrollView>
// </SafeAreaView>
// </Fragment>
// );
// };
// const styles = StyleSheet.create({
// scrollView: {
// backgroundColor: Colors.lighter,
// },
// engine: {
// position: 'absolute',
// right: 0,
// },
// body: {
// backgroundColor: Colors.white,
// },
// sectionContainer: {
// marginTop: 32,
// paddingHorizontal: 24,
// },
// sectionTitle: {
// fontSize: 24,
// fontWeight: '600',
// color: Colors.black,
// },
// sectionDescription: {
// marginTop: 8,
// fontSize: 18,
// fontWeight: '400',
// color: Colors.dark,
// },
// highlight: {
// fontWeight: '700',
// },
// footer: {
// color: Colors.dark,
// fontSize: 12,
// fontWeight: '600',
// padding: 4,
// paddingRight: 12,
// textAlign: 'right',
// },
// });
// export default App;