| pscript.onload_dashboard = function() { |
| // load jqplot |
| $.scriptPath = 'js/' |
| $.require(['jquery/jquery.jqplot.min.js', |
| 'jquery/jqplot-plugins/jqplot.barRenderer.js', |
| 'jquery/jqplot-plugins/jqplot.canvasAxisTickRenderer.min.js', |
| 'jquery/jqplot-plugins/jqplot.canvasTextRenderer.min.js', |
| 'jquery/jqplot-plugins/jqplot.categoryAxisRenderer.min.js']); |
| |
| |
| pscript.dashboard_settings = { |
| company: sys_defaults.company, |
| start: dateutil.obj_to_str(dateutil.add_days(new Date(), -60)), |
| end: dateutil.obj_to_str(new Date()), |
| interval: 7 |
| } |
| |
| var ph = new PageHeader($('.dashboard .header').get(0), 'Dashboards'); |
| var db = new Dashboard(); |
| |
| ph.add_button('Settings', db.show_settings); |
| |
| db.refresh(); |
| |
| } |
| |
| Dashboard = function() { |
| var me = this; |
| $.extend(me, { |
| refresh: function() { |
| $('.dashboard .help_box').css('display', 'block'); |
| $c_page('home', 'dashboard', 'load_dashboard', JSON.stringify(pscript.dashboard_settings), function(r,rt) { |
| $('.dashboard .help_box').css('display', 'none'); |
| me.render(r.message); |
| }) |
| }, |
| |
| render: function(data) { |
| $('.dashboard_table').html(''); |
| var t = make_table($('.dashboard_table').get(0), 4, 2, '100%', ['50%', '50%'], {padding: '5px'}); |
| var ridx=0; var cidx=0; |
| for(var i=0; i< data.length; i++) { |
| // switch columns and rows |
| if(cidx==2) { cidx=0; ridx++} |
| |
| // give an id! |
| var cell = $td(t,ridx,cidx); |
| var title = $a(cell, 'div', 'dashboard-title', '', data[i][0].title); |
| var parent = $a(cell, 'div', 'dashboard-graph') |
| |
| parent.id = '_dashboard' + ridx + '-' + cidx; |
| |
| // render graph |
| me.render_graph(parent.id, data[i][1]); |
| cidx++; |
| } |
| }, |
| |
| render_graph: function(parent, values) { |
| var vl = []; |
| $.each(values, function(i,v) { |
| vl.push([dateutil.str_to_user(v[0]), v[1]]); |
| }); |
| $.jqplot(parent, [vl], { |
| seriesDefaults:{ |
| renderer:$.jqplot.BarRenderer, |
| rendererOptions: {fillToZero: true}, |
| }, |
| axes: { |
| // Use a category axis on the x axis and use our custom ticks. |
| xaxis: { |
| min: 0, |
| renderer: $.jqplot.CategoryAxisRenderer, |
| tickRenderer: $.jqplot.CanvasAxisTickRenderer, |
| tickOptions: { |
| angle: -30, |
| fontSize: '8pt' |
| } |
| }, |
| // Pad the y axis just a little so bars can get close to, but |
| // not touch, the grid boundaries. 1.2 is the default padding. |
| yaxis: { |
| min: 0, |
| pad: 1.05, |
| tickOptions: {formatString: '%d'} |
| } |
| } |
| }); |
| }, |
| |
| show_settings: function() { |
| var d = new wn.widgets.Dialog({ |
| title: 'Set Company Settings', |
| width: 500, |
| fields: [ |
| { |
| label:'Company', |
| reqd: 1, |
| fieldname:'company', |
| fieldtype:'Link', |
| options: 'Company' |
| }, |
| { |
| label:'Start Date', |
| reqd: 1, |
| fieldname:'start', |
| fieldtype:'Date', |
| }, |
| { |
| label:'End Date', |
| reqd: 1, |
| fieldname:'end', |
| fieldtype:'Date', |
| }, |
| { |
| label:'Interval', |
| reqd: 1, |
| fieldname:'interval', |
| fieldtype:'Int' |
| }, |
| { |
| label:'Regenerate', |
| fieldname:'refresh', |
| fieldtype:'Button' |
| } |
| ] |
| }); |
| d.onshow = function() { |
| d.set_values(pscript.dashboard_settings); |
| } |
| d.fields_dict.refresh.input.onclick = function() { |
| pscript.dashboard_settings = d.get_values(); |
| me.refresh(); |
| d.hide(); |
| } |
| d.show(); |
| } |
| }) |
| } |