mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
63 lines
1.8 KiB
JavaScript
63 lines
1.8 KiB
JavaScript
const frappe = require('frappejs');
|
|
const BaseControl = require('./base');
|
|
const Awesomplete = require('awesomplete');
|
|
|
|
class LinkControl extends BaseControl {
|
|
make() {
|
|
super.make();
|
|
this.input.setAttribute('type', 'text');
|
|
this.setupAwesomplete();
|
|
}
|
|
|
|
setupAwesomplete() {
|
|
this.awesomplete = new Awesomplete(this.input, {
|
|
minChars: 0,
|
|
maxItems: 99,
|
|
filter: () => true,
|
|
});
|
|
|
|
// rebuild the list on input
|
|
this.input.addEventListener('input', async (event) => {
|
|
let list = await this.getList(this.input.value);
|
|
|
|
// action to add new item
|
|
list.push({
|
|
label: frappe._('+ New {0}', this.label),
|
|
value: '__newItem',
|
|
});
|
|
|
|
this.awesomplete.list = list;
|
|
});
|
|
|
|
// new item action
|
|
this.input.addEventListener('awesomplete-select', async (e) => {
|
|
if (e.text && e.text.value === '__newItem') {
|
|
e.preventDefault();
|
|
const newDoc = await frappe.getNewDoc(this.target);
|
|
const formModal = await frappe.desk.showFormModal(this.target, newDoc.name);
|
|
if (formModal.form.doc.meta.hasField('name')) {
|
|
formModal.form.doc.set('name', this.input.value);
|
|
}
|
|
|
|
formModal.once('submit', async () => {
|
|
await this.updateDocValue(formModal.form.doc.name);
|
|
});
|
|
}
|
|
});
|
|
|
|
}
|
|
|
|
async getList(query) {
|
|
return (await frappe.db.getAll({
|
|
doctype: this.target,
|
|
filters: this.getFilters(query),
|
|
limit: 50
|
|
})).map(d => d.name);
|
|
}
|
|
|
|
getFilters(query) {
|
|
return { keywords: ["like", query] }
|
|
}
|
|
};
|
|
|
|
module.exports = LinkControl; |