-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalModal.js
More file actions
467 lines (444 loc) · 15.3 KB
/
localModal.js
File metadata and controls
467 lines (444 loc) · 15.3 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
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
459
460
461
462
463
464
465
466
467
import React, {useState, useEffect, useCallback, useRef } from 'react';
import { TouchableHighlight, TouchableOpacity,TouchableWithoutFeedback, Alert, Picker,
StyleSheet, Text, View, TextInput,
ScrollView, KeyboardAvoidingView, StatusBar, FlatList, Modal } from 'react-native';
import * as FileSystem from 'expo-file-system';
import { showMessage, hideMessage } from "react-native-flash-message";
import Constants from 'expo-constants';
import { Storage, Auth } from 'aws-amplify';
import { SearchBar, CheckBox } from 'react-native-elements';
import {color, styles, itemHeight, db, TRACK_DIR, itemFontSize, my_i18n} from './styleConst';
import {login} from './utils'
import { Button, Icon } from 'react-native-elements';
export const AddToLstModal = React.memo((props) => {
return _AddToLstModal(props);
});
function _AddToLstModal(props){
const [checked, updateChecked] = useState(undefined);
const [data_lst, setDataLst] = useState([])
const fetch_pllst = useCallback(() => (
db.transaction(tx => {
tx.executeSql(
`SELECT * FROM Playlists`,
null,
(_, {rows: {_array}}) => {
let temp_lst = _array.map((it) => ({key: it.lst_name})).reverse();
props.plst_ref.current = temp_lst;
setDataLst(temp_lst);
},
(_, error) => console.log(error)
);
})
),[]);
function dbAction(){
if (props.select_mode){
var select_set = new Set(props.select_set_ref.current);
db.transaction(tx => {
select_set.forEach((it) => {
tx.executeSql(
`INSERT INTO Linking (fk_lst_name, fk_track_name) VALUES ('${checked}', '${it}')`,
null,
(_, {rows: {_array}}) => {console.log('Insert Linking successful')},
(_, error) => console.log(error)
);
})
});
}else{
db.transaction(tx => {
tx.executeSql(
`INSERT INTO Linking (fk_lst_name, fk_track_name) VALUES ('${checked}', '${props.key_ref.current}')`,
null,
(_, {rows: {_array}}) => {console.log('Insert Linking successful')},
(_, error) => console.log(error)
);
});
}
}
useEffect(() => {
fetch_pllst();
}, [props.show])
return(
<Modal
animationType="fade"
transparent={true}
visible={props.show}
>
<View style={{...styles.modalBack, justifyContent: 'center'}}>
<TouchableWithoutFeedback onPress = {() => props.setShow(false)}>
<View style = {styles.modalTouchClose}/>
</TouchableWithoutFeedback>
<View style={{...styles.modalInCenter, justifyContent: 'space-around', height: '55%'}}>
<View style={{
flexDirection:'row' ,
justifyContent:'space-around',
alignItems: 'center',
flex:1,
alignSelf: 'stretch'}}
>
<Text style={{fontSize:itemFontSize+8, color: color.dark_pup}}>{my_i18n.t('localList_atp')}</Text>
<Icon
name = 'add-circle'
size = {itemFontSize*2}
onPress ={() => {
props.setShow(false);
props.setModalAddPlst(true);
}}
color={color.primary}
/>
</View>
<View style = {{
flex: 3,
alignSelf: 'stretch'
}}>
<FlatList
data={data_lst}
extraData={[checked]}
renderItem={({item}) => <SelectLstItem
title = {item.key}
checked = {item.key == checked}
updateChecked = {updateChecked}
/>}
/>
</View>
<View style={{
...styles.containerRow,
flex: 1,
justifyContent: 'space-around',
height: null
}}>
<Button
title={my_i18n.t('cancel_butt')}
buttonStyle= {{backgroundColor:color.dark_pup}}
onPress={() => props.setShow(false)}
/>
<Button
title={my_i18n.t('check')}
onPress={() => {
if (checked == undefined){
Alert.alert(my_i18n.t('localModal_at_alt'))
}else{
dbAction();
props.exitSelectMode();
showMessage({
message: my_i18n.t('add_success'),
type: "success"});
props.setShow(false);
}
}}
/>
</View>
</View>
</View>
</Modal>
)
}
function SelectLstItem(props){
return (
<View style = {{
...styles.containerRow,
height: 55,
marginLeft: 20,
marginRight:20,
borderBottomWidth:1,
borderColor: color.light_pup,
}}>
<View style = {{flex: 2, justifyContent:'center'}}>
<CheckBox
center
size={itemFontSize+6}
checkedIcon='dot-circle-o'
uncheckedIcon='circle-o'
checked={props.checked}
checkedColor = {color.dark_pup}
onPress={() => props.updateChecked(props.title)}
/>
</View>
<TouchableOpacity
style = {{
flex: 5,
height:'100%',
justifyContent: 'center'
}}
onPress ={() => {props.updateChecked(props.title)}}
>
<Text numberOfLines={1} style={{fontSize:itemFontSize+2}}>{props.title}</Text>
</TouchableOpacity>
</View>
)
}
export const AddPlstModal = React.memo((props) => {
return _AddPlstModal(props);
});
function _AddPlstModal(props){
const name_input_ref = useRef();
return(
<Modal
animationType="fade"
transparent={true}
visible={props.show_modal}
>
<KeyboardAvoidingView behavior="height" style={{...styles.modalBack, justifyContent: 'center'}}>
<TouchableWithoutFeedback onPress = {() => props.setShowModal(false)}>
<View style = {styles.modalTouchClose}/>
</TouchableWithoutFeedback>
<View style={{...styles.modalInCenter, justifyContent: 'space-around'}}>
<Text style={{fontSize:itemFontSize+8, color: color.dark_pup}}>{my_i18n.t('localModal_ap')}</Text>
<TextInput
style = {{fontSize:itemFontSize+4, padding: 10, backgroundColor: color.light_grey, width: '80%'}}
placeholder={my_i18n.t('localModal_ap_ph')}
ref = {name_input_ref}/>
<View style={{...styles.containerRow, justifyContent: 'space-around', height: null}}>
<Button
title={my_i18n.t('cancel_butt')}
buttonStyle= {{backgroundColor:color.dark_pup}}
onPress={() => props.setShowModal(false)}
/>
<Button
title={my_i18n.t('check')}
onPress={() => {
let get_txt = name_input_ref.current._lastNativeText;
if (get_txt){
if (props.plst_ref.current.map((item) => item.key).includes(get_txt)){
Alert.alert(my_i18n.t('localModal_ap_alt1'))
}else{
db.transaction(tx => {
tx.executeSql(
`INSERT INTO Playlists (lst_name, date)
VALUES ('${get_txt}', datetime('now', 'localtime'))`,
[],
() => {
console.log(`[Info] Playlist (${get_txt}) inserted into database`)
showMessage({
message: my_i18n.t('success'),
description: my_i18n.t('localModal_ap_mes'),
type: "success"
})
props.setShowModal(false);
props.afterFunc();
},
(_, error) => console.log(error)
);
});
}
}else{
Alert.alert(my_i18n.t('homeView2_alr1'))
}
}}
/>
</View>
</View>
</KeyboardAvoidingView>
</Modal>
)
}
export const DeleteModal = React.memo((props) => {
return _DeleteModal(props);
});
function _DeleteModal(props){
const [check, setCheck] = useState(props.all_ref.current);
var CheckToDel;
var count;
var lst2del;
if (props.select_mode){
count = props.select_set_ref.current.size
lst2del = Array.from(props.select_set_ref.current)
}else{
count = 1;
lst2del = [props.key_ref.current]
}
function deleteLocalFile(){
lst2del.forEach((item) => {
FileSystem.deleteAsync(TRACK_DIR + encodeURIComponent(item));
});
db.transaction(tx => {
tx.executeSql(
`DELETE FROM Tracks WHERE track_name in (${lst2del.map((it) => `'${it}'`)})`,
null,
() => {
console.log('deleteLocalFile successful')
},
(_, error) => console.log(error)
);
});
}
function deleteLinking(){
db.transaction(tx => {
tx.executeSql(
`DELETE FROM Linking
WHERE fk_lst_name = '${props.lst_ref.current}'
AND fk_track_name in (${lst2del.map((it) => `'${it}'`)})`,
null,
() => {
console.log('deleteLinking successful')
},
(_, error) => console.log(error)
);
});
}
return(
<Modal
animationType="fade"
transparent={true}
visible={props.show}
>
<View style={{...styles.modalBack, justifyContent: 'center'}}>
<TouchableWithoutFeedback onPress = {() => props.setShow(false)}>
<View style = {styles.modalTouchClose}/>
</TouchableWithoutFeedback>
<View style={{...styles.modalInCenter, justifyContent: 'space-around', height: '30%'}}>
<View style={{...styles.container, flex:1, alignSelf: 'stretch'}}>
<Text style={{fontSize:itemFontSize+8, color: color.dark_pup}}>{my_i18n.t('localModal_dt', {count:count})}</Text>
</View>
<View style = {{flex:1, alignSelf: 'stretch', justifyContent:'center'}}>
<CheckBox
center
title={my_i18n.t('localModal_dt_ck')}
Component = {props.all_ref.current ? TouchableWithoutFeedback: TouchableOpacity}
size = {22}
checked= {check}
checkedColor = {color.dark_pup}
onPress={props.all_ref.current ?()=>{}: () => setCheck(!check)}
/>
</View>
<View style={{
...styles.containerRow,
flex: 1,
justifyContent: 'space-around',
height: null
}}>
<Button
title={my_i18n.t('cancel_butt')}
buttonStyle= {{backgroundColor:color.dark_pup}}
onPress={() => props.setShow(false)}
/>
<Button
title={my_i18n.t('check')}
onPress={() => {
if (check){
deleteLocalFile();
}else{
deleteLinking();
}
if (props.select_mode){
props.exitSelectMode();
}
props.setShow(false);
props.fetchShowLst();
showMessage({
message: my_i18n.t('delete_success'),
type: "success"}
);
}}
/>
</View>
</View>
</View>
</Modal>
)
}
export const ViewDeleteModal = React.memo((props) => {
return _ViewDeleteModal(props);
});
export function _ViewDeleteModal(props){
const [check, setCheck] = useState(false);
const [count, setCount] = useState(0);
const track_lst_ref = useRef();
useEffect(() => {
if (props.show){
// console.log(props.lst_ref.current);
db.transaction(tx => {
tx.executeSql(
`SELECT fk_track_name FROM Linking WHERE fk_lst_name = '${props.lst_ref.current}'`,
null,
(_, {rows: {_array}}) => {
track_lst_ref.current = _array.map((it) => (it.fk_track_name));
// console.log(track_lst_ref.current);
setCount(track_lst_ref.current.length);
},
(_, error) => console.log(error)
);
});
}
},[props.show])
return(
<Modal
animationType="fade"
transparent={true}
visible={props.show}
>
<View style={{...styles.modalBack, justifyContent: 'center'}}>
<TouchableWithoutFeedback onPress = {() => props.setShow(false)}>
<View style = {styles.modalTouchClose}/>
</TouchableWithoutFeedback>
<View style={{...styles.modalInCenter, justifyContent: 'space-around', height: '40%'}}>
<View style={{...styles.container, flex:2, alignSelf: 'stretch'}}>
<Text style={{fontSize:itemFontSize+8, color: color.dark_pup}}>{my_i18n.t('localModal_dp')}</Text>
</View>
<View style={{...styles.container, flex:1, alignSelf: 'stretch'}}>
<Text numberOfLines={1} style={{fontSize:itemFontSize+4}}>
{props.lst_ref.current}
</Text>
</View>
<View style = {{flex:2, alignSelf: 'stretch', justifyContent:'center'}}>
<CheckBox
center
title= {my_i18n.t('localModal_dp_ck', {count: count})}
size = {22}
checked= {check}
checkedColor = {color.dark_pup}
onPress={() => setCheck(!check)}
/>
</View>
<View style={{
...styles.containerRow,
flex: 2,
justifyContent: 'space-around',
height: null
}}>
<Button
title={my_i18n.t('cancel_butt')}
buttonStyle= {{backgroundColor:color.dark_pup}}
onPress={() => props.setShow(false)}
/>
<Button
title={my_i18n.t('check')}
onPress={() => {
db.transaction(tx => {
if (check){
track_lst_ref.current.forEach((item) => {
FileSystem.deleteAsync(TRACK_DIR + encodeURIComponent(item));
});
tx.executeSql(
`DELETE FROM Tracks WHERE track_name in (
SELECT fk_track_name FROM Linking WHERE fk_lst_name = '${props.lst_ref.current}'
)`,
null,
() => {
console.log('Tracks deleted successful')
},
(_, error) => console.log(error)
);
}
tx.executeSql(
`DELETE FROM Playlists WHERE lst_name = '${props.lst_ref.current}'`,
null,
() => {
console.log('Playlists deleted successful')
showMessage({
message: my_i18n.t('localModal_dp_mes'),
type: "success"}
);
},
(_, error) => console.log(error)
);
});
props.setShow(false);
props.fetch_pllst();
}}
/>
</View>
</View>
</View>
</Modal>
)
}