-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
391 lines (371 loc) · 11.6 KB
/
App.tsx
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
import React, { useState, useEffect, useCallback, useRef } from "react";
import { StyleSheet, Text, View, Button } from "react-native";
import SpellListsScreen from "./screens/SpellListsScreen";
import { SpellList } from "./structs/SpellList";
import SpellSourcesScreen from "./screens/SpellSourcesScreen";
import SpellsKnownScreen from "./screens/SpellsKnownScreen";
import SpellInfoScreen from "./screens/SpellInfoScreen";
import SpellListScreen from "./screens/SpellListScreen";
import { NavigationContainer, TabActions } from "@react-navigation/native";
import { createBottomTabNavigator } from "@react-navigation/bottom-tabs";
import { AppStyles } from "./styles/AppStyles";
import SpellProvider from "./data/SpellProvider";
import { createStackNavigator } from "@react-navigation/stack";
import Toast from "react-native-root-toast";
import SpellListAddScreen from "./screens/SpellListAddScreen";
import { SpellID } from "./structs/SpellID";
import SpellListProvider from "./data/SpellListProvider";
import SpellListEditScreen from "./screens/SpellListEditScreen";
import FloatingTabBar from "./components/FloatingTabBar";
import MdIcon from "react-native-vector-icons/MaterialIcons";
import McIcon from "react-native-vector-icons/MaterialCommunityIcons";
import { StyleProvider } from "./data/StyleProvider";
import Modal from "react-native-modal";
import AddSpellToListModal from "./components/AddSpellToListModal";
const Tab = createBottomTabNavigator();
const Stack = createStackNavigator();
const config = {
animation: "spring",
config: {
stiffness: 1000,
damping: 500,
mass: 3,
overshootClamping: true,
restDisplacementThreshold: 0.01,
restSpeedThreshold: 0.01
}
};
export default function App() {
const [spellLists, setSpellLists] = useState<Array<SpellList>>([]);
const [spellSources, setSpellSources] = useState([]);
const [spellsLoading, setSpellsLoading] = useState(false);
const [addToListModalVisible, setAddToListModalVisible] = useState(false);
const lastShownSpellID = useRef("");
// useEffect(() => {
// SpellProvider.getSpellIDs().then(ids =>
// Promise.all(ids.map(id => SpellProvider.getSpellByID(id)))
// );
// }, []);
const updateSourceURLs = () =>
SpellProvider.getSourceURLs().then(urls => setSpellSources(urls));
useEffect(() => {
let cancelled = false;
updateSourceURLs();
SpellProvider.updateSpellDataFromStorage();
const updateSpellLists = async () => {
await SpellListProvider.observeSpellLists((lists: Array<SpellList>) => {
if (!cancelled) setSpellLists(lists);
});
};
updateSpellLists();
return () => {
cancelled = true;
SpellListProvider.unObserveSpellLists(updateSpellLists);
};
}, []);
const SourcesScreen = useCallback(
() => (
<SpellSourcesScreen
spellSources={spellSources}
onSpellSourcesReloaded={() => {
setSpellsLoading(true);
SpellProvider.downloadSpellsFromSources()
.then(() => {
updateSourceURLs();
setSpellsLoading(false);
})
.catch(e => {
console.log(e);
setSpellsLoading(false);
Toast.show("Failed to download spell data");
});
}}
onSpellSourceAdded={sourceURL =>
!spellsLoading &&
SpellProvider.addSource(sourceURL).then(updateSourceURLs)
}
onSpellSourceRemoved={sourceURL =>
!spellsLoading &&
SpellProvider.removeSource(sourceURL).then(updateSourceURLs)
}
isLoading={spellsLoading}
loadingButtonComponent={
<Text
style={[
AppStyles.smallHeaderSubtext,
spellsLoading && styles.spellLoadingButton
]}
>
Downloading...
</Text>
}
/>
),
[spellSources, spellsLoading, setSpellsLoading, updateSourceURLs]
);
const ListsScreen = useCallback(
({ navigation }) => (
<SpellListsScreen
spellLists={spellLists}
onAddListPressed={() => navigation.push("SpellListAddScreen")}
onListPressed={list => {
navigation.push("SpellListScreen", { list });
}}
onListEditPressed={list => {
navigation.push("ModifySpellListScreen", { list });
}}
/>
),
[spellLists]
);
const KnownScreen = useCallback(
({ navigation }) => (
<SpellsKnownScreen
onSpellPressed={spellID =>
navigation.push("SpellPopupScreen", { spellID })
}
/>
),
[]
);
const TabBar = ({ state, descriptors, navigation }) => {
return (
<FloatingTabBar
navigationState={state}
navigationDescriptors={descriptors}
navigation={navigation}
getIconForRouteName={(routeName, active) => {
switch (routeName) {
case "Sources":
return (
<McIcon
name={"file-download"}
size={30}
color={
active
? StyleProvider.styles.navbarItemFocussed.color
: StyleProvider.styles.navbarItemUnfoccused.color
}
/>
);
case "SpellLists":
return (
<MdIcon
name={"book"}
size={30}
color={
active
? StyleProvider.styles.navbarItemFocussed.color
: StyleProvider.styles.navbarItemUnfoccused.color
}
/>
);
case "Search":
return (
<McIcon
name={"file-search"}
size={30}
color={
active
? StyleProvider.styles.navbarItemFocussed.color
: StyleProvider.styles.navbarItemUnfoccused.color
}
/>
);
}
}}
></FloatingTabBar>
);
};
const MainAppScreen = () => (
<>
<Tab.Navigator tabBar={TabBar} initialRouteName={"Sources"}>
<Tab.Screen name="Sources">{SourcesScreen}</Tab.Screen>
<Tab.Screen name="SpellLists">{ListsScreen}</Tab.Screen>
<Tab.Screen name="Search">{KnownScreen}</Tab.Screen>
</Tab.Navigator>
<Modal
isVisible={addToListModalVisible}
onBackButtonPress={() => setAddToListModalVisible(false)}
useNativeDriver={true}
animationIn={"slideInUp"}
animationOut={"slideOutDown"}
style={{ flex: 1, justifyContent: "flex-end" }}
>
<AddSpellToListModal
spellID={new SpellID(lastShownSpellID.current)}
lists={spellLists}
onBackPressed={() => setAddToListModalVisible(false)}
onSpellListPressed={async (spellID, spellList) => {
setAddToListModalVisible(false);
try {
await SpellListProvider.addSpellIDToList(spellList, spellID);
Toast.show("Added spell to list", {
duration: Toast.durations.LONG
});
} catch (e) {
Toast.show("This spell is already on that list", {
duration: Toast.durations.LONG
});
}
}}
/>
</Modal>
</>
);
const SpellPopupScreen = useCallback(
({ route, navigation }) => (
<SpellInfoScreen
spellID={route.params.spellID}
extraButtons={[
{
text: "Add to list",
iconName: "add",
onPress: () => {
lastShownSpellID.current = route.params.spellID.id;
setAddToListModalVisible(true);
}
},
{
text: "Go back",
iconName: "keyboard-backspace",
onPress: () => navigation.goBack()
}
]}
/>
),
[]
);
const SpellListSpellPopupScreen = useCallback(
({ route, navigation }) => (
<SpellInfoScreen
spellID={route.params.spellID}
extraButtons={[
{
text: "Go back",
iconName: "keyboard-backspace",
onPress: () => navigation.goBack()
}
]}
/>
),
[]
);
const AddSpellListPopupScreen = useCallback(
({ route, navigation }) => (
<SpellListAddScreen
onDone={newList => {
// submit new list to lists
navigation.goBack();
SpellListProvider.addSpellList(newList);
}}
onCancel={() => navigation.goBack()}
/>
),
[]
);
const ModifySpellListScreen = useCallback(
({ route, navigation }) => (
<SpellListAddScreen
existingList={route.params.list}
onDone={async newList => {
// submit new list to lists
await SpellListProvider.removeSpellList(route.params.list, false);
await SpellListProvider.addSpellList(newList);
navigation.goBack();
}}
onDelete={() => {
SpellListProvider.removeSpellList(route.params.list, true);
navigation.goBack();
}}
onCancel={() => {
navigation.goBack();
}}
/>
),
[]
);
const SingleSpellListScreen = useCallback(
({ route, navigation }) => (
<SpellListScreen
list={route.params.list}
onSpellPressed={(spellID: SpellID) => {
navigation.push("SpellListSpellPopupScreen", {
spellID,
spellList: route.params.list
});
}}
onEditMode={() =>
navigation.push("EditSpellSelectionScreen", {
list: route.params.list
})
}
/>
),
[]
);
const EditSpellSelectionScreen = useCallback(
({ route, navigation }) => {
return (
<SpellListEditScreen
list={route.params.list}
onAddDivider={() => Toast.show("Not implemented yet :)")}
onConfirmed={async newList => {
await SpellListProvider.removeSpellList(route.params.list, false);
await SpellListProvider.addSpellList(newList);
navigation.goBack();
}}
onSpellRemoved={spellID =>
SpellListProvider.removeSpellIDFromList(route.params.list, spellID)
}
onSpellReordered={() => Toast.show("Not implemented yet :)")}
/>
);
},
[spellLists]
);
return (
<NavigationContainer>
<Stack.Navigator headerMode="none" initialRouteName="MainApp">
<Stack.Screen name="MainAppScreen">{MainAppScreen}</Stack.Screen>
<Stack.Screen name="SpellPopupScreen">{SpellPopupScreen}</Stack.Screen>
<Stack.Screen name="SpellListAddScreen">
{AddSpellListPopupScreen}
</Stack.Screen>
<Stack.Screen name="SpellListScreen">
{SingleSpellListScreen}
</Stack.Screen>
<Stack.Screen name="ModifySpellListScreen">
{ModifySpellListScreen}
</Stack.Screen>
<Stack.Screen name="EditSpellSelectionScreen">
{EditSpellSelectionScreen}
</Stack.Screen>
<Stack.Screen name="SpellListSpellPopupScreen">
{SpellListSpellPopupScreen}
</Stack.Screen>
</Stack.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
tabBar: {
borderWidth: 0,
backgroundColor: AppStyles.boxBackground.backgroundColor
},
tabBarText: {
fontSize: 18
},
tabBarTextHighlight: {
color: "white"
},
spellLoadingButton: {
color: "#a0a0a0"
},
overlayButtonTopMargin: {
marginTop: 10
},
overlayButtonFullMargin: {
marginVertical: 10
}
});