2017-10-11 05:04:49 +00:00
|
|
|
import { delay, SagaIterator } from 'redux-saga';
|
|
|
|
import {
|
|
|
|
call,
|
|
|
|
cancel,
|
|
|
|
fork,
|
|
|
|
put,
|
|
|
|
take,
|
|
|
|
takeLatest,
|
|
|
|
takeEvery,
|
|
|
|
select
|
|
|
|
} from 'redux-saga/effects';
|
2017-10-04 04:37:06 +00:00
|
|
|
import { NODES } from 'config/data';
|
|
|
|
import { getNodeConfig } from 'selectors/config';
|
2017-10-11 05:04:49 +00:00
|
|
|
import { AppState } from 'reducers';
|
|
|
|
import { TypeKeys } from 'actions/config/constants';
|
2017-10-19 02:29:49 +00:00
|
|
|
import { toggleOfflineConfig, changeNode } from 'actions/config';
|
2017-10-11 05:04:49 +00:00
|
|
|
import { State as ConfigState } from 'reducers/config';
|
|
|
|
|
|
|
|
export const getConfig = (state: AppState): ConfigState => state.config;
|
|
|
|
|
|
|
|
export function* pollOfflineStatus(): SagaIterator {
|
|
|
|
while (true) {
|
|
|
|
const offline = !navigator.onLine;
|
|
|
|
const config = yield select(getConfig);
|
|
|
|
const offlineState = config.offline;
|
|
|
|
if (offline !== offlineState) {
|
|
|
|
yield put(toggleOfflineConfig());
|
|
|
|
}
|
|
|
|
yield call(delay, 250);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fork our recurring API call, watch for the need to cancel.
|
|
|
|
function* handlePollOfflineStatus(): SagaIterator {
|
|
|
|
const pollOfflineStatusTask = yield fork(pollOfflineStatus);
|
|
|
|
yield take('CONFIG_STOP_POLL_OFFLINE_STATE');
|
|
|
|
yield cancel(pollOfflineStatusTask);
|
|
|
|
}
|
|
|
|
|
2017-08-28 18:05:38 +00:00
|
|
|
// @HACK For now we reload the app when doing a language swap to force non-connected
|
|
|
|
// data to reload. Also the use of timeout to avoid using additional actions for now.
|
2017-09-25 02:06:28 +00:00
|
|
|
function* reload(): SagaIterator {
|
|
|
|
setTimeout(() => location.reload(), 250);
|
2017-08-28 18:05:38 +00:00
|
|
|
}
|
|
|
|
|
2017-10-04 04:37:06 +00:00
|
|
|
function* handleNodeChangeIntent(action): SagaIterator {
|
|
|
|
const nodeConfig = yield select(getNodeConfig);
|
|
|
|
const currentNetwork = nodeConfig.network;
|
|
|
|
const actionNetwork = NODES[action.payload].network;
|
|
|
|
yield put(changeNode(action.payload));
|
|
|
|
if (currentNetwork !== actionNetwork) {
|
|
|
|
yield call(reload);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-11 05:04:49 +00:00
|
|
|
export default function* configSaga(): SagaIterator {
|
|
|
|
yield takeLatest(
|
|
|
|
TypeKeys.CONFIG_POLL_OFFLINE_STATUS,
|
|
|
|
handlePollOfflineStatus
|
|
|
|
);
|
|
|
|
yield takeEvery(TypeKeys.CONFIG_NODE_CHANGE_INTENT, handleNodeChangeIntent);
|
|
|
|
yield takeEvery(TypeKeys.CONFIG_LANGUAGE_CHANGE, reload);
|
2017-08-28 18:05:38 +00:00
|
|
|
}
|