mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
e9b87686e1
* Upgrade electron-builder * Fix optional dep * Add another dep * Fix travis * Fix 7zip install * Fix icons * Minor fix * Delete changelog * Moved build scripts to JS * Some adjustments * Remove lines * Add 7zip back * Update scripts * Small tweaks * Fix electronbuilder config * snap dependency * Fix pkg * Remove snapd dep * Updated deps and lots of fixes * Travis update * Return package name * Remove snap for now * Remove portable * Try fixing code signing * Bump cache * Disable automatic tests * Fix windows artifacts * package-lock for app/ * Try fix npm install * Try again * Some minor tweaks * Preleases by default
66 lines
1.8 KiB
JavaScript
66 lines
1.8 KiB
JavaScript
// @flow
|
|
import type {BaseModel} from './index';
|
|
import * as db from '../common/database';
|
|
import {DEFAULT_SIDEBAR_WIDTH, DEFAULT_PANE_WIDTH, DEFAULT_PANE_HEIGHT} from '../common/constants';
|
|
|
|
export const name = 'Workspace Meta';
|
|
export const type = 'WorkspaceMeta';
|
|
export const prefix = 'wrkm';
|
|
export const canDuplicate = false;
|
|
|
|
type BaseWorkspaceMeta = {
|
|
activeRequestId: string | null,
|
|
activeEnvironmentId: string | null,
|
|
sidebarFilter: string,
|
|
sidebarHidden: boolean,
|
|
sidebarWidth: number,
|
|
paneWidth: number,
|
|
paneHeight: number,
|
|
hasSeen: boolean
|
|
};
|
|
|
|
export type WorkspaceMeta = BaseWorkspaceMeta & BaseModel;
|
|
|
|
export function init (): BaseWorkspaceMeta {
|
|
return {
|
|
parentId: null,
|
|
activeRequestId: null,
|
|
activeEnvironmentId: null,
|
|
sidebarFilter: '',
|
|
sidebarHidden: false,
|
|
sidebarWidth: DEFAULT_SIDEBAR_WIDTH,
|
|
paneWidth: DEFAULT_PANE_WIDTH,
|
|
paneHeight: DEFAULT_PANE_HEIGHT,
|
|
hasSeen: true
|
|
};
|
|
}
|
|
|
|
export function migrate (doc: WorkspaceMeta): WorkspaceMeta {
|
|
return doc;
|
|
}
|
|
|
|
export function create (patch: Object = {}): Promise<WorkspaceMeta> {
|
|
if (!patch.parentId) {
|
|
throw new Error(`New WorkspaceMeta missing parentId ${JSON.stringify(patch)}`);
|
|
}
|
|
|
|
return db.docCreate(type, patch);
|
|
}
|
|
|
|
export function update (workspaceMeta: WorkspaceMeta, patch: Object = {}): Promise<WorkspaceMeta> {
|
|
return db.docUpdate(workspaceMeta, patch);
|
|
}
|
|
|
|
export async function getByParentId (parentId: string): Promise<WorkspaceMeta | null> {
|
|
return db.getWhere(type, {parentId});
|
|
}
|
|
|
|
export async function getOrCreateByParentId (parentId: string): Promise<WorkspaceMeta> {
|
|
const doc = await getByParentId(parentId);
|
|
return doc || this.create({parentId});
|
|
}
|
|
|
|
export function all (): Promise<Array<WorkspaceMeta>> {
|
|
return db.all(type);
|
|
}
|