mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
import {bindActionCreators} from 'redux';
|
|
import * as entitiesActions from './modules/entities';
|
|
import * as globalActions from './modules/global';
|
|
import * as db from '../../backend/database';
|
|
import * as models from '../../backend/models';
|
|
import * as fetch from '../../common/fetch';
|
|
|
|
export async function initStore (dispatch) {
|
|
const entities = bindActionCreators(entitiesActions, dispatch);
|
|
const global = bindActionCreators(globalActions, dispatch);
|
|
const handleNewChanges = entities.addChanges;
|
|
const handleCommand = global.newCommand;
|
|
|
|
console.log('-- Restoring Store --');
|
|
|
|
const start = Date.now();
|
|
|
|
db.offChange(handleNewChanges);
|
|
fetch.offCommand(handleCommand);
|
|
|
|
// Restore docs in parent->child->grandchild order
|
|
const results = [
|
|
await models.settings.getOrCreate(),
|
|
await models.workspace.all(),
|
|
await models.environment.all(),
|
|
await models.cookieJar.all(),
|
|
await models.requestGroup.all(),
|
|
await models.request.all()
|
|
];
|
|
|
|
for (let docs of results) {
|
|
docs = Array.isArray(docs) ? docs : [docs];
|
|
handleNewChanges(docs.map(doc => [db.CHANGE_UPDATE, doc]));
|
|
}
|
|
|
|
console.log(`-- Restored DB in ${(Date.now() - start) / 1000} s --`);
|
|
db.onChange(handleNewChanges);
|
|
fetch.onCommand(handleCommand);
|
|
}
|