mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
137 lines
3.1 KiB
JavaScript
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.setDocValue();
|
|
}
|
|
|
|
refresh() {
|
|
this.make();
|
|
this.setDocValue();
|
|
}
|
|
|
|
setDocValue() {
|
|
if (this.doc) {
|
|
this.setInputValue(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;
|
|
}
|
|
}
|
|
|
|
setInputValue(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);
|
|
}
|
|
|
|
getInputValue() {
|
|
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.getInputValue());
|
|
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.getInputValue());
|
|
}
|
|
}
|
|
}
|
|
|
|
disable() {
|
|
this.input.setAttribute('disabled', 'disabled');
|
|
}
|
|
|
|
enable() {
|
|
this.input.removeAttribute('disabled');
|
|
}
|
|
|
|
set_focus() {
|
|
this.input.focus();
|
|
}
|
|
}
|
|
|
|
module.exports = BaseControl; |