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

31 lines
642 B
JavaScript
Raw Normal View History

import { ReducerRegistry } from '../../base/redux';
2017-02-10 16:13:39 +00:00
import {
_SET_APP_STATE_LISTENER,
APP_STATE_CHANGED
} from './actionTypes';
const INITIAL_STATE = {
appState: 'active'
};
ReducerRegistry.register(
'features/background',
(state = INITIAL_STATE, action) => {
switch (action.type) {
case _SET_APP_STATE_LISTENER:
return {
...state,
appStateListener: action.listener
};
case APP_STATE_CHANGED:
return {
...state,
appState: action.appState
};
}
return state;
});