2019-08-31 04:07:25 +05:00
|
|
|
import { call, put, select } from 'redux-saga/effects';
|
|
|
|
|
import { push } from 'connected-react-router';
|
|
|
|
|
|
|
|
|
|
import { pathsMatchSelector } from '../../../selectors';
|
|
|
|
|
import Paths from '../../../constants/Paths';
|
|
|
|
|
|
|
|
|
|
export function* goToLoginService() {
|
|
|
|
|
yield put(push(Paths.LOGIN));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function* goToRootService() {
|
|
|
|
|
yield put(push(Paths.ROOT));
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-24 01:05:22 +05:00
|
|
|
export function* handleLocationChangeService() {
|
2019-08-31 04:07:25 +05:00
|
|
|
const pathsMatch = yield select(pathsMatchSelector);
|
|
|
|
|
|
|
|
|
|
if (!pathsMatch) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (pathsMatch.path) {
|
|
|
|
|
case Paths.ROOT:
|
|
|
|
|
case Paths.PROJECTS:
|
|
|
|
|
case Paths.BOARDS:
|
|
|
|
|
case Paths.CARDS:
|
|
|
|
|
yield call(goToLoginService);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
}
|
|
|
|
|
}
|