vn-verdnaturachat/app/reducers/app.js

59 lines
1016 B
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',
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,
2018-12-05 20:52:08 +00:00
ready: false
};
case APP.READY:
return {
...state,
2018-12-05 20:52:08 +00:00
ready: true
};
default:
return state;
}
}