const frappe = require('frappejs'); const keyboard = require('frappejs/client/ui/keyboard'); module.exports = class BaseList { constructor({doctype, parent, fields, page}) { Object.assign(this, arguments[0]); this.meta = frappe.getMeta(this.doctype); this.start = 0; this.pageLength = 20; this.body = null; this.rows = []; this.data = []; frappe.db.on(`change:${this.doctype}`, (params) => { this.dirty = true; }); setInterval(() => { if (this.dirty) this.refresh(); }, 500); } makeBody() { if (!this.body) { this.makeToolbar(); this.parent.classList.add('list-page'); this.body = frappe.ui.add('div', 'list-body', this.parent); this.body.setAttribute('data-doctype', this.doctype); this.makeMoreBtn(); this.bindKeys(); } } async refresh() { return await this.run(); } async run() { this.makeBody(); this.dirty = false; let data = await this.getData(); for (let i=0; i< Math.min(this.pageLength, data.length); i++) { this.renderRow(this.start + i, data[i]); } if (this.start > 0) { this.data = this.data.concat(data); } else { this.data = data; } this.clearEmptyRows(); this.updateMore(data.length > this.pageLength); this.selectDefaultRow(); this.setActiveListRow(); } async getData() { return await frappe.db.getAll({ doctype: this.doctype, fields: this.getFields(), filters: this.getFilters(), start: this.start, limit: this.pageLength + 1 }); } getFields() { return ['name']; } async append() { this.start += this.pageLength; await this.run(); } getFilters() { let filters = {}; if (this.searchInput.value) { filters.keywords = ['like', '%' + this.searchInput.value + '%']; } return filters; } renderRow(i, data) { let row = this.getRow(i); row.innerHTML = this.getRowBodyHTML(data); row.docName = data.name; row.setAttribute('data-name', data.name); row.style.display = 'flex'; // make element focusable row.setAttribute('tabindex', -1); } getRowBodyHTML(data) { return `
` + this.getRowHTML(data); } getRowHTML(data) { return `
${data.name}
`; } getRow(i) { if (!this.rows[i]) { this.rows[i] = frappe.ui.add('div', 'list-row row no-gutters', this.body); // open on click let me = this; this.rows[i].addEventListener('click', async function(e) { if (!e.target.tagName !== 'input') { await me.showItem(this.docName); } }); } return this.rows[i]; } async showItem(name) { await frappe.router.setRoute('edit', this.doctype, name); } getCheckedRowNames() { return [...this.body.querySelectorAll('.checkbox:checked')].map(check => check.getAttribute('data-name')); } clearEmptyRows() { if (this.rows.length > this.data.length) { for (let i=this.data.length; i < this.rows.length; i++) { let row = this.getRow(i); row.innerHTML = ''; row.style.display = 'none'; } } } selectDefaultRow() { if (!frappe.desk.body.activePage && this.rows.length) { this.showItem(this.rows[0].docName); } } makeToolbar() { this.makeSearch(); this.btnNew = this.page.addButton(frappe._('New'), 'btn-primary', async () => { await frappe.router.setRoute('new', this.doctype); }) this.btnDelete = this.page.addButton(frappe._('Delete'), 'btn-secondary hide', async () => { await frappe.db.deleteMany(this.doctype, this.getCheckedRowNames()); await this.refresh(); }); this.page.body.addEventListener('click', (event) => { if(event.target.classList.contains('checkbox')) { this.btnDelete.classList.toggle('hide', this.getCheckedRowNames().length===0); } }) } makeSearch() { this.toolbar = frappe.ui.add('div', 'list-toolbar', this.parent); this.toolbar.innerHTML = ` `; this.searchInput = this.toolbar.querySelector('input'); this.searchInput.addEventListener('keypress', (event) => { if (event.keyCode===13) { this.refresh(); } }); this.btnSearch = this.toolbar.querySelector('.btn-search'); this.btnSearch.addEventListener('click', (event) => { this.refresh(); }); } bindKeys() { keyboard.bindKey(this.body, 'up', async (e) => await this.move('up')); keyboard.bindKey(this.body, 'down', async (e) => await this.move('down')) keyboard.bindKey(this.body, 'right', () => { if (frappe.desk.body.activePage) { frappe.desk.body.activePage.body.querySelector('input').focus(); } }) } async move(direction) { let elementRef = direction === 'up' ? 'previousSibling' : 'nextSibling'; if (document.activeElement && document.activeElement.classList.contains('list-row')) { let next = document.activeElement[elementRef]; if (next && next.docName) { await this.showItem(next.docName); } } } makeMoreBtn() { this.btnMore = frappe.ui.add('button', 'btn btn-secondary hide', this.parent); this.btnMore.textContent = 'More'; this.btnMore.addEventListener('click', () => { this.append(); }) } updateMore(show) { if (show) { this.btnMore.classList.remove('hide'); } else { this.btnMore.classList.add('hide'); } } setActiveListRow(name) { let activeListRow = this.body.querySelector('.list-row.active'); if (activeListRow) { activeListRow.classList.remove('active'); } if (!name) { // get name from active page name = frappe.desk.body.activePage && frappe.desk.body.activePage.form.doc && frappe.desk.body.activePage.form.doc.name; } if (name) { let myListRow = this.body.querySelector(`.list-row[data-name="${name}"]`); if (myListRow) { myListRow.classList.add('active'); myListRow.focus(); } } } };