49 lines
1.5 KiB
JavaScript
49 lines
1.5 KiB
JavaScript
import { select, takeLatest } from 'redux-saga/effects';
|
|
|
|
import log from '../lib/methods/helpers/log';
|
|
import { localAuthenticate, saveLastLocalAuthenticationSession } from '../lib/methods/helpers/localAuthentication';
|
|
import { APP_STATE } from '../actions/actionsTypes';
|
|
import { RootEnum } from '../definitions';
|
|
import { Services } from '../lib/services';
|
|
|
|
const appHasComeBackToForeground = function* appHasComeBackToForeground() {
|
|
const appRoot = yield select(state => state.app.root);
|
|
if (appRoot === RootEnum.ROOT_OUTSIDE) {
|
|
return;
|
|
}
|
|
const login = yield select(state => state.login);
|
|
const server = yield select(state => state.server);
|
|
if (!login.isAuthenticated || login.isFetching || server.connecting || server.loading || server.changingServer) {
|
|
return;
|
|
}
|
|
try {
|
|
yield localAuthenticate(server.server);
|
|
Services.checkAndReopen();
|
|
return yield Services.setUserPresenceOnline();
|
|
} catch (e) {
|
|
log(e);
|
|
}
|
|
};
|
|
|
|
const appHasComeBackToBackground = function* appHasComeBackToBackground() {
|
|
const appRoot = yield select(state => state.app.root);
|
|
if (appRoot === RootEnum.ROOT_OUTSIDE) {
|
|
return;
|
|
}
|
|
try {
|
|
const server = yield select(state => state.server.server);
|
|
yield saveLastLocalAuthenticationSession(server);
|
|
|
|
yield Services.setUserPresenceAway();
|
|
} catch (e) {
|
|
log(e);
|
|
}
|
|
};
|
|
|
|
const root = function* root() {
|
|
yield takeLatest(APP_STATE.FOREGROUND, appHasComeBackToForeground);
|
|
yield takeLatest(APP_STATE.BACKGROUND, appHasComeBackToBackground);
|
|
};
|
|
|
|
export default root;
|