woocommerce/assets/js/frontend/country-select.js

160 lines
5.1 KiB
JavaScript
Raw Normal View History

/*global wc_country_select_params */
jQuery( function( $ ) {
2013-06-11 12:31:41 +00:00
// wc_country_select_params is required to continue, ensure the object exists
if ( typeof wc_country_select_params === 'undefined' ) {
return false;
}
2015-01-19 19:31:22 +00:00
function getEnhancedSelectFormatString() {
var formatString = {
formatMatches: function( matches ) {
if ( 1 === matches ) {
return wc_country_select_params.i18n_matches_1;
2015-01-19 19:31:22 +00:00
}
return wc_country_select_params.i18n_matches_n.replace( '%qty%', matches );
2015-01-19 19:31:22 +00:00
},
formatNoMatches: function() {
return wc_country_select_params.i18n_no_matches;
2015-01-19 19:31:22 +00:00
},
2015-07-10 05:13:30 +00:00
formatAjaxError: function() {
return wc_country_select_params.i18n_ajax_error;
2015-01-19 19:31:22 +00:00
},
formatInputTooShort: function( input, min ) {
var number = min - input.length;
if ( 1 === number ) {
return wc_country_select_params.i18n_input_too_short_1;
2015-01-19 19:31:22 +00:00
}
return wc_country_select_params.i18n_input_too_short_n.replace( '%qty%', number );
2015-01-19 19:31:22 +00:00
},
formatInputTooLong: function( input, max ) {
var number = input.length - max;
if ( 1 === number ) {
return wc_country_select_params.i18n_input_too_long_1;
2015-01-19 19:31:22 +00:00
}
return wc_country_select_params.i18n_input_too_long_n.replace( '%qty%', number );
2015-01-19 19:31:22 +00:00
},
formatSelectionTooBig: function( limit ) {
if ( 1 === limit ) {
return wc_country_select_params.i18n_selection_too_long_1;
2015-01-19 19:31:22 +00:00
}
return wc_country_select_params.i18n_selection_too_long_n.replace( '%qty%', limit );
2015-01-19 19:31:22 +00:00
},
2015-07-10 05:13:30 +00:00
formatLoadMore: function() {
return wc_country_select_params.i18n_load_more;
2015-01-19 19:31:22 +00:00
},
formatSearching: function() {
return wc_country_select_params.i18n_searching;
2015-01-19 19:31:22 +00:00
}
};
return formatString;
}
2015-01-12 16:16:10 +00:00
// Select2 Enhancement if it exists
2015-01-19 19:31:22 +00:00
if ( $().select2 ) {
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({
placeholderOption: 'first',
width: '100%'
2015-01-19 19:31:22 +00:00
}, getEnhancedSelectFormatString() );
$( this ).select2( select2_args );
2015-01-12 16:16:10 +00:00
});
};
2015-01-12 16:16:10 +00:00
wc_country_select_select2();
2015-04-13 15:37:22 +00:00
$( document.body ).bind( '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 */
var states_json = wc_country_select_params.countries.replace( /"/g, '"' ),
states = $.parseJSON( states_json );
2013-06-11 12:31:41 +00:00
2015-04-13 15:37:22 +00:00
$( document.body ).on( 'change', 'select.country_to_state, input.country_to_state', function() {
// Grab wrapping element to target only stateboxes in same 'group'
var $wrapper = $( this ).closest('.woocommerce-billing-fields, .woocommerce-shipping-fields, .woocommerce-shipping-calculator');
2016-03-01 13:08:25 +00:00
if ( ! $wrapper.length ) {
$wrapper = $( this ).closest('.form-row').parent();
}
2013-06-11 12:31:41 +00:00
var country = $( this ).val(),
$statebox = $wrapper.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' ) || $statebox.attr( 'data-placeholder' ) || '';
2013-06-11 12:31:41 +00:00
if ( states[ country ] ) {
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();
$statebox.replaceWith( '<input type="hidden" class="hidden" name="' + input_name + '" id="' + input_id + '" value="" placeholder="' + placeholder + '" />' );
2013-06-11 12:31:41 +00:00
$( document.body ).trigger( 'country_to_state_changed', [ country, $wrapper ] );
2013-06-11 12:31:41 +00:00
} else {
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
}
2013-06-11 12:31:41 +00:00
$statebox.parent().show();
if ( $statebox.is( 'input' ) ) {
2013-06-11 12:31:41 +00:00
// Change for select
$statebox.replaceWith( '<select name="' + input_name + '" id="' + input_id + '" class="state_select" data-placeholder="' + placeholder + '"></select>' );
$statebox = $wrapper.find( '#billing_state, #shipping_state, #calc_shipping_state' );
2013-06-11 12:31:41 +00:00
}
$statebox.html( '<option value="">' + wc_country_select_params.i18n_select_state_text + '</option>' + options );
$statebox.val( value ).change();
2013-06-11 12:31:41 +00:00
$( document.body ).trigger( 'country_to_state_changed', [country, $wrapper ] );
2013-06-11 12:31:41 +00:00
}
} else {
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();
$statebox.replaceWith( '<input type="text" class="input-text" name="' + input_name + '" id="' + input_id + '" placeholder="' + placeholder + '" />' );
2013-06-11 12:31:41 +00:00
$( document.body ).trigger( 'country_to_state_changed', [country, $wrapper ] );
2013-06-11 12:31:41 +00:00
} else if ( $statebox.is( 'input[type="hidden"]' ) ) {
2013-06-11 12:31:41 +00:00
2015-01-12 16:16:10 +00:00
$parent.show().find( '.select2-container' ).remove();
$statebox.replaceWith( '<input type="text" class="input-text" name="' + input_name + '" id="' + input_id + '" placeholder="' + placeholder + '" />' );
2013-06-11 12:31:41 +00:00
$( document.body ).trigger( 'country_to_state_changed', [country, $wrapper ] );
2013-06-11 12:31:41 +00:00
}
}
$( document.body ).trigger( 'country_to_state_changing', [country, $wrapper ] );
2013-06-11 12:31:41 +00:00
});
$(function() {
$( ':input.country_to_state' ).change();
});
2013-06-11 12:31:41 +00:00
});