-
Notifications
You must be signed in to change notification settings - Fork 59
/
App.tsx
228 lines (191 loc) · 6.04 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
import 'react-native-gesture-handler';
import 'react-native-reanimated';
import '@src/plugins/dayjs';
import React, { useEffect, useMemo, useRef, useState } from 'react';
import { TamaguiProvider, Theme, useTheme } from 'tamagui';
import tguiConfig from './tamagui.config';
import Stack from '@components/Navigation/Stack';
import { enableFreeze, enableScreens } from 'react-native-screens';
import { useFonts } from 'expo-font';
import * as SplashScreen from 'expo-splash-screen';
import { enableMapSet } from 'immer';
import { LogBox } from 'react-native';
import { StatusBar } from 'expo-status-bar';
import { ErrorBoundary } from 'react-error-boundary';
import { writeToLog } from '@src/helpers';
import AppToast from '@components/Common/Toast/AppToast';
import { Drawer as RNDrawer } from 'react-native-drawer-layout';
import Drawer from '@components/Common/Drawer/Drawer';
import {
setDrawerOpen,
useAccent,
useAccountStore,
useAppUpgraded,
useCurrentAccount,
useDrawerOpen,
useIgnoreScreenHeight,
useIsAppLoading,
useSettingsStore,
} from '@src/state';
import {
DarkTheme,
NavigationContainer,
useNavigationContainerRef,
} from '@react-navigation/native';
import { resetState } from '@src/state/resetState';
import ErrorScreen from '@components/Error/ErrorScreen';
import LoadingOverlay from '@components/Common/Loading/LoadingOverlay';
import { ImageViewerProvider } from 'expo-image-viewer';
import ImageViewerFooter from '@components/Common/ImageViewer/ImageViewerFooter';
import {
useBackgroundChecks,
useManageRootBackgroundColor,
useNotificationsObserver,
useThemeSettings,
} from '@src/hooks';
if (__DEV__) {
require('./ReactotronConfig');
}
enableMapSet();
enableScreens();
void SplashScreen.preventAutoHideAsync();
LogBox.ignoreAllLogs(true);
export default function App(): React.JSX.Element | null {
enableFreeze(true);
const [loaded] = useFonts({
Inter: require('@tamagui/font-inter/otf/Inter-Medium.otf'),
InterBold: require('@tamagui/font-inter/otf/Inter-Bold.otf'),
InterLight: require('@tamagui/font-inter/otf/Inter-Light.otf'),
InterSemiBold: require('@tamagui/font-inter/otf/Inter-SemiBold.otf'),
});
useEffect(() => {
if (loaded) {
writeToLog('Memmy has been initialized.');
void SplashScreen.hideAsync();
}
}, [loaded]);
const themeSettings = useThemeSettings();
const upgraded = useAppUpgraded();
useBackgroundChecks();
const resetAccountStore = useAccountStore((state) => state.reset);
const resetSettingsStore = useSettingsStore((state) => state.reset);
if (!loaded || !themeSettings.initialized) return null;
// TODO Eventually remove this
if (upgraded == null || !upgraded) {
resetAccountStore();
resetSettingsStore();
useSettingsStore.setState((state) => {
state.upgraded = true;
});
}
return (
<TamaguiProvider config={tguiConfig}>
<ErrorBoundary
fallback={<ErrorScreen />}
onError={(e) => {
writeToLog(e.name);
writeToLog(e.message);
writeToLog(e.stack ?? 'No stack');
}}
>
{/* @ts-expect-error - valid */}
<Theme name={themeSettings.theme}>
<PartTwo />
</Theme>
</ErrorBoundary>
</TamaguiProvider>
);
}
const setClosed = (): void => {
setDrawerOpen(false);
};
const setOpen = (): void => {
setDrawerOpen(true);
};
function PartTwo(): React.JSX.Element {
// Drawer opening
const drawerOpen = useDrawerOpen();
// App wide loading modal
const isAppLoading = useIsAppLoading();
// Theme information
const theme = useTheme();
const accent = useAccent();
// Current account
const currentAccount = useCurrentAccount();
const ignoreScreenHeight = useIgnoreScreenHeight();
// Create the theme for the navigation container.
const navTheme = useMemo(
() => ({
...DarkTheme,
colors: {
...DarkTheme.colors,
primary: accent ?? theme.accent.val,
background: theme.bg.val,
card: theme.navBarBg.val,
text: theme.color.val,
border: theme.border.val,
},
}),
[theme],
);
// Create a ref for navigation
const navRef = useNavigationContainerRef();
// Handle notification redirects
useNotificationsObserver(navRef);
// Manage the background color
useManageRootBackgroundColor();
/* This is a little trick to completely reset our stack whenever we change accounts.
We don't want to have any remnant of leftover screens because the IDs for posts, profiles,
will be incorrect. We also will reset most of the stores here so we have a fresh, clean slate.
Ensuring that everything is clear *before* the switch, we will do a timeout of 300ms before we actually flip
the key
*/
const initialized = useRef(false);
const [key, setKey] = useState(1);
useEffect(() => {
if (!initialized.current) {
initialized.current = true;
return;
}
resetState();
setTimeout(() => {
setKey((prev) => (prev === 1 ? 0 : 1));
}, 300);
}, [currentAccount]);
return (
<>
{/* @ts-expect-error - This is a valid option */}
<StatusBar style={theme.statusBar.val} />
{/* A global loading overlay to use throughout the app */}
<LoadingOverlay visible={isAppLoading} />
<RNDrawer
open={drawerOpen}
onOpen={setOpen}
onClose={setClosed}
renderDrawerContent={() => <Drawer navigation={navRef} />}
drawerStyle={{
flex: 1,
backgroundColor: 'black',
width: '80%',
}}
swipeEnabled={false}
>
<ImageViewerProvider
options={{
showHeader: true,
showFooter: true,
swipeToDismiss: true,
preloadImages: false,
heightModifier: ignoreScreenHeight ? 0.9 : 0.6,
FooterComponent: () => <ImageViewerFooter />,
}}
>
<AppToast />
<NavigationContainer theme={navTheme} ref={navRef} key={key}>
<Stack />
</NavigationContainer>
</ImageViewerProvider>
</RNDrawer>
</>
);
}