insomnia/app/backend/database/models/workspace.js

47 lines
955 B
JavaScript
Raw Normal View History

import * as db from '../index';
import {DEFAULT_SIDEBAR_WIDTH} from '../../constants';
export const type = 'Workspace';
export const prefix = 'wrk';
export function init () {
return db.initModel({
name: 'New Workspace',
metaSidebarWidth: DEFAULT_SIDEBAR_WIDTH,
metaActiveEnvironmentId: null,
metaActiveRequestId: null,
metaFilter: '',
metaSidebarHidden: false
2016-09-21 20:32:45 +00:00
});
}
2016-09-21 20:32:45 +00:00
export function getById (id) {
return db.get(type, id);
}
2016-09-21 20:32:45 +00:00
export function create (patch = {}) {
return db.docCreate(type, patch);
}
export async function all () {
const workspaces = await db.all(type);
if (workspaces.length === 0) {
await create({name: 'Insomnia'});
return await all();
} else {
return workspaces;
}
}
export function count () {
return db.count(type)
}
export function update (workspace, patch) {
2016-09-21 20:32:45 +00:00
return db.docUpdate(workspace, patch);
}
2016-09-21 20:32:45 +00:00
export function remove (workspace) {
2016-09-21 20:32:45 +00:00
return db.remove(workspace);
}