| @@ -1,18 +1,15 @@ | ||
| 1 | 1 | /* global prompt */ |
| 2 | 2 | /* global visualizer */ |
| 3 | 3 | /* global alert */ |
| 4 | -/* global confirm */ | |
| 5 | 4 | /* global ajaxurl */ |
| 6 | 5 | /* global CodeMirror */ |
| 7 | -/* global vizHaveSettingsChanged */ | |
| 8 | 6 | |
| 9 | 7 | (function ($) { |
| 10 | 8 | $(window).on('load', function(){ |
| 11 | - let chart_select = $('#chart-select'); | |
| 12 | - if(chart_select.length > 0){ | |
| 13 | - // scroll to the selected chart type. | |
| 14 | - $('#chart-select')[0].scrollIntoView(); | |
| 9 | + // scroll to the selected chart type. | |
| 10 | + if($('label.type-label.type-label-selected').length > 0) { | |
| 11 | + $('label.type-label.type-label-selected')[0].scrollIntoView(); | |
| 15 | 12 | } |
| 16 | 13 | }); |
| 17 | 14 | |
| 18 | 15 | $(document).ready(function () { |
| @@ -18,28 +15,9 @@ | ||
| 18 | 15 | $(document).ready(function () { |
| 19 | 16 | onReady(); |
| 20 | 17 | }); |
| 21 | 18 | |
| 22 | - function initTabs(){ | |
| 23 | - $( "#sidebar" ).lock(); | |
| 24 | - $( "#viz-tabs" ).tabs({ | |
| 25 | - create: function( event, ui ) { | |
| 26 | - $(this).addClass('done'); | |
| 27 | - $( "#sidebar" ).unlock(); | |
| 28 | - }, | |
| 29 | - beforeActivate: function( event, ui ) { | |
| 30 | - // if settings have changed in tab #2 and tab #1 is being activated, warn the user. | |
| 31 | - if(vizHaveSettingsChanged() && ui.newTab.find( 'a' ).attr( 'id' ).includes('viz-tab-basic')){ | |
| 32 | - return confirm(visualizer.l10n.save_settings); | |
| 33 | - } | |
| 34 | - } | |
| 35 | - }); | |
| 36 | - } | |
| 37 | - | |
| 38 | 19 | function onReady() { |
| 39 | - initAccessibility(); | |
| 40 | - initTabs(); | |
| 41 | - | |
| 42 | 20 | // open the correct source tab/sub-tab. |
| 43 | 21 | var source = $('#visualizer-chart-id').attr('data-chart-source'); |
| 44 | 22 | $('li.viz-group.' + source).addClass('open'); |
| 45 | 23 | $('li.viz-group.' + source + ' span.viz-section-title.' + source).addClass('open'); |
| @@ -73,13 +51,26 @@ | ||
| 73 | 51 | |
| 74 | 52 | $('.type-radio').change(function () { |
| 75 | 53 | $('.type-label-selected').removeClass('type-label-selected'); |
| 76 | 54 | $(this).parent().addClass('type-label-selected'); |
| 77 | - updateTypeAriaChecked(); | |
| 78 | 55 | }); |
| 79 | 56 | |
| 57 | + $('#vz-chart-settings h2').click(function () { | |
| 58 | + $("#vz-chart-source").hide(); | |
| 59 | + $("#vz-chart-permissions").removeClass('open').addClass('bottom-fixed'); | |
| 60 | + $(this).parent().removeClass('bottom-fixed').addClass('open'); | |
| 61 | + $("#vz-chart-permissions .viz-group-header").hide(); | |
| 62 | + return false; | |
| 63 | + }); | |
| 64 | + $('#vz-chart-settings .customize-section-back').click(function () { | |
| 65 | + $("#vz-chart-source").show(); | |
| 66 | + $(this).parent().parent().removeClass('open').addClass('bottom-fixed'); | |
| 67 | + | |
| 68 | + return false; | |
| 69 | + }); | |
| 70 | + | |
| 80 | 71 | // collapse other open sections of this group |
| 81 | - $(document).on('click', '.viz-group-title', function () { | |
| 72 | + $('.viz-group-title').click(function () { | |
| 82 | 73 | var parent = $(this).parent(); |
| 83 | 74 | |
| 84 | 75 | if (parent.hasClass('open')) { |
| 85 | 76 | parent.removeClass('open'); |
| @@ -87,34 +78,29 @@ | ||
| 87 | 78 | parent.parent().find('.viz-group.open').removeClass('open'); |
| 88 | 79 | parent.addClass('open'); |
| 89 | 80 | } |
| 90 | 81 | |
| 91 | - /* | |
| 92 | - * if the user wants to perform an action and click that tab to change the source | |
| 93 | - * and the chart is no longer showing because that particular LHS screen is showing | |
| 94 | - * e.g. create parameters, import json, db query box etc. | |
| 95 | - * we need to make sure we cancel the current process WITHOUT saving | |
| 96 | - * and then show the chart as it was | |
| 97 | - * let's close the LHS window and show the chart that is hidden | |
| 98 | - */ | |
| 99 | - $('body').trigger('visualizer:change:action'); | |
| 100 | - updateGroupAriaState($(this)); | |
| 82 | + // if the user wanted to perform an action | |
| 83 | + // and the chart is no longer showing because that particular screen is showing | |
| 84 | + // e.g. create parameters | |
| 85 | + // and then the user decided to click on another action | |
| 86 | + // let's invoke the show chart of the previous action so that the chart shows | |
| 87 | + // and the user does not get confused | |
| 88 | + $('input[type="button"][data-current!="chart"].show-chart-toggle').trigger('click'); | |
| 101 | 89 | }); |
| 102 | 90 | |
| 103 | 91 | // collapse other open subsections of this section |
| 104 | - $(document).on('click', '.viz-section-title', function () { | |
| 92 | + $('.viz-section-title').click(function () { | |
| 105 | 93 | var grandparent = $(this).parent().parent(); |
| 106 | - grandparent.find('.viz-section-title.open').not(this).each(function () { | |
| 107 | - $(this).removeClass('open').siblings('.viz-section-items').hide(); | |
| 108 | - }); | |
| 109 | - updateSectionAriaState($(this)); | |
| 94 | + grandparent.find('.viz-section-title.open ~ .viz-section-items').hide(); | |
| 95 | + grandparent.find('.viz-section-title.open').removeClass('open'); | |
| 110 | 96 | }); |
| 111 | 97 | |
| 112 | 98 | $('#view-remote-file').click(function () { |
| 113 | - var url = $(this).parent().find('#vz-schedule-url').val(); | |
| 99 | + var url = $(this).parent().find('#remote-data').val(); | |
| 114 | 100 | |
| 115 | 101 | if (url !== '') { |
| 116 | - if (url.indexOf('localhost') !== -1 || /^([a-z]([a-z]|\d|\+|-|\.)*):(\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?((\[(|(v[\da-f]{1,}\.(([a-z]|\d|-|\.|_|~)|[!\$&'\(\)\*\+,;=]|:)+))\])|((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=])*)(:\d*)?)(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*|(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)|((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)|((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)){0})(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(url)) { | |
| 102 | + if (/^([a-z]([a-z]|\d|\+|-|\.)*):(\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?((\[(|(v[\da-f]{1,}\.(([a-z]|\d|-|\.|_|~)|[!\$&'\(\)\*\+,;=]|:)+))\])|((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=])*)(:\d*)?)(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*|(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)|((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)|((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)){0})(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(url)) { | |
| 117 | 103 | if (url.substr(url.length - 8) === '/pubhtml') { |
| 118 | 104 | url = url.substring(0, url.length - 8) + '/export?format=csv'; |
| 119 | 105 | } |
| 120 | 106 | |
| @@ -133,17 +119,17 @@ | ||
| 133 | 119 | $(this).parent().submit(); |
| 134 | 120 | } |
| 135 | 121 | }); |
| 136 | 122 | |
| 137 | - $( window ).on( 'load', function() { | |
| 123 | + $('#thehole').load(function () { | |
| 138 | 124 | $('#canvas').unlock(); |
| 139 | - } ); | |
| 125 | + }); | |
| 140 | 126 | |
| 141 | - $(document).on('click', '.viz-section-title', function () { | |
| 127 | + $('.viz-section-title').click(function () { | |
| 142 | 128 | $(this).toggleClass('open').parent().find('.viz-section-items').toggle(); |
| 143 | 129 | }); |
| 144 | 130 | |
| 145 | - $(document).on('click', '.more-info', function () { | |
| 131 | + $('.more-info').click(function () { | |
| 146 | 132 | $(this).parent().find('.viz-section-description:first').toggle(); |
| 147 | 133 | return false; |
| 148 | 134 | }); |
| 149 | 135 | |
| @@ -150,9 +136,9 @@ | ||
| 150 | 136 | $('#cancel-button').click(function () { |
| 151 | 137 | $('#cancel-form').submit(); |
| 152 | 138 | }); |
| 153 | 139 | |
| 154 | - init_available_chart_list(); | |
| 140 | + init_type_vs_library(); | |
| 155 | 141 | |
| 156 | 142 | $('.viz-abort').on('click', function(e){ |
| 157 | 143 | e.preventDefault(); |
| 158 | 144 | window.parent.postMessage('visualizer:mediaframe:close', '*'); |
| @@ -159,226 +145,66 @@ | ||
| 159 | 145 | }); |
| 160 | 146 | |
| 161 | 147 | } |
| 162 | 148 | |
| 163 | - function initAccessibility(){ | |
| 164 | - // Chart type picker: treat tiles as radios with keyboard support. | |
| 165 | - var $typePicker = $('#type-picker'); | |
| 166 | - if($typePicker.length){ | |
| 167 | - $typePicker.attr('role', 'radiogroup'); | |
| 168 | - $('.type-label').each(function(){ | |
| 169 | - var $label = $(this); | |
| 170 | - var $input = $label.find('input[type="radio"]'); | |
| 171 | - $label.attr('tabindex', '0').attr('role', 'radio'); | |
| 172 | - if($input.length){ | |
| 173 | - $label.attr('aria-checked', $input.is(':checked') ? 'true' : 'false'); | |
| 174 | - }else{ | |
| 175 | - $label.attr('aria-disabled', 'true'); | |
| 176 | - } | |
| 177 | - }); | |
| 178 | - $(document).on('keydown', '.type-label', function(e){ | |
| 179 | - if(e.key === 'Enter' || e.key === ' '){ | |
| 180 | - e.preventDefault(); | |
| 181 | - var $label = $(this); | |
| 182 | - var $input = $label.find('input[type="radio"]'); | |
| 183 | - if($input.length){ | |
| 184 | - $input.prop('checked', true).trigger('change'); | |
| 185 | - } | |
| 186 | - } | |
| 187 | - }); | |
| 149 | + function init_type_vs_library() { | |
| 150 | + var $data = $('select.viz-select-library').attr('data-type-vs-library'); | |
| 151 | + if(typeof $data === 'undefined' || $data.length === 0){ | |
| 152 | + return; | |
| 188 | 153 | } |
| 189 | - | |
| 190 | - // Collapsible groups: add button roles + keyboard activation. | |
| 191 | - $('.viz-group-title').each(function(index){ | |
| 192 | - var $title = $(this); | |
| 193 | - $title.attr('role', 'button').attr('tabindex', '0'); | |
| 194 | - var $content = $title.siblings('.viz-group-content'); | |
| 195 | - if($content.length){ | |
| 196 | - if(!$content.attr('id')){ | |
| 197 | - $content.attr('id', 'viz-group-content-' + index); | |
| 198 | - } | |
| 199 | - $title.attr('aria-controls', $content.attr('id')); | |
| 200 | - updateGroupAriaState($title); | |
| 201 | - } | |
| 154 | + var $typeVsLibrary = JSON.parse( $('select.viz-select-library').attr('data-type-vs-library') ); | |
| 155 | + // disable all unsupported libraries for the chart type. | |
| 156 | + $('input.type-radio').on('click', function(){ | |
| 157 | + enable_libraries_for($(this).val(), $typeVsLibrary); | |
| 202 | 158 | }); |
| 203 | - $(document).on('keydown', '.viz-group-title', function(e){ | |
| 204 | - if(e.key === 'Enter' || e.key === ' '){ | |
| 205 | - e.preventDefault(); | |
| 206 | - $(this).trigger('click'); | |
| 207 | - } | |
| 208 | - }); | |
| 209 | 159 | |
| 210 | - // Subsections in source panel. | |
| 211 | - $('.viz-section-title').each(function(index){ | |
| 212 | - var $title = $(this); | |
| 213 | - $title.attr('role', 'button').attr('tabindex', '0'); | |
| 214 | - var $items = $title.siblings('.viz-section-items'); | |
| 215 | - if($items.length){ | |
| 216 | - if(!$items.attr('id')){ | |
| 217 | - $items.attr('id', 'viz-section-items-' + index); | |
| 218 | - } | |
| 219 | - $title.attr('aria-controls', $items.attr('id')); | |
| 220 | - updateSectionAriaState($title); | |
| 221 | - } | |
| 222 | - }); | |
| 223 | - $(document).on('keydown', '.viz-section-title', function(e){ | |
| 224 | - if(e.key === 'Enter' || e.key === ' '){ | |
| 225 | - e.preventDefault(); | |
| 226 | - $(this).trigger('click'); | |
| 227 | - } | |
| 228 | - }); | |
| 160 | + enable_libraries_for($('input.type-radio:checked').val(), $typeVsLibrary); | |
| 229 | 161 | } |
| 230 | 162 | |
| 231 | - function updateTypeAriaChecked(){ | |
| 232 | - $('.type-label').each(function(){ | |
| 233 | - var $label = $(this); | |
| 234 | - var $input = $label.find('input[type="radio"]'); | |
| 235 | - if($input.length){ | |
| 236 | - $label.attr('aria-checked', $input.is(':checked') ? 'true' : 'false'); | |
| 237 | - } | |
| 163 | + function enable_libraries_for($type, $typeVsLibrary) { | |
| 164 | + $('select.viz-select-library option').addClass('disabled').attr('disabled', 'disabled'); | |
| 165 | + var $libs = $typeVsLibrary[$type]; | |
| 166 | + $.each($libs, function( i, $lib ) { | |
| 167 | + $('select.viz-select-library option[value="' + $lib + '"]').removeClass('disabled').removeAttr('disabled'); | |
| 238 | 168 | }); |
| 169 | + $('select.viz-select-library').val( $('select.viz-select-library option:not(.disabled)').val() ); | |
| 239 | 170 | } |
| 240 | 171 | |
| 241 | - function updateGroupAriaState($title){ | |
| 242 | - if(!$title || $title.length === 0){ | |
| 243 | - return; | |
| 244 | - } | |
| 245 | - var isOpen = $title.parent().hasClass('open'); | |
| 246 | - $title.attr('aria-expanded', isOpen ? 'true' : 'false'); | |
| 247 | - } | |
| 172 | + function init_permissions(){ | |
| 173 | + $('#vz-chart-permissions h2').click(function () { | |
| 174 | + $("#vz-chart-source").hide(); | |
| 175 | + $("#vz-chart-permissions .viz-group-header").show(); | |
| 176 | + $("#vz-chart-settings").removeClass('open').addClass('bottom-fixed'); | |
| 248 | 177 | |
| 249 | - function updateSectionAriaState($title){ | |
| 250 | - if(!$title || $title.length === 0){ | |
| 251 | - return; | |
| 252 | - } | |
| 253 | - var isOpen = $title.hasClass('open'); | |
| 254 | - $title.attr('aria-expanded', isOpen ? 'true' : 'false'); | |
| 255 | - } | |
| 178 | + $('#settings-button').click(function(e) { | |
| 179 | + e.preventDefault(); | |
| 180 | + $('#permissions-form').submit(); | |
| 181 | + $('#settings-form').submit(); | |
| 182 | + }); | |
| 256 | 183 | |
| 257 | - /** | |
| 258 | - * Initialize/Update the available chart list based on their supported renderer libraries. | |
| 259 | - * | |
| 260 | - * @returns {void} | |
| 261 | - */ | |
| 262 | - function init_available_chart_list() { | |
| 263 | - const rendererSelect = document.querySelector('select.viz-select-library'); | |
| 264 | - if ( ! rendererSelect ) { | |
| 265 | - return; | |
| 266 | - } | |
| 184 | + $(this).parent().removeClass('bottom-fixed').addClass('open'); | |
| 267 | 185 | |
| 268 | - const rendererTypesMappingData = rendererSelect?.getAttribute('data-type-vs-library'); | |
| 269 | - if( ! rendererTypesMappingData ) { | |
| 270 | - return; | |
| 271 | - } | |
| 186 | + return false; | |
| 187 | + }); | |
| 188 | + $('#vz-chart-permissions .customize-section-back').click(function () { | |
| 189 | + $("#vz-chart-source").show(); | |
| 272 | 190 | |
| 273 | - /** @type {Record<string, ('GoogleCharts' | 'ChartJS' | 'DataTable')[]>} */ | |
| 274 | - const rendererTypesMapping = JSON.parse( rendererTypesMappingData ); | |
| 275 | - | |
| 276 | - document.querySelectorAll('input.type-radio').forEach( chartTypeRadio => { | |
| 277 | - | |
| 278 | - // Init the lib based on the default selected chart type. | |
| 279 | - if ( chartTypeRadio.checked ) { | |
| 280 | - const chartType = chartTypeRadio.value; | |
| 281 | - if ( ! chartType ) { | |
| 282 | - return; | |
| 283 | - } | |
| 284 | - | |
| 285 | - const selectedRenderer = rendererSelect.value; | |
| 286 | - if ( ! rendererTypesMapping[chartType]?.includes( selectedRenderer ) ) { | |
| 287 | - disable_renderer_select_placeholder(); | |
| 288 | - rendererSelect.value = rendererTypesMapping[chartType][0] | |
| 289 | - } | |
| 290 | - } | |
| 291 | - | |
| 292 | - chartTypeRadio.addEventListener('click', (event) => { | |
| 293 | - // Check if the chart type is supported by the selected renderer. If not, select the first supported renderer. | |
| 294 | - const chartType = event.target.value; | |
| 295 | - if ( ! chartType ) { | |
| 296 | - return; | |
| 297 | - } | |
| 298 | - | |
| 299 | - const selectedRenderer = rendererSelect.value; | |
| 300 | - if ( ! rendererTypesMapping[chartType]?.includes( selectedRenderer ) ) { | |
| 301 | - disable_renderer_select_placeholder(); | |
| 302 | - rendererSelect.value = rendererTypesMapping[chartType][0] | |
| 303 | - } | |
| 191 | + $("#vz-chart-permissions .viz-group-header").hide(); | |
| 192 | + $('#settings-button').click(function(e) { | |
| 193 | + e.preventDefault(); | |
| 194 | + $('#settings-form').submit(); | |
| 304 | 195 | }); |
| 305 | - }); | |
| 306 | 196 | |
| 307 | - // Update the chart list on user interaction. | |
| 308 | - rendererSelect.addEventListener('change', (event) => { | |
| 309 | - disable_renderer_select_placeholder(); | |
| 310 | - toggle_renderer_type( event.target.value ); | |
| 311 | - toggle_chart_types_by_render( event.target.value ); | |
| 312 | - }); | |
| 197 | + $(this).parent().parent().removeClass('open').addClass('bottom-fixed'); | |
| 313 | 198 | |
| 314 | - } | |
| 315 | - | |
| 316 | - /** | |
| 317 | - * Disable the placeholder option in the renderer select. | |
| 318 | - */ | |
| 319 | - function disable_renderer_select_placeholder() { | |
| 320 | - const placeholderOption = document.querySelector('#library-select-placeholder'); | |
| 321 | - if ( placeholderOption && placeholderOption.disabled === false ) { | |
| 322 | - placeholderOption.disabled = true; | |
| 323 | - } | |
| 324 | - } | |
| 325 | - | |
| 326 | - /** | |
| 327 | - * Toggle the renderer type class based on the given renderer type. | |
| 328 | - * | |
| 329 | - * The class is used to style the chart type picker based on the given renderer library. | |
| 330 | - * | |
| 331 | - * @param {('GoogleCharts' | 'ChartJS' | 'DataTable')} rendererType The renderer type to toggle the class. | |
| 332 | - */ | |
| 333 | - function toggle_renderer_type( rendererType ) { | |
| 334 | - const typePicker = document.querySelector('#type-picker'); | |
| 335 | - if ( ! typePicker ) { | |
| 336 | - return; | |
| 337 | - } | |
| 338 | - | |
| 339 | - typePicker.classList.remove('lib-GoogleCharts', 'lib-ChartJS', 'lib-DataTable'); | |
| 340 | - typePicker.classList.add(`lib-${rendererType}`); | |
| 341 | - } | |
| 342 | - | |
| 343 | - /** | |
| 344 | - * Toggle chart types based on the given renderer type. | |
| 345 | - * | |
| 346 | - * @param {('GoogleCharts' | 'ChartJS' | 'DataTable')} rendererType The renderer type to filter the chart types. | |
| 347 | - */ | |
| 348 | - function toggle_chart_types_by_render( rendererType ) { | |
| 349 | - document.querySelectorAll('.type-box').forEach( typeBox => { | |
| 350 | - const hasLib = typeBox.classList.contains(`type-lib-${rendererType}`); | |
| 351 | - typeBox.classList.toggle('viz-hidden', ! hasLib ); | |
| 352 | - | |
| 353 | - // Reset unavailable chart type selection. | |
| 354 | - const chartOption = typeBox.querySelector('input[type="radio"]'); | |
| 355 | - if ( ! hasLib && chartOption?.checked ) { | |
| 356 | - chartOption.checked = false; | |
| 357 | - } | |
| 199 | + return false; | |
| 358 | 200 | }); |
| 359 | 201 | |
| 360 | - enable_libraries_for($('input.type-radio:checked').val(), $typeVsLibrary); | |
| 361 | - } | |
| 362 | - | |
| 363 | - function enable_libraries_for($type, $typeVsLibrary) { | |
| 364 | - $('select.viz-select-library option').addClass('disabled').attr('disabled', 'disabled'); | |
| 365 | - $('select.viz-select-library option .premium-label').remove(); | |
| 366 | - $('select.viz-select-library option').append('<span class="premium-label"> (PREMIUM)</span>'); | |
| 367 | - var $libs = $typeVsLibrary[$type]; | |
| 368 | - $.each($libs, function( i, $lib ) { | |
| 369 | - $('select.viz-select-library option[value="' + $lib + '"]').removeClass('disabled').removeAttr('disabled'); | |
| 370 | - $('select.viz-select-library option[value="' + $lib + '"] .premium-label').remove(); | |
| 371 | - }); | |
| 372 | - $('select.viz-select-library').val( $('select.viz-select-library option:not(.disabled)').val() ); | |
| 373 | - } | |
| 374 | - | |
| 375 | - function init_permissions(){ | |
| 376 | 202 | $('.visualizer-permission').chosen({ |
| 377 | 203 | width : '50%', |
| 378 | 204 | search_contains : true |
| 379 | 205 | }); |
| 380 | - | |
| 206 | + | |
| 381 | 207 | $('.visualizer-permission-type').each(function(x, y){ |
| 382 | 208 | var type = $(y).attr('data-visualizer-permission-type'); |
| 383 | 209 | var child = $('.visualizer-permission-' + type + '-specific'); |
| 384 | 210 | if($(y).val() === 'all'){ |
| @@ -385,9 +211,9 @@ | ||
| 385 | 211 | child.next('div.chosen-container').hide(); |
| 386 | 212 | return; |
| 387 | 213 | } |
| 388 | 214 | }); |
| 389 | - | |
| 215 | + | |
| 390 | 216 | $('.visualizer-permission-type').on('change', function(evt, params) { |
| 391 | 217 | var type = $(this).attr('data-visualizer-permission-type'); |
| 392 | 218 | var child = $('.visualizer-permission-' + type + '-specific'); |
| 393 | 219 | child.empty(); |
| @@ -430,9 +256,9 @@ | ||
| 430 | 256 | lineWrapping: true, |
| 431 | 257 | dragDrop: false, |
| 432 | 258 | matchBrackets: true, |
| 433 | 259 | autoCloseBrackets: true, |
| 434 | - extraKeys: {"Shift-Space": "autocomplete"}, | |
| 260 | + extraKeys: {"Ctrl-Space": "autocomplete"}, | |
| 435 | 261 | hintOptions: { tables: table_columns } |
| 436 | 262 | }); |
| 437 | 263 | |
| 438 | 264 | // force refresh so that the query shows on first time load. Otherwise you have to click on the editor for it to show. |
| @@ -440,9 +266,9 @@ | ||
| 440 | 266 | cm.refresh(); |
| 441 | 267 | }); |
| 442 | 268 | |
| 443 | 269 | cm.focus(); |
| 444 | - | |
| 270 | + | |
| 445 | 271 | // update text area. |
| 446 | 272 | cm.on('inputRead', function(x, y){ |
| 447 | 273 | cm.save(); |
| 448 | 274 | }); |
| @@ -451,27 +277,13 @@ | ||
| 451 | 277 | // from the editor. Let's force this. |
| 452 | 278 | $('body').on('visualizer:db:query:update', function(event, data){ |
| 453 | 279 | cm.save(); |
| 454 | 280 | }); |
| 455 | - | |
| 456 | - // clear the editor. | |
| 457 | - $('body').on('visualizer:db:query:setvalue', function(event, data){ | |
| 458 | - cm.setValue(data.value); | |
| 459 | - cm.clearHistory(); | |
| 460 | - cm.refresh(); | |
| 461 | - }); | |
| 462 | - | |
| 463 | - // set an option at runtime? | |
| 464 | - $('body').on('visualizer:db:query:changeoption', function(event, data){ | |
| 465 | - cm.setOption(data.name, data.value); | |
| 466 | - }); | |
| 467 | 281 | } |
| 468 | 282 | |
| 469 | 283 | function init_filter_import() { |
| 470 | 284 | $( '#db-filter-save-button' ).on( 'click', function(){ |
| 471 | 285 | $('#vz-filter-wizard').submit(); |
| 472 | - $( '#vz-wp-sync-options' ).hide(); | |
| 473 | - $( '#vz-wp-sync-btn' ).attr( 'aria-expanded', false ); | |
| 474 | 286 | }); |
| 475 | 287 | } |
| 476 | 288 | |
| 477 | 289 | function init_db_import(){ |
| @@ -484,9 +296,9 @@ | ||
| 484 | 296 | $('body').trigger('visualizer:db:query:update', {}); |
| 485 | 297 | if($('.visualizer-db-query').val() === ''){ |
| 486 | 298 | return; |
| 487 | 299 | } |
| 488 | - | |
| 300 | + | |
| 489 | 301 | start_ajax($('#visualizer-db-query')); |
| 490 | 302 | $('.db-wizard-results').empty(); |
| 491 | 303 | $('.db-wizard-error').empty(); |
| 492 | 304 | $.ajax({ |
| @@ -513,19 +325,9 @@ | ||
| 513 | 325 | }); |
| 514 | 326 | }); |
| 515 | 327 | |
| 516 | 328 | $( '#db-chart-button' ).on( 'click', function(){ |
| 517 | - | |
| 518 | - $('body').off('visualizer:change:action').on('visualizer:change:action', function(e){ | |
| 519 | - var filter_button = $( '#db-chart-button' ); | |
| 520 | - $( '#visualizer-db-query' ).css("z-index", "-1").hide(); | |
| 521 | - filter_button.val( filter_button.attr( 'data-t-chart' ) ); | |
| 522 | - filter_button.html( filter_button.attr( 'data-t-chart' ) ); | |
| 523 | - filter_button.attr( 'data-current', 'chart' ); | |
| 524 | - $( '#canvas' ).css("z-index", "1").show(); | |
| 525 | - }); | |
| 526 | - | |
| 527 | - $('#content').css('width', 'calc(100% - 350px)'); | |
| 329 | + $('#content').css('width', 'calc(100% - 300px)'); | |
| 528 | 330 | if( $(this).attr( 'data-current' ) === 'chart'){ |
| 529 | 331 | $(this).val( $(this).attr( 'data-t-filter' ) ); |
| 530 | 332 | $(this).html( $(this).attr( 'data-t-filter' ) ); |
| 531 | 333 | $(this).attr( 'data-current', 'filter' ); |
| @@ -544,29 +346,13 @@ | ||
| 544 | 346 | $( '#db-chart-save-button' ).trigger('click'); |
| 545 | 347 | } |
| 546 | 348 | } ); |
| 547 | 349 | |
| 548 | - $( document ).on( 'click', '#vz-db-sync-btn', function(){ | |
| 549 | - var $options = $( '#vz-db-sync-options' ); | |
| 550 | - var isOpen = $options.is( ':visible' ); | |
| 551 | - $options.toggle(); | |
| 552 | - $( this ).attr( 'aria-expanded', ! isOpen ); | |
| 553 | - } ); | |
| 554 | - | |
| 555 | - $( document ).on( 'click', '#vz-wp-sync-btn', function(){ | |
| 556 | - var $options = $( '#vz-wp-sync-options' ); | |
| 557 | - var isOpen = $options.is( ':visible' ); | |
| 558 | - $options.toggle(); | |
| 559 | - $( this ).attr( 'aria-expanded', ! isOpen ); | |
| 560 | - } ); | |
| 561 | - | |
| 562 | 350 | $( '#db-chart-save-button' ).on( 'click', function(){ |
| 563 | 351 | // submit only if a query has been provided. |
| 564 | 352 | if($('#db-query-form .visualizer-db-query').val().length > 0){ |
| 565 | 353 | $('#viz-db-wizard-params').val($('#db-query-form').serialize()); |
| 566 | 354 | $('#vz-db-wizard').submit(); |
| 567 | - $( '#vz-db-sync-options' ).hide(); | |
| 568 | - $( '#vz-db-sync-btn' ).attr( 'aria-expanded', false ); | |
| 569 | 355 | }else{ |
| 570 | 356 | $('#canvas').unlock(); |
| 571 | 357 | } |
| 572 | 358 | }); |
| @@ -583,73 +369,31 @@ | ||
| 583 | 369 | $('.visualizer-json-form').accordion({ |
| 584 | 370 | heightStyle: 'content', |
| 585 | 371 | active: 0 |
| 586 | 372 | }); |
| 587 | - $('.visualizer-json-subform').accordion({ | |
| 588 | - heightStyle: 'content', | |
| 589 | - active: false, | |
| 590 | - collapsible: true | |
| 591 | - }); | |
| 592 | 373 | |
| 593 | - // open the accordions by default if they are indicated with the 'open' class. | |
| 594 | - $('.visualizer-json-subform .viz-substep.open').each(function(i, e){ | |
| 595 | - $('.visualizer-json-subform').accordion( "option", "active", i ); | |
| 596 | - }); | |
| 597 | - | |
| 598 | 374 | // toggle between chart and create/modify parameters |
| 599 | - $( '#json-chart-button, #woo-chart-button' ).on( 'click', function(){ | |
| 600 | - | |
| 601 | - $('body').off('visualizer:change:action').on('visualizer:change:action', function(e){ | |
| 602 | - var filter_button = $( '#json-chart-button, #woo-chart-button' ); | |
| 603 | - $( '#visualizer-json-screen' ).css("z-index", "-1").hide(); | |
| 604 | - filter_button.val( filter_button.attr( 'data-t-chart' ) ); | |
| 605 | - filter_button.html( filter_button.attr( 'data-t-chart' ) ); | |
| 606 | - filter_button.attr( 'data-current', 'chart' ); | |
| 607 | - $( '#canvas' ).css("z-index", "1").show(); | |
| 608 | - $( '#vz-import-woo-report' ).find( 'select, input' ).removeAttr( 'disabled' ); | |
| 609 | - }); | |
| 610 | - | |
| 611 | - if ( 'json-chart-button' === $( this ).attr( 'id' ) ) { | |
| 612 | - $( '#vz-import-woo-report' ).find( 'select, input' ).attr( 'disabled', true ); | |
| 613 | - } else { | |
| 614 | - $( '#vz-import-woo-report' ).find( 'select, input' ).removeAttr( 'disabled' ); | |
| 615 | - } | |
| 616 | - $('#content').css('width', 'calc(100% - 100px)'); | |
| 375 | + $( '#json-chart-button' ).on( 'click', function(){ | |
| 376 | + $('#content').css('width', 'calc(100% - 300px)'); | |
| 617 | 377 | if( $(this).attr( 'data-current' ) === 'chart'){ |
| 618 | - // toggle from chart to LHS form | |
| 619 | 378 | $(this).val( $(this).attr( 'data-t-filter' ) ); |
| 620 | 379 | $(this).html( $(this).attr( 'data-t-filter' ) ); |
| 621 | 380 | $(this).attr( 'data-current', 'filter' ); |
| 622 | 381 | $( '.visualizer-editor-lhs' ).hide(); |
| 623 | 382 | $( '#visualizer-json-screen' ).css("z-index", "9999").show(); |
| 624 | - if ( 'woo-chart-button' === $( this ).attr( 'id' ) && '' !== $( '#vz-woo-source:visible' ).val() ) { | |
| 625 | - $( '#vz-import-json-url' ).val( visualizer.rest_base + $( '#vz-woo-source' ).val() ).attr( 'readonly', true ); | |
| 626 | - } else { | |
| 627 | - if ( 'undefined' !== $( '#vz-import-json-url' ).attr( 'readonly' ) ) { | |
| 628 | - $( '#vz-import-json-url' ).val( '' ).removeAttr( 'readonly' ).removeAttr( 'value' ); | |
| 629 | - $('#json-endpoint-form')[0].reset(); | |
| 630 | - $('.visualizer-json-form h3.viz-step:not(.step1)').addClass('ui-state-disabled'); | |
| 631 | - } | |
| 632 | - } | |
| 633 | 383 | $( '#canvas' ).hide(); |
| 634 | 384 | }else{ |
| 635 | - // toggle from LHS form to chart | |
| 636 | - $( '#json-conclude-form' ).trigger('submit'); | |
| 385 | + var filter_button = $(this); | |
| 386 | + $( '#visualizer-json-screen' ).css("z-index", "-1").hide(); | |
| 387 | + $('#canvas').lock(); | |
| 388 | + filter_button.val( filter_button.attr( 'data-t-chart' ) ); | |
| 389 | + filter_button.html( filter_button.attr( 'data-t-chart' ) ); | |
| 390 | + filter_button.attr( 'data-current', 'chart' ); | |
| 391 | + $( '#canvas' ).css("z-index", "1").show(); | |
| 392 | + $('#canvas').unlock(); | |
| 637 | 393 | } |
| 638 | 394 | } ); |
| 639 | 395 | |
| 640 | - $('body').on('visualizer:json:form:submit', function() { | |
| 641 | - var filter_button = $( '#json-chart-button, #woo-chart-button' ); | |
| 642 | - $( '#visualizer-json-screen' ).css("z-index", "-1").hide(); | |
| 643 | - $('#canvas').lock(); | |
| 644 | - filter_button.val( filter_button.attr( 'data-t-chart' ) ); | |
| 645 | - filter_button.html( filter_button.attr( 'data-t-chart' ) ); | |
| 646 | - filter_button.attr( 'data-current', 'chart' ); | |
| 647 | - end_ajax( $( '#visualizer-json-screen' ) ); | |
| 648 | - $( '#canvas' ).removeClass('visualizer-chart-loaded').css("z-index", "1").show(); | |
| 649 | - }); | |
| 650 | - | |
| 651 | - | |
| 652 | 396 | // fetch the roots for the provided endpoint |
| 653 | 397 | $( '#visualizer-json-fetch' ).on( 'click', function(e){ |
| 654 | 398 | e.preventDefault(); |
| 655 | 399 | $('.visualizer-json-form').accordion( 'option', 'active', 0 ); |
| @@ -665,8 +409,9 @@ | ||
| 665 | 409 | 'params' : $('#json-endpoint-form').serialize() |
| 666 | 410 | }, |
| 667 | 411 | success : function(data){ |
| 668 | 412 | if(data.success){ |
| 413 | + $('#json-root-form [name="url"]').val(data.data.url); | |
| 669 | 414 | $('#vz-import-json-root').empty(); |
| 670 | 415 | $.each(data.data.roots, function(i, name){ |
| 671 | 416 | $('#vz-import-json-root').append('<option value="' + name + '">' + name.replace(regex, visualizer.json_tag_separator_view) + '</option>'); |
| 672 | 417 | }); |
| @@ -693,9 +438,9 @@ | ||
| 693 | 438 | method : 'post', |
| 694 | 439 | data : { |
| 695 | 440 | 'action' : visualizer.ajax['actions']['json_get_data'], |
| 696 | 441 | 'security' : visualizer.ajax['nonces']['json_get_data'], |
| 697 | - 'params' : $('#json-root-form, #json-endpoint-form').serialize() | |
| 442 | + 'params' : $('#json-root-form').serialize() | |
| 698 | 443 | }, |
| 699 | 444 | success : function(data){ |
| 700 | 445 | if(data.success){ |
| 701 | 446 | $('#vz-import-json-paging option:not(.static)').remove(); |
| @@ -707,8 +452,10 @@ | ||
| 707 | 452 | $('#vz-import-json-paging').append('<option value="' + name + '">' + display + '</option>'); |
| 708 | 453 | }); |
| 709 | 454 | $('.json-pagination').show(); |
| 710 | 455 | } |
| 456 | + $('#json-conclude-form [name="url"]').val(data.data.url); | |
| 457 | + $('#json-conclude-form [name="root"]').val(data.data.root); | |
| 711 | 458 | $('#json-conclude-form .json-table').html(data.data.table); |
| 712 | 459 | |
| 713 | 460 | var $table = create_editor_table( '#json-conclude-form' ); |
| 714 | 461 | |
| @@ -726,33 +473,20 @@ | ||
| 726 | 473 | }); |
| 727 | 474 | |
| 728 | 475 | // when the data is set and the chart is updated, toggle the screen so that the chart is shown |
| 729 | 476 | $('#json-conclude-form').on( 'submit', function(e){ |
| 730 | - // at least one column has to be selected as non-excluded. | |
| 731 | - var count_selected = 0; | |
| 732 | - $('select.viz-select-data-type').each(function(i, element){ | |
| 733 | - if($(element).prop('selectedIndex') > 0){ | |
| 734 | - count_selected++; | |
| 735 | - } | |
| 736 | - }); | |
| 737 | - if(count_selected === 0){ | |
| 738 | - alert(visualizer.l10n.select_columns); | |
| 739 | - return false; | |
| 740 | - } | |
| 741 | - | |
| 742 | - // populate the form elements that are in the other tabs. | |
| 743 | - $('#json-conclude-form-helper .json-form-element, #json-endpoint-form .json-form-element, #json-root-form .json-form-element, #vz-import-json .json-form-element, #vz-import-woo-report .json-form-element:not(:disabled)').each(function(x, y){ | |
| 477 | + // populate the form elements that are in the misc tab. | |
| 478 | + $('#json-conclude-form-helper .json-form-element').each(function(x, y){ | |
| 744 | 479 | $('#json-conclude-form').append('<input type="hidden" name="' + y.name + '" value="' + y.value + '">'); |
| 745 | 480 | }); |
| 746 | - | |
| 747 | - $('body').trigger('visualizer:json:form:submit'); | |
| 481 | + $( '#json-chart-button' ).trigger('click'); | |
| 482 | + $('#canvas').lock(); | |
| 748 | 483 | }); |
| 749 | 484 | |
| 750 | 485 | // update the schedule |
| 751 | - $('#json-chart-save-button, #woo-chart-save-button').on('click', function(e){ | |
| 486 | + $('#json-chart-save-button').on('click', function(e){ | |
| 752 | 487 | e.preventDefault(); |
| 753 | 488 | $('#canvas').lock(); |
| 754 | - var btnID = jQuery( this ).attr( 'id' ); | |
| 755 | 489 | $.ajax({ |
| 756 | 490 | url : ajaxurl, |
| 757 | 491 | method : 'post', |
| 758 | 492 | data : { |
| @@ -757,11 +491,10 @@ | ||
| 757 | 491 | method : 'post', |
| 758 | 492 | data : { |
| 759 | 493 | 'action' : visualizer.ajax['actions']['json_set_schedule'], |
| 760 | 494 | 'security' : visualizer.ajax['nonces']['json_set_schedule'], |
| 761 | - 'chart' : $('#vz-json-time, #vz-woo-time').attr('data-chart'), | |
| 762 | - 'time' : $('#vz-json-time, #vz-woo-time').val(), | |
| 763 | - 'is_woocommerce_report': 'woo-chart-save-button' === btnID, | |
| 495 | + 'chart' : $('#vz-json-time').attr('data-chart'), | |
| 496 | + 'time' : $('#vz-json-time').val() | |
| 764 | 497 | }, |
| 765 | 498 | success : function(data){ |
| 766 | 499 | // do nothing. |
| 767 | 500 | }, |
| @@ -770,25 +503,13 @@ | ||
| 770 | 503 | } |
| 771 | 504 | }); |
| 772 | 505 | }); |
| 773 | 506 | |
| 774 | - // Select WooCommerce report endpoint. | |
| 775 | - $( '#vz-woo-source' ).on( 'click', function( e ) { | |
| 776 | - // Trigger change action. | |
| 777 | - $( 'body' ).trigger( 'visualizer:change:action' ); | |
| 778 | - | |
| 779 | - if ( '' !== $( this ).val() ) { | |
| 780 | - $( '#woo-chart-button, #woo-chart-save-button' ).removeAttr( 'disabled' ); | |
| 781 | - } else { | |
| 782 | - $( '#woo-chart-button, #woo-chart-save-button' ).attr( 'disabled', true ); | |
| 783 | - } | |
| 784 | - } ); | |
| 785 | - | |
| 786 | 507 | } |
| 787 | 508 | |
| 788 | 509 | function init_editor_table() { |
| 789 | 510 | $('body').on('visualizer:db:editor:table:init', function(event, data){ |
| 790 | - var $table = create_editor_table('.viz-table-editor', data.config); | |
| 511 | + var $table = create_editor_table('.viz-table-editor'); | |
| 791 | 512 | $('body').on('visualizer:db:editor:table:redraw', function(event, data){ |
| 792 | 513 | $table.draw(); |
| 793 | 514 | }); |
| 794 | 515 | }); |
| @@ -793,9 +514,9 @@ | ||
| 793 | 514 | }); |
| 794 | 515 | }); |
| 795 | 516 | } |
| 796 | 517 | |
| 797 | - function create_editor_table(element, config) { | |
| 518 | + function create_editor_table(element) { | |
| 798 | 519 | var settings = { |
| 799 | 520 | paging: false, |
| 800 | 521 | searching: false, |
| 801 | 522 | ordering: false, |
| @@ -809,9 +530,9 @@ | ||
| 809 | 530 | }; |
| 810 | 531 | |
| 811 | 532 | // show column visibility button only when more than 6 columns are found (including the Label column) |
| 812 | 533 | if($(element + ' table.viz-editor-table thead tr th').length > 6){ |
| 813 | - $.extend( settings, { | |
| 534 | + $.extend( settings, { | |
| 814 | 535 | dom: 'Bt', |
| 815 | 536 | buttons: [ |
| 816 | 537 | { |
| 817 | 538 | extend: 'colvis', |
| @@ -820,11 +541,8 @@ | ||
| 820 | 541 | } |
| 821 | 542 | ] |
| 822 | 543 | } ); |
| 823 | 544 | } |
| 824 | - if(config){ | |
| 825 | - $.extend( settings, config ); | |
| 826 | - } | |
| 827 | 545 | |
| 828 | 546 | var $table = $(element + ' .viz-editor-table').DataTable(settings); |
| 829 | 547 | return $table; |
| 830 | 548 | } |
| @@ -892,107 +610,5 @@ | ||
| 892 | 610 | }); |
| 893 | 611 | |
| 894 | 612 | return $(this); |
| 895 | 613 | }; |
| 896 | - | |
| 897 | - // Telemetry | |
| 898 | - function getChartID() { | |
| 899 | - const urlParams = new URLSearchParams(window.location.search); | |
| 900 | - return urlParams.get('chart') ?? ''; | |
| 901 | - } | |
| 902 | - | |
| 903 | - const groupId = getChartID(); | |
| 904 | - | |
| 905 | - const chartTypes = document.querySelector('#viz-types-form') | |
| 906 | - if( chartTypes ) { | |
| 907 | - document.querySelector('.push-right[type=submit]')?.addEventListener('click', async function (event) { | |
| 908 | - if ( typeof window.tiTrk !== 'undefined' ) { | |
| 909 | - event.preventDefault(); | |
| 910 | - try { | |
| 911 | - const formData = new FormData(document.querySelector('#viz-types-form')); | |
| 912 | - const savedData = Object.fromEntries(formData); | |
| 913 | - | |
| 914 | - tiTrk?.with('visualizer')?.add({ | |
| 915 | - feature: 'chart-create', | |
| 916 | - featureComponent: 'saved-data', | |
| 917 | - featureData: { | |
| 918 | - type: savedData?.['type'], | |
| 919 | - library: savedData?.['chart-library'] | |
| 920 | - }, | |
| 921 | - groupId | |
| 922 | - }); | |
| 923 | - | |
| 924 | - // Do not make the user to wait too long for the event to be uploaded. | |
| 925 | - const timer = new Promise((resolve) => setTimeout(resolve, 500)); | |
| 926 | - await Promise.race([timer, tiTrk?.uploadEvents()]); | |
| 927 | - } catch (e) { | |
| 928 | - console.warn(e); | |
| 929 | - } | |
| 930 | - $('#viz-types-form').submit(); | |
| 931 | - } | |
| 932 | - }); | |
| 933 | - } | |
| 934 | - | |
| 935 | - [ | |
| 936 | - { | |
| 937 | - selector: '#editor-button', | |
| 938 | - featureComponent: 'source-manual-data' | |
| 939 | - }, | |
| 940 | - { | |
| 941 | - selector: '#vz-import-file', | |
| 942 | - featureComponent: 'source-import-csv-file' | |
| 943 | - }, | |
| 944 | - { | |
| 945 | - selector: '#vz-save-schedule', | |
| 946 | - featureComponent: 'source-import-csv-remote' | |
| 947 | - }, | |
| 948 | - { | |
| 949 | - selector: '#visualizer-json-fetch', | |
| 950 | - featureComponent: 'source-import-json-remote' | |
| 951 | - }, | |
| 952 | - { | |
| 953 | - selector: '#existing-chart', | |
| 954 | - featureComponent: 'source-import-chart' | |
| 955 | - }, | |
| 956 | - { | |
| 957 | - selector: '#filter-chart-button', | |
| 958 | - featureComponent: 'source-import-wordpress', | |
| 959 | - }, | |
| 960 | - { | |
| 961 | - selector: '#woo-chart-button', | |
| 962 | - featureComponent: 'source-import-woocommerce' | |
| 963 | - }, | |
| 964 | - { | |
| 965 | - selector: '#db-chart-button', | |
| 966 | - featureComponent: 'source-import-database' | |
| 967 | - } | |
| 968 | - ].forEach(({ selector, featureComponent }) => { | |
| 969 | - document.querySelector(selector)?.addEventListener('click', function () { | |
| 970 | - window?.tiTrk?.with('visualizer')?.set('used-source',{ | |
| 971 | - feature: 'chart-edit-used-source', | |
| 972 | - featureComponent, | |
| 973 | - groupId | |
| 974 | - }); | |
| 975 | - }); | |
| 976 | - }); | |
| 977 | -})(jQuery); | |
| 978 | - | |
| 979 | - | |
| 980 | -document.querySelector('#viz-copy-shortcode')?.addEventListener('click', function() { | |
| 981 | - var copyText = document.querySelector('#viz-shortcode')?.value; | |
| 982 | - if ( !copyText ) { | |
| 983 | - return; | |
| 984 | - } | |
| 985 | - | |
| 986 | - navigator.clipboard.writeText(copyText); | |
| 987 | - alert(visualizer.l10n.copied); | |
| 988 | -}); | |
| 989 | - | |
| 990 | -// Connect Chart Backend Title Info Panel with the field from the settings form. | |
| 991 | -const interactiveBackendTitleField = document.querySelector( '#viz-backend-name' ); | |
| 992 | -const backendTitleSave = document.querySelector( '#settings-form input[name="backend-title"]' ); | |
| 993 | - | |
| 994 | -if ( interactiveBackendTitleField && backendTitleSave ) { | |
| 995 | - interactiveBackendTitleField.addEventListener('input', function() { | |
| 996 | - backendTitleSave.value = this.value; | |
| 997 | - }); | |
| 998 | -} | |
| 614 | +})(jQuery); | |