44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import { delay } from 'redux-saga';
|
|
import { select, put, call, take, takeLatest } from 'redux-saga/effects';
|
|
import { NavigationActions } from '../Navigation';
|
|
|
|
import { CREATE_CHANNEL, LOGIN } from '../actions/actionsTypes';
|
|
import { createChannelSuccess, createChannelFailure } from '../actions/createChannel';
|
|
import RocketChat from '../lib/rocketchat';
|
|
|
|
const create = function* create(data) {
|
|
return yield RocketChat.createChannel(data);
|
|
};
|
|
|
|
const handleRequest = function* handleRequest({ data }) {
|
|
try {
|
|
yield delay(1000);
|
|
const auth = yield select(state => state.login.isAuthenticated);
|
|
if (!auth) {
|
|
yield take(LOGIN.SUCCESS);
|
|
}
|
|
const result = yield call(create, data);
|
|
const { rid, name } = result;
|
|
NavigationActions.popToRoot();
|
|
yield delay(1000);
|
|
NavigationActions.push({
|
|
screen: 'RoomView',
|
|
title: name,
|
|
passProps: {
|
|
room: { rid, name },
|
|
rid,
|
|
name
|
|
}
|
|
});
|
|
yield put(createChannelSuccess(result));
|
|
} catch (err) {
|
|
yield put(createChannelFailure(err));
|
|
}
|
|
};
|
|
|
|
const root = function* root() {
|
|
yield takeLatest(CREATE_CHANNEL.REQUEST, handleRequest);
|
|
};
|
|
|
|
export default root;
|