-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
221 lines (187 loc) · 4.85 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
import React, { useState, useEffect } from 'react';
import { StyleSheet, Text, View, TouchableOpacity, TextInput, Alert, Keyboard, AsyncStorage, Platform, KeyboardAvoidingView, FlatList } from 'react-native';
import { Ionicons, MaterialIcons } from '@expo/vector-icons'
export default function App() {
const [task, setTask] = useState([])//salva lista de tarefas
const [newTask, setNewTask] = useState('') // salva os dados do input
async function addTask() {
//Verifica se o objeto esta vazio
if (newTask === '') {
return;
}
const search = task.filter(task => task === newTask)
// Verifica se tem alguma tarefa igual
if (search.length !== 0) {
Alert.alert("Atenção", "Nome da tarefa repetido")
return;
}
//Renderiza a lista em tela
setTask([...task, newTask])
setNewTask('')
// Remove o declado apos adicionar
Keyboard.dismiss()
}
async function removeTask(item) {
Alert.alert(
'Deletar Tarefa',
'Tem certeza que deseja remover a tarefa? ',
[
{
text: 'Cancel',
onPress: () => {
return;
},
style: 'cancel'
},
{
text: 'Ok',
onPress: () => setTask(task.filter(tasks => tasks !== item))
}
],
{ cancelable: false }
)
}
/* TESTE DE CARACTERES DIGITADOS NO ONCHANGTEXT DO INPUT
useEffect(() => {
console.log(newTask);
}, [newTask])
*/
useEffect(() => {
async function loadingDados() {
const task = await AsyncStorage.getItem('task')
if(task){
setTask(JSON.parse(task))
}
}
loadingDados()
}, [])
useEffect(() => {
async function saveDados() {
AsyncStorage.setItem('task', JSON.stringify(task))
}
saveDados()
}, [task])
return (
<>
<View style={styles.container}>
<KeyboardAvoidingView
keyboardVerticalOffset={0}
behavior='padding'
style={{ flex: 1 }}
enabled={true}
>
<View style={styles.Body}>
<FlatList
style={styles.FlatList}
data={task}
keyExtractor={item => item.toString()}
showsVerticalScrollIndicator={false}
renderItem={({ item }) => (
<View style={styles.ContainerView} >
<Text style={styles.TextView} >{item}</Text>
<TouchableOpacity
onPress={() => removeTask(item)}
>
<MaterialIcons
name='delete-forever'
size={35}
color='#a30016' />
</TouchableOpacity>
</View>
)}
>
</FlatList>
</View>
<View style={styles.Form}>
<TextInput
style={styles.Input}
autoCorrect={true}
placeholder="Adicione uma nova tarefa."
maxLength={50}
placeholderTextColor="#999"
onChangeText={text => setNewTask(text)}
value={newTask}
/>
<TouchableOpacity style={styles.Button} onPress={() => addTask()}>
<Ionicons name="md-checkmark-circle" size={25} color="#fff" />
</TouchableOpacity>
</View>
</KeyboardAvoidingView>
</View>
</>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#959da6',
paddingHorizontal: 20,
paddingVertical: 20,
marginTop: 0,
borderTopWidth: 30,// verificar
},
Body: {
flex: 1
},
Form: {
padding: 0,
height: 60,
alignSelf: 'stretch',
justifyContent: 'center',
flexDirection: 'row',
paddingTop: 13,
borderTopWidth: 1,
borderColor: '#959da6',
/* padding: 0,
height: 60,
alignSelf: 'stretch',
justifyContent: 'center',
flexDirection: 'row',
paddingTop: 13,
borderTopWidth: 20,
borderColor: '#eee' */
},
Input: {
flex: 1,
height: 40,
backgroundColor: '#eee',
borderRadius: 4,
paddingVertical: 5,
paddingHorizontal: 10,
borderWidth: 1,
borderColor: '#eee'
},
Button: {
height: 40,
width: 40,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#1c6cce',
borderRadius: 4,
marginLeft: 10,
},
FlatList: {
flex: 1,
marginTop: 5,
fontSize: 16
},
ContainerView: {
marginBottom: 15,
padding: 15,
borderRadius: 4,
backgroundColor: '#eee',
display: 'flex',
flexDirection: 'row',
justifyContent: 'space-between',
borderWidth: 1,
borderColor: "#eee",
alignItems: 'center',
},
TextView: {
fontSize: 17,
fontWeight: 'bold',
color: '#333',
marginTop: 4,
textAlign: 'center',
}
});