PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
assets
/
dev
/
javascript
const WPStatisticsAjaxBackgroundProcessTracker = { intervalMs: (typeof Wp_Statistics_Async_Background_Process_Data !== 'undefined' && Wp_Statistics_Async_Background_Process_Data.interval) || 5000, migrationNotice: null, processedElement: null, precentElement: null, timer: null, isActive: true, currentProcess: null, init: function () { if (typeof Wp_Statistics_Async_Background_Process_Data === 'undefined') { console.error('Wp_Statistics_Async_Background_Process_Data is not defined'); return; } this.currentProcess = Wp_Statistics_Async_Background_Process_Data.current_process; if (! this.currentProcess) { return; } this.migrationNotice = jQuery('#wp-statistics-async-background-process-notice'); this.bindEvents(); }, bindEvents: function () { if (!this.migrationNotice || !this.migrationNotice.length) { return; } this.processedElement = this.migrationNotice.find('.processed').first(); this.precentElement = this.migrationNotice.find('.percentage').first(); var self = this; if (this.timer) { clearInterval(this.timer); } this.timer = setInterval(function () { self.updateProgress(); }, this.intervalMs); }, updateProgress: function () { if (!this.isActive) { return; } const self = this; jQuery.ajax({ url: Wp_Statistics_Async_Background_Process_Data.ajax_url, method: 'POST', data: { action: 'wp_statistics_async_background_process', wps_nonce: Wp_Statistics_Async_Background_Process_Data.rest_api_nonce, current_process: self.currentProcess }, success: function (response) { if (response.data.completed) { WPStatisticsAjaxBackgroundProcessTracker.markAsCompleted(); } else { WPStatisticsAjaxBackgroundProcessTracker.updatePercent(response.data.percentage); WPStatisticsAjaxBackgroundProcessTracker.updateProcessed(response.data.processed); } }, error: function (xhr, status, error) { console.error('AJAX request error:', status, error); } }); }, markAsCompleted: function () { if (this.migrationNotice.length) { this.migrationNotice.closest('.notice').removeClass('notice-info').addClass('notice-success'); let message = Wp_Statistics_Async_Background_Process_Data.completed_message; if (Wp_Statistics_Async_Background_Process_Data?.job_completed_message) { message = Wp_Statistics_Async_Background_Process_Data.job_completed_message; } this.migrationNotice.html(` <p><strong>${message}</strong></p> `); } this.isActive = false; }, updatePercent: function (percent) { if (this.precentElement && this.precentElement.length) { this.precentElement.text(percent + '%'); } }, updateProcessed: function (processed) { if (this.processedElement && this.processedElement.length) { this.processedElement.text(processed); } } }; // Initialize inside jQuery ready function jQuery(document).ready(function () { WPStatisticsAjaxBackgroundProcessTracker.init(); });
[+]
pages
[-] meta-box.js
[edit]
[+]
components
[-] helper.js
[edit]
[+]
filters
[-] background-process-tracker.js
[edit]
[-] image-upload.js
[edit]
[-] chart.js
[edit]
[-] user-tracker.js
[edit]
[-] tracker.js
[edit]
[-] config.js
[edit]
[-] run.js
[edit]
[+]
plugin
[-] event-tracker.js
[edit]
[-] mini-chart.js
[edit]
[-] ajax.js
[edit]
[+]
..
[-] placeholder.js
[edit]
[+]
Tinymce
[+]
meta-box