-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
143 lines (134 loc) · 3.78 KB
/
App.js
File metadata and controls
143 lines (134 loc) · 3.78 KB
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
import { Button, StyleSheet, View } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createNativeStackNavigator } from "@react-navigation/native-stack";
import React, { useState, useEffect } from "react";
import Home from "./screens/Home.js";
import Detail from "./screens/Detail.js";
import Edit from "./screens/Edit.js";
import AsyncStorage from "@react-native-async-storage/async-storage";
const Stack = createNativeStackNavigator();
const storeData = async (key, value) => {
try {
await AsyncStorage.setItem(key, JSON.stringify(value));
console.log("stored!");
} catch (e) {
console.log(e);
}
};
const logAllItems = async () => {
try {
const keys = await AsyncStorage.getAllKeys();
const items = await AsyncStorage.multiGet(keys);
console.log("All items:", items);
} catch (e) {
console.log(e);
}
};
// handling modal
const handleSave = async (
modalVisible,
setModalVisible,
navigation,
eventData,
setEventData
) => {
setModalVisible(true);
console.log(`save button is pressed. app.js ${modalVisible}`);
navigation.navigate("Edit", { modalVisible: true });
const eventObject = {
eventName: eventData.eventName,
eventDate: eventData.eventDate,
allDay: eventData.eventAllDay,
reminder: eventData.eventReminder,
reminderTime: eventData.eventReminderDate,
eventDesc: eventData.eventDescription,
};
const specialKey = Date.now().toString();
await storeData(specialKey, eventObject);
logAllItems();
// const savedEvent = await getData("key");
// setEventData(savedEvent);
// console.log("saved event" + JSON.stringify(savedEvent));
};
export default function App() {
const [modalVisible, setModalVisible] = useState(false);
const [eventData, setEventData] = useState({
eventName: "",
eventDate: new Date(),
eventAllDay: false,
eventReminder: false,
eventReminderDate: new Date(),
eventDescription: "",
});
useEffect(() => {
console.log(`App.js ${modalVisible}`);
}, [modalVisible]);
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Home">
<Stack.Screen
name="Home"
component={Home}
options={({ navigation }) => ({
title: "Events",
headerRight: () => (
<View style={styles.button}>
<Button
title="Add"
onPress={() => {
navigation.navigate("Edit");
}}
></Button>
</View>
),
})}
/>
<Stack.Screen
name="Detail"
component={Detail}
options={{ title: "Event Detail" }}
/>
<Stack.Screen
name="Edit"
component={Edit}
options={({ navigation }) => ({
title: "Create New Event",
headerRight: () => (
<View style={styles.button}>
<Button
title="Save"
onPress={() => {
handleSave(
modalVisible,
setModalVisible,
navigation,
eventData,
setEventData
);
}}
></Button>
</View>
),
})}
initialParams={{
setModalVisible: setModalVisible,
modalVisible: modalVisible,
eventData: eventData,
setEventData: setEventData,
}}
/>
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
},
button: {
marginRight: 20,
},
});