%PDF- %PDF-
Direktori : /home/langpiergz/www/wp-content/plugins/wp-statistics/assets/dev/javascript/meta-box/ |
Current File : /home/langpiergz/www/wp-content/plugins/wp-statistics/assets/dev/javascript/meta-box/search.js |
wps_js.search_meta_box = { placeholder: function () { return wps_js.rectangle_placeholder(); }, view: function (args = []) { // Check Hit Chart size in Different Page let height = wps_js.is_active('overview_page') ? 300 : 210; if (wps_js.isset(wps_js.global, 'request_params', 'page') && wps_js.global.request_params.page === "searches") { height = 300; } // Create Html let html = ''; // Add Chart html += '<div class="o-wrap"><canvas id="' + wps_js.chart_id('search') + '" height="' + height + '"></canvas></div>'; // show Data return html; }, meta_box_init: function (args = []) { // Prepare Chart Data let datasets = []; let i = 0; Object.keys(args['search-engine']).forEach(function (key) { let search_engine_name = args['search-engine'][key]['name']; let color = wps_js.random_color(i); datasets.push({ label: search_engine_name, data: args['stat'][search_engine_name], backgroundColor: 'rgba(' + color[0] + ',' + color[1] + ',' + color[2] + ',' + '0.3)', borderColor: 'rgba(' + color[0] + ',' + color[1] + ',' + color[2] + ',' + '1)', borderWidth: 1, fill: true, tension: 0.4 }); i++; }); // Set Total if (args['total']['active'] === 1) { datasets.push({ label: wps_js._('total'), data: args['total']['stat'], backgroundColor: 'rgba(' + args['total']['color'] + ', 0.2)', borderColor: 'rgba(' + args['total']['color'] + ', 1)', borderWidth: 1, fill: true, tension: 0.4 }); } wps_js.line_chart(wps_js.chart_id('search'), args['title'], args['date'], datasets, { options: { maintainAspectRatio: false, interaction: { intersect: false, mode: 'index', } } }); }, };