GRAYBYTE WORDPRESS FILE MANAGER3081

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/swamivivekananda.co.in/wp-content/plugins/imagify/assets/js/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/swamivivekananda.co.in/wp-content/plugins/imagify/assets/js//media-modal.js
/**
 * Mini chart.
 *
 * @param {element} canvas The canvas element.
 */
window.imagify.drawMeAChart = function( canvas ) {
	canvas.each( function() {
		var value = parseInt( jQuery( this ).closest( '.imagify-chart' ).next( '.imagify-chart-value' ).text(), 10 );

		new window.imagify.Chart( this, { // eslint-disable-line no-new
			type: 'doughnut',
			data: {
				datasets: [ {
					data:            [ value, 100 - value ],
					backgroundColor: [ '#00B3D3', '#D8D8D8' ],
					borderColor:     '#fff',
					borderWidth:     1
				} ]
			},
			options: {
				legend: {
					display: false
				},
				events:    [],
				animation: {
					easing: 'easeOutBounce'
				},
				tooltips: {
					enabled: false
				},
				responsive: false
			}
		} );
	} );
};

(function($, d, w, undefined) { // eslint-disable-line no-unused-vars, no-shadow, no-shadow-restricted-names

	w.imagify.modal = {

		working: [],

		/*
		 * Init.
		 */
		init: function () {
			var $document = $( d ),
				$processing;

			// Update the chart in the media modal when a media is selected, and the ones already printed.
			$( w ).on( 'canvasprinted.imagify', this.updateChart ).trigger( 'canvasprinted.imagify' );

			// Toggle slide in custom column.
			$( '.imagify-datas-details' ).hide();

			$document.on( 'click', '.imagify-datas-more-action a', this.toggleSlide );

			// Optimize, restore, etc.
			$document.on( 'click', '.button-imagify-restore, .button-imagify-optimize, .button-imagify-manual-reoptimize, .button-imagify-optimize-missing-sizes, .button-imagify-generate-webp, .button-imagify-delete-webp', this.processOptimization );

			$document.on( 'imagifybeat-send', this.addToImagifybeat );
			$document.on( 'imagifybeat-tick', this.processImagifybeat );

			// Some items may be processed in background on page load.
			$processing = $( '.imagify-data-actions-container .button-imagify-processing' );

			if ( $processing.length ) {
				// Some media are already being processed.
				// Lock the items, so we can check their status with Imagifybeat.
				$processing.closest( '.imagify-data-actions-container' ).each( function() {
					var $this   = $( this ),
						id      = w.imagify.modal.sanitizeId( $this.data( 'id' ) ),
						context = w.imagify.modal.sanitizeContext( $this.data( 'context' ) );

					w.imagify.modal.lockItem( context, id );
				} );

				// Fasten Imagifybeat.
				w.imagify.beat.interval( 15 );
			}
		},

		// Charts ==================================================================================

		/**
		 * Update the chart in the media modal when a media is selected, and the ones already printed.
		 *
		 * @param {object} e        Event.
		 * @param {string} selector A CSS selector.
		 */
		updateChart: function( e, selector ) {
			var $canvas;

			selector = selector || '.imagify-consumption-chart';
			$canvas  = $( selector );

			w.imagify.drawMeAChart( $canvas );

			$canvas.closest( '.imagify-datas-list' ).siblings( '.imagify-datas-details' ).hide();
		},

		// Optimization ============================================================================

		/**
		 * Process to one of these actions: restore, optimize, re-optimize, or optimize missing sizes.
		 *
		 * @param {object} e Event.
		 */
		processOptimization: function( e ) {
			var $obj            = $( this ),
				$container      = $obj.parents( '.imagify-data-actions-container' ),
				id              = w.imagify.modal.sanitizeId( $container.data( 'id' ) ),
				context         = w.imagify.modal.sanitizeContext( $container.data( 'context' ) ),
				href, processingTemplate;

			e.preventDefault();

			if ( w.imagify.modal.isItemLocked( context, id ) ) {
				return;
			}

			w.imagify.modal.lockItem( context, id );

			href               = $obj.attr( 'href' );
			processingTemplate = w.imagify.template( 'imagify-button-processing' );

			$container.html( processingTemplate( {
				label: $obj.data( 'processing-label' )
			} ) );

			$.get( href.replace( 'admin-post.php', 'admin-ajax.php' ) )
				.done( function( response ) {
					if ( response.data && response.data.html ) {
						// The work is done.
						w.imagify.modal.displayProcessResult( context, id, response.data.html );
					} else {
						// Still processing in background: we're waiting for the result by poking Imagifybeat.
						// Set the Imagifybeat interval to 15 seconds.
						w.imagify.beat.interval( 15 );
					}
				} );
		},

		// Imagifybeat =============================================================================

		/**
		 * Send the media IDs and their status to Imagifybeat.
		 *
		 * @param {object} e    Event object.
		 * @param {object} data Object containing all Imagifybeat IDs.
		 */
		addToImagifybeat: function ( e, data ) {
			var $containers = $( '.imagify-data-actions-container' );

			if ( ! $containers.length ) {
				return;
			}

			data[ w.imagifyModal.imagifybeatID ] = {};

			$containers.each( function() {
				var $this   = $( this ),
					id      = w.imagify.modal.sanitizeId( $this.data( 'id' ) ),
					context = w.imagify.modal.sanitizeContext( $this.data( 'context' ) ),
					locked  = w.imagify.modal.isItemLocked( context, id ) ? 1 : 0;

				data[ w.imagifyModal.imagifybeatID ][ context ] = data[ w.imagifyModal.imagifybeatID ][ context ] || {};
				data[ w.imagifyModal.imagifybeatID ][ context ][ '_' + id ] = locked;
			} );
		},

		/**
		 * Listen for the custom event "imagifybeat-tick" on $(document).
		 *
		 * @param {object} e    Event object.
		 * @param {object} data Object containing all Imagifybeat IDs.
		 */
		processImagifybeat: function ( e, data ) {
			if ( typeof data[ w.imagifyModal.imagifybeatID ] === 'undefined' ) {
				return;
			}

			$.each( data[ w.imagifyModal.imagifybeatID ], function( contextId, htmlContent ) {
				var context, id;

				context = $.trim( contextId ).match( /^(.+)_(\d+)$/ );

				if ( ! context ) {
					return;
				}

				id      = w.imagify.modal.sanitizeId( context[2] );
				context = w.imagify.modal.sanitizeContext( context[1] );

				w.imagify.modal.displayProcessResult( context, id, htmlContent );
			} );
		},

		// DOM manipulation tools ==================================================================

		/**
		 * Display the process result.
		 *
		 * @param {string} context     The media context.
		 * @param {int}    id          The media ID.
		 * @param {string} htmlContent The HTML to insert.
		 */
		displayProcessResult: function( context, id, htmlContent ) {
			var $containers = w.imagify.modal.getContainers( context, id );

			$containers.html( htmlContent );
			w.imagify.modal.unlockItem( context, id );

			if ( ! w.imagify.modal.working.length ) {
				// Work is done.
				// Open the last container being processed.
				w.imagify.modal.openSlide( $containers );
				// Reset Imagifybeat interval.
				w.imagify.beat.resetInterval();
			}
		},

		/**
		 * Open a slide rapidly.
		 *
		 * @param {object} $containers A jQuery collection.
		 */
		openSlide: function( $containers ) {
			$containers.each( function() {
				var $container = $( this ),
					text       = $container.find( '.imagify-datas-more-action a' ).data( 'close' );

				$container.find( '.imagify-datas-more-action a' ).addClass( 'is-open' ).find( '.the-text' ).text( text );
				$container.find( '.imagify-datas-details' ).show().addClass( 'is-open' );
			} );
		},

		/**
		 * Toggle slide in custom column.
		 *
		 * @param {object} e Event.
		 */
		toggleSlide: function( e ) {
			var $this = $( this );

			e.preventDefault();

			if ( $this.hasClass( 'is-open' ) ) {
				$( $this.attr( 'href' ) ).slideUp( 300 ).removeClass( 'is-open' );
				$this.removeClass( 'is-open' ).find( '.the-text' ).text( $this.data( 'open' ) );
			} else {
				$( $this.attr( 'href' ) ).slideDown( 300 ).addClass( 'is-open' );
				$this.addClass( 'is-open' ).find( '.the-text' ).text( $this.data( 'close' ) );
			}
		},

		/**
		 * Get all containers matching the given context and id.
		 *
		 * @param  {string} context The media context.
		 * @param  {int}    id      The media ID.
		 * @return {object}         A jQuery collection.
		 */
		getContainers: function( context, id ) {
			return $( '.imagify-data-actions-container[data-id="' + id + '"][data-context="' + context + '"]' );
		},

		// Sanitization ============================================================================

		/**
		 * Sanitize a media ID.
		 *
		 * @param  {int|string} id A media ID.
		 * @return {int}
		 */
		sanitizeId: function( id ) {
			return parseInt( id, 10 );
		},

		/**
		 * Sanitize a media context.
		 *
		 * @param  {string} context A media context.
		 * @return {string}
		 */
		sanitizeContext: function( context ) {
			context = context.replace( '/[^a-z0-9_-]/gi', '' ).toLowerCase();
			return context ? context : 'wp';
		},

		// Locks ===================================================================================

		/**
		 * Lock an item.
		 *
		 * @param {string} context The media context.
		 * @param {int}    id      The media ID.
		 */
		lockItem: function( context, id ) {
			if ( ! this.isItemLocked( context, id ) ) {
				this.working.push( context + '_' + id );
			}
		},

		/**
		 * Unlock an item.
		 *
		 * @param {string} context The media context.
		 * @param {int}    id      The media ID.
		 */
		unlockItem: function( context, id ) {
			var name = context + '_' + id,
				i    = _.indexOf( this.working, name );

			if ( i > -1 ) {
				this.working.splice( i, 1 );
			}
		},

		/**
		 * Tell if an item is locked.
		 *
		 * @param  {string} context The media context.
		 * @param  {int}    id      The media ID.
		 * @return {bool}
		 */
		isItemLocked: function( context, id ) {
			return _.indexOf( this.working, context + '_' + id ) > -1;
		}
	};

	w.imagify.modal.init();

} )(jQuery, document, window);

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 10 2025 04:32:30
giriqfky / giriqfky
0755
.htaccess
0.41 KB
July 10 2025 04:32:30
giriqfky / giriqfky
0644
admin-bar.js
1.292 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
admin-bar.min.js
0.604 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
admin.js
3.188 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
admin.min.js
1.828 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
beat.js
22.633 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
beat.min.js
5.88 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
es6-promise.auto.js
27.814 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
es6-promise.auto.min.js
6.204 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
files-list.js
13.099 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
files-list.min.js
5.624 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
imagify-gulp.js
10.08 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
imagify-gulp.min.js
9.947 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
jquery.event.move.js
13.598 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
jquery.event.move.min.js
4.928 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
jquery.twentytwenty.js
26.297 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
jquery.twentytwenty.min.js
14.572 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
library.js
1.761 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
library.min.js
1.104 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
media-modal.js
9.56 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
media-modal.min.js
3.967 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
notices.js
4.037 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
notices.min.js
2.175 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
options.js
28.806 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
options.min.js
14.79 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
pricing-modal.js
19.334 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
pricing-modal.min.js
9.052 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
sweetalert2.js
49.155 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644
sweetalert2.min.js
22.107 KB
June 23 2025 07:12:37
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF