* [Gekidou] update dependencies & use node 16 with npm 7 * add npm7 circleCI changes * use react-intl 5.17.7 * fix migration error type
90 lines
3.2 KiB
TypeScript
90 lines
3.2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {DeviceEventEmitter, Platform} from 'react-native';
|
|
import 'react-native-gesture-handler';
|
|
import {ComponentDidAppearEvent, ComponentDidDisappearEvent, Navigation} from 'react-native-navigation';
|
|
|
|
import {Navigation as NavigationConstants, Screens} from './app/constants';
|
|
import {getAllServerCredentials} from './app/init/credentials';
|
|
import GlobalEventHandler from './app/init/global_event_handler';
|
|
import './app/init/fetch';
|
|
import {initialLaunch} from './app/init/launch';
|
|
import ManagedApp from './app/init/managed_app';
|
|
import {registerScreens} from './app/screens/index';
|
|
import EphemeralStore from './app/store/ephemeral_store';
|
|
import setFontFamily from './app/utils/font_family';
|
|
|
|
declare const global: { HermesInternal: null | {} };
|
|
|
|
if (__DEV__) {
|
|
const LogBox = require('react-native/Libraries/LogBox/LogBox');
|
|
LogBox.ignoreLogs([
|
|
'`-[RCTRootView cancelTouches]`',
|
|
'scaleY',
|
|
]);
|
|
require('storybook/mattermost_storybook.ts');
|
|
}
|
|
|
|
setFontFamily();
|
|
|
|
if (global.HermesInternal) {
|
|
// Polyfills required to use Intl with Hermes engine
|
|
require('@formatjs/intl-getcanonicallocales/polyfill');
|
|
require('@formatjs/intl-locale/polyfill');
|
|
require('@formatjs/intl-pluralrules/polyfill');
|
|
require('@formatjs/intl-numberformat/polyfill');
|
|
require('@formatjs/intl-datetimeformat/polyfill');
|
|
require('@formatjs/intl-datetimeformat/add-golden-tz');
|
|
}
|
|
|
|
if (Platform.OS === 'android') {
|
|
const ShareExtension = require('share_extension/index.tsx').default;
|
|
const AppRegistry = require('react-native/Libraries/ReactNative/AppRegistry');
|
|
AppRegistry.registerComponent('MattermostShare', () => ShareExtension);
|
|
}
|
|
|
|
Navigation.events().registerAppLaunchedListener(async () => {
|
|
GlobalEventHandler.init();
|
|
ManagedApp.init();
|
|
registerNavigationListeners();
|
|
registerScreens();
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const serverCredentials = await getAllServerCredentials();
|
|
|
|
// TODO:
|
|
// DatabaseManager.init(serverCredentials);
|
|
// NetworkClientManager.init(serverCredentials);
|
|
|
|
initialLaunch();
|
|
});
|
|
|
|
const registerNavigationListeners = () => {
|
|
Navigation.events().registerComponentDidAppearListener(componentDidAppearListener);
|
|
Navigation.events().registerComponentDidDisappearListener(componentDidDisappearListener);
|
|
};
|
|
|
|
function componentDidAppearListener({componentId}: ComponentDidAppearEvent) {
|
|
EphemeralStore.addNavigationComponentId(componentId);
|
|
|
|
switch (componentId) {
|
|
case 'MainSidebar':
|
|
DeviceEventEmitter.emit(NavigationConstants.MAIN_SIDEBAR_DID_OPEN);
|
|
DeviceEventEmitter.emit(NavigationConstants.BLUR_POST_DRAFT);
|
|
break;
|
|
case 'SettingsSidebar':
|
|
DeviceEventEmitter.emit(NavigationConstants.BLUR_POST_DRAFT);
|
|
break;
|
|
}
|
|
}
|
|
|
|
function componentDidDisappearListener({componentId}: ComponentDidDisappearEvent) {
|
|
if (componentId !== Screens.CHANNEL) {
|
|
EphemeralStore.removeNavigationComponentId(componentId);
|
|
}
|
|
|
|
if (componentId === 'MainSidebar') {
|
|
DeviceEventEmitter.emit(NavigationConstants.MAIN_SIDEBAR_DID_CLOSE);
|
|
}
|
|
}
|