2021-01-05 11:05:52 +05:00
|
|
|
import React, {useEffect} from 'react';
|
2021-01-11 14:29:50 +05:00
|
|
|
import Orientation from 'react-native-orientation';
|
2021-01-05 11:05:52 +05:00
|
|
|
import {SafeAreaProvider} from 'react-native-safe-area-context';
|
2020-12-10 09:54:48 +05:00
|
|
|
import SplashScreen from 'react-native-splash-screen';
|
2021-01-11 14:29:50 +05:00
|
|
|
import {AppRootEvents} from './AppRootEvents';
|
2021-01-05 11:05:52 +05:00
|
|
|
import {RootView} from './initializer.root';
|
|
|
|
|
import {useTracked} from './src/provider';
|
|
|
|
|
import {Actions} from './src/provider/Actions';
|
|
|
|
|
import {DDS} from './src/services/DeviceDetection';
|
2021-01-17 12:53:04 +05:00
|
|
|
import {
|
|
|
|
|
eSendEvent,
|
|
|
|
|
eSubscribeEvent,
|
|
|
|
|
eUnSubscribeEvent,
|
|
|
|
|
} from './src/services/EventManager';
|
2020-12-20 23:03:02 +05:00
|
|
|
import SettingsService from './src/services/SettingsService';
|
2021-01-05 11:05:52 +05:00
|
|
|
import {db} from './src/utils/DB';
|
2021-01-17 12:53:04 +05:00
|
|
|
import {
|
|
|
|
|
eDispatchAction,
|
|
|
|
|
eOpenSideMenu,
|
|
|
|
|
refreshNotesPage,
|
|
|
|
|
} from './src/utils/Events';
|
2021-01-08 12:30:05 +05:00
|
|
|
import EditorRoot from './src/views/Editor/EditorRoot';
|
2020-11-16 12:36:41 +05:00
|
|
|
|
2019-11-15 01:17:59 +05:00
|
|
|
const App = () => {
|
2020-12-22 12:38:31 +05:00
|
|
|
const [, dispatch] = useTracked();
|
2020-11-16 12:36:41 +05:00
|
|
|
|
2021-01-11 14:29:50 +05:00
|
|
|
useEffect(() => {
|
|
|
|
|
SettingsService.init().then((r) => {
|
2021-02-06 13:28:27 +05:00
|
|
|
Orientation.getOrientation((e,r) => {
|
|
|
|
|
|
|
|
|
|
DDS.checkSmallTab(r);
|
|
|
|
|
console.log(r,"RESULTING",DDS.isSmallTab)
|
|
|
|
|
dispatch({
|
|
|
|
|
type: Actions.DEVICE_MODE,
|
|
|
|
|
state: DDS.isLargeTablet()
|
|
|
|
|
? 'tablet'
|
|
|
|
|
: DDS.isSmallTab
|
|
|
|
|
? 'smallTablet'
|
|
|
|
|
: 'mobile',
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
|
2021-01-11 14:29:50 +05:00
|
|
|
db.init().catch(console.log).finally(loadMainApp);
|
|
|
|
|
});
|
|
|
|
|
}, []);
|
2020-12-20 23:01:35 +05:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
2021-02-04 14:35:06 +05:00
|
|
|
eSubscribeEvent(eDispatchAction, dispatch);
|
2020-12-20 23:01:35 +05:00
|
|
|
return () => {
|
2021-02-04 14:35:06 +05:00
|
|
|
eUnSubscribeEvent(eDispatchAction, dispatch);
|
2020-12-20 23:01:35 +05:00
|
|
|
};
|
|
|
|
|
}, []);
|
|
|
|
|
|
2020-12-09 22:16:22 +05:00
|
|
|
const loadMainApp = () => {
|
2021-01-12 00:53:29 +05:00
|
|
|
SplashScreen.hide();
|
2020-11-24 16:59:12 +05:00
|
|
|
db.notes.init().then(() => {
|
|
|
|
|
dispatch({type: Actions.NOTES});
|
2020-12-16 15:55:36 +05:00
|
|
|
dispatch({type: Actions.FAVORITES});
|
2020-12-16 20:02:24 +05:00
|
|
|
eSendEvent(refreshNotesPage);
|
2020-11-24 16:59:12 +05:00
|
|
|
dispatch({type: Actions.LOADING, loading: false});
|
2020-11-26 11:20:38 +05:00
|
|
|
SettingsService.setAppLoaded();
|
2020-11-24 16:59:12 +05:00
|
|
|
});
|
2021-01-11 14:29:50 +05:00
|
|
|
eSendEvent(eOpenSideMenu);
|
|
|
|
|
dispatch({type: Actions.ALL});
|
2020-12-10 13:06:59 +05:00
|
|
|
};
|
2020-12-09 22:16:22 +05:00
|
|
|
|
2020-10-24 13:47:31 +05:00
|
|
|
return (
|
2020-11-23 11:30:55 +05:00
|
|
|
<SafeAreaProvider>
|
2020-12-22 12:38:31 +05:00
|
|
|
<RootView />
|
2021-01-08 12:30:05 +05:00
|
|
|
<EditorRoot />
|
2021-01-11 14:29:50 +05:00
|
|
|
<AppRootEvents />
|
2020-11-23 11:30:55 +05:00
|
|
|
</SafeAreaProvider>
|
2020-10-24 13:47:31 +05:00
|
|
|
);
|
2019-11-15 01:17:59 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default App;
|