27 lines
826 B
JavaScript
27 lines
826 B
JavaScript
import React from 'react';
|
|
import { take, put, call, takeLast } from 'redux-saga/effects';
|
|
import * as types from '../actions/actionsTypes';
|
|
import { loginSuccess, loginFailure } from '../actions/login';
|
|
import RocketChat from '../lib/rocketchat';
|
|
|
|
function loginCall(args) {
|
|
return RocketChat.loginWithPassword(args);
|
|
}
|
|
|
|
const watchLoginRequest = function* watchLoginRequest() {
|
|
while (true) {
|
|
yield take(types.METEOR.SUCCESS);
|
|
console.log('\n\n[LOGIN METEOR CONNECTED]\n\n');
|
|
const payload = yield take(types.LOGIN.REQUEST);
|
|
try {
|
|
const response = yield call(loginCall, payload);
|
|
yield put(loginSuccess(response));
|
|
console.log('\n\n[LOGIN SUCCESS]\n\n');
|
|
} catch (err) {
|
|
console.log('\n\n[LOGIN FAILURE]\n\n', err);
|
|
yield put(loginFailure(err.status));
|
|
}
|
|
}
|
|
};
|
|
export default watchLoginRequest;
|