-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
97 lines (88 loc) · 2.36 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
import { useState } from "react";
import { FlatList, StyleSheet, Text, View, Button } from "react-native";
import GoalInput from "./components/Goal/GoalInput";
import GoalItem from "./components/Goal/GoalItem";
import { StatusBar } from "expo-status-bar";
export default function App() {
const [goalId, setGoalId] = useState(0);
const [courseGoals, setCourseGoals] = useState([]);
const [modalIsVisible, setModalIsVisible] = useState(false);
function startAddGoalHandler() {
setModalIsVisible(true);
}
function endAddGoalHandler() {
setModalIsVisible(false);
}
function addGoalHandler(enteredGoalText) {
setCourseGoals((currentCourseGoals) => [
...currentCourseGoals,
{ text: enteredGoalText, id: goalId.toString() },
]);
setGoalId((previousGoalId) => previousGoalId + 1);
endAddGoalHandler();
}
function deleteGoalHandler(id) {
setCourseGoals((currentCourseGoals) => {
return currentCourseGoals.filter((goal) => goal.id !== id);
});
}
return (
<>
<StatusBar style="light" />
<View style={styles.container}>
<Button
title="Add New Goal"
color={"#a065ec"}
onPress={startAddGoalHandler}
/>
{modalIsVisible && (
<GoalInput
onAddGoal={addGoalHandler}
isVisible={modalIsVisible}
onCancel={endAddGoalHandler}
/>
)}
<View style={styles.goalsContainer}>
<FlatList
data={courseGoals}
renderItem={(itemData) => {
return (
<GoalItem
id={itemData.item.id}
text={itemData.item.text}
onDeleteItem={deleteGoalHandler}
/>
);
}}
keyExtractor={(item) => {
// looks for the "id" courseGoals that comes from
//the data prop in FlatList
return item.id;
}}
alwaysBounceVertical={false}
/>
</View>
</View>
</>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 50,
paddingHorizontal: 16,
backgroundColor: "#1e085a",
},
goalsContainer: {
flex: 4,
},
goalItem: {
margin: 8,
padding: 8,
borderRadius: 6,
backgroundColor: "#5e08cc",
},
goalText: {
color: "white",
},
});