2022-07-01 12:32:39 +03:00
|
|
|
import ReducerRegistry from '../redux/ReducerRegistry';
|
2016-10-05 09:36:59 -05:00
|
|
|
|
2017-06-09 14:09:23 -05:00
|
|
|
import { APP_WILL_MOUNT, APP_WILL_UNMOUNT } from './actionTypes';
|
2016-10-05 09:36:59 -05:00
|
|
|
|
2022-07-01 12:32:39 +03:00
|
|
|
export interface IAppState {
|
2022-09-23 11:13:32 +03:00
|
|
|
app?: any;
|
2022-07-01 12:32:39 +03:00
|
|
|
}
|
|
|
|
|
|
2022-09-05 12:05:07 +03:00
|
|
|
ReducerRegistry.register<IAppState>('features/base/app', (state = {}, action): IAppState => {
|
2016-10-05 09:36:59 -05:00
|
|
|
switch (action.type) {
|
2017-06-09 14:09:23 -05:00
|
|
|
case APP_WILL_MOUNT: {
|
|
|
|
|
const { app } = action;
|
|
|
|
|
|
|
|
|
|
if (state.app !== app) {
|
2016-10-05 09:36:59 -05:00
|
|
|
return {
|
|
|
|
|
...state,
|
2017-06-09 14:09:23 -05:00
|
|
|
app
|
2016-10-05 09:36:59 -05:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
break;
|
2017-06-09 14:09:23 -05:00
|
|
|
}
|
2016-10-05 09:36:59 -05:00
|
|
|
|
|
|
|
|
case APP_WILL_UNMOUNT:
|
|
|
|
|
if (state.app === action.app) {
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
2016-12-07 16:08:35 -06:00
|
|
|
app: undefined
|
2016-10-05 09:36:59 -05:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return state;
|
|
|
|
|
});
|