24 lines
713 B
JavaScript
24 lines
713 B
JavaScript
import { takeLatest, select, take, put } from 'redux-saga/effects';
|
|
import { MESSAGES, LOGIN } from '../actions/actionsTypes';
|
|
import { messagesSuccess, messagesFailure } from '../actions/messages';
|
|
import RocketChat from '../lib/rocketchat';
|
|
|
|
const get = function* get({ rid }) {
|
|
const auth = yield select(state => state.login.isAuthenticated);
|
|
if (!auth) {
|
|
yield take(LOGIN.SUCCESS);
|
|
}
|
|
try {
|
|
yield RocketChat.loadMessagesForRoom(rid, null);
|
|
yield RocketChat.readMessages(rid);
|
|
yield put(messagesSuccess());
|
|
} catch (err) {
|
|
console.log(err);
|
|
yield put(messagesFailure(err.status));
|
|
}
|
|
};
|
|
const getData = function* getData() {
|
|
yield takeLatest(MESSAGES.REQUEST, get);
|
|
};
|
|
export default getData;
|