PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.6.1
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.6.1
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
← All changes | js/render-facade.js +137 -32 3.1.13.6.1 View file →
@@ -4,58 +4,73 @@
4 4
5 5 (function($, visualizer){
6 6
7 7 function initActionsButtons(v) {
8 + if($('a.visualizer-chart-shortcode').length > 0) {
9 + var clipboard1 = new ClipboardJS('a.visualizer-chart-shortcode'); // jshint ignore:line
10 + clipboard1.on('success', function(e) {
11 + window.alert(v.i10n['copied']);
12 + });
13 + }
14 +
8 15 if($('a.visualizer-action[data-visualizer-type=copy]').length > 0) {
9 - var clipboard = new Clipboard('a.visualizer-action[data-visualizer-type=copy]'); // jshint ignore:line
16 + $('a.visualizer-action[data-visualizer-type=copy]').on('click', function(e) {
17 + e.preventDefault();
18 + });
19 + var clipboard = new ClipboardJS('a.visualizer-action[data-visualizer-type=copy]'); // jshint ignore:line
10 20 clipboard.on('success', function(e) {
11 21 window.alert(v.i10n['copied']);
12 22 });
13 23 }
14 - $('a.visualizer-action[data-visualizer-type!=copy]').on('click', function(e) {
24 + $('a.visualizer-action[data-visualizer-type!=copy]').off('click').on('click', function(e) {
15 25 var type = $(this).attr( 'data-visualizer-type' );
16 26 var chart = $(this).attr( 'data-visualizer-chart-id' );
27 + var container = $(this).attr( 'data-visualizer-container-id' );
17 28 var lock = $('.visualizer-front.visualizer-front-' + chart);
29 + var mime = $(this).attr( 'data-visualizer-mime' );
18 30 lock.lock();
19 31 e.preventDefault();
20 32 $.ajax({
21 33 url : v.rest_url.replace('#id#', chart).replace('#type#', type),
34 + beforeSend: function ( xhr ) {
35 + xhr.setRequestHeader( 'X-WP-Nonce', v.wp_nonce );
36 + },
22 37 success: function(data) {
23 38 if (data && data.data) {
24 39 switch(type){
25 40 case 'csv':
26 - var a = document.createElement("a");
27 - document.body.appendChild(a);
28 - a.style = "display: none";
29 - var blob = new Blob([data.data.csv], {type: $(this).attr( 'data-visualizer-mime' ) }),
30 - url = window.URL.createObjectURL(blob);
31 - a.href = url;
32 - a.download = data.data.name;
33 - a.click();
34 - setTimeout(function () {
35 - window.URL.revokeObjectURL(url);
36 - }, 100);
41 + var blob = new Blob([data.data.csv], {type: mime });
42 + if(window.navigator.msSaveOrOpenBlob){
43 + window.navigator.msSaveOrOpenBlob(blob, data.data.name);
44 + } else {
45 + var url = window.URL.createObjectURL(blob);
46 + var $a = $("<a>");
47 + $a.attr("href", url);
48 + $("body").append($a);
49 + $a.attr("download", data.data.name);
50 + $a[0].click();
51 + setTimeout(function () {
52 + window.URL.revokeObjectURL(url);
53 + $a.remove();
54 + }, 100);
55 + }
37 56 break;
38 57 case 'xls':
39 - var $a = $("<a>");
40 - $a.attr("href",data.data.csv);
41 - $("body").append($a);
42 - $a.attr("download",data.data.name);
43 - $a[0].click();
44 - $a.remove();
58 + if(window.navigator.msSaveOrOpenBlob){
59 + blob = new Blob([s2ab(atob(data.data.raw))], {type: '' });
60 + window.navigator.msSaveOrOpenBlob(blob, data.data.name);
61 + } else {
62 + var $a = $("<a>"); // jshint ignore:line
63 + $a.attr("href", data.data.csv);
64 + $("body").append($a);
65 + $a.attr("download", data.data.name);
66 + $a[0].click();
67 + $a.remove();
68 + }
45 69 break;
46 70 case 'print':
47 - var iframe = $('<iframe>').attr("name", "print-visualization").attr("id", "print-visualization").css("position", "absolute");
48 - iframe.appendTo($('body'));
49 - var iframe_doc = iframe.get(0).contentWindow || iframe.get(0).contentDocument.document || iframe.get(0).contentDocument;
50 - iframe_doc.document.open();
51 - iframe_doc.document.write(data.data.csv);
52 - iframe_doc.document.close();
53 - setTimeout(function(){
54 - window.frames['print-visualization'].focus();
55 - window.frames['print-visualization'].print();
56 - iframe.remove();
57 - }, 500);
71 + case 'image':
72 + $('body').trigger('visualizer:action:specificchart', {action: type, id: container, data: data.data.csv, dataObj: data.data});
58 73 break;
59 74 default:
60 75 if(window.visualizer_perform_action) {
61 76 window.visualizer_perform_action(type, chart, data.data);
@@ -68,12 +83,102 @@
68 83 });
69 84 });
70 85 }
71 86
87 + function s2ab(s) {
88 + var buf = new ArrayBuffer(s.length);
89 + var view = new Uint8Array(buf);
90 + for (var i=0; i !== s.length; ++i) {
91 + view[i] = s.charCodeAt(i) & 0xFF;
92 + }
93 + return buf;
94 + }
95 +
72 96 $(document).ready(function(){
73 - $('body').trigger('visualizer:render:chart:start', visualizer);
97 +
98 + // for updating the currently displayed chart (preview mode)
99 + window.vizUpdateChartPreview = function(){
100 + var event = new CustomEvent('visualizer:render:currentchart:update', {detail: {visualizer: visualizer}});
101 + document.body.dispatchEvent(event);
102 + };
103 +
104 + initChartDisplay();
74 105 initActionsButtons(visualizer);
106 + registerDefaultActions();
75 107 });
108 +
109 + function initChartDisplay() {
110 + if(visualizer.is_front == true){ // jshint ignore:line
111 + displayChartsOnFrontEnd();
112 + }else{
113 + showChart();
114 + }
115 + }
116 +
117 + /**
118 + * If an `id` is provided, that particular chart will load.
119 + */
120 + function showChart(id) {
121 + // clone the visualizer object so that the original object is not affected.
122 + var viz = Object.assign({}, visualizer);
123 + if(id){
124 + viz.id = id;
125 + }
126 + $('body').trigger('visualizer:render:chart:start', viz);
127 + }
128 +
129 + function displayChartsOnFrontEnd() {
130 + // display all charts that are NOT to be lazy-loaded.
131 + $('div.visualizer-front:not(.visualizer-lazy):not(.viz-facade-loaded)').each(function(index, element){
132 + var id = $(element).addClass('viz-facade-loaded').attr('id');
133 + showChart(id);
134 + });
135 +
136 + // interate through all charts that are to be lazy-loaded and observe each one.
137 + $('div.visualizer-front.visualizer-lazy').each(function(index, element){
138 + var id = $(element).attr('id');
139 + var limit = $(element).attr('data-lazy-limit');
140 + if(!limit){
141 + limit = 300;
142 + }
143 + var target = document.querySelector('#' + id);
144 +
145 + // configure the intersection observer instance
146 + var intersectionObserverOptions = {
147 + root: null,
148 + rootMargin: limit + 'px',
149 + threshold: 0
150 + };
151 +
152 + var observer = new IntersectionObserver(function(entries) {
153 + entries.forEach(function(entry) {
154 + if (entry.isIntersecting) {
155 + observer.unobserve(target);
156 + showChart($(entry.target).attr('id'));
157 + }
158 + });
159 + }, intersectionObserverOptions);
160 +
161 + // start observing.
162 + observer.observe(target);
163 + });
164 + }
165 +
166 + function registerDefaultActions(){
167 + $('body').off('visualizer:action:specificchart:defaultprint').on('visualizer:action:specificchart:defaultprint', function(event, v){
168 + var iframe = $('<iframe>').attr("name", "print-visualization").attr("id", "print-visualization").css("position", "absolute");
169 + iframe.appendTo($('body'));
170 + var iframe_doc = iframe.get(0).contentWindow || iframe.get(0).contentDocument.document || iframe.get(0).contentDocument;
171 + iframe_doc.document.open();
172 + iframe_doc.document.write(v.data);
173 + iframe_doc.document.close();
174 + setTimeout(function(){
175 + window.frames['print-visualization'].focus();
176 + window.frames['print-visualization'].print();
177 + iframe.remove();
178 + }, 500);
179 + });
180 + }
76 181 })(jQuery, visualizer);
77 182
78 183 (function ($) {
79 184 $.fn.lock = function () {
@@ -121,5 +226,5 @@
121 226 });
122 227
123 228 return $(this);
124 229 };
125 -})(jQuery);
230 +})(jQuery);