2022-08-18 23:25:39 +00:00
|
|
|
import React, { useContext, useEffect, useLayoutEffect, useState } from 'react';
|
2020-06-26 20:22:56 +00:00
|
|
|
import { Dimensions } from 'react-native';
|
2020-06-15 14:00:46 +00:00
|
|
|
import { NavigationContainer } from '@react-navigation/native';
|
|
|
|
import { createStackNavigator } from '@react-navigation/stack';
|
2019-07-18 17:44:02 +00:00
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
|
2022-08-18 23:25:39 +00:00
|
|
|
import { getTheme, setNativeTheme, initialTheme as initialThemeFunction, unsubscribeTheme } from './lib/methods/helpers/theme';
|
2022-04-07 13:13:19 +00:00
|
|
|
import UserPreferences from './lib/methods/userPreferences';
|
2022-04-07 13:22:19 +00:00
|
|
|
import Navigation from './lib/navigation/shareNavigation';
|
2022-04-07 14:19:54 +00:00
|
|
|
import store from './lib/store';
|
|
|
|
import { initStore } from './lib/store/auxStore';
|
2022-04-28 20:37:25 +00:00
|
|
|
import { closeShareExtension, shareExtensionInit } from './lib/methods/shareExtension';
|
2022-06-06 14:17:51 +00:00
|
|
|
import { defaultHeader, getActiveRouteName, navigationTheme, themedHeader } from './lib/methods/helpers/navigation';
|
2022-08-18 23:25:39 +00:00
|
|
|
import { ThemeContext } from './theme';
|
2022-06-06 14:17:51 +00:00
|
|
|
import { localAuthenticate } from './lib/methods/helpers/localAuthentication';
|
2020-05-08 17:04:37 +00:00
|
|
|
import ScreenLockedView from './views/ScreenLockedView';
|
2020-06-15 14:00:46 +00:00
|
|
|
// Outside Stack
|
|
|
|
import WithoutServersView from './views/WithoutServersView';
|
|
|
|
// Inside Stack
|
|
|
|
import ShareListView from './views/ShareListView';
|
|
|
|
import ShareView from './views/ShareView';
|
|
|
|
import SelectServerView from './views/SelectServerView';
|
2022-06-06 14:17:51 +00:00
|
|
|
import { setCurrentScreen } from './lib/methods/helpers/log';
|
2020-06-15 14:00:46 +00:00
|
|
|
import AuthLoadingView from './views/AuthLoadingView';
|
2020-06-26 20:22:56 +00:00
|
|
|
import { DimensionsContext } from './dimensions';
|
2022-01-17 16:10:39 +00:00
|
|
|
import { ShareInsideStackParamList, ShareOutsideStackParamList, ShareAppStackParamList } from './definitions/navigationTypes';
|
2022-04-28 20:37:25 +00:00
|
|
|
import { colors, CURRENT_SERVER } from './lib/constants';
|
2020-06-15 14:00:46 +00:00
|
|
|
|
2022-02-09 21:16:20 +00:00
|
|
|
initStore(store);
|
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
const Inside = createStackNavigator<ShareInsideStackParamList>();
|
2020-06-15 14:00:46 +00:00
|
|
|
const InsideStack = () => {
|
|
|
|
const { theme } = useContext(ThemeContext);
|
|
|
|
|
|
|
|
const screenOptions = {
|
|
|
|
...defaultHeader,
|
|
|
|
...themedHeader(theme)
|
|
|
|
};
|
2021-09-13 20:41:05 +00:00
|
|
|
screenOptions.headerStyle = { ...screenOptions.headerStyle, height: 57 };
|
2020-06-15 14:00:46 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Inside.Navigator screenOptions={screenOptions}>
|
2021-09-13 20:41:05 +00:00
|
|
|
<Inside.Screen name='ShareListView' component={ShareListView} />
|
|
|
|
<Inside.Screen name='ShareView' component={ShareView} />
|
2022-08-18 22:09:25 +00:00
|
|
|
<Inside.Screen name='SelectServerView' component={SelectServerView} />
|
2020-06-15 14:00:46 +00:00
|
|
|
</Inside.Navigator>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
const Outside = createStackNavigator<ShareOutsideStackParamList>();
|
2020-06-15 14:00:46 +00:00
|
|
|
const OutsideStack = () => {
|
|
|
|
const { theme } = useContext(ThemeContext);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Outside.Navigator screenOptions={{ ...defaultHeader, ...themedHeader(theme) }}>
|
2022-08-11 14:41:18 +00:00
|
|
|
<Outside.Screen name='WithoutServersView' component={WithoutServersView} />
|
2020-06-15 14:00:46 +00:00
|
|
|
</Outside.Navigator>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
// App
|
2021-12-03 19:27:57 +00:00
|
|
|
const Stack = createStackNavigator<ShareAppStackParamList>();
|
2022-08-18 23:25:39 +00:00
|
|
|
export const App = ({ root }: { root: string }): React.ReactElement => (
|
2020-06-26 20:22:56 +00:00
|
|
|
<Stack.Navigator screenOptions={{ headerShown: false, animationEnabled: false }}>
|
2020-06-15 14:00:46 +00:00
|
|
|
<>
|
2021-09-13 20:41:05 +00:00
|
|
|
{!root ? <Stack.Screen name='AuthLoading' component={AuthLoadingView} /> : null}
|
|
|
|
{root === 'outside' ? <Stack.Screen name='OutsideStack' component={OutsideStack} /> : null}
|
|
|
|
{root === 'inside' ? <Stack.Screen name='InsideStack' component={InsideStack} /> : null}
|
2020-06-15 14:00:46 +00:00
|
|
|
</>
|
|
|
|
</Stack.Navigator>
|
|
|
|
);
|
|
|
|
|
2022-08-18 23:25:39 +00:00
|
|
|
const { width, height, scale, fontScale } = Dimensions.get('screen');
|
|
|
|
const initialTheme = initialThemeFunction();
|
|
|
|
const theme = getTheme(initialTheme);
|
2019-07-29 16:33:28 +00:00
|
|
|
|
2022-08-18 23:25:39 +00:00
|
|
|
const Root = (): React.ReactElement => {
|
|
|
|
const [root, setRoot] = useState('');
|
|
|
|
const navTheme = navigationTheme(theme);
|
2022-05-27 17:11:26 +00:00
|
|
|
|
2022-08-18 23:25:39 +00:00
|
|
|
useLayoutEffect(() => {
|
|
|
|
setNativeTheme(initialTheme);
|
|
|
|
}, []);
|
2019-12-04 16:39:53 +00:00
|
|
|
|
2022-08-18 23:25:39 +00:00
|
|
|
useEffect(() => {
|
|
|
|
const authenticateShare = async (currentServer: string) => {
|
2020-05-08 17:04:37 +00:00
|
|
|
await localAuthenticate(currentServer);
|
2022-08-18 23:25:39 +00:00
|
|
|
setRoot('inside');
|
2022-03-16 20:40:32 +00:00
|
|
|
await shareExtensionInit(currentServer);
|
2022-08-18 23:25:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const currentServer = UserPreferences.getString(CURRENT_SERVER);
|
|
|
|
if (currentServer) {
|
|
|
|
authenticateShare(currentServer);
|
2022-05-27 17:11:26 +00:00
|
|
|
} else {
|
2022-08-18 23:25:39 +00:00
|
|
|
setRoot('outside');
|
2019-07-29 16:33:28 +00:00
|
|
|
}
|
2020-06-15 14:00:46 +00:00
|
|
|
|
2020-07-02 17:10:11 +00:00
|
|
|
const state = Navigation.navigationRef.current?.getRootState();
|
2020-06-15 14:00:46 +00:00
|
|
|
const currentRouteName = getActiveRouteName(state);
|
|
|
|
Navigation.routeNameRef.current = currentRouteName;
|
|
|
|
setCurrentScreen(currentRouteName);
|
2019-12-04 16:39:53 +00:00
|
|
|
|
2022-08-18 23:25:39 +00:00
|
|
|
return () => {
|
|
|
|
closeShareExtension();
|
|
|
|
unsubscribeTheme();
|
|
|
|
};
|
|
|
|
}, []);
|
2020-06-26 20:22:56 +00:00
|
|
|
|
2022-08-18 23:25:39 +00:00
|
|
|
return (
|
|
|
|
<Provider store={store}>
|
|
|
|
<ThemeContext.Provider value={{ theme, colors: colors[theme] }}>
|
|
|
|
<DimensionsContext.Provider
|
|
|
|
value={{
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
scale,
|
|
|
|
fontScale
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<NavigationContainer
|
|
|
|
theme={navTheme}
|
|
|
|
ref={Navigation.navigationRef}
|
|
|
|
onStateChange={state => {
|
|
|
|
const previousRouteName = Navigation.routeNameRef.current;
|
|
|
|
const currentRouteName = getActiveRouteName(state);
|
|
|
|
if (previousRouteName !== currentRouteName) {
|
|
|
|
setCurrentScreen(currentRouteName);
|
|
|
|
}
|
|
|
|
Navigation.routeNameRef.current = currentRouteName;
|
2022-08-08 21:02:08 +00:00
|
|
|
}}
|
|
|
|
>
|
2022-08-18 23:25:39 +00:00
|
|
|
<App root={root} />
|
|
|
|
</NavigationContainer>
|
|
|
|
<ScreenLockedView />
|
|
|
|
</DimensionsContext.Provider>
|
|
|
|
</ThemeContext.Provider>
|
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
};
|
2019-07-18 17:44:02 +00:00
|
|
|
|
|
|
|
export default Root;
|