2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/client/desk/formmodal.js

45 lines
1.1 KiB
JavaScript
Raw Normal View History

const Modal = require('frappejs/client/ui/modal');
const view = require('frappejs/client/view');
module.exports = class FormModal extends Modal {
constructor(doctype, name) {
super({title: doctype});
this.doctype = doctype;
2018-02-15 16:39:50 +00:00
}
async showWith(doctype, name) {
this.show();
await this.setDoc(doctype, name);
}
async setDoc(doctype, name) {
if (!this.form) {
this.makeForm();
}
await this.form.setDoc(doctype, name);
this.modal.querySelector('input').focus();
}
makeForm() {
2018-02-20 06:39:41 +00:00
this.form = new (view.getFormClass(this.doctype))({
doctype: this.doctype,
parent: this.getBody(),
container: this,
actions: ['submit']
});
2018-02-15 16:39:50 +00:00
this.form.on('submit', async () => {
await this.trigger('submit');
this.hide();
});
}
addButton(label, className, action) {
if (className === 'primary') {
this.addPrimary(label, action);
} else {
this.addSecondary(label, action);
}
}
}