insomnia/app/models/requestGroup.js
Gregory Schier 1cf1037c93 Better Redux (#43)
* Started refactoring redux stores

* Oh God huge refactor here

* Sync contenst updates and nested folders

* Fixed render tests

* A bunch of tweaks
2016-11-16 09:18:39 -08:00

45 lines
901 B
JavaScript

import * as db from '../common/database';
export const type = 'RequestGroup';
export const prefix = 'fld';
export function init () {
return {
name: 'New Folder',
environment: {},
metaSortKey: -1 * Date.now()
}
}
export function create (patch = {}) {
if (!patch.parentId) {
throw new Error('New Requests missing `parentId`', patch);
}
return db.docCreate(type, patch);
}
export function update (requestGroup, patch) {
return db.docUpdate(requestGroup, patch);
}
export function getById (id) {
return db.get(type, id);
}
export function findByParentId (parentId) {
return db.find(type, {parentId})
}
export function remove (requestGroup) {
return db.remove(requestGroup);
}
export function all () {
return db.all(type);
}
export function duplicate (requestGroup) {
const name = `${requestGroup.name} (Copy)`;
return db.duplicate(requestGroup, {name});
}