🔥 ⚡ Major Update
* Adds Actions, Redicers and Middlewares * Adds Http Service * Adds Cancel option for Http Service * Adds HOC's for API Loader, Sidebar and Headers * Adds Random key generator for Routes
This commit is contained in:
29
src/middlewares/login.middleware.js
Normal file
29
src/middlewares/login.middleware.js
Normal file
@@ -0,0 +1,29 @@
|
||||
import { put, call, fork, takeEvery } from "redux-saga/effects";
|
||||
import { LOGIN_REQUEST, LOGIN_SUCCESS } from "../utils/constants";
|
||||
import { loginMock } from "../modules/login/login.service";
|
||||
import { history } from '../core/store';
|
||||
function* loginWatcher() {
|
||||
yield takeEvery(LOGIN_REQUEST, loginWorker);
|
||||
}
|
||||
|
||||
function* loginWorker(action) {
|
||||
let { email, password } = action;
|
||||
let res = yield call(loginApi, { email, password });
|
||||
if (res && res.data) {
|
||||
let { token } = res.data;
|
||||
yield put({
|
||||
type: LOGIN_SUCCESS,
|
||||
payload: {
|
||||
token
|
||||
}
|
||||
});
|
||||
history.push('/dashboard');
|
||||
}
|
||||
console.log(res);
|
||||
}
|
||||
|
||||
function loginApi(params) {
|
||||
return loginMock(params);
|
||||
}
|
||||
|
||||
export const LoginSaga = [fork(loginWatcher)];
|
||||
Reference in New Issue
Block a user