2014-03-18 02:51:53 +00:00
|
|
|
jQuery( function( $ ) {
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-06-02 15:34:55 +00:00
|
|
|
// wc_address_i18n_params is required to continue, ensure the object exists
|
|
|
|
if (typeof wc_address_i18n_params === "undefined") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
var locale_json = wc_address_i18n_params.locale.replace( /"/g, '"' ),
|
|
|
|
locale = $.parseJSON( locale_json ),
|
|
|
|
required = ' <abbr class="required" title="' + wc_address_i18n_params.i18n_required_text + '">*</abbr>';
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
$( 'body' )
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
// Handle locale
|
|
|
|
.bind( 'country_to_state_changing', function( event, country, wrapper ) {
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
var thisform = wrapper,
|
|
|
|
thislocale;
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
if ( typeof locale[ country ] !== 'undefined' ) {
|
|
|
|
thislocale = locale[ country ];
|
|
|
|
} else {
|
|
|
|
thislocale = locale['default'];
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
// Handle locale fields
|
|
|
|
var locale_fields = $.parseJSON( wc_address_i18n_params.locale_fields );
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
$.each( locale_fields, function( key, value ) {
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
var field = thisform.find( value );
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
if ( thislocale[ key ] ) {
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
if ( thislocale[ key ].label ) {
|
|
|
|
field.find( 'label' ).html( thislocale[ key ].label );
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
if ( thislocale[ key ].placeholder ) {
|
|
|
|
field.find( 'input' ).attr( 'placeholder', thislocale[ key ].placeholder );
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
field.find( 'label abbr' ).remove();
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
if ( typeof thislocale[ key ].required === 'undefined' && locale['default'][ key ].required === true ) {
|
|
|
|
field.find( 'label' ).append( required );
|
|
|
|
} else if ( thislocale[ key ].required === true ) {
|
|
|
|
field.find( 'label' ).append( required );
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
if ( key !== 'state' ) {
|
|
|
|
if ( thislocale[ key ].hidden === true ) {
|
|
|
|
field.hide().find( 'input' ).val( '' );
|
|
|
|
} else {
|
|
|
|
field.show();
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
} else if ( locale['default'][ key ] ) {
|
|
|
|
if ( locale['default'][ key ].required === true ) {
|
|
|
|
if ( field.find( 'label abbr' ).size() === 0 ) field.find( 'label' ).append( required );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( key !== 'state' ) {
|
|
|
|
if ( typeof locale['default'][ key ].hidden === 'undefined' || locale['default'][ key ].hidden === false ) {
|
|
|
|
field.show();
|
|
|
|
} else if ( locale['default'][ key ].hidden === true ) {
|
|
|
|
field.hide().find( 'input' ).val( '' );
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
});
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
var $postcodefield = thisform.find( '#billing_postcode_field, #shipping_postcode_field' ),
|
|
|
|
$cityfield = thisform.find( '#billing_city_field, #shipping_city_field' ),
|
|
|
|
$statefield = thisform.find( '#billing_state_field, #shipping_state_field' );
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
if ( ! $postcodefield.attr( 'data-o_class' ) ) {
|
|
|
|
$postcodefield.attr( 'data-o_class', $postcodefield.attr( 'class' ) );
|
|
|
|
$cityfield.attr( 'data-o_class', $cityfield.attr( 'class' ) );
|
|
|
|
$statefield.attr( 'data-o_class', $statefield.attr( 'class' ) );
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
// Re-order postcode/city
|
|
|
|
if ( thislocale.postcode_before_city ) {
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
$postcodefield.add( $cityfield ).add( $statefield ).removeClass( 'form-row-first form-row-last' ).addClass( 'form-row-wide' );
|
|
|
|
$postcodefield.insertBefore( $cityfield );
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
} else {
|
|
|
|
// Default
|
|
|
|
$postcodefield.attr( 'class', $postcodefield.attr( 'data-o_class' ) );
|
|
|
|
$cityfield.attr( 'class', $cityfield.attr( 'data-o_class' ) );
|
|
|
|
$statefield.attr( 'class', $statefield.attr( 'data-o_class' ) );
|
|
|
|
$postcodefield.insertAfter( $statefield );
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2014-01-31 02:44:17 +00:00
|
|
|
});
|