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

26 lines
786 B
JavaScript
Raw Normal View History

/* @flow */
import { isRoomValid } from '../base/conference';
import { RouteRegistry } from '../base/react';
import { Conference } from '../conference';
import { Entryway } from '../welcome';
/**
* Determines which route is to be rendered in order to depict a specific Redux
* store.
*
* @param {(Object|Function)} stateOrGetState - Redux state or Regux getState()
* method.
* @returns {Route}
*/
export function _getRouteToRender(stateOrGetState: Object | Function) {
const state
= typeof stateOrGetState === 'function'
2017-01-13 22:37:53 +00:00
? stateOrGetState()
: stateOrGetState;
const { room } = state['features/base/conference'];
const component = isRoomValid(room) ? Conference : Entryway;
return RouteRegistry.getRouteByComponent(component);
}