2014-03-19 03:51:37 +00:00
|
|
|
jQuery( function( $ ) {
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2013-12-04 19:15:24 +00:00
|
|
|
// wc_country_select_params is required to continue, ensure the object exists
|
2014-03-19 03:51:37 +00:00
|
|
|
if ( typeof wc_country_select_params === 'undefined' ) {
|
2013-12-04 19:15:24 +00:00
|
|
|
return false;
|
2014-03-19 03:51:37 +00:00
|
|
|
}
|
2013-12-04 19:15:24 +00:00
|
|
|
|
2015-01-12 16:16:10 +00:00
|
|
|
// Select2 Enhancement if it exists
|
|
|
|
if( $().select2 ) {
|
|
|
|
var wc_country_select_select2 = function() {
|
2015-01-19 13:07:04 +00:00
|
|
|
$( 'select.country_select:visible, select.state_select:visible' ).each(function(){
|
2015-01-12 16:16:10 +00:00
|
|
|
$(this).select2({
|
|
|
|
minimumResultsForSearch: 10,
|
|
|
|
placeholder: $( this ).attr( 'placeholder' ),
|
2015-01-19 15:09:38 +00:00
|
|
|
placeholderOption: 'first',
|
|
|
|
width: "element"
|
2015-01-12 16:16:10 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
2015-01-19 13:07:04 +00:00
|
|
|
|
2015-01-12 16:16:10 +00:00
|
|
|
wc_country_select_select2();
|
2015-01-19 13:07:04 +00:00
|
|
|
|
2015-01-12 16:16:10 +00:00
|
|
|
$( 'body' ).bind( 'country_to_state_changed', function() {
|
|
|
|
wc_country_select_select2();
|
|
|
|
});
|
|
|
|
}
|
2015-01-12 15:43:13 +00:00
|
|
|
|
2013-06-11 12:31:41 +00:00
|
|
|
/* State/Country select boxes */
|
2014-03-19 03:51:37 +00:00
|
|
|
var states_json = wc_country_select_params.countries.replace( /"/g, '"' ),
|
|
|
|
states = $.parseJSON( states_json );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
$( 'select.country_to_state, input.country_to_state' ).change( function() {
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
var country = $( this ).val(),
|
|
|
|
$statebox = $( this ).closest( 'div' ).find( '#billing_state, #shipping_state, #calc_shipping_state' ),
|
|
|
|
$parent = $statebox.parent(),
|
|
|
|
input_name = $statebox.attr( 'name' ),
|
|
|
|
input_id = $statebox.attr( 'id' ),
|
|
|
|
value = $statebox.val(),
|
|
|
|
placeholder = $statebox.attr( 'placeholder' );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
if ( states[ country ] ) {
|
2014-12-10 14:44:59 +00:00
|
|
|
if ( $.isEmptyObject( states[ country ] ) ) {
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2015-01-12 16:16:10 +00:00
|
|
|
$statebox.parent().hide().find( '.select2-container' ).remove();
|
2014-03-19 03:51:37 +00:00
|
|
|
$statebox.replaceWith( '<input type="hidden" class="hidden" name="' + input_name + '" id="' + input_id + '" value="" placeholder="' + placeholder + '" />' );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
$( 'body' ).trigger( 'country_to_state_changed', [country, $( this ).closest( 'div' )] );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
var options = '',
|
|
|
|
state = states[ country ];
|
|
|
|
|
|
|
|
for( var index in state ) {
|
|
|
|
if ( state.hasOwnProperty( index ) ) {
|
|
|
|
options = options + '<option value="' + index + '">' + state[ index ] + '</option>';
|
|
|
|
}
|
2013-06-11 12:31:41 +00:00
|
|
|
}
|
2014-03-19 03:51:37 +00:00
|
|
|
|
2013-06-11 12:31:41 +00:00
|
|
|
$statebox.parent().show();
|
2014-03-19 03:51:37 +00:00
|
|
|
|
|
|
|
if ( $statebox.is( 'input' ) ) {
|
2013-06-11 12:31:41 +00:00
|
|
|
// Change for select
|
2014-03-19 03:51:37 +00:00
|
|
|
$statebox.replaceWith( '<select name="' + input_name + '" id="' + input_id + '" class="state_select" placeholder="' + placeholder + '"></select>' );
|
|
|
|
$statebox = $( this ).closest( 'div' ).find( '#billing_state, #shipping_state, #calc_shipping_state' );
|
2013-06-11 12:31:41 +00:00
|
|
|
}
|
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
$statebox.html( '<option value="">' + wc_country_select_params.i18n_select_state_text + '</option>' + options );
|
|
|
|
|
|
|
|
$statebox.val( value );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
$( 'body' ).trigger( 'country_to_state_changed', [country, $( this ).closest( 'div' )] );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
2014-03-19 03:51:37 +00:00
|
|
|
if ( $statebox.is( 'select' ) ) {
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2015-01-12 16:16:10 +00:00
|
|
|
$parent.show().find( '.select2-container' ).remove();
|
2014-03-19 03:51:37 +00:00
|
|
|
$statebox.replaceWith( '<input type="text" class="input-text" name="' + input_name + '" id="' + input_id + '" placeholder="' + placeholder + '" />' );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
$( 'body' ).trigger( 'country_to_state_changed', [country, $( this ).closest( 'div' )] );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
} else if ( $statebox.is( '.hidden' ) ) {
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2015-01-12 16:16:10 +00:00
|
|
|
$parent.show().find( '.select2-container' ).remove();
|
2014-03-19 03:51:37 +00:00
|
|
|
$statebox.replaceWith( '<input type="text" class="input-text" name="' + input_name + '" id="' + input_id + '" placeholder="' + placeholder + '" />' );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
$( 'body' ).trigger( 'country_to_state_changed', [country, $( this ).closest( 'div' )] );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
$( 'body' ).trigger( 'country_to_state_changing', [country, $( this ).closest( 'div' )] );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2014-12-09 09:07:28 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$(function() {
|
2015-01-19 13:07:04 +00:00
|
|
|
$( ':input.country_to_state' ).change();
|
2014-12-09 09:07:28 +00:00
|
|
|
});
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2013-12-04 19:15:24 +00:00
|
|
|
});
|