2019-12-12 21:22:47 +00:00
|
|
|
/**
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
2020-12-30 19:22:46 +00:00
|
|
|
import React, { useContext, useEffect, useState } from 'react';
|
2020-08-18 05:34:21 +00:00
|
|
|
import { AsyncStorage } from 'react-native';
|
2021-02-01 17:15:16 +00:00
|
|
|
import { AppearanceProvider, useColorScheme } from 'react-native-appearance';
|
2020-12-30 19:22:46 +00:00
|
|
|
import { ThemeContext, ThemeProvider } from 'react-native-elements';
|
2020-06-19 21:51:13 +00:00
|
|
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
2020-06-24 21:01:48 +00:00
|
|
|
import { observer } from 'mobx-react';
|
2020-06-30 15:27:02 +00:00
|
|
|
import { AsyncTrunk } from 'mobx-sync';
|
2020-04-03 16:57:51 +00:00
|
|
|
import { AppLoading } from 'expo';
|
2019-08-19 06:47:46 +00:00
|
|
|
import { Asset } from 'expo-asset';
|
|
|
|
import * as Font from 'expo-font';
|
2020-04-03 16:57:51 +00:00
|
|
|
import * as ScreenOrientation from 'expo-screen-orientation';
|
2020-07-16 14:07:08 +00:00
|
|
|
import { StatusBar } from 'expo-status-bar';
|
2019-08-19 06:47:46 +00:00
|
|
|
import { Ionicons } from '@expo/vector-icons';
|
2019-08-29 04:38:29 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2019-08-19 06:47:46 +00:00
|
|
|
|
2021-02-01 17:15:16 +00:00
|
|
|
import ThemeSwitcher from './components/ThemeSwitcher';
|
2020-06-24 21:01:48 +00:00
|
|
|
import { useStores } from './hooks/useStores';
|
2019-08-19 06:47:46 +00:00
|
|
|
import AppNavigator from './navigation/AppNavigator';
|
2021-01-06 19:27:10 +00:00
|
|
|
import StaticScriptLoader from './utils/StaticScriptlLoader';
|
2019-08-19 06:47:46 +00:00
|
|
|
|
2020-07-13 16:30:38 +00:00
|
|
|
// Import i18n configuration
|
|
|
|
import './i18n';
|
|
|
|
|
2020-06-24 21:01:48 +00:00
|
|
|
const App = observer(({ skipLoadingScreen }) => {
|
2020-07-22 03:37:43 +00:00
|
|
|
const [isSplashReady, setIsSplashReady] = useState(false);
|
|
|
|
const { rootStore } = useStores();
|
2020-12-30 19:22:46 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
2020-07-22 03:37:43 +00:00
|
|
|
|
2021-02-01 17:15:16 +00:00
|
|
|
rootStore.settingStore.systemThemeId = useColorScheme();
|
|
|
|
|
2020-07-22 03:37:43 +00:00
|
|
|
const trunk = new AsyncTrunk(rootStore, {
|
|
|
|
storage: AsyncStorage
|
|
|
|
});
|
|
|
|
|
|
|
|
const hydrateStores = async () => {
|
2020-12-07 22:22:27 +00:00
|
|
|
await trunk.init();
|
2020-07-22 03:37:43 +00:00
|
|
|
|
|
|
|
rootStore.storeLoaded = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
// Hydrate mobx data stores
|
|
|
|
hydrateStores();
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
useEffect(() => {
|
2020-08-18 05:24:35 +00:00
|
|
|
console.info('rotation lock setting changed!', rootStore.settingStore.isRotationLockEnabled);
|
|
|
|
if (rootStore.settingStore.isRotationLockEnabled) {
|
2020-07-22 03:37:43 +00:00
|
|
|
ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.PORTRAIT_UP);
|
|
|
|
} else {
|
|
|
|
ScreenOrientation.unlockAsync();
|
|
|
|
}
|
2020-08-18 05:24:35 +00:00
|
|
|
}, [rootStore.settingStore.isRotationLockEnabled]);
|
2020-07-22 03:37:43 +00:00
|
|
|
|
2020-07-22 18:56:33 +00:00
|
|
|
const updateScreenOrientation = async () => {
|
2020-08-18 05:24:35 +00:00
|
|
|
if (rootStore.settingStore.isRotationLockEnabled) {
|
2020-07-22 18:56:33 +00:00
|
|
|
if (rootStore.isFullscreen) {
|
|
|
|
// Lock to landscape orientation
|
|
|
|
// For some reason video apps on iPhone use LANDSCAPE_RIGHT ¯\_(ツ)_/¯
|
|
|
|
await ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.LANDSCAPE_RIGHT);
|
|
|
|
// Allow either landscape orientation after forcing initial rotation
|
|
|
|
ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.LANDSCAPE);
|
|
|
|
} else {
|
|
|
|
// Restore portrait orientation lock
|
|
|
|
ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.PORTRAIT_UP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
// Update the screen orientation
|
|
|
|
updateScreenOrientation();
|
|
|
|
}, [rootStore.isFullscreen]);
|
|
|
|
|
2020-07-22 03:37:43 +00:00
|
|
|
const loadImagesAsync = () => {
|
|
|
|
const images = [
|
|
|
|
require('./assets/images/splash.png'),
|
|
|
|
require('./assets/images/logowhite.png')
|
|
|
|
];
|
|
|
|
return images.map(image => Asset.fromModule(image).downloadAsync());
|
|
|
|
};
|
|
|
|
|
|
|
|
const loadResourcesAsync = async () => {
|
|
|
|
return Promise.all([
|
|
|
|
Font.loadAsync({
|
|
|
|
// This is the font that we are using for our tab bar
|
|
|
|
...Ionicons.font
|
|
|
|
}),
|
2020-12-28 21:28:29 +00:00
|
|
|
...loadImagesAsync(),
|
2021-01-06 19:27:10 +00:00
|
|
|
StaticScriptLoader.load()
|
2020-07-22 03:37:43 +00:00
|
|
|
]);
|
|
|
|
};
|
|
|
|
|
2020-08-13 16:31:18 +00:00
|
|
|
if (!(isSplashReady && rootStore.storeLoaded) && !skipLoadingScreen) {
|
2020-07-22 03:37:43 +00:00
|
|
|
return (
|
|
|
|
<AppLoading
|
|
|
|
startAsync={loadResourcesAsync}
|
|
|
|
onError={console.warn}
|
|
|
|
onFinish={() => setIsSplashReady(true)}
|
|
|
|
autoHideSplash={false}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2021-02-01 17:15:16 +00:00
|
|
|
<AppearanceProvider>
|
|
|
|
<SafeAreaProvider>
|
|
|
|
<ThemeProvider theme={rootStore.settingStore.theme.Elements}>
|
|
|
|
<ThemeSwitcher />
|
|
|
|
<StatusBar
|
|
|
|
style='light'
|
|
|
|
backgroundColor={theme.colors.grey0}
|
|
|
|
hidden={rootStore.isFullscreen}
|
|
|
|
/>
|
|
|
|
<AppNavigator />
|
|
|
|
</ThemeProvider>
|
|
|
|
</SafeAreaProvider>
|
|
|
|
</AppearanceProvider>
|
2020-07-22 03:37:43 +00:00
|
|
|
);
|
2020-06-24 21:01:48 +00:00
|
|
|
});
|
2020-06-19 18:40:17 +00:00
|
|
|
|
|
|
|
App.propTypes = {
|
2020-07-22 03:37:43 +00:00
|
|
|
skipLoadingScreen: PropTypes.bool
|
2020-06-19 18:40:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|