HOME


Mini Shell 1.0
DIR: /var/www/limehill_LIVE/wp-content/themes/oceanwp/inc/customizer/controls/sortable/
Upload File :
Current File : /var/www/limehill_LIVE/wp-content/themes/oceanwp/inc/customizer/controls/sortable/sortable.js
wp.customize.controlConstructor['oceanwp-sortable'] = wp.customize.Control.extend({

	ready: function() {

		'use strict';

		var control = this;

		// Set the sortable container.
		control.sortableContainer = control.container.find( 'ul.sortable' ).first();

		// Init sortable.
		control.sortableContainer.sortable({

			// Update value when we stop sorting.
			stop: function() {
				control.updateValue();
			}
		}).disableSelection().find( 'li' ).each( function() {

			// Enable/disable options when we click on the eye of Thundera.
			jQuery( this ).click( function() {
				var $i = jQuery( this ).find( 'i.visibility' );
				$i.toggleClass( 'dashicons-saved' );
				$i.toggleClass( 'dashicons-no-alt' );
				$i.toggleClass( 'dashicons-visibility-faint' ).parents( 'li:eq(0)' ).toggleClass( 'invisible' );
			});
		}).click( function() {

			// Update value on click.
			control.updateValue();
		});
	},

	/**
	 * Updates the sorting list
	 */
	updateValue: function() {

		'use strict';

		var control = this,
		    newValue = [];

		this.sortableContainer.find( 'li' ).each( function() {
			if ( ! jQuery( this ).is( '.invisible' ) ) {
				newValue.push( jQuery( this ).data( 'value' ) );
			}
		});

		control.setting.set( newValue );
	}
});