2
0
mirror of https://github.com/frappe/books.git synced 2024-09-21 03:39:02 +00:00
books/client/view/controls/table.js

134 lines
4.3 KiB
JavaScript
Raw Normal View History

2018-02-06 17:14:07 +00:00
const frappe = require('frappejs');
const BaseControl = require('./base');
const DataTable = require('frappe-datatable');
const controls = require('./index');
2018-02-07 13:23:52 +00:00
const Modal = require('frappejs/client/ui/modal');
2018-02-06 17:14:07 +00:00
class TableControl extends BaseControl {
make() {
if (!this.datatable) {
2018-02-07 13:23:52 +00:00
this.wrapper = frappe.ui.add('div', 'table-wrapper', this.get_input_parent());
this.wrapper.innerHTML =
`<div class="datatable-wrapper"></div>
<div class="table-toolbar">
<button class="btn btn-sm btn-outline-secondary btn-add">${frappe._("Add")}</button>
<button class="btn btn-sm btn-outline-danger btn-remove">${frappe._("Remove")}</button>
</div>`;
this.datatable = new DataTable(this.wrapper.querySelector('.datatable-wrapper'), {
2018-02-08 11:45:32 +00:00
columns: this.getColumns(),
data: this.getTableData(),
2018-02-06 17:14:07 +00:00
takeAvailableSpace: true,
enableClusterize: true,
2018-02-07 13:23:52 +00:00
addCheckboxColumn: true,
2018-02-08 11:45:32 +00:00
editing: this.getTableInput.bind(this),
2018-02-07 13:23:52 +00:00
});
this.wrapper.querySelector('.btn-add').addEventListener('click', async (event) => {
this.doc[this.fieldname].push({});
await this.doc.commit();
this.refresh();
});
2018-02-06 17:14:07 +00:00
2018-02-07 13:23:52 +00:00
this.wrapper.querySelector('.btn-remove').addEventListener('click', async (event) => {
let checked = this.datatable.rowmanager.getCheckedRows();
this.doc[this.fieldname] = this.doc[this.fieldname].filter(d => !checked.includes(d.idx));
await this.doc.commit();
this.refresh();
this.datatable.rowmanager.checkAll(false);
2018-02-06 17:14:07 +00:00
});
}
}
2018-02-08 09:38:47 +00:00
getInputValue() {
2018-02-06 17:14:07 +00:00
return this.doc[this.fieldname];
}
2018-02-08 09:38:47 +00:00
setInputValue(value) {
2018-02-08 11:45:32 +00:00
this.datatable.refresh(this.getTableData(value));
2018-02-06 17:14:07 +00:00
}
2018-02-08 11:45:32 +00:00
getTableData(value) {
return value || this.getDefaultData();
2018-02-06 17:14:07 +00:00
}
2018-02-08 11:45:32 +00:00
getTableInput(colIndex, rowIndex, value, parent) {
2018-02-06 17:14:07 +00:00
let field = this.datatable.getColumn(colIndex).field;
2018-02-07 13:23:52 +00:00
if (field.fieldtype==='Text') {
2018-02-08 11:45:32 +00:00
return this.getControlInModal(field);
2018-02-07 13:23:52 +00:00
} else {
2018-02-08 11:45:32 +00:00
return this.getControl(field, parent);
2018-02-07 13:23:52 +00:00
}
}
2018-02-08 11:45:32 +00:00
getControl(field, parent) {
field.onlyInput = true;
2018-02-08 09:38:47 +00:00
const control = controls.makeControl({field: field, parent: parent});
2018-02-06 17:14:07 +00:00
2018-02-06 17:17:34 +00:00
return {
initValue: (value, rowIndex, column) => {
2018-02-06 17:14:07 +00:00
control.parent_control = this;
control.doc = this.doc[this.fieldname][rowIndex];
control.set_focus();
2018-02-08 09:38:47 +00:00
return control.setInputValue(value);
2018-02-06 17:17:34 +00:00
},
2018-02-08 11:45:32 +00:00
setValue: async (value, rowIndex, column) => {
// triggers change event
2018-02-06 17:17:34 +00:00
},
getValue: () => {
2018-02-08 09:38:47 +00:00
return control.getInputValue();
2018-02-06 17:14:07 +00:00
}
}
2018-02-07 13:23:52 +00:00
}
2018-02-08 11:45:32 +00:00
getControlInModal(field, parent) {
this.modal = new Modal({
2018-02-07 13:23:52 +00:00
title: frappe._('Edit {0}', field.label),
body: '',
primary_label: frappe._('Submit'),
primary_action: (modal) => {
this.datatable.cellmanager.submitEditing();
modal.hide();
}
});
2018-02-08 11:45:32 +00:00
this.modal.$modal.on('hidden.bs.modal', () => {
2018-02-07 16:44:59 +00:00
this.datatable.cellmanager.deactivateEditing();
})
2018-02-07 13:23:52 +00:00
2018-02-08 11:45:32 +00:00
return this.getControl(field, this.modal.get_body());
2018-02-06 17:14:07 +00:00
}
2018-02-08 11:45:32 +00:00
getColumns() {
return this.getChildFields().map(field => {
2018-02-06 17:14:07 +00:00
return {
id: field.fieldname,
field: field,
content: field.label,
editable: true,
width: 120,
align: ['Int', 'Float', 'Currency'].includes(field.fieldtype) ? 'right' : 'left',
format: (value) => frappe.format(value, field)
}
});
}
2018-02-08 11:45:32 +00:00
getChildFields() {
return frappe.getMeta(this.childtype).fields;
2018-02-06 17:14:07 +00:00
}
2018-02-08 11:45:32 +00:00
getDefaultData() {
2018-02-06 17:14:07 +00:00
// build flat table
if (!this.doc) {
return [];
}
if (!this.doc[this.fieldname]) {
this.doc[this.fieldname] = [{}];
}
return this.doc[this.fieldname];
}
};
module.exports = TableControl;