jiti-meet/react/features/app/functions.web.js

119 lines
3.3 KiB
JavaScript
Raw Normal View History

/* @flow */
import { Platform } from '../base/react';
2017-09-01 21:25:48 +00:00
import { toState } from '../base/redux';
import {
NoMobileApp,
PluginRequiredBrowser,
UnsupportedDesktopBrowser,
UnsupportedMobileBrowser
} from '../unsupported-browser';
import {
// eslint-disable-next-line camelcase
_getRouteToRender as _super_getRouteToRender
} from './functions.native';
declare var APP: Object;
declare var interfaceConfig: Object;
declare var loggingConfig: Object;
/**
* Array of rules defining whether we should {@link _interceptComponent} to
* render.
*
* @private
2017-09-01 21:25:48 +00:00
* @param {Object} state - Object containing current redux state.
* @returns {ReactElement|void}
* @type {Function[]}
*/
const _INTERCEPT_COMPONENT_RULES = [
/**
* This rule describes case when user opens application using mobile
* browser. In order to promote the app, we choose to suggest the mobile
* app even if the browser supports the app (e.g. Google Chrome with
* WebRTC support on Android).
*
2017-09-01 21:25:48 +00:00
* @param {Object} state - The redux state of the app.
* @returns {UnsupportedMobileBrowser|void} If the rule is satisfied then
* we should intercept existing component by UnsupportedMobileBrowser.
*/
() => {
const OS = Platform.OS;
if (OS === 'android' || OS === 'ios') {
const mobileAppPromo
= typeof interfaceConfig === 'object'
&& interfaceConfig.MOBILE_APP_PROMO;
return (
typeof mobileAppPromo === 'undefined' || Boolean(mobileAppPromo)
? UnsupportedMobileBrowser
: NoMobileApp);
}
},
state => {
const { webRTCReady } = state['features/base/lib-jitsi-meet'];
switch (typeof webRTCReady) {
case 'boolean':
if (webRTCReady === false) {
return UnsupportedDesktopBrowser;
}
break;
case 'undefined':
// If webRTCReady is not set, then we cannot base a decision on it.
break;
default:
return PluginRequiredBrowser;
}
}
];
/**
2017-09-01 21:25:48 +00:00
* Determines which route is to be rendered in order to depict a specific redux
* store.
*
2017-09-01 21:25:48 +00:00
* @param {(Object|Function)} stateOrGetState - The redux state or
* {@link getState} function.
* @returns {Route}
*/
export function _getRouteToRender(stateOrGetState: Object | Function) {
const route = _super_getRouteToRender(stateOrGetState);
// Intercepts route components if any of component interceptor rules is
// satisfied.
route.component = _interceptComponent(stateOrGetState, route.component);
2017-01-18 12:21:30 +00:00
return route;
}
/**
* Intercepts route components based on a {@link _INTERCEPT_COMPONENT_RULES}.
*
2017-09-01 21:25:48 +00:00
* @param {Object|Function} stateOrGetState - The redux state or
* {@link getState} function.
* @param {ReactElement} component - Current route component to render.
* @private
* @returns {ReactElement} If any of the pre-defined rules is satisfied, returns
* intercepted component.
*/
function _interceptComponent(
2017-09-01 21:25:48 +00:00
stateOrGetState: Object | Function,
component: ReactElement<*>) {
let result;
2017-09-01 21:25:48 +00:00
const state = toState(stateOrGetState);
for (const rule of _INTERCEPT_COMPONENT_RULES) {
result = rule(state);
if (result) {
break;
}
}
return result || component;
}