2017-11-16 18:26:14 +00:00
|
|
|
/* global APP */
|
|
|
|
|
2017-08-15 21:44:29 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2018-05-22 14:22:16 +00:00
|
|
|
import React, { Component, Fragment } from 'react';
|
2017-03-01 02:55:12 +00:00
|
|
|
import { I18nextProvider } from 'react-i18next';
|
2017-01-16 00:28:02 +00:00
|
|
|
import { Provider } from 'react-redux';
|
2017-01-26 21:29:28 +00:00
|
|
|
import { compose, createStore } from 'redux';
|
|
|
|
import Thunk from 'redux-thunk';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2017-03-01 02:55:12 +00:00
|
|
|
import { i18next } from '../../base/i18n';
|
2018-05-03 13:30:07 +00:00
|
|
|
import { localParticipantLeft } from '../../base/participants';
|
2018-05-22 14:22:16 +00:00
|
|
|
import { RouteRegistry } from '../../base/react';
|
2018-05-22 03:44:00 +00:00
|
|
|
import {
|
|
|
|
MiddlewareRegistry,
|
|
|
|
ReducerRegistry,
|
|
|
|
StateListenerRegistry
|
|
|
|
} from '../../base/redux';
|
2018-02-26 19:37:12 +00:00
|
|
|
import { SoundCollection } from '../../base/sounds';
|
2018-02-02 19:35:49 +00:00
|
|
|
import { PersistenceRegistry } from '../../base/storage';
|
2017-07-26 19:27:29 +00:00
|
|
|
import { toURLString } from '../../base/util';
|
2017-11-23 17:03:33 +00:00
|
|
|
import { OverlayContainer } from '../../overlay';
|
2017-09-01 04:13:59 +00:00
|
|
|
import { BlankPage } from '../../welcome';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2017-07-26 19:40:34 +00:00
|
|
|
import { appNavigate, appWillMount, appWillUnmount } from '../actions';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2017-06-09 10:26:21 +00:00
|
|
|
/**
|
2017-06-09 19:09:23 +00:00
|
|
|
* The default URL to open if no other was specified to {@code AbstractApp}
|
|
|
|
* via props.
|
2018-04-12 19:58:20 +00:00
|
|
|
*
|
|
|
|
* FIXME: This is not at the best place here. This should be either in the
|
|
|
|
* base/settings feature or a default in base/config.
|
2017-06-09 10:26:21 +00:00
|
|
|
*/
|
|
|
|
const DEFAULT_URL = 'https://meet.jit.si';
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Base (abstract) class for main App component.
|
|
|
|
*
|
|
|
|
* @abstract
|
|
|
|
*/
|
|
|
|
export class AbstractApp extends Component {
|
2016-12-01 01:52:39 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* {@code AbstractApp} component's property types.
|
2016-12-01 01:52:39 +00:00
|
|
|
*
|
|
|
|
* @static
|
|
|
|
*/
|
|
|
|
static propTypes = {
|
2017-06-09 10:26:21 +00:00
|
|
|
/**
|
2017-06-09 19:09:23 +00:00
|
|
|
* The default URL {@code AbstractApp} is to open when not in any
|
|
|
|
* conference/room.
|
2017-06-09 10:26:21 +00:00
|
|
|
*/
|
2017-08-15 21:44:29 +00:00
|
|
|
defaultURL: PropTypes.string,
|
2017-06-09 10:26:21 +00:00
|
|
|
|
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* (Optional) redux store for this app.
|
2017-06-09 10:26:21 +00:00
|
|
|
*/
|
2017-08-15 21:44:29 +00:00
|
|
|
store: PropTypes.object,
|
2016-12-01 01:52:39 +00:00
|
|
|
|
2017-08-15 22:21:58 +00:00
|
|
|
// XXX Refer to the implementation of loadURLObject: in
|
|
|
|
// ios/sdk/src/JitsiMeetView.m for further information.
|
|
|
|
timestamp: PropTypes.any,
|
|
|
|
|
2016-12-01 01:52:39 +00:00
|
|
|
/**
|
|
|
|
* The URL, if any, with which the app was launched.
|
|
|
|
*/
|
2017-08-15 21:44:29 +00:00
|
|
|
url: PropTypes.oneOfType([
|
|
|
|
PropTypes.object,
|
|
|
|
PropTypes.string
|
2017-07-26 19:27:29 +00:00
|
|
|
])
|
2017-06-02 02:01:50 +00:00
|
|
|
};
|
2016-12-01 01:52:39 +00:00
|
|
|
|
2017-01-16 00:28:02 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Initializes a new {@code AbstractApp} instance.
|
2017-01-16 00:28:02 +00:00
|
|
|
*
|
2017-07-26 19:40:34 +00:00
|
|
|
* @param {Object} props - The read-only React {@code Component} props with
|
|
|
|
* which the new instance is to be initialized.
|
2017-01-16 00:28:02 +00:00
|
|
|
*/
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
2017-12-14 17:02:32 +00:00
|
|
|
|
2017-01-16 00:28:02 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* The Route rendered by this {@code AbstractApp}.
|
2017-01-16 00:28:02 +00:00
|
|
|
*
|
|
|
|
* @type {Route}
|
|
|
|
*/
|
2017-01-26 21:29:28 +00:00
|
|
|
route: undefined,
|
|
|
|
|
2017-12-14 17:02:32 +00:00
|
|
|
/**
|
|
|
|
* The state of the »possible« async initialization of
|
|
|
|
* the {@code AbstractApp}.
|
|
|
|
*/
|
|
|
|
appAsyncInitialized: false,
|
|
|
|
|
2017-01-26 21:29:28 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* The redux store used by this {@code AbstractApp}.
|
2017-01-26 21:29:28 +00:00
|
|
|
*
|
|
|
|
* @type {Store}
|
|
|
|
*/
|
2017-12-14 17:02:32 +00:00
|
|
|
store: undefined
|
2017-01-16 00:28:02 +00:00
|
|
|
};
|
2017-12-14 17:02:32 +00:00
|
|
|
|
|
|
|
/**
|
2018-02-05 21:26:01 +00:00
|
|
|
* Make the mobile {@code AbstractApp} wait until the
|
|
|
|
* {@code AsyncStorage} implementation of {@code Storage} initializes
|
|
|
|
* fully.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @see {@link #_initStorage}
|
|
|
|
* @type {Promise}
|
2017-12-14 17:02:32 +00:00
|
|
|
*/
|
2018-02-05 21:26:01 +00:00
|
|
|
this._init
|
|
|
|
= this._initStorage()
|
|
|
|
.catch(() => { /* AbstractApp should always initialize! */ })
|
|
|
|
.then(() =>
|
|
|
|
this.setState({
|
|
|
|
route: undefined,
|
|
|
|
store: this._maybeCreateStore(props)
|
|
|
|
}));
|
2017-01-16 00:28:02 +00:00
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Init lib-jitsi-meet and create local participant when component is going
|
|
|
|
* to be mounted.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
componentWillMount() {
|
2018-02-05 21:26:01 +00:00
|
|
|
this._init.then(() => {
|
2018-05-03 13:30:07 +00:00
|
|
|
const { dispatch } = this._getStore();
|
2017-12-14 17:02:32 +00:00
|
|
|
|
|
|
|
dispatch(appWillMount(this));
|
|
|
|
|
2018-05-22 14:22:16 +00:00
|
|
|
// We set the initialized state here and not in the constructor to
|
2017-12-14 17:02:32 +00:00
|
|
|
// make sure that {@code componentWillMount} gets invoked before
|
|
|
|
// the app tries to render the actual app content.
|
|
|
|
this.setState({
|
|
|
|
appAsyncInitialized: true
|
|
|
|
});
|
|
|
|
|
|
|
|
// If a URL was explicitly specified to this React Component,
|
|
|
|
// then open it; otherwise, use a default.
|
|
|
|
this._openURL(toURLString(this.props.url) || this._getDefaultURL());
|
|
|
|
});
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 21:29:28 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Notifies this mounted React {@code Component} that it will receive new
|
|
|
|
* props. Makes sure that this {@code AbstractApp} has a redux store to use.
|
2017-01-26 21:29:28 +00:00
|
|
|
*
|
|
|
|
* @inheritdoc
|
2017-07-26 19:40:34 +00:00
|
|
|
* @param {Object} nextProps - The read-only React {@code Component} props
|
|
|
|
* that this instance will receive.
|
2017-01-26 21:29:28 +00:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
componentWillReceiveProps(nextProps) {
|
2018-01-18 21:28:25 +00:00
|
|
|
const { props } = this;
|
2018-01-08 11:00:31 +00:00
|
|
|
|
2018-02-05 21:26:01 +00:00
|
|
|
this._init.then(() => {
|
2017-12-14 17:02:32 +00:00
|
|
|
// The consumer of this AbstractApp did not provide a redux store.
|
|
|
|
if (typeof nextProps.store === 'undefined'
|
|
|
|
|
|
|
|
// The consumer of this AbstractApp did provide a redux
|
|
|
|
// store before. Which means that the consumer changed
|
|
|
|
// their mind. In such a case this instance should create
|
|
|
|
// its own internal redux store. If the consumer did not
|
|
|
|
// provide a redux store before, then this instance is
|
|
|
|
// using its own internal redux store already.
|
2018-01-18 21:28:25 +00:00
|
|
|
&& typeof props.store !== 'undefined') {
|
2017-12-14 17:02:32 +00:00
|
|
|
this.setState({
|
|
|
|
store: this._maybeCreateStore(nextProps)
|
|
|
|
});
|
|
|
|
}
|
2017-07-06 08:01:35 +00:00
|
|
|
|
2017-12-14 17:02:32 +00:00
|
|
|
// Deal with URL changes.
|
|
|
|
let { url } = nextProps;
|
2017-07-06 18:27:00 +00:00
|
|
|
|
2017-12-14 17:02:32 +00:00
|
|
|
url = toURLString(url);
|
2018-01-18 21:28:25 +00:00
|
|
|
if (toURLString(props.url) !== url
|
2017-08-15 22:21:58 +00:00
|
|
|
|
2017-12-14 17:02:32 +00:00
|
|
|
// XXX Refer to the implementation of loadURLObject: in
|
|
|
|
// ios/sdk/src/JitsiMeetView.m for further information.
|
2018-01-18 21:28:25 +00:00
|
|
|
|| props.timestamp !== nextProps.timestamp) {
|
2017-12-14 17:02:32 +00:00
|
|
|
this._openURL(url || this._getDefaultURL());
|
|
|
|
}
|
|
|
|
});
|
2017-01-26 21:29:28 +00:00
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Dispose lib-jitsi-meet and remove local participant when component is
|
|
|
|
* going to be unmounted.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
componentWillUnmount() {
|
2017-09-01 21:25:48 +00:00
|
|
|
const { dispatch } = this._getStore();
|
2016-10-05 14:36:59 +00:00
|
|
|
|
|
|
|
dispatch(localParticipantLeft());
|
|
|
|
|
|
|
|
dispatch(appWillUnmount(this));
|
|
|
|
}
|
|
|
|
|
2017-03-02 03:33:49 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Gets a {@code Location} object from the window with information about the
|
|
|
|
* current location of the document. Explicitly defined to allow extenders
|
|
|
|
* to override because React Native does not usually have a location
|
|
|
|
* property on its window unless debugging remotely in which case the
|
|
|
|
* browser that is the remote debugger will provide a location property on
|
|
|
|
* the window.
|
2017-03-02 03:33:49 +00:00
|
|
|
*
|
|
|
|
* @public
|
2017-07-26 19:40:34 +00:00
|
|
|
* @returns {Location} A {@code Location} object with information about the
|
|
|
|
* current location of the document.
|
2017-03-02 03:33:49 +00:00
|
|
|
*/
|
|
|
|
getWindowLocation() {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2017-12-14 17:02:32 +00:00
|
|
|
/**
|
2018-02-05 21:26:01 +00:00
|
|
|
* Delays this {@code AbstractApp}'s startup until the {@code Storage}
|
|
|
|
* implementation of {@code localStorage} initializes. While the
|
|
|
|
* initialization is instantaneous on Web (with Web Storage API), it is
|
|
|
|
* asynchronous on mobile/react-native.
|
2017-12-14 17:02:32 +00:00
|
|
|
*
|
|
|
|
* @private
|
2018-02-05 21:26:01 +00:00
|
|
|
* @returns {Promise}
|
2017-12-14 17:02:32 +00:00
|
|
|
*/
|
|
|
|
_initStorage() {
|
2018-02-05 21:26:01 +00:00
|
|
|
const localStorageInitializing = window.localStorage._initializing;
|
2018-01-16 15:21:20 +00:00
|
|
|
|
2018-02-05 21:26:01 +00:00
|
|
|
return (
|
|
|
|
typeof localStorageInitializing === 'undefined'
|
|
|
|
? Promise.resolve()
|
|
|
|
: localStorageInitializing);
|
2017-12-14 17:02:32 +00:00
|
|
|
}
|
|
|
|
|
2017-01-16 00:28:02 +00:00
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
2017-12-14 17:02:32 +00:00
|
|
|
const { appAsyncInitialized, route } = this.state;
|
2017-09-01 04:13:59 +00:00
|
|
|
const component = (route && route.component) || BlankPage;
|
2017-01-16 00:28:02 +00:00
|
|
|
|
2017-12-14 17:02:32 +00:00
|
|
|
if (appAsyncInitialized && component) {
|
2017-01-16 00:28:02 +00:00
|
|
|
return (
|
2017-03-01 02:55:12 +00:00
|
|
|
<I18nextProvider i18n = { i18next }>
|
2017-02-22 19:49:39 +00:00
|
|
|
<Provider store = { this._getStore() }>
|
2017-11-23 17:03:33 +00:00
|
|
|
<Fragment>
|
|
|
|
{ this._createElement(component) }
|
2018-02-26 19:37:12 +00:00
|
|
|
<SoundCollection />
|
2017-11-23 17:03:33 +00:00
|
|
|
<OverlayContainer />
|
|
|
|
</Fragment>
|
2017-02-22 19:49:39 +00:00
|
|
|
</Provider>
|
|
|
|
</I18nextProvider>
|
2017-01-16 00:28:02 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Creates a {@link ReactElement} from the specified component, the
|
|
|
|
* specified props and the props of this {@code AbstractApp} which are
|
|
|
|
* suitable for propagation to the children of this {@code Component}.
|
2016-10-05 14:36:59 +00:00
|
|
|
*
|
2017-07-26 19:40:34 +00:00
|
|
|
* @param {Component} component - The component from which the
|
|
|
|
* {@code ReactElement} is to be created.
|
|
|
|
* @param {Object} props - The read-only React {@code Component} props with
|
|
|
|
* which the {@code ReactElement} is to be initialized.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @returns {ReactElement}
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
_createElement(component, props) {
|
2017-06-09 19:09:23 +00:00
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
const {
|
|
|
|
// Don't propagate the dispatch and store props because they usually
|
|
|
|
// come from react-redux and programmers don't really expect them to
|
|
|
|
// be inherited but rather explicitly connected.
|
|
|
|
dispatch, // eslint-disable-line react/prop-types
|
|
|
|
store,
|
2017-06-09 19:09:23 +00:00
|
|
|
|
|
|
|
// The following props were introduced to be consumed entirely by
|
|
|
|
// AbstractApp:
|
|
|
|
defaultURL,
|
2016-10-05 14:36:59 +00:00
|
|
|
url,
|
2017-06-09 19:09:23 +00:00
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
// The remaining props, if any, are considered suitable for
|
|
|
|
// propagation to the children of this Component.
|
|
|
|
...thisProps
|
|
|
|
} = this.props;
|
|
|
|
|
2017-06-09 19:09:23 +00:00
|
|
|
/* eslint-enable no-unused-vars */
|
|
|
|
|
|
|
|
return React.createElement(component, {
|
|
|
|
...thisProps,
|
|
|
|
...props
|
|
|
|
});
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 21:29:28 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Initializes a new redux store instance suitable for use by this
|
|
|
|
* {@code AbstractApp}.
|
2017-01-26 21:29:28 +00:00
|
|
|
*
|
|
|
|
* @private
|
2017-07-26 19:40:34 +00:00
|
|
|
* @returns {Store} - A new redux store instance suitable for use by
|
|
|
|
* this {@code AbstractApp}.
|
2017-01-26 21:29:28 +00:00
|
|
|
*/
|
|
|
|
_createStore() {
|
|
|
|
// Create combined reducer from all reducers in ReducerRegistry.
|
|
|
|
const reducer = ReducerRegistry.combineReducers();
|
|
|
|
|
|
|
|
// Apply all registered middleware from the MiddlewareRegistry and
|
|
|
|
// additional 3rd party middleware:
|
|
|
|
// - Thunk - allows us to dispatch async actions easily. For more info
|
|
|
|
// @see https://github.com/gaearon/redux-thunk.
|
|
|
|
let middleware = MiddlewareRegistry.applyMiddleware(Thunk);
|
|
|
|
|
|
|
|
// Try to enable Redux DevTools Chrome extension in order to make it
|
|
|
|
// available for the purposes of facilitating development.
|
|
|
|
let devToolsExtension;
|
|
|
|
|
|
|
|
if (typeof window === 'object'
|
|
|
|
&& (devToolsExtension = window.devToolsExtension)) {
|
|
|
|
middleware = compose(middleware, devToolsExtension());
|
|
|
|
}
|
|
|
|
|
2018-01-29 22:20:38 +00:00
|
|
|
return (
|
|
|
|
createStore(
|
|
|
|
reducer,
|
2018-02-02 19:35:49 +00:00
|
|
|
PersistenceRegistry.getPersistedState(),
|
2018-01-29 22:20:38 +00:00
|
|
|
middleware));
|
2017-01-26 21:29:28 +00:00
|
|
|
}
|
|
|
|
|
2017-01-15 19:05:17 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Gets the default URL to be opened when this {@code App} mounts.
|
2017-01-15 19:05:17 +00:00
|
|
|
*
|
2017-02-18 16:02:31 +00:00
|
|
|
* @protected
|
2017-07-26 19:40:34 +00:00
|
|
|
* @returns {string} The default URL to be opened when this {@code App}
|
|
|
|
* mounts.
|
2017-01-15 19:05:17 +00:00
|
|
|
*/
|
|
|
|
_getDefaultURL() {
|
|
|
|
// If the execution environment provides a Location abstraction, then
|
|
|
|
// this App at already at that location but it must be made aware of the
|
|
|
|
// fact.
|
2017-03-02 03:33:49 +00:00
|
|
|
const windowLocation = this.getWindowLocation();
|
2017-01-15 19:05:17 +00:00
|
|
|
|
|
|
|
if (windowLocation) {
|
2017-02-18 16:02:31 +00:00
|
|
|
const href = windowLocation.toString();
|
|
|
|
|
|
|
|
if (href) {
|
|
|
|
return href;
|
2017-01-15 19:05:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-18 21:28:25 +00:00
|
|
|
return (
|
|
|
|
this.props.defaultURL
|
2018-04-12 19:58:20 +00:00
|
|
|
|| this._getStore().getState()['features/base/settings']
|
|
|
|
.serverURL
|
2018-01-18 21:28:25 +00:00
|
|
|
|| DEFAULT_URL);
|
2017-01-15 19:05:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 21:29:28 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Gets the redux store used by this {@code AbstractApp}.
|
2017-01-26 21:29:28 +00:00
|
|
|
*
|
|
|
|
* @protected
|
2017-07-26 19:40:34 +00:00
|
|
|
* @returns {Store} - The redux store used by this {@code AbstractApp}.
|
2017-01-26 21:29:28 +00:00
|
|
|
*/
|
|
|
|
_getStore() {
|
|
|
|
let store = this.state.store;
|
|
|
|
|
|
|
|
if (typeof store === 'undefined') {
|
|
|
|
store = this.props.store;
|
|
|
|
}
|
|
|
|
|
|
|
|
return store;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Creates a redux store to be used by this {@code AbstractApp} if such as a
|
|
|
|
* store is not defined by the consumer of this {@code AbstractApp} through
|
|
|
|
* its read-only React {@code Component} props.
|
2017-01-26 21:29:28 +00:00
|
|
|
*
|
2017-07-26 19:40:34 +00:00
|
|
|
* @param {Object} props - The read-only React {@code Component} props that
|
|
|
|
* will eventually be received by this {@code AbstractApp}.
|
2017-01-26 21:29:28 +00:00
|
|
|
* @private
|
2017-07-26 19:40:34 +00:00
|
|
|
* @returns {Store} - The redux store to be used by this
|
|
|
|
* {@code AbstractApp}.
|
2017-01-26 21:29:28 +00:00
|
|
|
*/
|
2018-05-22 03:42:22 +00:00
|
|
|
_maybeCreateStore({ store }) {
|
2017-07-26 19:40:34 +00:00
|
|
|
// The application Jitsi Meet is architected with redux. However, I do
|
2017-01-26 21:29:28 +00:00
|
|
|
// not want consumers of the App React Component to be forced into
|
2017-07-26 19:40:34 +00:00
|
|
|
// dealing with redux. If the consumer did not provide an external redux
|
|
|
|
// store, utilize an internal redux store.
|
2017-01-26 21:29:28 +00:00
|
|
|
if (typeof store === 'undefined') {
|
2018-05-22 03:42:22 +00:00
|
|
|
// eslint-disable-next-line no-param-reassign
|
2017-01-26 21:29:28 +00:00
|
|
|
store = this._createStore();
|
2017-01-31 20:58:48 +00:00
|
|
|
|
|
|
|
// This is temporary workaround to be able to dispatch actions from
|
|
|
|
// non-reactified parts of the code (conference.js for example).
|
|
|
|
// Don't use in the react code!!!
|
|
|
|
// FIXME: remove when the reactification is finished!
|
2017-02-20 09:36:46 +00:00
|
|
|
if (typeof APP !== 'undefined') {
|
|
|
|
APP.store = store;
|
|
|
|
}
|
2017-01-26 21:29:28 +00:00
|
|
|
}
|
|
|
|
|
2018-05-22 03:44:00 +00:00
|
|
|
// StateListenerRegistry
|
|
|
|
store && StateListenerRegistry.subscribe(store);
|
|
|
|
|
2017-01-26 21:29:28 +00:00
|
|
|
return store;
|
|
|
|
}
|
|
|
|
|
2017-01-16 00:28:02 +00:00
|
|
|
/**
|
|
|
|
* Navigates to a specific Route.
|
|
|
|
*
|
|
|
|
* @param {Route} route - The Route to which to navigate.
|
2017-08-01 00:34:19 +00:00
|
|
|
* @returns {Promise}
|
2017-01-16 00:28:02 +00:00
|
|
|
*/
|
|
|
|
_navigate(route) {
|
2017-01-25 22:11:44 +00:00
|
|
|
if (RouteRegistry.areRoutesEqual(this.state.route, route)) {
|
2017-08-01 00:34:19 +00:00
|
|
|
return Promise.resolve();
|
2017-01-19 15:47:22 +00:00
|
|
|
}
|
2017-01-25 22:11:44 +00:00
|
|
|
|
|
|
|
let nextState = {
|
|
|
|
route
|
|
|
|
};
|
|
|
|
|
|
|
|
// The Web App was using react-router so it utilized react-router's
|
|
|
|
// onEnter. During the removal of react-router, modifications were
|
|
|
|
// minimized by preserving the onEnter interface:
|
|
|
|
// (1) Router would provide its nextState to the Route's onEnter. As the
|
2017-09-01 04:13:59 +00:00
|
|
|
// role of Router is now this AbstractApp and we use redux, provide the
|
|
|
|
// redux store instead.
|
2017-01-25 22:11:44 +00:00
|
|
|
// (2) A replace function would be provided to the Route in case it
|
|
|
|
// chose to redirect to another path.
|
2017-09-01 04:13:59 +00:00
|
|
|
route && this._onRouteEnter(route, this._getStore(), pathname => {
|
|
|
|
if (pathname) {
|
|
|
|
this._openURL(pathname);
|
|
|
|
|
|
|
|
// Do not proceed with the route because it chose to redirect to
|
|
|
|
// another path.
|
|
|
|
nextState = undefined;
|
|
|
|
} else {
|
|
|
|
nextState.route = undefined;
|
|
|
|
}
|
2017-01-25 22:11:44 +00:00
|
|
|
});
|
|
|
|
|
2017-08-01 00:34:19 +00:00
|
|
|
// XXX React's setState is asynchronous which means that the value of
|
|
|
|
// this.state.route above may not even be correct. If the check is
|
|
|
|
// performed before setState completes, the app may not navigate to the
|
|
|
|
// expected route. In order to mitigate the problem, _navigate was
|
|
|
|
// changed to return a Promise.
|
|
|
|
return new Promise(resolve => {
|
|
|
|
if (nextState) {
|
|
|
|
this.setState(nextState, resolve);
|
|
|
|
} else {
|
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
});
|
2017-01-16 00:28:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Notifies this {@code App} that a specific Route is about to be rendered.
|
2017-01-16 00:28:02 +00:00
|
|
|
*
|
|
|
|
* @param {Route} route - The Route that is about to be rendered.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onRouteEnter(route, ...args) {
|
|
|
|
// Notify the route that it is about to be entered.
|
2017-06-09 19:09:23 +00:00
|
|
|
const { onEnter } = route;
|
2017-01-16 00:28:02 +00:00
|
|
|
|
2017-06-09 19:09:23 +00:00
|
|
|
typeof onEnter === 'function' && onEnter(...args);
|
2017-01-16 00:28:02 +00:00
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
2017-07-26 19:40:34 +00:00
|
|
|
* Navigates this {@code AbstractApp} to (i.e. opens) a specific URL.
|
2016-10-05 14:36:59 +00:00
|
|
|
*
|
2018-02-26 19:37:12 +00:00
|
|
|
* @param {Object|string} url - The URL to navigate this {@code AbstractApp}
|
2017-07-26 19:40:34 +00:00
|
|
|
* to (i.e. the URL to open).
|
2016-10-05 14:36:59 +00:00
|
|
|
* @protected
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_openURL(url) {
|
2017-07-26 19:27:29 +00:00
|
|
|
this._getStore().dispatch(appNavigate(toURLString(url)));
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
}
|