vn-verdnaturachat/app/sagas/rooms.js

98 lines
2.6 KiB
JavaScript
Raw Normal View History

2017-11-21 16:55:32 +00:00
import { put, call, takeLatest, take, select, race, fork, cancel } from 'redux-saga/effects';
import { delay } from 'redux-saga';
2017-08-17 02:06:22 +00:00
import * as types from '../actions/actionsTypes';
import { roomsSuccess, roomsFailure } from '../actions/rooms';
2017-11-20 22:18:00 +00:00
import { addUserTyping, removeUserTyping } from '../actions/room';
import { messagesRequest } from '../actions/messages';
2017-08-17 02:06:22 +00:00
import RocketChat from '../lib/rocketchat';
const getRooms = function* getRooms() {
return yield RocketChat.getRooms();
};
2017-08-17 02:06:22 +00:00
const watchRoomsRequest = function* watchRoomsRequest() {
try {
yield call(getRooms);
yield put(roomsSuccess());
} catch (err) {
yield put(roomsFailure(err.status));
2017-08-17 02:06:22 +00:00
}
};
2017-11-21 16:55:32 +00:00
const cancelTyping = function* cancelTyping(username) {
while (true) {
const { typing, timeout } = yield race({
typing: take(types.ROOM.USER_TYPING),
timeout: yield call(delay, 5000)
});
if (timeout || (typing.username === username && !typing.typing)) {
return yield put(removeUserTyping(username));
}
}
};
const usersTyping = function* usersTyping({ rid }) {
2017-11-20 22:18:00 +00:00
while (true) {
const { _rid, username, typing } = yield take(types.ROOM.USER_TYPING);
if (_rid === rid) {
2017-11-21 16:55:32 +00:00
yield (typing ? put(addUserTyping(username)) : put(removeUserTyping(username)));
if (typing) {
fork(cancelTyping, username);
}
2017-11-20 22:18:00 +00:00
}
}
};
2017-11-21 16:55:32 +00:00
const watchRoomOpen = function* watchRoomOpen({ room }) {
2017-11-20 22:18:00 +00:00
const auth = yield select(state => state.login.isAuthenticated);
if (!auth) {
yield take(types.LOGIN.SUCCESS);
}
2017-11-21 16:55:32 +00:00
2017-11-20 22:18:00 +00:00
const subscriptions = [];
2017-11-21 16:55:32 +00:00
yield put(messagesRequest({ rid: room.rid }));
2017-11-20 22:18:00 +00:00
const { open } = yield race({
messages: take(types.MESSAGES.SUCCESS),
2017-11-21 16:55:32 +00:00
open: take(types.ROOM.OPEN)
2017-11-20 22:18:00 +00:00
});
if (open) {
return;
}
2017-11-21 16:55:32 +00:00
RocketChat.readMessages(room.rid);
subscriptions.push(RocketChat.subscribe('stream-room-messages', room.rid, false));
subscriptions.push(RocketChat.subscribe('stream-notify-room', `${ room.rid }/typing`, false));
const thread = yield fork(usersTyping, { rid: room.rid });
yield take(types.ROOM.OPEN);
2017-11-20 22:18:00 +00:00
cancel(thread);
subscriptions.forEach(sub => sub.stop());
};
2017-11-21 16:55:32 +00:00
const watchImTyping = function* watchImTyping({ status }) {
const auth = yield select(state => state.login.isAuthenticated);
if (!auth) {
yield take(types.LOGIN.SUCCESS);
}
const room = yield select(state => state.room);
if (!room) {
return;
}
yield RocketChat.emitTyping(room.rid, status);
if (status) {
yield call(delay, 5000);
yield RocketChat.emitTyping(room.rid, false);
}
};
2017-11-20 22:18:00 +00:00
const root = function* root() {
2017-11-21 16:55:32 +00:00
yield takeLatest(types.ROOM.IM_TYPING, watchImTyping);
2017-11-20 22:18:00 +00:00
yield takeLatest(types.LOGIN.SUCCESS, watchRoomsRequest);
2017-11-21 16:55:32 +00:00
yield takeLatest(types.ROOM.OPEN, watchRoomOpen);
};
export default root;