frappe.pages["leaderboard"].on_page_load = function (wrapper) { frappe.leaderboard = new frappe.Leaderboard(wrapper); } frappe.Leaderboard = Class.extend({ init: function (parent) { frappe.ui.make_app_page({ parent: parent, title: "Leaderboard", single_column: false }); this.parent = parent; this.page = this.parent.page; this.page.sidebar.html(``); this.$sidebar_list = this.page.sidebar.find('ul'); // const list of doctypes this.doctypes = ["Customer", "Item", "Supplier", "Sales Partner","Sales Person"]; this.timespans = ["Week", "Month", "Quarter", "Year"]; this.desc_fields = ["total_sales_amount", "total_request","total_purchase_amount","commission_rate"]; this.filters = { "Customer": ["total_item_purchased_qty", "total_sales_amount","receivable_amount_outstanding_amount"], "Item": ["total_purchase_amount", "total_purchased_qty", "total_sales_amount", "total_sold_qty","available_stock_qty"], "Supplier": ["total_item_sold_qty", "total_purchase_amount","payable_amount_outstanding_amount"], "Sales Partner": ["commission_rate", "target_qty", "target_amount", "total_sales_amount"], "Sales Person": ["target_qty", "target_amount", "total_sales_amount"], }; // for saving current selected filters // TODO: revert to 0 index for doctype and timespan, and remove preset down const _initial_doctype = this.doctypes[0]; const _initial_timespan = this.timespans[0]; const _initial_filter = this.filters[_initial_doctype]; this.options = { selected_doctype: _initial_doctype, selected_filter: _initial_filter, selected_filter_item: _initial_filter[0], selected_timespan: _initial_timespan, }; this.message = null; this.make(); }, make: function () { var me = this; var $container = $(`
`).appendTo(this.page.main); this.$graph_area = $container.find('.leaderboard-graph'); this.doctypes.map(doctype => { this.get_sidebar_item(doctype).appendTo(this.$sidebar_list); }); this.timespan_select = this.page.add_select(__("Timespan"), this.timespans.map(d => { return {"label": __(d), value: d } }) ); // this.timespan_select.val(this.timespans[1]); this.type_select = this.page.add_select(__("Type"), me.options.selected_filter.map(d => { return {"label": __(frappe.model.unscrub(d)), value: d } }) ); this.$sidebar_list.on('click', 'li', function(e) { let $li = $(this); let doctype = $li.find('span').html(); me.options.selected_doctype = doctype; me.options.selected_filter = me.filters[doctype]; me.options.selected_filter_item = me.filters[doctype][0]; me.type_select.empty().add_options( me.options.selected_filter.map(d => { return {"label": __(frappe.model.unscrub(d)), value: d } }) ); me.$sidebar_list.find('li').removeClass('active'); $li.addClass('active'); me.make_request($container); }); this.timespan_select.on("change", function() { me.options.selected_timespan = this.value; me.make_request($container); }); this.type_select.on("change", function() { me.options.selected_filter_item = this.value me.make_request($container); }); // now get leaderboard this.$sidebar_list.find('li:first').trigger('click'); }, make_request: function ($container) { var me = this; frappe.model.with_doctype(me.options.selected_doctype, function () { me.get_leaderboard(me.get_leaderboard_data, $container); }); }, get_leaderboard: function (notify, $container, start=0) { var me = this; frappe.call({ method: "erpnext.utilities.page.leaderboard.leaderboard.get_leaderboard", args: { doctype: me.options.selected_doctype, timespan: me.options.selected_timespan, field: me.options.selected_filter_item, start: start }, callback: function (r) { let results = r.message || []; let graph_items = results.slice(0, 10); me.$graph_area.show().empty(); let args = { parent: '.leaderboard-graph', data: { datasets: [ { values: graph_items.map(d=>d.value) } ], labels: graph_items.map(d=>d.name) }, colors: ['light-green'], format_tooltip_x: d=>d[me.options.selected_filter_item], type: 'bar', height: 140 }; new Chart(args); notify(me, r, $container); } }); }, get_leaderboard_data: function (me, res, $container) { if (res && res.message) { me.message = null; $container.find(".leaderboard-list").html(me.render_list_view(res.message)); } else { me.$graph_area.hide(); me.message = "No items found."; $container.find(".leaderboard-list").html(me.render_list_view()); } }, render_list_view: function (items = []) { var me = this; var html = `${me.render_message()}
${me.render_result(items)}
`; return $(html); }, render_result: function (items) { var me = this; var html = `${me.render_list_header()} ${me.render_list_result(items)}`; return html; }, render_list_header: function () { var me = this; const _selected_filter = me.options.selected_filter .map(i => frappe.model.unscrub(i)); const fields = ['name', me.options.selected_filter_item]; const html = `
${ fields.map(filter => { const col = frappe.model.unscrub(filter); return ( `
${col}
`); }).join("") }
`; return html; }, render_list_result: function (items) { var me = this; let _html = items.map((item, index) => { const $value = $(me.get_item_html(item)); let item_class = ""; if(index == 0) { item_class = "first"; } else if (index == 1) { item_class = "second"; } else if(index == 2) { item_class = "third"; } const $item_container = $(`
`).append($value); return $item_container[0].outerHTML; }).join(""); let html = `
${_html}
`; return html; }, render_message: function () { var me = this; let html = `

No Item found

`; return html; }, get_item_html: function (item) { var me = this; const _selected_filter = me.options.selected_filter .map(i => frappe.model.unscrub(i)); const fields = ['name', 'value']; const html = `
${ fields.map(filter => { const col = frappe.model.unscrub(filter); let val = item[filter]; if (col === "Modified") { val = comment_when(val); } return ( `
${ col === "Name" ? ` ${val} ` : ` ${val}` }
`); }).join("") }
`; return html; }, get_sidebar_item: function(item) { return $(`
  • ${ item }
  • `); } });