mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-14 02:15:57 -04:00
195 lines
5.5 KiB
TypeScript
195 lines
5.5 KiB
TypeScript
import { DarkTheme, DefaultTheme, ThemeProvider } from '@react-navigation/native';
|
|
import { useFonts } from 'expo-font';
|
|
import { Stack, useRouter } from 'expo-router';
|
|
import * as SplashScreen from 'expo-splash-screen';
|
|
import { useEffect, useRef, useState } from 'react';
|
|
import { Linking, StyleSheet, Platform } from 'react-native';
|
|
import 'react-native-reanimated';
|
|
import 'react-native-get-random-values';
|
|
import { GestureHandlerRootView } from 'react-native-gesture-handler';
|
|
import { install } from 'react-native-quick-crypto';
|
|
|
|
import { useColors, useColorScheme } from '@/hooks/useColorScheme';
|
|
|
|
import SpaceMono from '@/assets/fonts/SpaceMono-Regular.ttf';
|
|
import LoadingIndicator from '@/components/LoadingIndicator';
|
|
import { ThemedView } from '@/components/themed/ThemedView';
|
|
import { AliasVaultToast } from '@/components/Toast';
|
|
import { AppProvider } from '@/context/AppContext';
|
|
import { AuthProvider } from '@/context/AuthContext';
|
|
import { ClipboardCountdownProvider } from '@/context/ClipboardCountdownContext';
|
|
import { DbProvider } from '@/context/DbContext';
|
|
import { DialogProvider } from '@/context/DialogContext';
|
|
import { NavigationProvider, useNavigation } from '@/context/NavigationContext';
|
|
import { WebApiProvider } from '@/context/WebApiContext';
|
|
import { initI18n } from '@/i18n';
|
|
|
|
SplashScreen.preventAutoHideAsync();
|
|
|
|
/**
|
|
* Root layout navigation.
|
|
*/
|
|
function RootLayoutNav() : React.ReactNode {
|
|
const colorScheme = useColorScheme();
|
|
const colors = useColors();
|
|
const router = useRouter();
|
|
const navigation = useNavigation();
|
|
|
|
const [bootComplete, setBootComplete] = useState(false);
|
|
const hasBooted = useRef(false);
|
|
|
|
useEffect(() => {
|
|
/**
|
|
* Initialize the app by redirecting to the initialize page.
|
|
*/
|
|
const initializeApp = async () : Promise<void> => {
|
|
if (hasBooted.current) {
|
|
return;
|
|
}
|
|
|
|
// Install the react-native-quick-crypto library which is used by the EncryptionUtility
|
|
install();
|
|
|
|
// Initialize i18n and wait for it to be ready
|
|
await initI18n();
|
|
|
|
hasBooted.current = true;
|
|
|
|
// Check if we have a pending deep link and pass it to initialize
|
|
const initialUrl = await Linking.getInitialURL();
|
|
if (initialUrl) {
|
|
const path = initialUrl
|
|
.replace('net.aliasvault.app://', '')
|
|
.replace('aliasvault://', '')
|
|
.replace('exp+aliasvault://', '');
|
|
|
|
navigation.setReturnUrl({ path });
|
|
}
|
|
|
|
setBootComplete(true);
|
|
};
|
|
|
|
initializeApp();
|
|
}, [navigation, router]);
|
|
|
|
useEffect(() => {
|
|
/**
|
|
* Redirect to a explicit target page if we have one (in case of non-happy path).
|
|
*/
|
|
const redirect = async () : Promise<void> => {
|
|
if (!bootComplete) {
|
|
return;
|
|
}
|
|
|
|
router.replace('/initialize');
|
|
};
|
|
|
|
redirect();
|
|
}, [bootComplete, router]);
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
alignItems: 'center',
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
},
|
|
});
|
|
|
|
if (!bootComplete) {
|
|
return (
|
|
<ThemedView style={styles.container}>
|
|
{/* Loading state while booting */}
|
|
<LoadingIndicator />
|
|
</ThemedView>
|
|
);
|
|
}
|
|
|
|
const customDefaultTheme = {
|
|
...DefaultTheme,
|
|
colors: {
|
|
...DefaultTheme.colors,
|
|
primary: colors.primary,
|
|
background: colors.background,
|
|
},
|
|
};
|
|
|
|
const customDarkTheme = {
|
|
...DarkTheme,
|
|
colors: {
|
|
...DarkTheme.colors,
|
|
primary: colors.primary,
|
|
background: colors.background,
|
|
},
|
|
};
|
|
|
|
return (
|
|
<ThemeProvider value={colorScheme === 'dark' ? customDarkTheme : customDefaultTheme}>
|
|
<Stack
|
|
screenOptions={{
|
|
headerShown: true,
|
|
animation: 'none',
|
|
headerTransparent: Platform.OS === 'ios',
|
|
headerStyle: {
|
|
backgroundColor: colors.accentBackground,
|
|
},
|
|
headerTintColor: colors.primary,
|
|
headerTitleStyle: {
|
|
color: colors.text,
|
|
},
|
|
}}
|
|
>
|
|
<Stack.Screen name="index" options={{ headerShown: false }} />
|
|
<Stack.Screen name="initialize" options={{ headerShown: false }} />
|
|
<Stack.Screen name="login" options={{ headerShown: false }} />
|
|
<Stack.Screen name="login-settings" />
|
|
<Stack.Screen name="reinitialize" options={{ headerShown: false }} />
|
|
<Stack.Screen name="unlock" options={{ headerShown: false }} />
|
|
<Stack.Screen name="upgrade" options={{ headerShown: false }} />
|
|
<Stack.Screen name="vault-error" options={{ headerShown: false }} />
|
|
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
|
|
<Stack.Screen name="+not-found" />
|
|
</Stack>
|
|
<AliasVaultToast />
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Root layout.
|
|
*/
|
|
export default function RootLayout() : React.ReactNode {
|
|
const [loaded] = useFonts({
|
|
SpaceMono: SpaceMono,
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (loaded) {
|
|
SplashScreen.hideAsync();
|
|
}
|
|
}, [loaded]);
|
|
|
|
if (!loaded) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<NavigationProvider>
|
|
<DbProvider>
|
|
<AuthProvider>
|
|
<WebApiProvider>
|
|
<AppProvider>
|
|
<ClipboardCountdownProvider>
|
|
<DialogProvider>
|
|
<GestureHandlerRootView>
|
|
<RootLayoutNav />
|
|
</GestureHandlerRootView>
|
|
</DialogProvider>
|
|
</ClipboardCountdownProvider>
|
|
</AppProvider>
|
|
</WebApiProvider>
|
|
</AuthProvider>
|
|
</DbProvider>
|
|
</NavigationProvider>
|
|
);
|
|
}
|