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

168 lines
3.9 KiB
JavaScript
Raw Normal View History

2018-01-16 06:09:17 +00:00
const frappe = require('frappejs');
2018-01-12 12:25:07 +00:00
class BaseControl {
2018-02-06 17:14:07 +00:00
constructor({field, parent, form}) {
2018-02-09 12:55:55 +00:00
BaseControl.count++;
2018-02-06 17:14:07 +00:00
Object.assign(this, field);
this.parent = parent;
2018-01-23 12:48:27 +00:00
this.form = form;
2018-02-09 12:55:55 +00:00
this.id = 'control-' + BaseControl.count;
2018-02-06 17:14:07 +00:00
2018-01-12 12:25:07 +00:00
if (!this.fieldname) {
this.fieldname = frappe.slug(this.label);
}
2018-02-06 17:14:07 +00:00
if (!this.parent) {
this.parent = this.form.form;
}
2018-01-12 12:25:07 +00:00
if (this.setup) {
this.setup();
}
}
bind(doc) {
this.doc = doc;
2018-02-08 09:38:47 +00:00
this.setDocValue();
2018-01-12 12:25:07 +00:00
}
refresh() {
this.make();
2018-02-08 09:38:47 +00:00
this.setDocValue();
2018-01-12 12:25:07 +00:00
}
2018-02-08 09:38:47 +00:00
setDocValue() {
2018-01-12 12:25:07 +00:00
if (this.doc) {
2018-02-08 09:38:47 +00:00
this.setInputValue(this.doc.get(this.fieldname));
2018-01-12 12:25:07 +00:00
}
}
make() {
2018-02-06 17:14:07 +00:00
if (!this.input) {
2018-02-08 11:45:32 +00:00
if (!this.onlyInput) {
this.makeFormGroup();
this.makeLabel();
2018-02-06 17:14:07 +00:00
}
2018-02-08 11:45:32 +00:00
this.makeInput();
this.setInputName();
2018-02-09 12:55:55 +00:00
this.setRequiredAttribute();
this.setDisabled();
2018-02-08 11:45:32 +00:00
if (!this.onlyInput) {
this.makeDescription();
2018-02-06 17:14:07 +00:00
}
2018-02-09 12:55:55 +00:00
this.addChangeHandler();
2018-01-12 12:25:07 +00:00
}
}
2018-02-08 11:45:32 +00:00
makeFormGroup() {
this.formGroup = frappe.ui.add('div', 'form-group', this.parent);
2018-01-12 12:25:07 +00:00
}
2018-02-08 11:45:32 +00:00
makeLabel() {
2018-02-09 12:55:55 +00:00
this.labelElement = frappe.ui.add('label', null, this.formGroup);
this.labelElement.textContent = this.label;
this.labelElement.setAttribute('for', this.id);
2018-01-12 12:25:07 +00:00
}
2018-02-08 11:45:32 +00:00
makeInput() {
2018-02-14 12:50:56 +00:00
this.input = frappe.ui.add('input', 'form-control', this.getInputParent());
2018-02-09 12:55:55 +00:00
this.input.autocomplete = "off";
this.input.id = this.id;
}
setDisabled() {
if (this.readonly || this.disabled) {
this.input.disabled = true;
}
2018-01-12 12:25:07 +00:00
}
2018-02-14 12:50:56 +00:00
getInputParent() {
2018-02-08 11:45:32 +00:00
return this.formGroup || this.parent;
2018-02-06 17:14:07 +00:00
}
2018-02-08 11:45:32 +00:00
setInputName() {
2018-01-12 12:25:07 +00:00
this.input.setAttribute('name', this.fieldname);
}
2018-02-09 12:55:55 +00:00
setRequiredAttribute() {
if (this.required) {
this.input.required = true;
2018-02-14 12:50:56 +00:00
this.input.classList.add('font-weight-bold');
2018-02-09 12:55:55 +00:00
}
}
2018-02-08 11:45:32 +00:00
makeDescription() {
2018-01-12 12:25:07 +00:00
if (this.description) {
2018-02-08 11:45:32 +00:00
this.description_element = frappe.ui.add('small', 'form-text text-muted', this.formGroup);
2018-01-12 12:25:07 +00:00
this.description_element.textContent = this.description;
}
}
2018-02-08 09:38:47 +00:00
setInputValue(value) {
this.input.value = this.format(value);
}
format(value) {
2018-01-12 12:25:07 +00:00
if (value === undefined || value === null) {
value = '';
}
return value;
2018-01-12 12:25:07 +00:00
}
2018-02-08 11:45:32 +00:00
async getParsedValue() {
2018-01-12 12:25:07 +00:00
return await this.parse(this.input.value);
}
2018-02-08 09:38:47 +00:00
getInputValue() {
return this.input.value;
}
2018-01-12 12:25:07 +00:00
async parse(value) {
return value;
}
async validate(value) {
return value;
}
2018-02-09 12:55:55 +00:00
addChangeHandler() {
this.input.addEventListener('change', () => {
if (this.skipChangeEvent) return;
this.handleChange();
});
2018-01-12 12:25:07 +00:00
}
2018-02-09 12:55:55 +00:00
async handleChange(event) {
2018-02-08 09:38:47 +00:00
let value = await this.parse(this.getInputValue());
2018-01-12 12:25:07 +00:00
value = await this.validate(value);
2018-02-13 11:54:57 +00:00
await this.updateDocValue(value);
}
async updateDocValue(value) {
if (this.doc[this.fieldname] !== value) {
2018-02-13 11:54:57 +00:00
if (this.parentControl) {
// its a child
2018-02-08 11:45:32 +00:00
this.doc[this.fieldname] = value;
2018-02-13 11:54:57 +00:00
await this.parentControl.doc.set(this.fieldname, this.parentControl.getInputValue());
} else {
// parent
await this.doc.set(this.fieldname, value);
2018-02-06 17:14:07 +00:00
}
}
2018-01-12 12:25:07 +00:00
}
2018-01-24 11:52:05 +00:00
disable() {
this.input.setAttribute('disabled', 'disabled');
}
enable() {
this.input.removeAttribute('disabled');
}
2018-02-06 17:14:07 +00:00
set_focus() {
this.input.focus();
}
2018-01-12 12:25:07 +00:00
}
2018-02-09 12:55:55 +00:00
BaseControl.count = 0;
2018-01-12 12:25:07 +00:00
module.exports = BaseControl;