2018-01-16 06:09:17 +00:00
|
|
|
const frappe = require('frappejs');
|
2018-02-08 09:38:47 +00:00
|
|
|
// const Search = require('./search');
|
2018-01-16 06:09:17 +00:00
|
|
|
const Router = require('frappejs/common/router');
|
|
|
|
const Page = require('frappejs/client/view/page');
|
2018-02-21 09:38:56 +00:00
|
|
|
|
|
|
|
const views = {};
|
2018-03-05 16:45:21 +00:00
|
|
|
views.Form = require('./formpage');
|
|
|
|
views.List = require('./listpage');
|
|
|
|
views.Print = require('./printpage');
|
|
|
|
views.FormModal = require('./formmodal');
|
|
|
|
views.Table = require('./tablepage');
|
2018-02-14 16:44:50 +00:00
|
|
|
const DeskMenu = require('./menu');
|
2018-01-12 12:25:07 +00:00
|
|
|
|
|
|
|
module.exports = class Desk {
|
2018-02-14 16:44:50 +00:00
|
|
|
constructor(columns=2) {
|
2018-01-12 12:25:07 +00:00
|
|
|
frappe.router = new Router();
|
2018-01-15 11:55:31 +00:00
|
|
|
frappe.router.listen();
|
2018-01-12 12:25:07 +00:00
|
|
|
|
2018-01-23 08:00:29 +00:00
|
|
|
let body = document.querySelector('body');
|
2018-02-15 09:53:28 +00:00
|
|
|
//this.navbar = new Navbar();
|
|
|
|
this.container = frappe.ui.add('div', '', body);
|
|
|
|
this.containerRow = frappe.ui.add('div', 'row no-gutters', this.container)
|
2018-02-14 16:44:50 +00:00
|
|
|
this.makeColumns(columns);
|
2018-01-12 12:25:07 +00:00
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
this.pages = {
|
2018-02-21 09:38:56 +00:00
|
|
|
formModals: {},
|
|
|
|
List: {}
|
2018-01-15 11:55:31 +00:00
|
|
|
};
|
|
|
|
|
2018-02-09 12:55:55 +00:00
|
|
|
this.routeItems = {};
|
|
|
|
|
|
|
|
this.initRoutes();
|
2018-01-12 12:25:07 +00:00
|
|
|
// this.search = new Search(this.nav);
|
|
|
|
}
|
|
|
|
|
2018-02-14 16:44:50 +00:00
|
|
|
makeColumns(columns) {
|
|
|
|
this.menu = null; this.center = null;
|
|
|
|
this.columnCount = columns;
|
|
|
|
if (columns === 3) {
|
|
|
|
this.makeMenu();
|
|
|
|
this.center = frappe.ui.add('div', 'col-md-4 desk-center', this.containerRow);
|
|
|
|
this.body = frappe.ui.add('div', 'col-md-6 desk-body', this.containerRow);
|
|
|
|
} else if (columns === 2) {
|
|
|
|
this.makeMenu();
|
|
|
|
this.body = frappe.ui.add('div', 'col-md-10 desk-body', this.containerRow);
|
|
|
|
} else if (columns === 1) {
|
|
|
|
this.makeMenuPage();
|
|
|
|
this.body = frappe.ui.add('div', 'col-md-12 desk-body', this.containerRow);
|
|
|
|
} else {
|
|
|
|
throw 'columns can be 1, 2 or 3'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
makeMenu() {
|
|
|
|
this.menuColumn = frappe.ui.add('div', 'col-md-2 desk-menu', this.containerRow);
|
|
|
|
this.menu = new DeskMenu(this.menuColumn);
|
|
|
|
}
|
|
|
|
|
|
|
|
makeMenuPage() {
|
|
|
|
// make menu page for 1 column layout
|
|
|
|
this.menuPage = null;
|
|
|
|
}
|
|
|
|
|
2018-02-09 12:55:55 +00:00
|
|
|
initRoutes() {
|
2018-01-23 08:00:29 +00:00
|
|
|
frappe.router.add('not-found', async (params) => {
|
2018-02-09 12:55:55 +00:00
|
|
|
if (!this.notFoundPage) {
|
2018-02-14 16:44:50 +00:00
|
|
|
this.notFoundPage = new Page({title: 'Not Found'});
|
2018-01-23 08:00:29 +00:00
|
|
|
}
|
2018-02-09 12:55:55 +00:00
|
|
|
await this.notFoundPage.show();
|
|
|
|
this.notFoundPage.renderError('Not Found', params ? params.route : '');
|
2018-01-23 08:00:29 +00:00
|
|
|
})
|
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
frappe.router.add('list/:doctype', async (params) => {
|
2018-02-21 09:38:56 +00:00
|
|
|
await this.showViewPage('List', params.doctype);
|
2018-01-15 11:55:31 +00:00
|
|
|
});
|
2018-01-12 12:25:07 +00:00
|
|
|
|
2018-03-05 16:45:21 +00:00
|
|
|
frappe.router.add('table/:doctype', async (params) => {
|
|
|
|
await this.showViewPage('Table', params.doctype, params);
|
|
|
|
})
|
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
frappe.router.add('edit/:doctype/:name', async (params) => {
|
2018-02-21 09:38:56 +00:00
|
|
|
await this.showViewPage('Form', params.doctype, params);
|
|
|
|
})
|
|
|
|
|
|
|
|
frappe.router.add('print/:doctype/:name', async (params) => {
|
|
|
|
await this.showViewPage('Print', params.doctype, params);
|
2018-01-12 12:25:07 +00:00
|
|
|
})
|
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
frappe.router.add('new/:doctype', async (params) => {
|
2018-02-08 12:28:51 +00:00
|
|
|
let doc = await frappe.getNewDoc(params.doctype);
|
2018-01-25 10:04:48 +00:00
|
|
|
// unset the name, its local
|
2018-02-08 09:38:47 +00:00
|
|
|
await frappe.router.setRoute('edit', doc.doctype, doc.name);
|
2018-02-20 06:39:41 +00:00
|
|
|
|
|
|
|
// focus on new page
|
|
|
|
frappe.desk.body.activePage.body.querySelector('input').focus();
|
2018-01-15 11:55:31 +00:00
|
|
|
});
|
|
|
|
|
2018-02-09 12:55:55 +00:00
|
|
|
frappe.router.on('change', () => {
|
2018-02-14 16:44:50 +00:00
|
|
|
if (this.menu) {
|
|
|
|
this.menu.setActive();
|
2018-02-09 12:55:55 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
}
|
|
|
|
|
2018-03-05 16:45:21 +00:00
|
|
|
toggleCenter(show) {
|
|
|
|
const current = !frappe.desk.center.classList.contains('hide');
|
|
|
|
if (show===undefined) {
|
|
|
|
show = current;
|
|
|
|
} else if (!!show===!!current) {
|
|
|
|
// no change
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add hide
|
|
|
|
frappe.desk.center.classList.toggle('hide', !show);
|
|
|
|
|
|
|
|
if (show) {
|
|
|
|
// set body to 6
|
|
|
|
frappe.desk.body.classList.toggle('col-md-6', true);
|
|
|
|
frappe.desk.body.classList.toggle('col-md-10', false);
|
|
|
|
} else {
|
|
|
|
// set body to 10
|
|
|
|
frappe.desk.body.classList.toggle('col-md-6', false);
|
|
|
|
frappe.desk.body.classList.toggle('col-md-10', true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-21 09:38:56 +00:00
|
|
|
async showViewPage(view, doctype, params) {
|
|
|
|
if (!params) params = doctype;
|
|
|
|
if (!this.pages[view]) this.pages[view] = {};
|
|
|
|
if (!this.pages[view][doctype]) this.pages[view][doctype] = new views[view](doctype);
|
2018-03-05 16:45:21 +00:00
|
|
|
const page = this.pages[view][doctype];
|
|
|
|
await page.show(params);
|
|
|
|
this.toggleCenter(page.fullPage ? false : true);
|
2018-01-12 12:25:07 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 06:31:07 +00:00
|
|
|
async showFormModal(doctype, name) {
|
2018-02-13 10:42:44 +00:00
|
|
|
if (!this.pages.formModals[doctype]) {
|
2018-02-21 09:38:56 +00:00
|
|
|
this.pages.formModals[doctype] = new views.FormModal(doctype);
|
2018-02-13 10:42:44 +00:00
|
|
|
}
|
2018-02-19 06:31:07 +00:00
|
|
|
await this.pages.formModals[doctype].showWith(doctype, name);
|
2018-02-13 10:42:44 +00:00
|
|
|
return this.pages.formModals[doctype];
|
|
|
|
}
|
|
|
|
|
2018-02-21 09:38:56 +00:00
|
|
|
async setActiveDoc(doc) {
|
|
|
|
this.activeDoc = doc;
|
|
|
|
if (frappe.desk.center && !frappe.desk.center.activePage) {
|
|
|
|
await frappe.desk.showViewPage('List', doc.doctype);
|
|
|
|
}
|
|
|
|
if (frappe.desk.pages.List[doc.doctype]) {
|
|
|
|
frappe.desk.pages.List[doc.doctype].list.setActiveListRow(doc.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-09 12:55:55 +00:00
|
|
|
setActive(item) {
|
|
|
|
let className = 'list-group-item-secondary';
|
|
|
|
let activeItem = this.sidebarList.querySelector('.' + className);
|
|
|
|
if (activeItem) {
|
|
|
|
activeItem.classList.remove(className);
|
|
|
|
}
|
|
|
|
item.classList.add(className);
|
|
|
|
}
|
|
|
|
|
|
|
|
addSidebarItem(label, action) {
|
|
|
|
let item = frappe.ui.add('a', 'list-group-item list-group-item-action', this.sidebarList);
|
2018-01-12 12:25:07 +00:00
|
|
|
item.textContent = label;
|
|
|
|
if (typeof action === 'string') {
|
|
|
|
item.href = action;
|
2018-02-09 12:55:55 +00:00
|
|
|
this.routeItems[action] = item;
|
2018-01-12 12:25:07 +00:00
|
|
|
} else {
|
|
|
|
item.addEventHandler('click', () => {
|
|
|
|
action();
|
2018-02-09 12:55:55 +00:00
|
|
|
this.setActive(item);
|
2018-01-12 12:25:07 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|