PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
assets
/
dev
/
javascript
/
pages
if (wps_js.isset(wps_js.global, 'request_params', 'page') && wps_js.global.request_params.page === "optimization") { const wpStatisticsOptimization = { actions: [ { button: '#populate-submit-button', result: '#populate-submit-result', action: 'wp_statistics_update_country_data', messageKey: 'confirm_refresh_country' }, { button: '#populate-source-channel-submit', result: '#populate-source-channel-result', action: 'wp_statistics_update_source_channel_data', messageKey: 'confirm_update_channel' }, { button: '#hash-ips-submit', result: '#hash-ips-result', action: 'wp_statistics_hash_ips', messageKey: 'confirm_hash_ips' }, { button: '#repair-schema-submit-button', result: '#repair-schema-result', action: 'wp_statistics_repair_schema', messageKey: 'confirm_repair_schema' }, { button: '#re-check-schema-submit-button', result: '#re-check-schema-result', action: 'wp_statistics_recheck_schema' } ], showModal: function (message = wps_js._('are_you_sure'), onConfirm) { const $modal = $('#setting-confirmation'); if (!$modal.length) return console.error('Modal not found.'); $modal.find('.wps-modal__description').text(message); const $ok = $modal.find('button[data-action="resolve"]'); $ok.off('click').on('click', () => { $ok.addClass('wps-loading-button'); onConfirm(); }); $modal.addClass('wps-modal--open'); }, ajaxAction: function (action, $result, $button) { const $modal = $('#setting-confirmation'); const $ok = $modal.find('button[data-action="resolve"]'); const parseMessage = (response, defaultMsg = wps_js._('operation_completed')) => { try { const parsed = typeof response === 'string' ? JSON.parse(response) : response; if (parsed?.data?.message) { return parsed.data.message; } if (parsed?.message) { return parsed.message; } if (parsed?.data) { return JSON.stringify(parsed.data); } return defaultMsg; } catch { return typeof response === 'string' ? response : JSON.stringify(response); } }; const parseErrorMessage = (jqXHR, textStatus, errorThrown) => { try { const parsed = JSON.parse(jqXHR.responseText); return parsed.data?.message ? parsed.data.message : parsed.message || JSON.stringify(parsed); } catch { return jqXHR.responseText || `${textStatus}: ${errorThrown}`; } }; $button.addClass('wps-loading-button'); jQuery.ajax({ url: wps_js.global.ajax_url, type: 'post', data: { action: action, wps_nonce: wps_js.global.rest_api_nonce } }) .done(function (response) { const msg = parseMessage(response); if (response.success) { $result.html(`<div class="wps-alert wps-alert__success"><p>${msg}</p></div>`); } else { $result.html(`<div class="wps-alert wps-alert__danger"><p>${msg}</p></div>`); } }) .fail(function (jqXHR, textStatus, errorThrown) { const msg = parseErrorMessage(jqXHR, textStatus, errorThrown); $result.html(`<div class="wps-alert wps-alert__danger"><p>${msg}</p></div>`); }) .always(function () { $button.removeClass('wps-loading-button'); $ok.removeClass('wps-loading-button'); $modal.removeClass('wps-modal--open'); }); }, initMaintenanceAction: function ({button, result, action, messageKey}) { const $btn = $(button); const $res = $(result); $btn.off('click').on('click', e => { e.preventDefault(); if (!messageKey) { this.ajaxAction(action, $res, $btn); } else { const msg = wps_js._(messageKey); this.showModal(msg, () => this.ajaxAction(action, $res, $btn)); } }); }, initMigrationActions: function () { const self = this; $('.wps-migration-btn[data-confirmation]').each(function () { const $link = $(this); const requiresConfirmation = $link.attr('data-confirmation') === '1'; if ($link.hasClass('disabled') || $link.attr('aria-disabled') === 'true') { return; } $link.off('click').on('click', function (e) { e.preventDefault(); const href = $link.attr('href'); if (requiresConfirmation) { const confirmationMessage = wps_js._('confirmation') + '\n' + wps_js._('this_action_cannot_be_undone'); self.showModal(confirmationMessage, function () { window.location.href = href; }); } else { window.location.href = href; } }); }); }, init: function () { this.actions.forEach(a => this.initMaintenanceAction(a)); this.initMigrationActions(); } }; jQuery(document).ready(() => { wpStatisticsOptimization.init(); }); }
[-] overview.js
[edit]
[-] welcome.js
[edit]
[-] platform.js
[edit]
[-] generate-filters.js
[edit]
[-] tracker-debugger.js
[edit]
[-] optimization.js
[edit]
[-] geographic.js
[edit]
[-] setting.js
[edit]
[-] exclusions.js
[edit]
[-] privacy-audit.js
[edit]
[-] content-analytics.js
[edit]
[-] visitors.js
[edit]
[-] countries.js
[edit]
[-] referrals.js
[edit]
[-] category-analytics.js
[edit]
[-] hits.js
[edit]
[-] browser.js
[edit]
[-] add-ons.js
[edit]
[-] taxonomies.js
[edit]
[+]
..
[-] lock-page.js
[edit]
[-] author-analytics.js
[edit]
[-] settings.js
[edit]