2016-11-09 04:26:49 +00:00
|
|
|
import * as db from '../database';
|
2016-10-02 20:57:00 +00:00
|
|
|
|
|
|
|
export const type = 'Workspace';
|
|
|
|
export const prefix = 'wrk';
|
|
|
|
export function init () {
|
|
|
|
return db.initModel({
|
|
|
|
name: 'New Workspace',
|
2016-10-21 17:20:36 +00:00
|
|
|
metaActiveEnvironmentId: null
|
2016-09-21 20:32:45 +00:00
|
|
|
});
|
2016-10-02 20:57:00 +00:00
|
|
|
}
|
2016-09-21 20:32:45 +00:00
|
|
|
|
2016-10-02 20:57:00 +00:00
|
|
|
export function getById (id) {
|
|
|
|
return db.get(type, id);
|
|
|
|
}
|
2016-09-21 20:32:45 +00:00
|
|
|
|
2016-10-02 20:57:00 +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-10-02 20:57:00 +00:00
|
|
|
}
|
2016-09-21 20:32:45 +00:00
|
|
|
|
2016-10-02 20:57:00 +00:00
|
|
|
export function remove (workspace) {
|
2016-09-21 20:32:45 +00:00
|
|
|
return db.remove(workspace);
|
2016-10-02 20:57:00 +00:00
|
|
|
}
|