File "admin-dashboard.js"

Full Path: /home/elegucvf/public_html/wp-content-20250317205720/plugins/post-views-counter/js/admin-dashboard.js
File size: 9.7 KB
MIME-type: text/plain
Charset: utf-8

( function ( $ ) {

	/**
	 * Load initial data.
	 */
	window.addEventListener( 'load', function () {
		pvcUpdatePostViewsWidget();
		pvcUpdatePostMostViewedWidget();
	} );

	/**
	 * Ready event.
	 */
	$( function () {
		// toggle collapse items
		$( '.pvc-accordion-header' ).on( 'click', function ( e ) {
			$( this ).closest( '.pvc-accordion-item' ).toggleClass( 'pvc-collapsed' );

			var items = $( '#pvc-dashboard-accordion' ).find( '.pvc-accordion-item' );
			var menuItems = {};

			if ( items.length > 0 ) {
				$( items ).each( function ( index, item ) {
					var itemName = $( item ).attr( 'id' );

					itemName = itemName.replace( 'pvc-', '' );

					menuItems[itemName] = $( item ).hasClass( 'pvc-collapsed' );
				} );
			}

			// update user options
			pvcUpdateUserOptions( {menu_items: menuItems} );
		} );
	} );

	// jQuery on an empty object, we are going to use this as our Queue
	var pvcAjaxQueue = $( {} );

	/**
	 * Put AJAX requests in a queue, run one request at a time and prevent overwriting user options.
	 * 
	 * @param {type} ajaxOpts
	 */
	$.pvcAjaxQueue = function ( ajaxOpts ) {
		var jqXHR,
			dfd = $.Deferred(),
			promise = dfd.promise();

		// run the actual query
		function doRequest( next ) {
			jqXHR = $.ajax( ajaxOpts );
			jqXHR.done( dfd.resolve )
				.fail( dfd.reject )
				.then( next, next );
		}

		// queue our ajax request
		pvcAjaxQueue.queue( doRequest );

		// add the abort method
		promise.abort = function ( statusText ) {

			// proxy abort to the jqXHR if it is active
			if ( jqXHR ) {
				return jqXHR.abort( statusText );
			}

			// if there wasn't already a jqXHR we need to remove from queue
			var queue = pvcAjaxQueue.queue(),
				index = $.inArray( doRequest, queue );

			if ( index > - 1 ) {
				queue.splice( index, 1 );
			}

			// and then reject the deferred
			dfd.rejectWith( ajaxOpts.context || ajaxOpts, [promise, statusText, ""] );
			return promise;
		};

		return promise;
	};

	/**
	 * Update user options.
	 */
	pvcUpdateUserOptions = function ( options ) {
		$.pvcAjaxQueue( {
			url: pvcArgs.ajaxURL,
			type: 'POST',
			dataType: 'json',
			data: {
				action: 'pvc_dashboard_user_options',
				nonce: pvcArgs.nonceUser,
				options: options
			},
			success: function () {}
		} );
	}

	/**
	 * Update configuration.
	 */
	pvcUpdateConfig = function ( config, args ) {
		// update datasets
		config.data = args.data;

		// update tooltips with new dates
		config.options.plugins.tooltip = {
			callbacks: {
				title: function ( tooltip ) {
					return args.data.dates[tooltip[0].dataIndex];
				}
			}
		};

		// update colors
		$.each( config.data.datasets, function ( i, dataset ) {
			dataset.fill = args.design.fill;
			dataset.tension = 0.4;
			dataset.borderColor = args.design.borderColor;
			dataset.backgroundColor = args.design.backgroundColor;
			dataset.borderWidth = args.design.borderWidth;
			dataset.borderDash = args.design.borderDash;
			dataset.pointBorderColor = args.design.pointBorderColor;
			dataset.pointBackgroundColor = args.design.pointBackgroundColor;
			dataset.pointBorderWidth = args.design.pointBorderWidth;
		} );

		return config;
	}

	/**
	 * Get post most viewed data.
	 */
	function pvcGetPostMostViewedData( init, period, container ) {
		$( container ).addClass( 'loading' ).find( '.spinner' ).addClass( 'is-active' );

		$.ajax( {
			url: pvcArgs.ajaxURL,
			type: 'POST',
			dataType: 'json',
			data: {
				action: 'pvc_dashboard_post_most_viewed',
				nonce: pvcArgs.nonce,
				period: period
			},
			success: function ( response ) {
				// remove loader
				$( container ).removeClass( 'loading' );
				$( container ).find( '.spinner' ).removeClass( 'is-active' );

				// next call?
				if ( ! init )
					pvcBindDateEvents( response.dates, container );

				$( container ).find( '#pvc-post-most-viewed-content' ).html( response.html );

				// trigger js event
				pvcTriggerEvent( 'pvc-dashboard-widget-loaded', response );
			}
		} );
	}

	/**
	 * Get post views data.
	 */
	function pvcGetPostViewsData( init, period, container ) {
		$( container ).addClass( 'loading' ).find( '.spinner' ).addClass( 'is-active' );

		$.ajax( {
			url: pvcArgs.ajaxURL,
			type: 'POST',
			dataType: 'json',
			data: {
				action: 'pvc_dashboard_post_views_chart',
				nonce: pvcArgs.nonce,
				period: period
			},
			success: function ( response ) {
				// remove loader
				$( container ).removeClass( 'loading' );
				$( container ).find( '.spinner' ).removeClass( 'is-active' );

				// first call?
				if ( init ) {
					var config = {
						type: 'line',
						options: {
							maintainAspectRatio: false,
							responsive: true,
							plugins: {
								legend: {
									display: true,
									position: 'bottom',
									align: 'center',
									fullSize: true,
									onHover: function ( e ) {
										e.native.target.style.cursor = 'pointer';
									},
									onLeave: function ( e ) {
										e.native.target.style.cursor = 'default';
									},
									onClick: function ( e, element, legend ) {
										var index = element.datasetIndex;
										var ci = legend.chart;
										var meta = ci.getDatasetMeta( index );

										// set new hidden value
										if ( ci.isDatasetVisible( index ) )
											meta.hidden = true;
										else
											meta.hidden = false;

										// rerender the chart
										ci.update();

										// update user options
										pvcUpdateUserOptions( {
											post_type: ci.data.datasets[index].post_type,
											hidden: meta.hidden
										} );
									},
									labels: {
										boxWidth: 8,
										boxHeight: 8,
										font: {
											size: 13,
											weight: 'normal',
											family: "'-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', 'sans-serif'"
										},
										padding: 10,
										usePointStyle: false,
										textAlign: 'center'
									}
								}
							},
							scales: {
								x: {
									display: true,
									title: {
										display: false
									}
								},
								y: {
									display: true,
									grace: 0,
									beginAtZero: true,
									title: {
										display: false
									},
									ticks: {
										precision: 0,
										maxTicksLimit: 12
									}
								}
							},
							hover: {
								mode: 'label'
							}
						}
					};

					config = pvcUpdateConfig( config, response );

					window.postViewsChart = new Chart( document.getElementById( 'pvc-post-views-chart' ).getContext( '2d' ), config );
				} else {
					pvcBindDateEvents( response.dates, container );

					window.postViewsChart.config = pvcUpdateConfig( window.postViewsChart.config, response );
					window.postViewsChart.update();
				}

				// trigger js event
				pvcTriggerEvent( 'pvc-dashboard-widget-loaded', response );
			}
		} );
	}

	/**
	 * Update post views widget.
	 */
	function pvcUpdatePostViewsWidget( period = '' ) {
		var container = $( '#pvc-post-views' ).find( '.pvc-dashboard-container' );

		if ( $( container ).length > 0 ) {
			pvcBindDateEvents( false, container );

			pvcGetPostViewsData( true, period, container );
	}
	}

	/**
	 * Update post most viewed widget.
	 */
	function pvcUpdatePostMostViewedWidget( period = '' ) {
		var container = $( '#pvc-post-most-viewed' ).find( '.pvc-dashboard-container' );

		if ( $( container ).length > 0 ) {
			pvcBindDateEvents( false, container );

			pvcGetPostMostViewedData( true, period, container );
	}
	}

	/**
	 * Bind date events.
	 */
	function pvcBindDateEvents( newDates, container ) {
		var dates = $( container ).find( '.pvc-date-nav' );

		// replace dates?
		if ( newDates !== false )
			dates[0].innerHTML = newDates;

		var prev = dates[0].getElementsByClassName( 'prev' )[0];
		var next = dates[0].getElementsByClassName( 'next' )[0];
		var id = $( container ).closest( '.pvc-accordion-item' ).attr( 'id' );

		if ( id === 'pvc-post-most-viewed' )
			prev.addEventListener( 'click', function ( e ) {
				e.preventDefault();

				pvcLoadPostMostViewedData( e.target.dataset.date );
			} );
		else if ( id === 'pvc-post-views' )
			prev.addEventListener( 'click', function ( e ) {
				e.preventDefault();

				pvcLoadPostViewsData( e.target.dataset.date );
			} );

		// skip span
		if ( next.tagName === 'A' ) {
			if ( id === 'pvc-post-most-viewed' )
				next.addEventListener( 'click', function ( e ) {
					e.preventDefault();

					pvcLoadPostMostViewedData( e.target.dataset.date );
				} );
			else if ( id === 'pvc-post-views' )
				next.addEventListener( 'click', function ( e ) {
					e.preventDefault();

					pvcLoadPostViewsData( e.target.dataset.date );
				} );
		}
	}

	/**
	 * Load post views data.
	 */
	function pvcLoadPostViewsData( period = '' ) {
		var container = $( '#pvc-post-views' ).find( '.pvc-dashboard-container' );

		pvcGetPostViewsData( false, period, container );
	}

	/**
	 * Load post most viewed data.
	 */
	function pvcLoadPostMostViewedData( period = '' ) {
		var container = $( '#pvc-post-most-viewed' ).find( '.pvc-dashboard-container' );

		pvcGetPostMostViewedData( false, period, container );
	}

	/**
	 * Trigger load widget JS event.
	 */
	function pvcTriggerEvent( name, response ) {
		// remove unneeded data
		const remove = ['dates', 'html', 'design']

		remove.forEach( function ( prop ) {
			delete response[prop];
		} );

		// trigger event
		const event = new CustomEvent( name, {
			detail: response
		} );

		window.dispatchEvent( event );
	}

} )( jQuery );