2021-05-12 06:35:00 +00:00
|
|
|
import {
|
2021-07-22 23:04:56 +00:00
|
|
|
DEFAULT_PANE_HEIGHT,
|
|
|
|
DEFAULT_PANE_WIDTH,
|
|
|
|
DEFAULT_SIDEBAR_WIDTH,
|
2021-05-12 06:35:00 +00:00
|
|
|
} from '../common/constants';
|
2021-07-22 23:04:56 +00:00
|
|
|
import { database as db } from '../common/database';
|
|
|
|
import type { BaseModel } from './index';
|
2021-05-12 06:35:00 +00:00
|
|
|
|
|
|
|
export const name = 'Workspace Meta';
|
|
|
|
export const type = 'WorkspaceMeta';
|
|
|
|
export const prefix = 'wrkm';
|
|
|
|
export const canDuplicate = false;
|
|
|
|
export const canSync = false;
|
|
|
|
|
|
|
|
interface BaseWorkspaceMeta {
|
|
|
|
activeActivity: string | null;
|
|
|
|
activeEnvironmentId: string | null;
|
|
|
|
activeRequestId: string | null;
|
|
|
|
activeUnitTestSuiteId: string | null;
|
|
|
|
cachedGitLastAuthor: string | null;
|
|
|
|
cachedGitLastCommitTime: number | null;
|
|
|
|
cachedGitRepositoryBranch: string | null;
|
|
|
|
gitRepositoryId: string | null;
|
|
|
|
hasSeen: boolean;
|
|
|
|
paneHeight: number;
|
|
|
|
paneWidth: number;
|
|
|
|
parentId: string | null;
|
|
|
|
previewHidden: boolean;
|
|
|
|
sidebarFilter: string;
|
|
|
|
sidebarHidden: boolean;
|
|
|
|
sidebarWidth: number;
|
2021-06-22 20:45:30 +00:00
|
|
|
pushSnapshotOnInitialize: boolean;
|
2021-05-12 06:35:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export type WorkspaceMeta = BaseWorkspaceMeta & BaseModel;
|
|
|
|
|
2021-06-16 19:19:00 +00:00
|
|
|
export const isWorkspaceMeta = (model: Pick<BaseModel, 'type'>): model is WorkspaceMeta => (
|
|
|
|
model.type === type
|
|
|
|
);
|
|
|
|
|
2021-05-12 06:35:00 +00:00
|
|
|
export function init(): BaseWorkspaceMeta {
|
|
|
|
return {
|
|
|
|
activeActivity: null,
|
|
|
|
activeEnvironmentId: null,
|
|
|
|
activeRequestId: null,
|
|
|
|
activeUnitTestSuiteId: null,
|
|
|
|
cachedGitLastAuthor: null,
|
|
|
|
cachedGitLastCommitTime: null,
|
|
|
|
cachedGitRepositoryBranch: null,
|
|
|
|
gitRepositoryId: null,
|
|
|
|
hasSeen: true,
|
|
|
|
paneHeight: DEFAULT_PANE_HEIGHT,
|
|
|
|
paneWidth: DEFAULT_PANE_WIDTH,
|
|
|
|
parentId: null,
|
|
|
|
previewHidden: false,
|
|
|
|
sidebarFilter: '',
|
|
|
|
sidebarHidden: false,
|
|
|
|
sidebarWidth: DEFAULT_SIDEBAR_WIDTH,
|
2021-06-22 20:45:30 +00:00
|
|
|
pushSnapshotOnInitialize: false,
|
2021-05-12 06:35:00 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export function migrate(doc: WorkspaceMeta) {
|
|
|
|
return doc;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function create(patch: Partial<WorkspaceMeta> = {}) {
|
|
|
|
if (!patch.parentId) {
|
|
|
|
throw new Error(`New WorkspaceMeta missing parentId ${JSON.stringify(patch)}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
return db.docCreate<WorkspaceMeta>(type, patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function update(workspaceMeta: WorkspaceMeta, patch: Partial<WorkspaceMeta> = {}) {
|
|
|
|
return db.docUpdate<WorkspaceMeta>(workspaceMeta, patch);
|
|
|
|
}
|
|
|
|
|
2021-06-22 20:45:30 +00:00
|
|
|
export async function updateByParentId(parentId: string, patch: Partial<WorkspaceMeta> = {}) {
|
|
|
|
const meta = await getByParentId(parentId);
|
2021-05-12 06:35:00 +00:00
|
|
|
// @ts-expect-error -- TSCONVERSION appears to be a genuine error not previously caught by Flow
|
|
|
|
return db.docUpdate<WorkspaceMeta>(meta, patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getByParentId(parentId: string) {
|
|
|
|
return db.getWhere<WorkspaceMeta>(type, { parentId });
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getByGitRepositoryId(gitRepositoryId: string) {
|
|
|
|
// @ts-expect-error -- TSCONVERSION needs generic for query
|
|
|
|
return db.getWhere<WorkspaceMeta>(type, { gitRepositoryId });
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getOrCreateByParentId(parentId: string) {
|
|
|
|
const doc = await getByParentId(parentId);
|
|
|
|
return doc || create({ parentId });
|
|
|
|
}
|
|
|
|
|
|
|
|
export function all() {
|
|
|
|
return db.all<WorkspaceMeta>(type);
|
|
|
|
}
|