-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
82 lines (55 loc) · 1.72 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
import { StatusBar } from 'expo-status-bar';
import React, { useState } from 'react';
import { StyleSheet, View, Button, FlatList } from 'react-native';
import GoalItems from './components/GoalItems'
import GoalInput from './components/GoalInput'
export default function App() {
const [listGoal, setListGoal] = useState([])
const [visible, setVisible] = useState([false])
const AddGoal = goal => {
const d = new Date();
let time = d.getHours().toString() + ":" + d.getMinutes().toString()
let day = d.getDate() + ":" + d.getMonth() + ":" + d.getFullYear()
setListGoal(currentGoal =>
[
{ id: Math.random().toString(), value: goal, time: time, day: day }
, ...currentGoal
])
setVisible(false)
}
const RemoveGoal = goalID => {
// console.log(goalID)
setListGoal(currentGoal => {
return currentGoal.filter(
(goal) => goal.id !== goalID
)
}
)
}
const CancelAddGoalModal = () => {
setVisible(false)
}
return (
<View style={styles.screen}>
<Button title="Add Goal" onPress={() => { setVisible(true) }} />
<GoalInput onAddGoal={AddGoal} onVisible={visible} onCancel={CancelAddGoalModal} />
<FlatList
keyExtractor={(item, index) => item.id}
data={listGoal}
renderItem={dataitem => (
<GoalItems data={dataitem.item.value} id={dataitem.item.id} onDelete={RemoveGoal} date={dataitem.item.date} onCancel={CancelAddGoalModal} />
)}
/>
</View>
);
}
const styles = StyleSheet.create({
screen: {
padding: 50,
},
inputContainer: {
flexDirection: 'row',
justifyContent: "space-between",
alignItems: "center"
},
});