57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
import { takeLatest, select } from 'redux-saga/effects';
|
|
import { FOREGROUND, BACKGROUND, INACTIVE } from 'redux-enhancer-react-native-appstate';
|
|
|
|
import RocketChat from '../lib/rocketchat';
|
|
import log from '../utils/log';
|
|
import { setBadgeCount } from '../push';
|
|
|
|
const appHasComeBackToForeground = function* appHasComeBackToForeground() {
|
|
const appRoot = yield select(state => state.app.root);
|
|
if (appRoot === 'outside') {
|
|
return;
|
|
}
|
|
const auth = yield select(state => state.login.isAuthenticated);
|
|
if (!auth) {
|
|
return;
|
|
}
|
|
try {
|
|
setBadgeCount();
|
|
return yield RocketChat.setUserPresenceOnline();
|
|
} catch (e) {
|
|
log('appHasComeBackToForeground', e);
|
|
}
|
|
};
|
|
|
|
const appHasComeBackToBackground = function* appHasComeBackToBackground() {
|
|
const appRoot = yield select(state => state.app.root);
|
|
if (appRoot === 'outside') {
|
|
return;
|
|
}
|
|
const auth = yield select(state => state.login.isAuthenticated);
|
|
if (!auth) {
|
|
return;
|
|
}
|
|
try {
|
|
return yield RocketChat.setUserPresenceAway();
|
|
} catch (e) {
|
|
log('appHasComeBackToBackground', e);
|
|
}
|
|
};
|
|
|
|
const root = function* root() {
|
|
yield takeLatest(
|
|
FOREGROUND,
|
|
appHasComeBackToForeground
|
|
);
|
|
yield takeLatest(
|
|
BACKGROUND,
|
|
appHasComeBackToBackground
|
|
);
|
|
yield takeLatest(
|
|
INACTIVE,
|
|
appHasComeBackToBackground
|
|
);
|
|
};
|
|
|
|
export default root;
|