2016-11-16 17:18:39 +00:00
|
|
|
import {bindActionCreators, combineReducers} from 'redux';
|
|
|
|
import entitiesReducer from './entities';
|
|
|
|
import * as entities from './entities';
|
2016-12-01 01:50:59 +00:00
|
|
|
import configureStore from '../create';
|
2016-11-16 17:18:39 +00:00
|
|
|
import globalReducer from './global';
|
|
|
|
import * as global from './global';
|
|
|
|
import * as db from '../../../common/database';
|
|
|
|
import * as models from '../../../models';
|
|
|
|
import * as fetch from '../../../common/fetch';
|
|
|
|
|
2016-11-30 03:55:27 +00:00
|
|
|
export async function init () {
|
|
|
|
const store = configureStore();
|
|
|
|
|
|
|
|
// Do things that must happen before initial render
|
|
|
|
const {addChanges} = bindActionCreators(entities, store.dispatch);
|
|
|
|
const {newCommand} = bindActionCreators(global, store.dispatch);
|
2016-11-16 17:18:39 +00:00
|
|
|
|
|
|
|
// Restore docs in parent->child->grandchild order
|
|
|
|
const allDocs = [
|
|
|
|
...(await models.settings.all()),
|
|
|
|
...(await models.workspace.all()),
|
2016-12-01 01:50:59 +00:00
|
|
|
...(await models.workspaceMeta.all()),
|
2016-11-16 17:18:39 +00:00
|
|
|
...(await models.environment.all()),
|
|
|
|
...(await models.cookieJar.all()),
|
|
|
|
...(await models.requestGroup.all()),
|
2016-12-01 01:50:59 +00:00
|
|
|
...(await models.requestGroupMeta.all()),
|
|
|
|
...(await models.request.all()),
|
|
|
|
...(await models.requestMeta.all())
|
2016-11-16 17:18:39 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// Link DB changes to entities reducer/actions
|
|
|
|
const changes = allDocs.map(doc => [db.CHANGE_UPDATE, doc]);
|
|
|
|
addChanges(changes);
|
|
|
|
db.onChange(addChanges);
|
|
|
|
|
|
|
|
// Bind to fetch commands
|
|
|
|
fetch.onCommand(newCommand);
|
|
|
|
|
2016-11-30 03:55:27 +00:00
|
|
|
store.dispatch(global.init());
|
|
|
|
|
|
|
|
return store;
|
2016-11-16 17:18:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const reducer = combineReducers({
|
|
|
|
entities: entitiesReducer,
|
|
|
|
global: globalReducer,
|
|
|
|
});
|