| 12345678910111213141516171819202122232425262728293031323334353637 |
- import { NativeEventSubscription } from 'react-native';
-
- import ReducerRegistry from '../../base/redux/ReducerRegistry';
-
- import { APP_STATE_CHANGED, _SET_APP_STATE_SUBSCRIPTION } from './actionTypes';
-
- export interface IMobileBackgroundState {
- appState: string;
- subscription?: NativeEventSubscription;
- }
-
- /**
- * The default/initial redux state of the feature background.
- */
- const DEFAULT_STATE = {
- appState: ''
- };
-
- // eslint-disable-next-line max-len
- ReducerRegistry.register<IMobileBackgroundState>('features/mobile/background', (state = DEFAULT_STATE, action): IMobileBackgroundState => {
- switch (action.type) {
-
- case _SET_APP_STATE_SUBSCRIPTION:
- return {
- ...state,
- subscription: action.subscription
- };
-
- case APP_STATE_CHANGED:
- return {
- ...state,
- appState: action.appState
- };
- }
-
- return state;
- });
|