2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/model/meta.js

135 lines
3.8 KiB
JavaScript
Raw Normal View History

2018-01-24 11:52:05 +00:00
const BaseDocument = require('./document');
2018-01-16 06:09:17 +00:00
const frappe = require('frappejs');
2018-01-12 12:25:07 +00:00
2018-01-24 11:52:05 +00:00
module.exports = class BaseMeta extends BaseDocument {
2018-01-12 12:25:07 +00:00
constructor(data) {
super(data);
this.event_handlers = {};
this.list_options = {
fields: ['name', 'modified']
};
2018-01-31 13:04:46 +00:00
if (this.setup_meta) {
2018-01-12 12:25:07 +00:00
this.setup_meta();
}
}
get_field(fieldname) {
2018-01-31 12:56:21 +00:00
if (!this._field_map) {
this._field_map = {};
for (let field of this.fields) {
this._field_map[field.fieldname] = field;
2018-01-12 12:25:07 +00:00
}
}
2018-01-31 12:56:21 +00:00
return this._field_map[fieldname];
2018-01-31 13:04:46 +00:00
}
2018-01-31 12:56:21 +00:00
getTableFields() {
if (!this._tableFields) {
this._tableFields = this.fields.filter(field => field.fieldtype === 'Table');
2018-01-31 13:04:46 +00:00
}
return this._tableFields;
2018-01-31 13:04:46 +00:00
}
2018-01-12 12:25:07 +00:00
on(key, fn) {
if (!this.event_handlers[key]) {
this.event_handlers[key] = [];
}
this.event_handlers[key].push(fn);
}
async set(fieldname, value) {
this[fieldname] = value;
await this.trigger(fieldname);
}
get(fieldname) {
return this[fieldname];
}
getValidFields({ with_children = true } = {}) {
2018-01-12 12:25:07 +00:00
if (!this._valid_fields) {
2018-02-01 11:07:36 +00:00
2018-01-12 12:25:07 +00:00
this._valid_fields = [];
2018-02-01 11:07:36 +00:00
this._valid_fields_with_children = [];
const _add = (field) => {
this._valid_fields.push(field);
this._valid_fields_with_children.push(field);
}
2018-01-12 12:25:07 +00:00
2018-01-31 12:56:21 +00:00
const doctype_fields = this.fields.map((field) => field.fieldname);
2018-01-23 08:00:29 +00:00
2018-01-12 12:25:07 +00:00
// standard fields
2018-01-31 12:56:21 +00:00
for (let field of frappe.model.common_fields) {
if (frappe.db.type_map[field.fieldtype] && !doctype_fields.includes(field.fieldname)) {
2018-02-01 11:07:36 +00:00
_add(field);
2018-01-23 08:00:29 +00:00
}
2018-01-12 12:25:07 +00:00
}
2018-01-31 12:56:21 +00:00
if (this.is_child) {
2018-01-31 13:04:46 +00:00
// child fields
for (let field of frappe.model.child_fields) {
2018-01-31 12:56:21 +00:00
if (frappe.db.type_map[field.fieldtype] && !doctype_fields.includes(field.fieldname)) {
2018-02-01 11:07:36 +00:00
_add(field);
2018-01-23 08:00:29 +00:00
}
2018-01-12 12:25:07 +00:00
}
2018-01-31 12:56:21 +00:00
} else {
2018-01-31 13:04:46 +00:00
// parent fields
for (let field of frappe.model.parent_fields) {
2018-01-31 12:56:21 +00:00
if (frappe.db.type_map[field.fieldtype] && !doctype_fields.includes(field.fieldname)) {
2018-02-01 11:07:36 +00:00
_add(field);
2018-01-31 12:56:21 +00:00
}
}
2018-01-31 13:04:46 +00:00
}
2018-01-12 12:25:07 +00:00
// doctype fields
2018-01-31 12:56:21 +00:00
for (let field of this.fields) {
2018-01-31 13:04:46 +00:00
let include = frappe.db.type_map[field.fieldtype];
2018-01-31 12:56:21 +00:00
if (include) {
2018-02-01 11:07:36 +00:00
_add(field);
}
// include tables if (with_children = True)
if (!include && field.fieldtype === 'Table') {
this._valid_fields_with_children.push(field);
2018-01-12 12:25:07 +00:00
}
}
}
2018-02-01 11:07:36 +00:00
if (with_children) {
return this._valid_fields_with_children;
} else {
return this._valid_fields;
}
2018-01-12 12:25:07 +00:00
}
getKeywordFields() {
2018-01-31 12:56:21 +00:00
return this.keyword_fields || this.meta.fields.filter(field => field.reqd).map(field => field.fieldname);
2018-01-12 12:25:07 +00:00
}
2018-01-31 12:56:21 +00:00
validate_select(field, value) {
let options = field.options;
2018-01-12 12:25:07 +00:00
if (typeof options === 'string') {
// values given as string
2018-01-31 12:56:21 +00:00
options = field.options.split('\n');
2018-01-12 12:25:07 +00:00
}
if (!options.includes(value)) {
throw new frappe.errors.ValueError(`${value} must be one of ${options.join(", ")}`);
2018-01-12 12:25:07 +00:00
}
return value;
2018-01-12 12:25:07 +00:00
}
async trigger(key, event = {}) {
Object.assign(event, {
doc: this,
name: key
});
if (this.event_handlers[key]) {
for (var handler of this.event_handlers[key]) {
await handler(event);
}
}
}
2018-01-24 11:52:05 +00:00
}