jiti-meet/react/features/mobile/background/reducer.ts

37 lines
789 B
TypeScript
Raw Normal View History

import ReducerRegistry from '../../base/redux/ReducerRegistry';
2017-02-10 16:13:39 +00:00
import {
APP_STATE_CHANGED,
_SET_APP_STATE_LISTENER
} from './actionTypes';
export interface IBackgroundState {
appState: string;
appStateListener?: Function;
}
/**
* The default/initial redux state of the feature background.
*/
const DEFAULT_STATE = {
appState: 'active'
};
2022-09-05 09:05:07 +00:00
ReducerRegistry.register<IBackgroundState>('features/background', (state = DEFAULT_STATE, action): IBackgroundState => {
switch (action.type) {
case _SET_APP_STATE_LISTENER:
return {
...state,
appStateListener: action.listener
};
case APP_STATE_CHANGED:
return {
...state,
appState: action.appState
};
}
return state;
});