vn-verdnaturachat/app/reducers/app.js

62 lines
1.0 KiB
JavaScript
Raw Normal View History

import { FOREGROUND, BACKGROUND, INACTIVE } from 'redux-enhancer-react-native-appstate';
import { APP } from '../actions/actionsTypes';
const initialState = {
root: null,
stackRoot: 'RoomsListView',
starting: true,
ready: false,
inactive: false,
background: false
};
export default function app(state = initialState, action) {
switch (action.type) {
case FOREGROUND:
return {
...state,
inactive: false,
foreground: true,
background: false
};
case BACKGROUND:
return {
...state,
inactive: false,
foreground: false,
background: true
};
case INACTIVE:
return {
...state,
inactive: true,
foreground: false,
background: false
};
case APP.START:
return {
...state,
root: action.root
};
case APP.SET_STACK_ROOT:
return {
...state,
stackRoot: action.stackRoot
};
case APP.INIT:
return {
...state,
ready: false,
starting: true
};
case APP.READY:
return {
...state,
ready: true,
starting: false
};
default:
return state;
}
}