File "yith-enhanced-select.js"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/yith-woocommerce-compare/plugin-fw/assets/js/yith-enhanced-select.js
File size: 8.7 KB
MIME-type: text/plain
Charset: utf-8

/* global yith_framework_enhanced_select_params, ajaxurl */

jQuery( function ( $ ) {
	"use strict";

	var getEnhancedSelectLanguage = function () {
		return {
			inputTooShort: function ( args ) {
				var remainingChars = args.minimum - args.input.length;

				if ( 1 === remainingChars ) {
					return yith_framework_enhanced_select_params.i18n.input_too_short_1;
				}

				return yith_framework_enhanced_select_params.i18n.input_too_short_n.replace( '%s', remainingChars );
			},
			errorLoading : function () {
				return yith_framework_enhanced_select_params.i18n.searching;
			},
			loadingMore  : function () {
				return yith_framework_enhanced_select_params.i18n.load_more;
			},
			noResults    : function () {
				return yith_framework_enhanced_select_params.i18n.no_matches;
			},
			searching    : function () {
				return yith_framework_enhanced_select_params.i18n.searching;
			}
		};
	};

	var cleanRequestData = function ( data ) {
		data = $.extend( {}, data );
		$.each(
			[ 'placeholder', 'allow_clear', 'minimum_input_length', 'sortable' ],
			function ( _, key ) {
				delete data[ key ];
			}
		);

		return data;
	}

	$( document.body )
		.on( 'yith-framework-enhanced-select-init', function () {

			$( '.yith-enhanced-select' ).filter( ':not(.enhanced)' ).each( function () {
				var select2_args = {
					minimumResultsForSearch: 10,
					allowClear             : $( this ).data( 'allow_clear' ) ? true : false,
					placeholder            : $( this ).data( 'placeholder' ),
					minimumInputLength     : $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : false,
					closeOnSelect          : $( this ).data( 'close_on_select' ) !== 'no',
					language               : getEnhancedSelectLanguage(),
					escapeMarkup      : function ( m ) {
						return m;
					},
				};

				$( this ).select2( select2_args ).addClass( 'enhanced' );
			} );

			// Post Search
			$( '.yith-post-search' ).filter( ':not(.enhanced)' ).each( function () {
				var default_data = {
						action   : 'yith_plugin_fw_json_search_posts',
						security : yith_framework_enhanced_select_params.search_posts_nonce,
						post_type: 'post'
					},
					current_data = $.extend( default_data, $( this ).data() ),
					select2_args = {
						allowClear        : $( this ).data( 'allow_clear' ) ? true : false,
						placeholder       : $( this ).data( 'placeholder' ),
						minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
						closeOnSelect     : $( this ).data( 'close_on_select' ) !== 'no',
						language          : getEnhancedSelectLanguage(),
						escapeMarkup      : function ( m ) {
							return m;
						},
						ajax              : {
							url           : ajaxurl,
							dataType      : 'json',
							quietMillis   : 250,
							data          : function ( params ) {
								return cleanRequestData( $.extend( { term: params.term }, current_data ) )
							},
							processResults: function ( data ) {
								var terms = [];
								if ( data ) {
									$.each( data, function ( id, text ) {
										terms.push( { id: id, text: text } );
									} );
								}
								return {
									results: terms
								};
							},
							cache         : true
						}
					};

				$( this ).select2( select2_args ).addClass( 'enhanced' );

				if ( $( this ).data( 'sortable' ) ) {
					var $select = $( this );
					var $list   = $( this ).next( '.select2-container' ).find( 'ul.select2-selection__rendered' );

					$list.sortable( {
										placeholder         : 'ui-state-highlight select2-selection__choice',
										forcePlaceholderSize: true,
										items               : 'li:not(.select2-search__field)',
										tolerance           : 'pointer',
										stop                : function () {
											$( $list.find( '.select2-selection__choice' ).get().reverse() ).each( function () {
												var id     = $( this ).data( 'data' ).id;
												var option = $select.find( 'option[value="' + id + '"]' )[ 0 ];
												$select.prepend( option );
											} );
										}
									} );
				}
			} );

			// Customer Search
			$( '.yith-customer-search' ).filter( ':not(.enhanced)' ).each( function () {
				var default_data = {
						action  : 'woocommerce_json_search_customers',
						security: yith_framework_enhanced_select_params.search_customers_nonce
					},
					current_data = $.extend( default_data, $( this ).data() ),
					select2_args = {
						allowClear        : $( this ).data( 'allow_clear' ) ? true : false,
						placeholder       : $( this ).data( 'placeholder' ),
						minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
						closeOnSelect     : $( this ).data( 'close_on_select' ) !== 'no',
						language          : getEnhancedSelectLanguage(),
						escapeMarkup      : function ( m ) {
							return m;
						},
						ajax              : {
							url           : ajaxurl,
							dataType      : 'json',
							quietMillis   : 250,
							data          : function ( params ) {
								return cleanRequestData( $.extend( { term: params.term }, current_data ) )
							},
							processResults: function ( data ) {
								var terms = [];
								if ( data ) {
									$.each( data, function ( id, text ) {
										terms.push( { id: id, text: text } );
									} );
								}
								return {
									results: terms
								};
							},
							cache         : true
						}
					};

				$( this ).select2( select2_args ).addClass( 'enhanced' );

				if ( $( this ).data( 'sortable' ) ) {
					var $select = $( this );
					var $list   = $( this ).next( '.select2-container' ).find( 'ul.select2-selection__rendered' );

					$list.sortable( {
										placeholder         : 'ui-state-highlight select2-selection__choice',
										forcePlaceholderSize: true,
										items               : 'li:not(.select2-search__field)',
										tolerance           : 'pointer',
										stop                : function () {
											$( $list.find( '.select2-selection__choice' ).get().reverse() ).each( function () {
												var id     = $( this ).data( 'data' ).id;
												var option = $select.find( 'option[value="' + id + '"]' )[ 0 ];
												$select.prepend( option );
											} );
										}
									} );
				}
			} );

			// TERM SEARCH
			$( '.yith-term-search' ).filter( ':not(.enhanced)' ).each( function () {
				var default_data = {
						action  : 'yith_plugin_fw_json_search_terms',
						security: yith_framework_enhanced_select_params.search_terms_nonce,
						taxonomy: 'category'
					},
					current_data = $.extend( default_data, $( this ).data() ),
					select2_args = {
						allowClear        : $( this ).data( 'allow_clear' ) ? true : false,
						placeholder       : $( this ).data( 'placeholder' ),
						minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
						closeOnSelect     : $( this ).data( 'close_on_select' ) !== 'no',
						language          : getEnhancedSelectLanguage(),
						escapeMarkup      : function ( m ) {
							return m;
						},
						ajax              : {
							url           : ajaxurl,
							dataType      : 'json',
							quietMillis   : 250,
							data          : function ( params ) {
								return cleanRequestData( $.extend( { term: params.term }, current_data ) )
							},
							processResults: function ( data ) {
								var terms = [];
								if ( data ) {
									$.each( data, function ( id, text ) {
										terms.push( { id: id, text: text } );
									} );
								}
								return {
									results: terms
								};
							},
							cache         : true
						}
					};

				$( this ).select2( select2_args ).addClass( 'enhanced' );

				if ( $( this ).data( 'sortable' ) ) {
					var $select = $( this );
					var $list   = $( this ).next( '.select2-container' ).find( 'ul.select2-selection__rendered' );

					$list.sortable( {
										placeholder         : 'ui-state-highlight select2-selection__choice',
										forcePlaceholderSize: true,
										items               : 'li:not(.select2-search__field)',
										tolerance           : 'pointer',
										stop                : function () {
											$( $list.find( '.select2-selection__choice' ).get().reverse() ).each( function () {
												var id     = $( this ).data( 'data' ).id;
												var option = $select.find( 'option[value="' + id + '"]' )[ 0 ];
												$select.prepend( option );
											} );
										}
									} );
				}
			} );

		} ).trigger( 'yith-framework-enhanced-select-init' );

} );