95 lines
2.1 KiB
JavaScript
95 lines
2.1 KiB
JavaScript
import { Component } from 'react';
|
|
import { Linking } from 'react-native';
|
|
import { Navigation } from 'react-native-navigation';
|
|
|
|
import store from './lib/createStore';
|
|
import { appInit } from './actions';
|
|
import database from './lib/realm';
|
|
import { iconsLoaded } from './Icons';
|
|
import { registerScreens } from './views';
|
|
import { deepLinkingOpen } from './actions/deepLinking';
|
|
import parseQuery from './lib/methods/helpers/parseQuery';
|
|
import I18n from './i18n';
|
|
import { initializePushNotifications } from './push';
|
|
|
|
const startLogged = () => {
|
|
Navigation.startSingleScreenApp({
|
|
screen: {
|
|
screen: 'RoomsListView',
|
|
title: I18n.t('Messages')
|
|
},
|
|
drawer: {
|
|
left: {
|
|
screen: 'Sidebar'
|
|
}
|
|
},
|
|
animationType: 'fade'
|
|
});
|
|
};
|
|
|
|
const startNotLogged = (route) => {
|
|
Navigation.startSingleScreenApp({
|
|
screen: {
|
|
screen: route,
|
|
title: route === 'NewServerView' ? I18n.t('New_Server') : I18n.t('Servers')
|
|
},
|
|
animationType: 'fade'
|
|
});
|
|
};
|
|
|
|
const hasServers = () => {
|
|
const db = database.databases.serversDB.objects('servers');
|
|
return db.length > 0;
|
|
};
|
|
|
|
const handleOpenURL = ({ url }) => {
|
|
if (url) {
|
|
url = url.replace(/rocketchat:\/\/|https:\/\/go.rocket.chat\//, '');
|
|
const regex = /^(room|auth)\?/;
|
|
if (url.match(regex)) {
|
|
url = url.replace(regex, '');
|
|
const params = parseQuery(url);
|
|
store.dispatch(deepLinkingOpen(params));
|
|
}
|
|
}
|
|
};
|
|
|
|
registerScreens(store);
|
|
iconsLoaded();
|
|
|
|
export default class App extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
store.dispatch(appInit());
|
|
store.subscribe(this.onStoreUpdate.bind(this));
|
|
initializePushNotifications();
|
|
|
|
Linking
|
|
.getInitialURL()
|
|
.then(url => handleOpenURL({ url }))
|
|
.catch(e => console.warn(e));
|
|
Linking.addEventListener('url', handleOpenURL);
|
|
}
|
|
|
|
onStoreUpdate = () => {
|
|
const { root } = store.getState().app;
|
|
|
|
if (this.currentRoot !== root) {
|
|
this.currentRoot = root;
|
|
if (root === 'outside') {
|
|
if (hasServers()) {
|
|
startNotLogged('ListServerView');
|
|
} else {
|
|
startNotLogged('NewServerView');
|
|
}
|
|
} else if (root === 'inside') {
|
|
startLogged();
|
|
}
|
|
}
|
|
}
|
|
|
|
setDeviceToken(deviceToken) {
|
|
this.deviceToken = deviceToken;
|
|
}
|
|
}
|