jiti-meet/react/features/app/reducer.js

48 lines
1.1 KiB
JavaScript
Raw Normal View History

import { SET_ROOM } from '../base/conference';
import { SET_LOCATION_URL } from '../base/connection';
import { ReducerRegistry, set } from '../base/redux';
2017-06-09 19:09:23 +00:00
import { APP_WILL_MOUNT, APP_WILL_UNMOUNT } from './actionTypes';
import { _getRouteToRender } from './functions';
2016-12-07 22:08:35 +00:00
ReducerRegistry.register('features/app', (state = {}, action) => {
switch (action.type) {
2017-06-09 19:09:23 +00:00
case APP_WILL_MOUNT: {
const { app } = action;
if (state.app !== app) {
return {
...state,
2016-12-07 22:08:35 +00:00
/**
2017-07-26 19:40:34 +00:00
* The one and only (i.e. singleton) {@link App} instance which
* is currently mounted.
2016-12-07 22:08:35 +00:00
*
* @type {App}
*/
2017-06-09 19:09:23 +00:00
app
};
}
break;
2017-06-09 19:09:23 +00:00
}
case APP_WILL_UNMOUNT:
if (state.app === action.app) {
return {
...state,
2016-12-07 22:08:35 +00:00
app: undefined
};
}
break;
case SET_LOCATION_URL:
return set(state, 'getRouteToRender', undefined);
case SET_ROOM:
return set(state, 'getRouteToRender', _getRouteToRender);
}
return state;
});