2016-12-01 01:50:59 +00:00
|
|
|
import * as db from '../common/database';
|
2017-03-30 18:52:07 +00:00
|
|
|
import {PREVIEW_MODE_FRIENDLY} from '../common/constants';
|
2016-12-01 01:50:59 +00:00
|
|
|
|
|
|
|
export const name = 'Request Meta';
|
|
|
|
export const type = 'RequestMeta';
|
|
|
|
export const prefix = 'reqm';
|
2017-03-23 22:10:42 +00:00
|
|
|
export const canDuplicate = true;
|
2016-12-01 01:50:59 +00:00
|
|
|
|
|
|
|
export function init () {
|
|
|
|
return {
|
|
|
|
parentId: null,
|
2017-03-30 18:52:07 +00:00
|
|
|
previewMode: PREVIEW_MODE_FRIENDLY,
|
2016-12-01 01:50:59 +00:00
|
|
|
responseFilter: '',
|
2017-03-03 20:09:08 +00:00
|
|
|
activeResponseId: null
|
|
|
|
};
|
2016-12-01 01:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function migrate (doc) {
|
|
|
|
return doc;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function create (patch = {}) {
|
|
|
|
if (!patch.parentId) {
|
|
|
|
throw new Error('New RequestMeta missing `parentId`', patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
return db.docCreate(type, patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function update (requestMeta, patch) {
|
|
|
|
return db.docUpdate(requestMeta, patch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getByParentId (parentId) {
|
2017-03-03 20:09:08 +00:00
|
|
|
return db.getWhere(type, {parentId});
|
2016-12-01 01:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function all () {
|
|
|
|
return db.all(type);
|
|
|
|
}
|