2015-03-05 17:55:41 +00:00
|
|
|
/*global wc_country_select_params */
|
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
|
|
|
|
2019-03-06 15:33:20 +00:00
|
|
|
// Select2 Enhancement if it exists
|
|
|
|
if ( $().selectWoo ) {
|
|
|
|
var getEnhancedSelectFormatString = function() {
|
|
|
|
return {
|
|
|
|
'language': {
|
|
|
|
errorLoading: function() {
|
|
|
|
// Workaround for https://github.com/select2/select2/issues/4355 instead of i18n_ajax_error.
|
|
|
|
return wc_country_select_params.i18n_searching;
|
|
|
|
},
|
|
|
|
inputTooLong: function( args ) {
|
|
|
|
var overChars = args.input.length - args.maximum;
|
|
|
|
|
|
|
|
if ( 1 === overChars ) {
|
|
|
|
return wc_country_select_params.i18n_input_too_long_1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wc_country_select_params.i18n_input_too_long_n.replace( '%qty%', overChars );
|
|
|
|
},
|
|
|
|
inputTooShort: function( args ) {
|
|
|
|
var remainingChars = args.minimum - args.input.length;
|
|
|
|
|
|
|
|
if ( 1 === remainingChars ) {
|
|
|
|
return wc_country_select_params.i18n_input_too_short_1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wc_country_select_params.i18n_input_too_short_n.replace( '%qty%', remainingChars );
|
|
|
|
},
|
|
|
|
loadingMore: function() {
|
|
|
|
return wc_country_select_params.i18n_load_more;
|
|
|
|
},
|
|
|
|
maximumSelected: function( args ) {
|
|
|
|
if ( args.maximum === 1 ) {
|
|
|
|
return wc_country_select_params.i18n_selection_too_long_1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wc_country_select_params.i18n_selection_too_long_n.replace( '%qty%', args.maximum );
|
|
|
|
},
|
|
|
|
noResults: function() {
|
|
|
|
return wc_country_select_params.i18n_no_matches;
|
|
|
|
},
|
|
|
|
searching: function() {
|
|
|
|
return wc_country_select_params.i18n_searching;
|
2017-03-17 11:25:53 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-06 15:33:20 +00:00
|
|
|
};
|
2019-03-15 12:21:51 +00:00
|
|
|
};
|
2015-01-19 19:31:22 +00:00
|
|
|
|
2015-01-12 16:16:10 +00:00
|
|
|
var wc_country_select_select2 = function() {
|
2015-01-19 19:31:22 +00:00
|
|
|
$( 'select.country_select:visible, select.state_select:visible' ).each( function() {
|
|
|
|
var select2_args = $.extend({
|
2019-01-15 15:50:55 +00:00
|
|
|
placeholder: $( this ).attr( 'data-placeholder' ) || $( this ).attr( 'placeholder' ) || '',
|
2015-03-05 17:55:41 +00:00
|
|
|
width: '100%'
|
2015-01-19 19:31:22 +00:00
|
|
|
}, getEnhancedSelectFormatString() );
|
|
|
|
|
2019-03-06 15:33:20 +00:00
|
|
|
$( this )
|
|
|
|
.on( 'select2:select', function() {
|
2021-02-02 20:38:48 +00:00
|
|
|
$( this ).focus(); // Maintain focus after select https://github.com/select2/select2/issues/4384
|
2019-03-06 15:33:20 +00:00
|
|
|
} )
|
|
|
|
.selectWoo( select2_args );
|
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
|
|
|
|
2021-02-02 16:38:04 +00:00
|
|
|
$( document.body ).on( 'country_to_state_changed', function() {
|
2015-01-12 16:16:10 +00:00
|
|
|
wc_country_select_select2();
|
|
|
|
});
|
|
|
|
}
|
2015-01-12 15:43:13 +00:00
|
|
|
|
2013-06-11 12:31:41 +00:00
|
|
|
/* State/Country select boxes */
|
2019-03-06 15:33:20 +00:00
|
|
|
var states_json = wc_country_select_params.countries.replace( /"/g, '"' ),
|
2020-10-22 13:11:27 +00:00
|
|
|
states = JSON.parse( states_json ),
|
2019-03-06 15:11:39 +00:00
|
|
|
wrapper_selectors = '.woocommerce-billing-fields,' +
|
|
|
|
'.woocommerce-shipping-fields,' +
|
|
|
|
'.woocommerce-address-fields,' +
|
|
|
|
'.woocommerce-shipping-calculator';
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2019-03-06 15:11:39 +00:00
|
|
|
$( document.body ).on( 'change refresh', 'select.country_to_state, input.country_to_state', function() {
|
2016-02-08 14:47:42 +00:00
|
|
|
// Grab wrapping element to target only stateboxes in same 'group'
|
2019-03-06 15:11:39 +00:00
|
|
|
var $wrapper = $( this ).closest( wrapper_selectors );
|
2016-02-08 14:47:42 +00:00
|
|
|
|
2016-03-01 13:08:25 +00:00
|
|
|
if ( ! $wrapper.length ) {
|
2016-02-08 14:47:42 +00:00
|
|
|
$wrapper = $( this ).closest('.form-row').parent();
|
|
|
|
}
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2015-06-01 09:50:16 +00:00
|
|
|
var country = $( this ).val(),
|
2019-04-22 16:43:41 +00:00
|
|
|
$statebox = $wrapper.find( '#billing_state, #shipping_state, #calc_shipping_state' ),
|
2020-02-13 03:11:44 +00:00
|
|
|
$parent = $statebox.closest( '.form-row' ),
|
2019-04-22 16:43:41 +00:00
|
|
|
input_name = $statebox.attr( 'name' ),
|
|
|
|
input_id = $statebox.attr('id'),
|
|
|
|
input_classes = $statebox.attr('data-input-classes'),
|
|
|
|
value = $statebox.val(),
|
|
|
|
placeholder = $statebox.attr( 'placeholder' ) || $statebox.attr( 'data-placeholder' ) || '',
|
2019-03-20 20:08:52 +00:00
|
|
|
$newstate;
|
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 ] ) ) {
|
2019-03-20 20:08:52 +00:00
|
|
|
$newstate = $( '<input type="hidden" />' )
|
2019-03-14 13:52:36 +00:00
|
|
|
.prop( 'id', input_id )
|
|
|
|
.prop( 'name', input_name )
|
|
|
|
.prop( 'placeholder', placeholder )
|
2019-04-22 16:43:41 +00:00
|
|
|
.attr( 'data-input-classes', input_classes )
|
|
|
|
.addClass( 'hidden ' + input_classes );
|
2019-03-06 15:11:39 +00:00
|
|
|
$parent.hide().find( '.select2-container' ).remove();
|
2019-03-14 13:52:36 +00:00
|
|
|
$statebox.replaceWith( $newstate );
|
2015-06-01 09:50:16 +00:00
|
|
|
$( document.body ).trigger( 'country_to_state_changed', [ country, $wrapper ] );
|
2013-06-11 12:31:41 +00:00
|
|
|
} else {
|
2019-03-14 13:52:36 +00:00
|
|
|
var state = states[ country ],
|
|
|
|
$defaultOption = $( '<option value=""></option>' ).text( wc_country_select_params.i18n_select_state_text );
|
2014-03-19 03:51:37 +00:00
|
|
|
|
2019-02-18 11:49:46 +00:00
|
|
|
if ( ! placeholder ) {
|
|
|
|
placeholder = wc_country_select_params.i18n_select_state_text;
|
|
|
|
}
|
|
|
|
|
2019-03-06 15:11:39 +00:00
|
|
|
$parent.show();
|
2014-03-19 03:51:37 +00:00
|
|
|
|
|
|
|
if ( $statebox.is( 'input' ) ) {
|
2019-03-14 13:52:36 +00:00
|
|
|
$newstate = $( '<select></select>' )
|
|
|
|
.prop( 'id', input_id )
|
|
|
|
.prop( 'name', input_name )
|
|
|
|
.data( 'placeholder', placeholder )
|
2019-04-22 16:43:41 +00:00
|
|
|
.attr( 'data-input-classes', input_classes )
|
|
|
|
.addClass( 'state_select ' + input_classes );
|
2019-03-14 13:52:36 +00:00
|
|
|
$statebox.replaceWith( $newstate );
|
2015-06-01 09:50:16 +00:00
|
|
|
$statebox = $wrapper.find( '#billing_state, #shipping_state, #calc_shipping_state' );
|
2013-06-11 12:31:41 +00:00
|
|
|
}
|
|
|
|
|
2019-03-14 13:52:36 +00:00
|
|
|
$statebox.empty().append( $defaultOption );
|
|
|
|
|
|
|
|
$.each( state, function( index ) {
|
|
|
|
var $option = $( '<option></option>' )
|
|
|
|
.prop( 'value', index )
|
|
|
|
.text( state[ index ] );
|
|
|
|
$statebox.append( $option );
|
|
|
|
} );
|
|
|
|
|
2021-01-07 22:08:36 +00:00
|
|
|
$statebox.val( value ).trigger( 'change' );
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2015-06-01 09:50:16 +00:00
|
|
|
$( document.body ).trigger( 'country_to_state_changed', [country, $wrapper ] );
|
2013-06-11 12:31:41 +00:00
|
|
|
}
|
|
|
|
} else {
|
2019-03-06 15:11:39 +00:00
|
|
|
if ( $statebox.is( 'select, input[type="hidden"]' ) ) {
|
2019-03-20 20:08:52 +00:00
|
|
|
$newstate = $( '<input type="text" />' )
|
2019-03-14 13:52:36 +00:00
|
|
|
.prop( 'id', input_id )
|
|
|
|
.prop( 'name', input_name )
|
2019-04-22 16:43:41 +00:00
|
|
|
.prop('placeholder', placeholder)
|
|
|
|
.attr('data-input-classes', input_classes )
|
|
|
|
.addClass( 'input-text ' + input_classes );
|
2015-01-12 16:16:10 +00:00
|
|
|
$parent.show().find( '.select2-container' ).remove();
|
2019-03-14 13:52:36 +00:00
|
|
|
$statebox.replaceWith( $newstate );
|
2015-06-01 09:50:16 +00:00
|
|
|
$( document.body ).trigger( 'country_to_state_changed', [country, $wrapper ] );
|
2013-06-11 12:31:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-01 09:50:16 +00:00
|
|
|
$( document.body ).trigger( 'country_to_state_changing', [country, $wrapper ] );
|
2014-12-09 09:07:28 +00:00
|
|
|
});
|
|
|
|
|
2019-01-14 14:44:54 +00:00
|
|
|
$( document.body ).on( 'wc_address_i18n_ready', function() {
|
|
|
|
// Init country selects with their default value once the page loads.
|
2019-03-06 15:11:39 +00:00
|
|
|
$( wrapper_selectors ).each( function() {
|
2019-03-06 15:33:20 +00:00
|
|
|
var $country_input = $( this ).find( '#billing_country, #shipping_country, #calc_shipping_country' );
|
2019-01-14 14:44:54 +00:00
|
|
|
|
2019-03-06 15:33:20 +00:00
|
|
|
if ( 0 === $country_input.length || 0 === $country_input.val().length ) {
|
2019-01-14 14:44:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-06 15:33:20 +00:00
|
|
|
$country_input.trigger( 'refresh' );
|
2019-01-14 14:44:54 +00:00
|
|
|
});
|
|
|
|
});
|
2013-12-04 19:15:24 +00:00
|
|
|
});
|