From 2b4ef4281649b9bc752e67cd3fb9333aed6ba0d1 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Wed, 15 Apr 2020 14:39:54 -0300 Subject: [PATCH] Remove inactive --- app/actions/actionsTypes.js | 1 + app/lib/appStateMiddleware.js | 8 +++----- app/reducers/app.js | 18 ++++-------------- app/sagas/rooms.js | 4 +--- app/sagas/state.js | 16 +++------------- 5 files changed, 12 insertions(+), 35 deletions(-) diff --git a/app/actions/actionsTypes.js b/app/actions/actionsTypes.js index 33e202a56..f3d816109 100644 --- a/app/actions/actionsTypes.js +++ b/app/actions/actionsTypes.js @@ -64,3 +64,4 @@ export const INVITE_LINKS = createRequestTypes('INVITE_LINKS', [ ...defaultTypes ]); export const SETTINGS = createRequestTypes('SETTINGS', ['CLEAR', 'ADD']); +export const APP_STATE = createRequestTypes('APP_STATE', ['FOREGROUND', 'BACKGROUND']); diff --git a/app/lib/appStateMiddleware.js b/app/lib/appStateMiddleware.js index c0a30abc5..7bc5375f0 100644 --- a/app/lib/appStateMiddleware.js +++ b/app/lib/appStateMiddleware.js @@ -1,9 +1,7 @@ // https://github.com/bamlab/redux-enhancer-react-native-appstate import { AppState } from 'react-native'; -export const FOREGROUND = 'APP_STATE.FOREGROUND'; -export const BACKGROUND = 'APP_STATE.BACKGROUND'; -export const INACTIVE = 'APP_STATE.INACTIVE'; +import { APP_STATE } from '../actions/actionsTypes'; export default () => createStore => (...args) => { const store = createStore(...args); @@ -15,9 +13,9 @@ export default () => createStore => (...args) => { if (currentState !== nextAppState) { let type; if (nextAppState === 'active') { - type = FOREGROUND; + type = APP_STATE.FOREGROUND; } else if (nextAppState === 'background') { - type = BACKGROUND; + type = APP_STATE.BACKGROUND; } if (type) { store.dispatch({ diff --git a/app/reducers/app.js b/app/reducers/app.js index eaf1afdf1..1052d5a46 100644 --- a/app/reducers/app.js +++ b/app/reducers/app.js @@ -1,36 +1,26 @@ -import { FOREGROUND, BACKGROUND, INACTIVE } from '../lib/appStateMiddleware'; -import { APP } from '../actions/actionsTypes'; +import { APP, APP_STATE } from '../actions/actionsTypes'; const initialState = { root: null, ready: false, - inactive: false, + foreground: true, background: false }; export default function app(state = initialState, action) { switch (action.type) { - case FOREGROUND: + case APP_STATE.FOREGROUND: return { ...state, - inactive: false, foreground: true, background: false }; - case BACKGROUND: + case APP_STATE.BACKGROUND: return { ...state, - inactive: false, foreground: false, background: true }; - case INACTIVE: - return { - ...state, - inactive: true, - foreground: false, - background: false - }; case APP.START: return { ...state, diff --git a/app/sagas/rooms.js b/app/sagas/rooms.js index 8af8a290e..5b0d332c2 100644 --- a/app/sagas/rooms.js +++ b/app/sagas/rooms.js @@ -12,7 +12,6 @@ import mergeSubscriptionsRooms from '../lib/methods/helpers/mergeSubscriptionsRo import RocketChat from '../lib/rocketchat'; import buildMessage from '../lib/methods/helpers/buildMessage'; import protectedFunction from '../lib/methods/helpers/protectedFunction'; -import { BACKGROUND, INACTIVE } from '../lib/appStateMiddleware'; const updateRooms = function* updateRooms({ server, newRoomsUpdatedAt }) { const serversDB = database.servers; @@ -109,8 +108,7 @@ const root = function* root() { roomsSuccess: take(types.ROOMS.SUCCESS), roomsFailure: take(types.ROOMS.FAILURE), serverReq: take(types.SERVER.SELECT_REQUEST), - background: take(BACKGROUND), - inactive: take(INACTIVE), + background: take(types.APP_STATE.BACKGROUND), logout: take(types.LOGOUT), timeout: delay(30000) }); diff --git a/app/sagas/state.js b/app/sagas/state.js index 8c9687184..9e375bc35 100644 --- a/app/sagas/state.js +++ b/app/sagas/state.js @@ -1,11 +1,11 @@ import { takeLatest, select, put } from 'redux-saga/effects'; -import { FOREGROUND, BACKGROUND } from '../lib/appStateMiddleware'; import RocketChat from '../lib/rocketchat'; import { setBadgeCount } from '../notifications/push'; import log from '../utils/log'; import { localAuthenticate, saveLastLocalAuthenticationSession } from '../utils/localAuthentication'; import * as actions from '../actions'; +import { APP_STATE } from '../actions/actionsTypes'; const appHasComeBackToForeground = function* appHasComeBackToForeground() { const appRoot = yield select(state => state.app.root); @@ -49,18 +49,8 @@ const appHasComeBackToBackground = function* appHasComeBackToBackground() { }; const root = function* root() { - yield takeLatest( - FOREGROUND, - appHasComeBackToForeground - ); - yield takeLatest( - BACKGROUND, - appHasComeBackToBackground - ); - // yield takeLatest( - // INACTIVE, - // appHasComeBackToBackground - // ); + yield takeLatest(APP_STATE.FOREGROUND, appHasComeBackToForeground); + yield takeLatest(APP_STATE.BACKGROUND, appHasComeBackToBackground); }; export default root;