2
0
mirror of https://github.com/frappe/books.git synced 2024-09-21 03:39:02 +00:00
books/client/view/controls/base.js
2018-02-06 22:45:17 +05:30

137 lines
3.1 KiB
JavaScript

const frappe = require('frappejs');
class BaseControl {
constructor({field, parent, form}) {
Object.assign(this, field);
this.parent = parent;
this.form = form;
if (!this.fieldname) {
this.fieldname = frappe.slug(this.label);
}
if (!this.parent) {
this.parent = this.form.form;
}
if (this.setup) {
this.setup();
}
}
bind(doc) {
this.doc = doc;
this.set_doc_value();
}
refresh() {
this.make();
this.set_doc_value();
}
set_doc_value() {
if (this.doc) {
this.set_input_value(this.doc.get(this.fieldname));
}
}
make() {
if (!this.input) {
if (!this.only_input) {
this.make_form_group();
this.make_label();
}
this.make_input();
this.set_input_name();
if (!this.only_input) {
this.make_description();
}
this.bind_change_event();
}
}
make_form_group() {
this.form_group = frappe.ui.add('div', 'form-group', this.parent);
}
make_label() {
this.label_element = frappe.ui.add('label', null, this.form_group);
this.label_element.textContent = this.label;
}
make_input() {
this.input = frappe.ui.add('input', 'form-control', this.get_input_parent());
this.input.setAttribute('autocomplete', 'off');
}
get_input_parent() {
return this.form_group || this.parent;
}
set_input_name() {
this.input.setAttribute('name', this.fieldname);
}
make_description() {
if (this.description) {
this.description_element = frappe.ui.add('small', 'form-text text-muted', this.form_group);
this.description_element.textContent = this.description;
}
}
set_input_value(value) {
this.input.value = this.format(value);
}
format(value) {
if (value === undefined || value === null) {
value = '';
}
return value;
}
async get_parsed_value() {
return await this.parse(this.input.value);
}
get_input_value() {
return this.input.value;
}
async parse(value) {
return value;
}
async validate(value) {
return value;
}
bind_change_event() {
this.input.addEventListener('change', (e) => this.handle_change(e));
}
async handle_change(e) {
let value = await this.parse(this.get_input_value());
value = await this.validate(value);
if (this.doc[this.fieldname] !== value) {
if (this.doc.set) {
await this.doc.set(this.fieldname, value);
}
if (this.parent_control) {
await this.parent_control.doc.set(this.fieldname, this.parent_control.get_input_value());
}
}
}
disable() {
this.input.setAttribute('disabled', 'disabled');
}
enable() {
this.input.removeAttribute('disabled');
}
set_focus() {
this.input.focus();
}
}
module.exports = BaseControl;