-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
71 lines (61 loc) · 1.87 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
import { StatusBar } from 'expo-status-bar';
import React, { useEffect, useState } from 'react';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import AsyncStorage from "@react-native-async-storage/async-storage";
import useCachedResources from './hooks/useCachedResources';
import useColorScheme from './hooks/useColorScheme';
import Navigation from './navigation';
import { FavoritesContext } from './contexts';
export default function App() {
const isLoadingComplete = useCachedResources();
const colorScheme = useColorScheme();
const [favorites, setFavorites] = useState<string[]>([]);
function addFavorite(pokemon: string) {
if (favorites) {
if (!favorites.includes(pokemon)) {
setFavorites([...favorites, pokemon]);
}
}
}
function removeFavorite(pokemon: string) {
if (favorites) {
if (favorites.includes(pokemon)) {
setFavorites(favorites.filter(p => p !== pokemon));
}
}
}
const value = { favorites, addFavorite, removeFavorite };
async function getData() {
try {
const pokemonsInStorage = await AsyncStorage.getItem('@index');
return pokemonsInStorage !== null ? JSON.parse(pokemonsInStorage) : null;
} catch (e) {
alert('Failed to load favorites');
}
}
async function storeData(pokemons: string[]) {
try {
await AsyncStorage.setItem('@index', JSON.stringify(pokemons));
} catch (e) {
alert('Saving error');
}
}
useEffect(() => {
getData().then(p => setFavorites(p));
}, []);
useEffect(() => {
storeData(favorites);
}, [favorites]);
if (!isLoadingComplete) {
return null;
} else {
return (
<FavoritesContext.Provider value={value}>
<SafeAreaProvider>
<Navigation colorScheme={colorScheme} />
<StatusBar />
</SafeAreaProvider>
</FavoritesContext.Provider>
);
}
}