-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
458 lines (447 loc) · 12.5 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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React from 'react';
import {
SafeAreaView,
StyleSheet,
ScrollView,
View,
Text,
Image,
StatusBar,
TextInput as RNTextInput,
FlatList,
TouchableOpacity,
} from 'react-native';
import {Calendar} from 'react-native-calendars';
import {Router, Scene, Actions} from 'react-native-router-flux';
import DocumentPicker from 'react-native-document-picker';
import {
Title,
Headline,
Appbar,
TextInput,
Button,
Subheading,
Divider,
Avatar,
Modal,
Portal,
} from 'react-native-paper';
import {NativeModules} from 'react-native';
import DateTimePicker from '@react-native-community/datetimepicker';
const FilePicker = NativeModules.FileChooser;
const styles = StyleSheet.create({
genericInputStyle: {
borderColor: '#d3d3d3',
borderWidth: 1,
borderRadius: 5,
paddingLeft: 15,
},
});
const initialState = {
selectedItems: [],
page: 0,
showCalendar: false,
date: '',
fileObjects: [],
title: '',
description: '',
options: [
{
key: '1',
title: 'Assign to yourself',
subtitle: '',
icon: require('./assets/imgs/man.png'),
},
{
key: '2',
title: 'Ariene Robertson',
subtitle: 'Manager',
icon: require('./assets/imgs/woman.png'),
},
{
key: '3',
title: 'Dianne Howard',
subtitle: 'Franchise Manager',
icon: require('./assets/imgs/woman.png'),
},
{
key: '4',
title: 'Dianne Howard',
subtitle: 'Manager',
icon: require('./assets/imgs/woman.png'),
},
{
key: '5',
title: 'Franchise Managers',
subtitle: '6 members',
icon: require('./assets/imgs/man.png'),
},
{
key: '6',
title: 'Marketing Team',
subtitle: '12 members',
icon: require('./assets/imgs/man.png'),
},
{
key: '7',
title: 'Robert Fox',
subtitle: 'Manager',
icon: require('./assets/imgs/man.png'),
},
{
key: '8',
title: 'Albert Flores',
subtitle: 'Franchise Manager',
icon: require('./assets/imgs/man.png'),
},
{
key: '9',
title: 'Managers',
subtitle: '12 members',
icon: require('./assets/imgs/man.png'),
},
],
};
const HomeReducer = (state = initialState, action) => {
switch (action.type) {
case 'ADD_TO_SELECTED_ITEMS':
let sItems = state.selectedItems;
const {key} = action.payload;
if (sItems.includes(key)) {
sItems.splice(sItems.indexOf(key), 1);
} else {
sItems.push(key);
}
return {
...state,
selectedItems: sItems,
};
case 'CHANGE_PAGE':
return {
...state,
page: action.payload,
};
case 'TOGGLE_CALENDAR':
return {
...state,
showCalendar: !state.showCalendar,
};
case 'SET_DATE':
return {
...state,
date: action.payload.toISOString().split('T')[0],
showCalendar: false,
};
case 'UPDATE_FILE_OBJ':
const files = state.fileObjects;
for (const file of action.payload) {
files.push(file);
}
return {
...state,
fileObjects: files,
};
case 'DELETE_FILE_OBJ':
let nfiles = state.fileObjects;
for (let file of nfiles) {
if (action.payload.name === file.name) {
nfiles.splice(nfiles.indexOf(file), 1);
break;
}
}
return {
...state,
fileObjects: nfiles,
};
case 'UPDATE_TITLE':
return {
...state,
title: action.payload,
};
case 'UPDATE_DESCRIPTION':
return {
...state,
description: action.payload,
};
default:
return state;
}
};
const AssigneePage = ({redState, dispatch, ...props}) => {
const [keyUpdate, setKeyUpdate] = React.useState('update');
//var set = new Set();
return (
<View style={{flex: 1}} key={keyUpdate}>
<View style={{flex: 5.5}}>
<FlatList
data={redState.options}
keyExtractor={(item) => item.key}
renderItem={(item) => (
<TouchableOpacity
onPress={() => {
dispatch({type: 'ADD_TO_SELECTED_ITEMS', payload: item.item});
setKeyUpdate(new Date().toISOString());
}}>
<View style={{flexDirection: 'row'}}>
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
}}>
<View
style={{
width: 52,
height: 52,
borderRadius: 26,
backgroundColor: '#6723c9',
alignItems: 'center',
justifyContent: 'center',
}}>
<Image
style={{width: 36, height: 36}}
source={item.item.icon}
/>
</View>
{redState.selectedItems.includes(item.item.key) && (
<Image
style={{
width: 18,
height: 18,
position: 'absolute',
bottom: 5,
right: 5,
}}
source={require('./assets/imgs/check.png')}
/>
)}
</View>
<View style={{flex: 5}}>
<Title>{item.item.title}</Title>
<Subheading>{item.item.subtitle}</Subheading>
</View>
</View>
<Divider />
</TouchableOpacity>
)}
/>
</View>
<View
style={{
flex: 0.5,
justifyContent: 'center',
paddingLeft: 20,
paddingRight: 20,
}}>
<Button
mode="contained"
onPress={() => dispatch({type: 'CHANGE_PAGE', payload: 0})}>
Apply
</Button>
</View>
</View>
);
};
const HomePage = ({redState, dispatch, ...props}) => {
const callFileChooser = async () => {
try {
const res = await DocumentPicker.pickMultiple({
type: [DocumentPicker.types.images],
});
dispatch({type: 'UPDATE_FILE_OBJ', payload: res});
} catch (err) {
if (DocumentPicker.isCancel(err)) {
// User cancelled the picker, exit any dialogs or menus and move on
} else {
throw err;
}
}
};
const getData = () => {
let sItems = redState.selectedItems;
var dItems = [];
for (let i = 0; i < sItems.length; i++) {
if (dItems.length < 3) {
dItems.push(redState.options[parseInt(sItems[i])]);
}
}
return dItems;
};
return (
<View style={{flex: 1, marginLeft: 20, marginRight: 20}}>
<View style={{flex: 5.5}}>
<ScrollView showsVerticalScrollIndicator={false}>
<Title>Summary</Title>
<RNTextInput
placeholder="Title"
style={styles.genericInputStyle}
value={redState.title}
onChangeText={(text) =>
dispatch({type: 'UPDATE_TITLE', payload: text})
}
/>
<TouchableOpacity onPress={() => dispatch({type: 'TOGGLE_CALENDAR'})}>
<RNTextInput
style={{marginTop: 20, flexWrap: 'wrap'}}
placeholder="Due Date"
editable={false}
value={redState.date}
style={[styles.genericInputStyle, {marginTop: 20}]}
/>
</TouchableOpacity>
<View style={{flexDirection: 'row'}}>
<Title style={{flex: 5, alignSelf: 'flex-start'}}>Employee</Title>
<Button
mode="text"
style={{flex: 1, alignSelf: 'flex-end'}}
onPress={() => dispatch({type: 'CHANGE_PAGE', payload: 1})}>
Assign
</Button>
</View>
{redState.selectedItems.length > 0 && (
<View style={{flexDirection: 'row'}}>
<FlatList
horizontal={true}
data={getData()}
keyExtractor={(item) => item.key}
style={{height: 60, flexWrap: 'wrap'}}
renderItem={(item) => (
<View
style={{
width: 52,
height: 52,
borderRadius: 26,
backgroundColor: '#6723c9',
alignItems: 'center',
justifyContent: 'center',
}}>
<Image
style={{width: 36, height: 36}}
source={item.item.icon}
/>
</View>
)}
/>
</View>
)}
<Title>Description</Title>
<RNTextInput
onChangeText={(text) =>
dispatch({type: 'UPDATE_DESCRIPTION', payload: text})
}
numberOfLines={5}
style={[styles.genericInputStyle, {borderBottomWidth: 0}]}
multiline={true}
value={redState.description}
/>
<Text
style={[
styles.genericInputStyle,
{
textAlign: 'right',
borderTopWidth: 0,
paddingRight: 10,
},
]}>
Words {redState.description.split(' ').length}/100
</Text>
<View style={{flexDirection: 'row'}}>
<Title style={{flex: 5, alignSelf: 'flex-start'}}>Attachment</Title>
<Button
mode="text"
style={{flex: 1, alignSelf: 'flex-end'}}
onPress={() => callFileChooser()}>
Add
</Button>
</View>
{redState.fileObjects.length > 0 && (
<FlatList
showsVerticalScrollIndicator={false}
data={redState.fileObjects}
keyExtractor={(item) => item.name}
renderItem={(item) => (
<View
style={{
flexDirection: 'row',
alignItems: 'center',
borderColor: '#d3d3d3',
borderRadius: 2,
borderWidth: 1,
padding: 10,
marginTop: 10,
}}>
<Image
style={{
flex: 1,
height: 16,
width: 12,
resizeMode: 'contain',
}}
source={require('./assets/imgs/clip.png')}
/>
<Text style={{flex: 4}}>{item.item.name}</Text>
<TouchableOpacity
onPress={() =>
dispatch({type: 'DELETE_FILE_OBJ', payload: item.item})
}>
<Image
style={{
flex: 1,
height: 16,
width: 12,
resizeMode: 'contain',
}}
source={require('./assets/imgs/trash.png')}
/>
</TouchableOpacity>
</View>
)}
/>
)}
</ScrollView>
</View>
<View style={{flex: 0.5, justifyContent: 'center'}}>
<Button mode="contained" onPress={() => console.log('Hello World!')}>
Create Task
</Button>
</View>
</View>
);
};
const App = () => {
const [redState, dispatch] = React.useReducer(HomeReducer, initialState);
return (
<View style={{flex: 1}}>
{redState.showCalendar && (
<DateTimePicker
testID="dateTimePicker"
value={new Date()}
mode={'date'}
is24Hour={true}
display="default"
onChange={(event, selectedDate) => {
dispatch({type: 'SET_DATE', payload: selectedDate});
}}
/>
)}
<Appbar.Header>
<Appbar.Content
title={redState.page === 0 ? 'Create task' : 'Assign employee'}
/>
</Appbar.Header>
{redState.page === 0 ? (
<HomePage redState={redState} dispatch={dispatch} />
) : (
<AssigneePage redState={redState} dispatch={dispatch} />
)}
</View>
);
};
export default App;