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
|
import { StyleSheet, FlatList, Text } from 'react-native'
import { useState, useEffect } from 'react'
import Note from './Note'
import Menu from './Menu'
const List = ({ session, setSession, showError, setEdit }) => {
const [list, setList] = useState()
const [loading, setLoading] = useState(true)
const fetchNotes = async () => {
setLoading(true)
try {
const response = await fetch('https://apps.pruss.it/api/notes', { 'Cookie': session.cookies } )
const data = await response.json()
setList(data)
} catch(e) {
showError('Error while fetching notes')
}
setLoading(false)
}
useEffect(() => {
setLoading(true)
fetchNotes()
}, [])
return (
<>
<Menu
session={session}
setSession={setSession}
showError={showError}
setEdit={setEdit}
/>
{
loading || list === undefined
? <Text style={styles.text}>Loading notes...</Text>
: (
<FlatList
data={list.sort((a,b) => new Date(b.updated_at) - new Date(a.updated_at))}
renderItem={({item}) => <Note note={item} setEdit={setEdit} />}
ListEmptyComponent={<Text style={styles.text}>You don't have any notes</Text>}
onRefresh={fetchNotes}
refreshing={loading}
/>
)
}
</>
)
}
const styles = StyleSheet.create({
text: {
color: 'white',
padding: 20,
},
menu: {
backgroundColor: 'lightgrey',
height: 55,
width: '100%',
flexDirection: 'row',
alignItems: 'flex-end',
justifyContent: 'space-between',
padding: 10,
},
menuText: {
fontWeight: 'bold',
paddingHorizontal: 10,
},
});
export default List;
|