-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
331 lines (307 loc) · 7.68 KB
/
App.tsx
File metadata and controls
331 lines (307 loc) · 7.68 KB
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
import React, { useState } from 'react';
import {
SafeAreaView,
StyleSheet,
View,
Text,
StatusBar,
Modal,
FlatList,
Alert,
Platform,
PermissionsAndroid,
} from 'react-native';
import Contacts from 'react-native-contacts';
import Button from "./components/button";
type PickableContact = {
name: string;
phone: string;
};
type ContactListItem = {
item: PickableContact;
index: number;
};
function renderContactListItem({ item: contact }: ContactListItem) {
return (
<View style={styles.listItem}>
<View style={styles.userInfo}>
<Text style={styles.name}>
{contact.name}
</Text>
<Text style={styles.phone}>
{contact.phone}
</Text>
</View>
</View>
)
}
function App() {
const [allContacts, setAllContacts] = useState<PickableContact[]>([]);
const [tempSelectedContacts, setTempSelectedContacts] = useState<number[]>([]);
const [selectedIndices, setSelectedIndices] = useState<number[]>([]);
const [selectedContacts, setSelectedContacts] = useState<PickableContact[]>([]);
const [shouldShowModal, setModalStatus] = useState(false);
async function loadContacts() {
if (Platform.OS === "android") {
const granted = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.READ_CONTACTS, {
title: "Contacts",
message: "This app would like to view your contacts.",
buttonNeutral: "Ask Me Later",
buttonNegative: "Cancel",
buttonPositive: "OK"
});
if (granted !== PermissionsAndroid.RESULTS.GRANTED) {
Alert.alert("Error", "Contact permission is required!");
return null;
}
}
Contacts.getAll()
.then(contacts => {
const namedContacts = contacts.map(c => {
const name = (c.givenName + " " + c.middleName + " " + c.familyName).trim();
return c.phoneNumbers.map(p => ({
name,
phone: p.number,
}))
});
const simplifiedContacts = namedContacts.reduce((arr, val) => arr.concat(val));
// set contacts
setAllContacts(simplifiedContacts);
})
.catch(e => {
Alert.alert("Error", e);
});
}
function showContactModal() {
loadContacts();
setModalStatus(true);
setTempSelectedContacts(selectedIndices);
}
function selectContact(index: number) {
setTempSelectedContacts([
...tempSelectedContacts,
index,
]);
}
function removeContact(index: number) {
const existingIndex = tempSelectedContacts.indexOf(index);
if (existingIndex > -1) {
tempSelectedContacts.splice(existingIndex, 1);
setTempSelectedContacts([...tempSelectedContacts]);
}
}
function selectAllContacts() {
setTempSelectedContacts(allContacts.map((a, i) => i));
}
function unselectAllContacts() {
setTempSelectedContacts([]);
}
function cancelSelection() {
setModalStatus(false);
}
function confirmSelection() {
setModalStatus(false);
setSelectedIndices(tempSelectedContacts);
setSelectedContacts(
allContacts.filter((c, i) => tempSelectedContacts.indexOf(i) > -1)
);
}
function renderPickContactItem({ item: contact, index }: ContactListItem) {
return (
<View style={styles.listItem}>
<View style={styles.userInfo}>
<Text style={styles.name}>
{contact.name}
</Text>
<Text style={styles.phone}>
{contact.phone}
</Text>
</View>
{
tempSelectedContacts.indexOf(index) > -1 ? (
<Button
style={styles.actionBtn}
textStyle={styles.removeText}
title="Remove"
onPress={() => removeContact(index)}
/>
) : (
<Button
style={styles.actionBtn}
title="Select"
onPress={() => selectContact(index)}
/>
)
}
</View>
)
}
function renderContactModal() {
return (
<Modal
onRequestClose={cancelSelection}>
<SafeAreaView style={styles.modalContainer}>
<View style={styles.header}>
<Button
title="Back"
style={styles.backBtn}
onPress={cancelSelection}
/>
<Text style={styles.title}>
Select Contacts
</Text>
<Button
title="Done"
style={styles.doneBtn}
onPress={confirmSelection}
/>
</View>
<FlatList
style={styles.contactList}
contentContainerStyle={styles.contactListContent}
data={allContacts}
renderItem={renderPickContactItem}
keyExtractor={(item, index) => index + item.name + item.phone}
getItemLayout={(data, index) => ({ length: 70, offset: index * 70, index })}
/>
{
tempSelectedContacts.length === allContacts.length ? (
<Button
style={styles.toggleBtn}
textStyle={styles.toggleBtnText}
title="Unselect All"
onPress={unselectAllContacts}
/>
) : (
<Button
style={styles.toggleBtn}
textStyle={styles.toggleBtnText}
title="Select All"
onPress={selectAllContacts}
/>
)
}
</SafeAreaView>
</Modal>
)
}
return (
<>
<StatusBar barStyle="dark-content" />
{shouldShowModal && renderContactModal()}
<SafeAreaView style={styles.container}>
<Button
style={styles.contactBtn}
title="Select Contacts"
onPress={showContactModal}
/>
<FlatList
style={styles.selectedList}
data={selectedContacts}
renderItem={renderContactListItem}
keyExtractor={(item, index) => index + item.name + item.phone}
/>
</SafeAreaView>
</>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
},
modalContainer: {
flex: 1,
},
contactBtn: {
padding: 4,
marginVertical: 16,
marginHorizontal: 32,
elevation: Platform.select({
android: 4,
default: 0,
}),
borderWidth: Platform.select({
android: 0,
default: 1,
}),
borderColor: "#ddd",
borderRadius: 20,
},
selectedList: {
flex: 1,
},
contactList: {
flex: 1,
},
contactListContent: {
paddingBottom: 100,
},
listItem: {
padding: 8,
paddingHorizontal: 16,
flexDirection: "row",
borderBottomWidth: 1,
borderBottomColor: "#dddddd",
height: 70,
},
userInfo: {
flex: 1,
},
name: {
fontWeight: "bold",
fontSize: 17,
marginBottom: 8,
},
phone: {
fontSize: 15,
color: "#333333",
},
actionBtn: {
width: 90,
},
removeText: {
color: "#dd3333"
},
header: {
flexDirection: "row",
borderBottomColor: "#dddddd",
borderBottomWidth: Platform.select({
android: 0,
default: 1,
}),
justifyContent: "space-between",
backgroundColor: "#ffffff",
elevation: Platform.select({
android: 4,
default: 0,
}),
},
backBtn: {
padding: 12,
},
title: {
padding: 12,
paddingTop: 20,
fontWeight: "bold",
fontSize: 18,
},
doneBtn: {
padding: 12,
},
toggleBtn: {
position: "absolute",
bottom: 30,
left: 80,
right: 80,
backgroundColor: "#dd0000",
borderRadius: 40,
},
toggleBtnText: {
color: "#ffffff",
fontSize: 20,
fontWeight: "bold",
}
});
export default App;