2018-01-16 06:09:17 +00:00
|
|
|
const frappe = require('frappejs');
|
2018-01-12 12:25:07 +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-01-30 12:03:04 +00:00
|
|
|
const FormPage = require('frappejs/client/desk/formpage');
|
|
|
|
const ListPage = require('frappejs/client/desk/listpage');
|
2018-01-23 08:00:29 +00:00
|
|
|
const Navbar = require('./navbar');
|
2018-01-12 12:25:07 +00:00
|
|
|
|
|
|
|
module.exports = class Desk {
|
|
|
|
constructor() {
|
|
|
|
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');
|
|
|
|
this.navbar = new Navbar();
|
|
|
|
this.container = frappe.ui.add('div', 'container-fluid', body);
|
2018-01-12 12:25:07 +00:00
|
|
|
|
2018-01-23 08:00:29 +00:00
|
|
|
this.container_row = frappe.ui.add('div', 'row', this.container)
|
|
|
|
this.sidebar = frappe.ui.add('div', 'col-md-2 p-3 sidebar', this.container_row);
|
|
|
|
this.body = frappe.ui.add('div', 'col-md-10 p-3 main', this.container_row);
|
2018-01-12 12:25:07 +00:00
|
|
|
|
|
|
|
this.sidebar_items = [];
|
2018-01-15 11:55:31 +00:00
|
|
|
this.pages = {
|
|
|
|
lists: {},
|
|
|
|
forms: {}
|
|
|
|
};
|
|
|
|
|
|
|
|
this.init_routes();
|
2018-01-12 12:25:07 +00:00
|
|
|
// this.search = new Search(this.nav);
|
|
|
|
}
|
|
|
|
|
|
|
|
init_routes() {
|
2018-01-23 08:00:29 +00:00
|
|
|
frappe.router.add('not-found', async (params) => {
|
|
|
|
if (!this.not_found_page) {
|
|
|
|
this.not_found_page = new Page('Not Found');
|
|
|
|
}
|
|
|
|
await this.not_found_page.show();
|
|
|
|
this.not_found_page.render_error('Not Found', params ? params.route : '');
|
|
|
|
})
|
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
frappe.router.add('list/:doctype', async (params) => {
|
|
|
|
let page = this.get_list_page(params.doctype);
|
|
|
|
await page.show(params);
|
|
|
|
});
|
2018-01-12 12:25:07 +00:00
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
frappe.router.add('edit/:doctype/:name', async (params) => {
|
|
|
|
let page = this.get_form_page(params.doctype);
|
|
|
|
await page.show(params);
|
2018-01-12 12:25:07 +00:00
|
|
|
})
|
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
frappe.router.add('new/:doctype', async (params) => {
|
|
|
|
let doc = await frappe.get_new_doc(params.doctype);
|
2018-01-25 10:04:48 +00:00
|
|
|
// unset the name, its local
|
|
|
|
await frappe.router.set_route('edit', doc.doctype, doc.name);
|
|
|
|
await doc.set('name', '');
|
2018-01-15 11:55:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
get_list_page(doctype) {
|
|
|
|
if (!this.pages.lists[doctype]) {
|
2018-01-30 12:03:04 +00:00
|
|
|
this.pages.lists[doctype] = new ListPage(doctype);
|
2018-01-15 11:55:31 +00:00
|
|
|
}
|
|
|
|
return this.pages.lists[doctype];
|
|
|
|
}
|
2018-01-12 12:25:07 +00:00
|
|
|
|
2018-01-15 11:55:31 +00:00
|
|
|
get_form_page(doctype) {
|
|
|
|
if (!this.pages.forms[doctype]) {
|
2018-01-30 12:03:04 +00:00
|
|
|
this.pages.forms[doctype] = new FormPage(doctype);
|
2018-01-15 11:55:31 +00:00
|
|
|
}
|
|
|
|
return this.pages.forms[doctype];
|
2018-01-12 12:25:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
add_sidebar_item(label, action) {
|
|
|
|
let item = frappe.ui.add('a', '', frappe.ui.add('p', null, frappe.desk.sidebar));
|
|
|
|
item.textContent = label;
|
|
|
|
if (typeof action === 'string') {
|
|
|
|
item.href = action;
|
|
|
|
} else {
|
|
|
|
item.addEventHandler('click', () => {
|
|
|
|
action();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|