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
|
|
|
|
2015-01-19 19:31:22 +00:00
|
|
|
function getEnhancedSelectFormatString() {
|
|
|
|
var formatString = {
|
|
|
|
formatMatches: function( matches ) {
|
|
|
|
if ( 1 === matches ) {
|
2015-03-03 10:58:06 +00:00
|
|
|
return wc_country_select_params.i18n_matches_1;
|
2015-01-19 19:31:22 +00:00
|
|
|
}
|
|
|
|
|
2015-03-03 10:58:06 +00:00
|
|
|
return wc_country_select_params.i18n_matches_n.replace( '%qty%', matches );
|
2015-01-19 19:31:22 +00:00
|
|
|
},
|
|
|
|
formatNoMatches: function() {
|
2015-03-03 10:58:06 +00:00
|
|
|
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() {
|
2015-03-03 10:58:06 +00:00
|
|
|
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 ) {
|
2015-03-05 17:55:41 +00:00
|
|
|
return wc_country_select_params.i18n_input_too_short_1;
|
2015-01-19 19:31:22 +00:00
|
|
|
}
|
|
|
|
|
2015-03-03 10:58:06 +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 ) {
|
2015-03-05 17:55:41 +00:00
|
|
|
return wc_country_select_params.i18n_input_too_long_1;
|
2015-01-19 19:31:22 +00:00
|
|
|
}
|
|
|
|
|
2015-03-03 10:58:06 +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 ) {
|
2015-03-03 10:58:06 +00:00
|
|
|
return wc_country_select_params.i18n_selection_too_long_1;
|
2015-01-19 19:31:22 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 17:55:41 +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() {
|
2015-03-03 10:58:06 +00:00
|
|
|
return wc_country_select_params.i18n_load_more;
|
2015-01-19 19:31:22 +00:00
|
|
|
},
|
|
|
|
formatSearching: function() {
|
2015-03-03 10:58:06 +00:00
|
|
|
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({
|
2015-01-19 15:09:38 +00:00
|
|
|
placeholderOption: 'first',
|
2015-03-05 17:55:41 +00:00
|
|
|
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-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-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 */
|
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
|
|
|
|
2015-04-13 15:37:22 +00:00
|
|
|
$( document.body ).on( 'change', 'select.country_to_state, input.country_to_state', function() {
|
2013-06-11 12:31:41 +00:00
|
|
|
|
2015-06-01 09:50:16 +00:00
|
|
|
var country = $( this ).val(),
|
|
|
|
$wrapper = $( this ).closest('.form-row').parent(), // Grab wrapping form-row parent to target stateboxes in same 'group'
|
|
|
|
$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(),
|
2016-01-06 12:20:06 +00:00
|
|
|
placeholder = $statebox.attr( 'placeholder' ) || $statebox.attr( 'data-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
|
|
|
|
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 {
|
|
|
|
|
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
|
2016-01-06 12:20:06 +00:00
|
|
|
$statebox.replaceWith( '<select name="' + input_name + '" id="' + input_id + '" class="state_select" data-placeholder="' + placeholder + '"></select>' );
|
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
|
|
|
}
|
|
|
|
|
2014-03-19 03:51:37 +00:00
|
|
|
$statebox.html( '<option value="">' + wc_country_select_params.i18n_select_state_text + '</option>' + options );
|
2015-01-30 10:58:53 +00:00
|
|
|
$statebox.val( value ).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 {
|
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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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 ] );
|
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
|
|
|
});
|