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

38 lines
836 B
JavaScript
Raw Normal View History

import { ReducerRegistry } from '../base/redux';
2017-06-09 19:09:23 +00:00
import { APP_WILL_MOUNT, APP_WILL_UNMOUNT } from './actionTypes';
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
/**
* The one and only (i.e. singleton) App instance which is
* currently mounted.
*
* @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;
}
return state;
});