insomnia/app/models/workspace.js

41 lines
736 B
JavaScript
Raw Normal View History

2016-11-10 05:56:23 +00:00
import * as db from '../common/database';
export const type = 'Workspace';
export const prefix = 'wrk';
export function init () {
2016-11-10 01:15:27 +00:00
return {
name: 'New Workspace',
2016-11-10 01:15:27 +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);
}