2018-04-24 19:34:03 +00:00
|
|
|
import { put, takeLatest } from 'redux-saga/effects';
|
2018-05-18 17:55:08 +00:00
|
|
|
|
2018-03-02 15:11:34 +00:00
|
|
|
import * as types from '../actions/actionsTypes';
|
|
|
|
import RocketChat from '../lib/rocketchat';
|
2018-04-24 19:34:03 +00:00
|
|
|
import { readyMentionedMessages } from '../actions/mentionedMessages';
|
2018-05-18 17:55:08 +00:00
|
|
|
import log from '../utils/log';
|
2018-03-02 15:11:34 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
let sub;
|
|
|
|
let newSub;
|
|
|
|
|
|
|
|
const openMentionedMessagesRoom = function* openMentionedMessagesRoom({ rid, limit }) {
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
|
|
|
newSub = yield RocketChat.subscribe('mentionedMessages', rid, limit);
|
|
|
|
yield put(readyMentionedMessages());
|
|
|
|
if (sub) {
|
2018-05-29 17:09:20 +00:00
|
|
|
sub.unsubscribe().catch(err => console.warn(err));
|
2018-05-18 17:55:08 +00:00
|
|
|
}
|
|
|
|
sub = newSub;
|
|
|
|
} catch (e) {
|
|
|
|
log('openMentionedMessagesRoom', e);
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const closeMentionedMessagesRoom = function* closeMentionedMessagesRoom() {
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
|
|
|
if (sub) {
|
|
|
|
yield sub.unsubscribe();
|
|
|
|
}
|
|
|
|
if (newSub) {
|
|
|
|
yield newSub.unsubscribe();
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
log('closeMentionedMessagesRoom', e);
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
2018-03-02 15:11:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const root = function* root() {
|
2018-04-24 19:34:03 +00:00
|
|
|
yield takeLatest(types.MENTIONED_MESSAGES.OPEN, openMentionedMessagesRoom);
|
|
|
|
yield takeLatest(types.MENTIONED_MESSAGES.CLOSE, closeMentionedMessagesRoom);
|
2018-03-02 15:11:34 +00:00
|
|
|
};
|
|
|
|
export default root;
|