2015-01-12 11:56:44 +00:00
|
|
|
jQuery( function( $ ) {
|
|
|
|
|
2015-01-12 13:04:19 +00:00
|
|
|
/*
|
|
|
|
// Frontend Chosen selects
|
|
|
|
$( 'select.country_select, select.state_select' ).chosen( { search_contains: true } );
|
|
|
|
|
|
|
|
$( 'body' ).bind( 'country_to_state_changed', function() {
|
|
|
|
$( 'select.state_select' ).chosen().trigger( 'chosen:updated' );
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
|
2015-01-12 11:56:44 +00:00
|
|
|
$('body')
|
|
|
|
|
|
|
|
.on( 'wc-enhanced-select-init', function() {
|
|
|
|
|
|
|
|
// Regular select boxes
|
|
|
|
$(".wc-enhanced-select, select.chosen_select").each(function() {
|
|
|
|
$( this ).select2({
|
2015-01-12 13:04:19 +00:00
|
|
|
minimumResultsForSearch: 10,
|
2015-01-12 11:56:44 +00:00
|
|
|
allowClear: $( this ).data( 'allow_clear' ) ? true : false,
|
|
|
|
placeholder: $( this ).data( 'placeholder' )
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
// Ajax product search box
|
|
|
|
$(".wc-product-search").each(function() {
|
|
|
|
$( this ).select2({
|
2015-01-12 13:04:19 +00:00
|
|
|
multiple: $( this ).data( 'multiple' ) == 'true',
|
|
|
|
allowClear: $( this ).data( 'allow_clear' ) ? true : false,
|
2015-01-12 11:56:44 +00:00
|
|
|
placeholder: $( this ).data( 'placeholder' ),
|
2015-01-12 13:04:19 +00:00
|
|
|
minimumInputLength: $( this ).data( 'minimum_input_length' ) ? $( this ).data( 'minimum_input_length' ) : '3',
|
2015-01-12 11:56:44 +00:00
|
|
|
ajax: {
|
|
|
|
url: wc_enhanced_select_params.ajax_url,
|
|
|
|
dataType: 'json',
|
|
|
|
quietMillis: 250,
|
|
|
|
data: function( term, page ) {
|
|
|
|
return {
|
|
|
|
term: term,
|
|
|
|
action: $(this).data( 'action' ) || 'woocommerce_json_search_products_and_variations',
|
|
|
|
security: wc_enhanced_select_params.search_products_nonce
|
|
|
|
};
|
|
|
|
},
|
|
|
|
results: function( data, page ) {
|
|
|
|
var terms = [];
|
|
|
|
if ( data ) {
|
|
|
|
$.each( data, function( id, text ) {
|
|
|
|
terms.push( { id: id, text: text } );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return { results: terms };
|
|
|
|
},
|
|
|
|
cache: true
|
|
|
|
},
|
|
|
|
initSelection: function( element, callback ) {
|
|
|
|
var data = $.parseJSON( element.attr( 'data-selected' ) );
|
|
|
|
var selected = [];
|
|
|
|
|
|
|
|
$( element.val().split( "," ) ).each( function( i, val ) {
|
|
|
|
selected.push( { id: val, text: data[ val ] } );
|
|
|
|
});
|
|
|
|
return callback( selected );
|
|
|
|
},
|
|
|
|
formatSelection: function( data ) {
|
|
|
|
return '<div class="selected-option" data-id="' + data.id + '">' + data.text + '</div>';
|
|
|
|
},
|
|
|
|
escapeMarkup: function(m) { return m; }
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-01-12 13:04:19 +00:00
|
|
|
// Ajax customer search boxes
|
|
|
|
$(".wc-customer-search").each(function() {
|
|
|
|
var 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',
|
|
|
|
escapeMarkup: function(m) { return m; },
|
|
|
|
ajax: {
|
|
|
|
url: wc_enhanced_select_params.ajax_url,
|
|
|
|
dataType: 'json',
|
|
|
|
quietMillis: 250,
|
|
|
|
data: function( term, page ) {
|
|
|
|
return {
|
|
|
|
term: term,
|
|
|
|
action: 'woocommerce_json_search_customers',
|
|
|
|
security: wc_enhanced_select_params.search_customers_nonce
|
|
|
|
};
|
|
|
|
},
|
|
|
|
results: function( data, page ) {
|
|
|
|
var terms = [];
|
|
|
|
if ( data ) {
|
|
|
|
$.each( data, function( id, text ) {
|
|
|
|
terms.push( { id: id, text: text } );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return { results: terms };
|
|
|
|
},
|
|
|
|
cache: true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if ( $( this ).data( 'multiple' ) == 'true' ) {
|
|
|
|
select2_args.multiple = true;
|
|
|
|
select2_args.initSelection = function( element, callback ) {
|
|
|
|
var data = $.parseJSON( element.attr( 'data-selected' ) );
|
|
|
|
var selected = [];
|
|
|
|
|
|
|
|
$( element.val().split( "," ) ).each( function( i, val ) {
|
|
|
|
selected.push( { id: val, text: data[ val ] } );
|
|
|
|
});
|
|
|
|
return callback( selected );
|
|
|
|
};
|
|
|
|
select2_args.formatSelection = function( data ) {
|
|
|
|
return '<div class="selected-option" data-id="' + data.id + '">' + data.text + '</div>';
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
select2_args.multiple = false;
|
|
|
|
select2_args.initSelection = function( element, callback ) {
|
|
|
|
var data = {id: element.val(), text: element.attr( 'data-selected' )};
|
|
|
|
return callback( data );
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
$( this ).select2( select2_args );
|
|
|
|
});
|
|
|
|
|
2015-01-12 11:56:44 +00:00
|
|
|
} )
|
|
|
|
|
|
|
|
.trigger( 'wc-enhanced-select-init' );
|
|
|
|
|
|
|
|
});
|