2019-06-29 13:37:21 +02:00
|
|
|
// @flow
|
|
|
|
|
2019-08-06 13:28:11 +02:00
|
|
|
import * as React from 'react';
|
2020-08-01 20:59:59 +02:00
|
|
|
import {LogBox, Platform, SafeAreaView, View} from 'react-native';
|
|
|
|
import {NavigationContainer} from '@react-navigation/native';
|
|
|
|
import {Provider as PaperProvider} from 'react-native-paper';
|
|
|
|
import {setSafeBounceHeight} from 'react-navigation-collapsible';
|
|
|
|
import SplashScreen from 'react-native-splash-screen';
|
|
|
|
import {OverflowMenuProvider} from 'react-navigation-header-buttons';
|
2020-04-05 23:56:43 +02:00
|
|
|
import LocaleManager from './src/managers/LocaleManager';
|
2020-08-01 20:59:59 +02:00
|
|
|
import AsyncStorageManager from './src/managers/AsyncStorageManager';
|
|
|
|
import CustomIntroSlider from './src/components/Overrides/CustomIntroSlider';
|
2020-08-05 20:58:28 +02:00
|
|
|
import type {CustomThemeType} from './src/managers/ThemeManager';
|
2020-04-05 23:56:43 +02:00
|
|
|
import ThemeManager from './src/managers/ThemeManager';
|
2020-04-22 18:36:57 +02:00
|
|
|
import MainNavigator from './src/navigation/MainNavigator';
|
2020-08-01 20:59:59 +02:00
|
|
|
import AprilFoolsManager from './src/managers/AprilFoolsManager';
|
|
|
|
import Update from './src/constants/Update';
|
|
|
|
import ConnectionManager from './src/managers/ConnectionManager';
|
|
|
|
import type {ParsedUrlDataType} from './src/utils/URLHandler';
|
|
|
|
import URLHandler from './src/utils/URLHandler';
|
|
|
|
import {setupStatusBar} from './src/utils/Utils';
|
2020-04-20 19:27:23 +02:00
|
|
|
|
|
|
|
// Native optimizations https://reactnavigation.org/docs/react-native-screens
|
2020-05-02 22:46:44 +02:00
|
|
|
// Crashes app when navigating away from webview on android 9+
|
|
|
|
// enableScreens(true);
|
2020-04-20 19:27:23 +02:00
|
|
|
|
2020-08-01 20:59:59 +02:00
|
|
|
LogBox.ignoreLogs([
|
|
|
|
// collapsible headers cause this warning, just ignore as it is not an issue
|
|
|
|
'Non-serializable values were found in the navigation state',
|
|
|
|
'Cannot update a component from inside the function body of a different component',
|
2020-04-17 21:14:39 +02:00
|
|
|
]);
|
|
|
|
|
2020-08-01 20:59:59 +02:00
|
|
|
type StateType = {
|
|
|
|
isLoading: boolean,
|
|
|
|
showIntro: boolean,
|
|
|
|
showUpdate: boolean,
|
|
|
|
showAprilFools: boolean,
|
2020-08-05 20:58:28 +02:00
|
|
|
currentTheme: CustomThemeType | null,
|
2019-06-29 13:37:21 +02:00
|
|
|
};
|
|
|
|
|
2020-08-01 20:59:59 +02:00
|
|
|
export default class App extends React.Component<null, StateType> {
|
|
|
|
navigatorRef: {current: null | NavigationContainer};
|
2020-04-08 00:47:38 +02:00
|
|
|
|
2020-08-01 20:59:59 +02:00
|
|
|
defaultHomeRoute: string | null;
|
2020-04-08 12:10:06 +02:00
|
|
|
|
2020-08-01 20:59:59 +02:00
|
|
|
defaultHomeData: {[key: string]: string};
|
2020-04-08 00:47:38 +02:00
|
|
|
|
2020-08-01 20:59:59 +02:00
|
|
|
urlHandler: URLHandler;
|
2020-04-08 00:47:38 +02:00
|
|
|
|
2020-08-01 20:59:59 +02:00
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.state = {
|
|
|
|
isLoading: true,
|
|
|
|
showIntro: true,
|
|
|
|
showUpdate: true,
|
|
|
|
showAprilFools: false,
|
|
|
|
currentTheme: null,
|
2020-04-17 21:07:56 +02:00
|
|
|
};
|
2020-08-01 20:59:59 +02:00
|
|
|
LocaleManager.initTranslations();
|
|
|
|
this.navigatorRef = React.createRef();
|
|
|
|
this.defaultHomeRoute = null;
|
|
|
|
this.defaultHomeData = {};
|
|
|
|
this.urlHandler = new URLHandler(this.onInitialURLParsed, this.onDetectURL);
|
|
|
|
this.urlHandler.listen();
|
|
|
|
setSafeBounceHeight(Platform.OS === 'ios' ? 100 : 20);
|
|
|
|
this.loadAssetsAsync().finally(() => {
|
|
|
|
this.onLoadFinished();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The app has been started by an url, and it has been parsed.
|
|
|
|
* Set a new default start route based on the data parsed.
|
|
|
|
*
|
|
|
|
* @param parsedData The data parsed from the url
|
|
|
|
*/
|
|
|
|
onInitialURLParsed = (parsedData: ParsedUrlDataType) => {
|
|
|
|
this.defaultHomeRoute = parsedData.route;
|
|
|
|
this.defaultHomeData = parsedData.data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An url has been opened and parsed while the app was active.
|
|
|
|
* Redirect the user to the screen according to parsed data.
|
|
|
|
*
|
|
|
|
* @param parsedData The data parsed from the url
|
|
|
|
*/
|
|
|
|
onDetectURL = (parsedData: ParsedUrlDataType) => {
|
|
|
|
// Navigate to nested navigator and pass data to the index screen
|
|
|
|
const nav = this.navigatorRef.current;
|
|
|
|
if (nav != null) {
|
|
|
|
nav.navigate('home', {
|
|
|
|
screen: 'index',
|
|
|
|
params: {nextScreen: parsedData.route, data: parsedData.data},
|
|
|
|
});
|
2019-09-17 10:37:52 +02:00
|
|
|
}
|
2020-08-01 20:59:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the current theme
|
|
|
|
*/
|
|
|
|
onUpdateTheme = () => {
|
|
|
|
this.setState({
|
|
|
|
currentTheme: ThemeManager.getCurrentTheme(),
|
|
|
|
});
|
|
|
|
setupStatusBar();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback when user ends the intro. Save in preferences to avoid showing back the introSlides
|
|
|
|
*/
|
|
|
|
onIntroDone = () => {
|
|
|
|
this.setState({
|
|
|
|
showIntro: false,
|
|
|
|
showUpdate: false,
|
|
|
|
showAprilFools: false,
|
|
|
|
});
|
|
|
|
AsyncStorageManager.set(
|
|
|
|
AsyncStorageManager.PREFERENCES.showIntro.key,
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
AsyncStorageManager.set(
|
|
|
|
AsyncStorageManager.PREFERENCES.updateNumber.key,
|
|
|
|
Update.number,
|
|
|
|
);
|
|
|
|
AsyncStorageManager.set(
|
|
|
|
AsyncStorageManager.PREFERENCES.showAprilFoolsStart.key,
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Async loading is done, finish processing startup data
|
|
|
|
*/
|
|
|
|
onLoadFinished() {
|
|
|
|
// Only show intro if this is the first time starting the app
|
|
|
|
ThemeManager.getInstance().setUpdateThemeCallback(this.onUpdateTheme);
|
|
|
|
// Status bar goes dark if set too fast on ios
|
|
|
|
if (Platform.OS === 'ios') setTimeout(setupStatusBar, 1000);
|
|
|
|
else setupStatusBar();
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
isLoading: false,
|
|
|
|
currentTheme: ThemeManager.getCurrentTheme(),
|
|
|
|
showIntro: AsyncStorageManager.getBool(
|
|
|
|
AsyncStorageManager.PREFERENCES.showIntro.key,
|
|
|
|
),
|
|
|
|
showUpdate:
|
|
|
|
AsyncStorageManager.getNumber(
|
|
|
|
AsyncStorageManager.PREFERENCES.updateNumber.key,
|
|
|
|
) !== Update.number,
|
|
|
|
showAprilFools:
|
|
|
|
AprilFoolsManager.getInstance().isAprilFoolsEnabled() &&
|
|
|
|
AsyncStorageManager.getBool(
|
|
|
|
AsyncStorageManager.PREFERENCES.showAprilFoolsStart.key,
|
|
|
|
),
|
|
|
|
});
|
|
|
|
SplashScreen.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads every async data
|
|
|
|
*
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
|
|
|
loadAssetsAsync = async () => {
|
|
|
|
await AsyncStorageManager.getInstance().loadPreferences();
|
2020-08-07 13:38:37 +02:00
|
|
|
await ConnectionManager.getInstance()
|
|
|
|
.recoverLogin()
|
|
|
|
.catch(() => {});
|
2020-08-01 20:59:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders the app based on loading state
|
|
|
|
*/
|
|
|
|
render(): React.Node {
|
|
|
|
const {state} = this;
|
|
|
|
if (state.isLoading) {
|
|
|
|
return null;
|
2019-08-20 20:00:34 +02:00
|
|
|
}
|
2020-08-01 20:59:59 +02:00
|
|
|
if (state.showIntro || state.showUpdate || state.showAprilFools) {
|
|
|
|
return (
|
|
|
|
<CustomIntroSlider
|
|
|
|
onDone={this.onIntroDone}
|
|
|
|
isUpdate={state.showUpdate && !state.showIntro}
|
|
|
|
isAprilFools={state.showAprilFools && !state.showIntro}
|
|
|
|
/>
|
|
|
|
);
|
2019-06-25 22:20:24 +02:00
|
|
|
}
|
2020-08-01 20:59:59 +02:00
|
|
|
return (
|
|
|
|
<PaperProvider theme={state.currentTheme}>
|
|
|
|
<OverflowMenuProvider>
|
|
|
|
<View
|
|
|
|
style={{
|
|
|
|
backgroundColor: ThemeManager.getCurrentTheme().colors.background,
|
|
|
|
flex: 1,
|
|
|
|
}}>
|
|
|
|
<SafeAreaView style={{flex: 1}}>
|
|
|
|
<NavigationContainer
|
|
|
|
theme={state.currentTheme}
|
|
|
|
ref={this.navigatorRef}>
|
|
|
|
<MainNavigator
|
|
|
|
defaultHomeRoute={this.defaultHomeRoute}
|
|
|
|
defaultHomeData={this.defaultHomeData}
|
|
|
|
/>
|
|
|
|
</NavigationContainer>
|
|
|
|
</SafeAreaView>
|
|
|
|
</View>
|
|
|
|
</OverflowMenuProvider>
|
|
|
|
</PaperProvider>
|
|
|
|
);
|
|
|
|
}
|
2019-06-25 22:20:24 +02:00
|
|
|
}
|