2015-07-10 05:13:30 +00:00
|
|
|
/*global wc_address_i18n_params */
|
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
|
2015-07-10 05:13:30 +00:00
|
|
|
if ( typeof wc_address_i18n_params === 'undefined' ) {
|
2016-12-12 15:23:28 +00:00
|
|
|
return false;
|
2014-06-02 15:34:55 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
var locale_json = wc_address_i18n_params.locale.replace( /"/g, '"' ),
|
2015-04-10 14:43:39 +00:00
|
|
|
locale = $.parseJSON( locale_json );
|
|
|
|
|
|
|
|
function field_is_required( field, is_required ) {
|
|
|
|
if ( is_required ) {
|
|
|
|
field.find( 'label' ).append( ' <abbr class="required" title="' + wc_address_i18n_params.i18n_required_text + '">*</abbr>' );
|
|
|
|
field.addClass( 'validate-required' );
|
|
|
|
} else {
|
|
|
|
field.find( 'label abbr' ).remove();
|
|
|
|
field.removeClass( 'validate-required' );
|
|
|
|
}
|
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2015-04-10 14:43:39 +00:00
|
|
|
$( document.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
|
|
|
|
2015-04-10 14:43:39 +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
|
|
|
|
2015-04-10 14:43:39 +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' );
|
|
|
|
|
|
|
|
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-03-18 02:51:53 +00:00
|
|
|
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
|
|
|
|
2015-04-10 14:43:39 +00:00
|
|
|
field_is_required( field, false );
|
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 ) {
|
2015-04-10 14:43:39 +00:00
|
|
|
field_is_required( field, true );
|
2014-03-18 02:51:53 +00:00
|
|
|
} else if ( thislocale[ key ].required === true ) {
|
2015-04-10 14:43:39 +00:00
|
|
|
field_is_required( field, true );
|
2014-03-18 02:51:53 +00:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2017-04-19 15:33:32 +00:00
|
|
|
if ( thislocale[ key ].priority ) {
|
|
|
|
field.data( 'priority', thislocale[ key ].priority );
|
|
|
|
} else if ( locale['default'][ key ].priority ) {
|
|
|
|
field.data( 'priority', locale['default'][ key ].priority );
|
2016-12-12 15:23:28 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
} else if ( locale['default'][ key ] ) {
|
|
|
|
|
2015-07-24 21:24:33 +00:00
|
|
|
if ( 'state' !== key ) {
|
2014-03-18 02:51:53 +00:00
|
|
|
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
|
|
|
}
|
2015-07-24 21:24:33 +00:00
|
|
|
|
2016-06-01 10:22:52 +00:00
|
|
|
if ( 'postcode' === key || 'city' === key || 'state' === key ) {
|
2015-07-24 21:24:33 +00:00
|
|
|
if ( locale['default'][ key ].label ) {
|
|
|
|
field.find( 'label' ).html( locale['default'][ key ].label );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( locale['default'][ key ].placeholder ) {
|
|
|
|
field.find( 'input' ).attr( 'placeholder', locale['default'][ key ].placeholder );
|
|
|
|
}
|
|
|
|
}
|
2015-08-17 12:35:17 +00:00
|
|
|
|
|
|
|
if ( locale['default'][ key ].required === true ) {
|
2016-03-01 13:08:25 +00:00
|
|
|
if ( field.find( 'label abbr' ).length === 0 ) {
|
2015-08-17 12:35:17 +00:00
|
|
|
field_is_required( field, true );
|
|
|
|
}
|
|
|
|
}
|
2016-12-12 15:23:28 +00:00
|
|
|
|
2017-04-19 15:33:32 +00:00
|
|
|
if ( locale['default'][ key ].priority ) {
|
|
|
|
field.data( 'priority', locale['default'][ key ].priority );
|
2016-12-12 15:23:28 +00:00
|
|
|
}
|
2014-01-08 14:38:17 +00:00
|
|
|
}
|
|
|
|
|
2014-03-18 02:51:53 +00:00
|
|
|
});
|
2014-01-08 14:38:17 +00:00
|
|
|
|
2017-03-02 15:08:02 +00:00
|
|
|
var fieldsets = $('.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper, .woocommerce-address-fields__field-wrapper, .woocommerce-additional-fields__field-wrapper .woocommerce-account-fields');
|
2016-12-12 15:23:28 +00:00
|
|
|
|
|
|
|
fieldsets.each( function( index, fieldset ) {
|
2016-12-13 18:49:56 +00:00
|
|
|
var rows = $( fieldset ).find( '.form-row' );
|
2016-12-13 18:48:39 +00:00
|
|
|
var wrapper = rows.first().parent();
|
2016-12-12 15:23:28 +00:00
|
|
|
|
2016-12-13 18:48:39 +00:00
|
|
|
// Before sorting, ensure all fields have a priority for bW compatibility.
|
|
|
|
var last_priority = 0;
|
2016-12-12 15:23:28 +00:00
|
|
|
|
2016-12-13 18:48:39 +00:00
|
|
|
rows.each( function() {
|
|
|
|
if ( ! $( this ).data( 'priority' ) ) {
|
2016-12-14 19:32:01 +00:00
|
|
|
$( this ).data( 'priority', last_priority + 1 );
|
2016-12-12 15:23:28 +00:00
|
|
|
}
|
2016-12-13 18:48:39 +00:00
|
|
|
last_priority = $( this ).data( 'priority' );
|
|
|
|
} );
|
|
|
|
|
|
|
|
// Sort the fields.
|
2016-12-13 18:49:56 +00:00
|
|
|
rows.sort( function( a, b ) {
|
2016-12-14 19:31:26 +00:00
|
|
|
var asort = $( a ).data( 'priority' ),
|
|
|
|
bsort = $( b ).data( 'priority' );
|
2016-12-12 15:23:28 +00:00
|
|
|
|
|
|
|
if ( asort > bsort ) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if ( asort < bsort ) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
|
2016-12-13 18:48:39 +00:00
|
|
|
rows.detach().appendTo( wrapper );
|
2016-12-12 15:23:28 +00:00
|
|
|
} );
|
|
|
|
});
|
2014-01-31 02:44:17 +00:00
|
|
|
});
|