mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
549ce23ce8
* All projects into monorepo * Update CI * More CI updates * Extracted a bunch of things into packages * Publish - insomnia-plugin-base64@1.0.1 - insomnia-plugin-default-headers@1.0.2 - insomnia-plugin-file@1.0.1 - insomnia-plugin-hash@1.0.1 - insomnia-plugin-now@1.0.1 - insomnia-plugin-request@1.0.1 - insomnia-plugin-response@1.0.1 - insomnia-plugin-uuid@1.0.1 - insomnia-cookies@0.0.2 - insomnia-importers@1.5.2 - insomnia-prettify@0.0.3 - insomnia-url@0.0.2 - insomnia-xpath@0.0.2 * A bunch of small fixes * Improved build script * Fixed * Merge dangling files * Usability refactor * Handle duplicate plugin names
76 lines
2.0 KiB
JavaScript
76 lines
2.0 KiB
JavaScript
// @flow
|
|
import * as db from '../common/database';
|
|
import type {BaseModel} from './index';
|
|
|
|
export const name = 'Folder';
|
|
export const type = 'RequestGroup';
|
|
export const prefix = 'fld';
|
|
export const canDuplicate = true;
|
|
|
|
type BaseRequestGroup = {
|
|
name: string,
|
|
description: string,
|
|
environment: Object,
|
|
metaSortKey: number
|
|
};
|
|
|
|
export type RequestGroup = BaseModel & BaseRequestGroup;
|
|
|
|
export function init () {
|
|
return {
|
|
name: 'New Folder',
|
|
description: '',
|
|
environment: {},
|
|
metaSortKey: -1 * Date.now()
|
|
};
|
|
}
|
|
|
|
export function migrate (doc: RequestGroup) {
|
|
return doc;
|
|
}
|
|
|
|
export function create (patch: Object = {}): Promise<RequestGroup> {
|
|
if (!patch.parentId) {
|
|
throw new Error('New RequestGroup missing `parentId`: ' + JSON.stringify(patch));
|
|
}
|
|
|
|
return db.docCreate(type, patch);
|
|
}
|
|
|
|
export function update (requestGroup: RequestGroup, patch: Object = {}): Promise<RequestGroup> {
|
|
return db.docUpdate(requestGroup, patch);
|
|
}
|
|
|
|
export function getById (id: string): Promise<RequestGroup | null> {
|
|
return db.get(type, id);
|
|
}
|
|
|
|
export function findByParentId (parentId: string): Promise<Array<RequestGroup>> {
|
|
return db.find(type, {parentId});
|
|
}
|
|
|
|
export function remove (requestGroup: RequestGroup): Promise<void> {
|
|
return db.remove(requestGroup);
|
|
}
|
|
|
|
export function all (): Promise<Array<RequestGroup>> {
|
|
return db.all(type);
|
|
}
|
|
|
|
export async function duplicate (requestGroup: RequestGroup): Promise<RequestGroup> {
|
|
const name = `${requestGroup.name} (Copy)`;
|
|
|
|
// Get sort key of next request
|
|
const q = {metaSortKey: {$gt: requestGroup.metaSortKey}};
|
|
const [nextRequestGroup] = await db.find(type, q, {metaSortKey: 1});
|
|
const nextSortKey = nextRequestGroup
|
|
? nextRequestGroup.metaSortKey
|
|
: requestGroup.metaSortKey + 100;
|
|
|
|
// Calculate new sort key
|
|
const sortKeyIncrement = (nextSortKey - requestGroup.metaSortKey) / 2;
|
|
const metaSortKey = requestGroup.metaSortKey + sortKeyIncrement;
|
|
|
|
return db.duplicate(requestGroup, {name, metaSortKey});
|
|
}
|