HEX
Server: LiteSpeed
System: Linux linux31.centraldnserver.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: salamatk (1501)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/salamatk/www/wp-content/themes/woodmart/inc/admin/assets/js/adminFilters.js
(function($) {
	const woodmartAdminFilters = function() {
		var init = function() {
			productFilterControl();
			userFilterControl();
		}

		var productFilterControl = function () {
			if ( typeof ($.fn.select2) === 'undefined' ) {
				return;
			}

			var $select = $('.wc-product-search');

			if ($select.length > 0) {
				$select.each(function() {
					var $field = $(this);

					if ($field.hasClass('xts-field-inited')) {
						return;
					}

					$field.select2({
						theme: 'xts',
						placeholder: 'Select a product',
						allowClear: true,
						ajax: {
							url: ajaxurl,
							data: function (params) {
								return {
									term : params.term,
									action : 'woocommerce_json_search_products_and_variations',
									security: $(this).attr('data-security'),
								};
							},
							processResults: function( data ) {
								var terms = [];
								if ( data ) {
									$.each( data, function( id, text ) {
										terms.push( { id: id, text: text } );
									});
								}
								return {
									results: terms
								};
							},
							cache: true
						},
						minimumInputLength: 3,
					});

					$field.addClass('xts-field-inited');
				});
			}
		}

		var userFilterControl = function () {
			if ( typeof ($.fn.select2) === 'undefined' ) {
				return;
			}

			var $select = $('.xts-users-search');

			if ($select.length > 0) {
				$select.each(function() {
					var $field = $(this);

					if ($field.hasClass('xts-field-inited')) {
						return;
					}

					$field.select2({
						theme: 'xts',
						placeholder: 'Select a user',
						allowClear: true,
						ajax: {
							url: ajaxurl,
							data: function (params) {
								return {
									term : params.term,
									action : 'woodmart_json_search_users',
									security : $(this).attr('data-security'),
								};
							},
							processResults: function(data) {
								var terms = [];

								if (data) {
									$.each( data, function( id, text ) {
										terms.push( { id: id, text: text } );
									});
								}

								return {
									results: terms
								};
							},
							cache: true
						},
						minimumInputLength: 3,
					});

					$field.addClass('xts-field-inited');
				});
			}
		}

		init();
	}

	$(document).ready(function() {
		woodmartAdminFilters();
	});
})(jQuery);