2016-12-01 01:50:59 +00:00
|
|
|
import * as db from '../common/database';
|
|
|
|
|
|
|
|
export const name = 'Folder Meta';
|
|
|
|
export const type = 'RequestGroupMeta';
|
|
|
|
export const prefix = 'fldm';
|
2017-06-15 17:08:24 +00:00
|
|
|
export const canDuplicate = false;
|
2016-12-01 01:50:59 +00:00
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
export function init() {
|
2016-12-01 01:50:59 +00:00
|
|
|
return {
|
|
|
|
parentId: null,
|
2018-05-25 01:44:49 +00:00
|
|
|
collapsed: false
|
2017-03-03 20:09:08 +00:00
|
|
|
};
|
2016-12-01 01:50:59 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
export function migrate(doc) {
|
2016-12-01 01:50:59 +00:00
|
|
|
return doc;
|
|
|
|
}
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
export function create(patch = {}) {
|
2016-12-01 01:50:59 +00:00
|
|
|
if (!patch.parentId) {
|
|
|
|
throw new Error('New RequestGroupMeta missing `parentId`', patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
return db.docCreate(type, patch);
|
|
|
|
}
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
export function update(requestGroupMeta, patch) {
|
2016-12-01 01:50:59 +00:00
|
|
|
return db.docUpdate(requestGroupMeta, patch);
|
|
|
|
}
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
export function getByParentId(parentId) {
|
|
|
|
return db.getWhere(type, { parentId });
|
2016-12-01 01:50:59 +00:00
|
|
|
}
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
export function all() {
|
2016-12-01 01:50:59 +00:00
|
|
|
return db.all(type);
|
|
|
|
}
|