Rocket.Chat.ReactNative/app/sagas/init.js

35 lines
1.2 KiB
JavaScript
Raw Normal View History

import { AsyncStorage } from 'react-native';
import { call, put, takeLatest } from 'redux-saga/effects';
import * as actions from '../actions';
import { setServer } from '../actions/server';
2017-11-13 13:19:24 +00:00
import { restoreToken } from '../actions/login';
import { APP } from '../actions/actionsTypes';
2017-11-19 02:44:55 +00:00
import realm from '../lib/realm';
import RocketChat from '../lib/rocketchat';
const restore = function* restore() {
try {
2017-11-13 13:19:24 +00:00
const token = yield call([AsyncStorage, 'getItem'], 'reactnativemeteor_usertoken');
if (token) {
yield put(restoreToken(token));
}
const currentServer = yield call([AsyncStorage, 'getItem'], 'currentServer');
if (currentServer) {
yield put(setServer(currentServer));
2017-11-24 20:44:52 +00:00
const settings = realm.objects('settings');
yield put(actions.setAllSettings(RocketChat.parseSettings(settings.slice(0, settings.length))));
const permissions = realm.objects('permissions');
yield put(actions.setAllPermissions(RocketChat.parsePermissions(permissions.slice(0, permissions.length))));
}
2017-11-13 13:19:24 +00:00
yield put(actions.appReady({}));
} catch (e) {
console.log(e);
}
};
const root = function* root() {
yield takeLatest(APP.INIT, restore);
};
export default root;