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
|
import { StyleSheet, Text, TextInput , View } from 'react-native'
import { useState, useEffect } from 'react'
import { handleGetNote, handleCreateNote, handleEditNote } from '../utils/helpers'
import Menu from './Menu'
const Edit = ({ edit: note, setEdit, session, setSession, showError }) => {
const [saving, setSaving] = useState()
const [title, setTitle] = useState(note ? note.title : '')
const [content, setContent] = useState()
const saveNote = () => note._id
? handleEditNote({ note, title, content, setSaving, setEdit, session, showError })
: handleCreateNote({ title, content, setSaving, setEdit, session, showError })
useEffect(() => {
if (note?._id) {
handleGetNote({ note, setContent, setEdit, session, showError })
} else {
setContent('')
}
}, [])
return (
<>
<Menu
session={session}
setSession={setSession}
showError={showError}
setEdit={setEdit}
saveNote={saveNote}
/>
<View style={styles.container}>
<TextInput
placeholder="Title"
placeholderTextColor="#BBB"
style={styles.title}
value={title}
onChange={e => setTitle(e.nativeEvent.text)}
/>
{
content === undefined || saving
? <Text style={styles.text}>{saving ? 'Saving...' : 'Loading content...'}</Text>
: (
<TextInput
placeholder="Content"
placeholderTextColor="#BBB"
multiline={true}
textAlignVertical="top"
style={styles.content}
value={content}
onChange={e => setContent(e.nativeEvent.text)}
/>
)
}
</View>
</>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 15,
marginBottom: 50,
},
title: {
color: 'white',
borderBottomColor: 'white',
borderBottomWidth: 1,
paddingBottom: 15,
marginBottom: 10,
fontWeight: 'bold',
},
content: {
color: 'white',
flexGrow: 1,
paddingVertical: 10,
},
text: {
color: 'white',
}
});
export default Edit
|