| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- /* global woocommerce_admin */
- ( function( $, woocommerce_admin ) {
- $( function() {
- if ( 'undefined' === typeof woocommerce_admin ) {
- return;
- }
- // Add buttons to product screen.
- var $product_screen = $( '.edit-php.post-type-product' ),
- $title_action = $product_screen.find( '.page-title-action:first' ),
- $blankslate = $product_screen.find( '.woocommerce-BlankState' );
- if ( 0 === $blankslate.length ) {
- if ( woocommerce_admin.urls.export_products ) {
- $title_action.after(
- '<a href="' +
- woocommerce_admin.urls.export_products +
- '" class="page-title-action">' +
- woocommerce_admin.strings.export_products +
- '</a>'
- );
- }
- if ( woocommerce_admin.urls.import_products ) {
- $title_action.after(
- '<a href="' +
- woocommerce_admin.urls.import_products +
- '" class="page-title-action">' +
- woocommerce_admin.strings.import_products +
- '</a>'
- );
- }
- } else {
- $title_action.hide();
- }
- // Progress indicators when showing steps.
- $( '.woocommerce-progress-form-wrapper .button-next' ).on( 'click', function() {
- $('.wc-progress-form-content').block({
- message: null,
- overlayCSS: {
- background: '#fff',
- opacity: 0.6
- }
- });
- return true;
- } );
- // Field validation error tips
- $( document.body )
- .on( 'wc_add_error_tip', function( e, element, error_type ) {
- var offset = element.position();
- if ( element.parent().find( '.wc_error_tip' ).length === 0 ) {
- element.after( '<div class="wc_error_tip ' + error_type + '">' + woocommerce_admin[error_type] + '</div>' );
- element.parent().find( '.wc_error_tip' )
- .css( 'left', offset.left + element.width() - ( element.width() / 2 ) - ( $( '.wc_error_tip' ).width() / 2 ) )
- .css( 'top', offset.top + element.height() )
- .fadeIn( '100' );
- }
- })
- .on( 'wc_remove_error_tip', function( e, element, error_type ) {
- element.parent().find( '.wc_error_tip.' + error_type ).fadeOut( '100', function() { $( this ).remove(); } );
- })
- .on( 'click', function() {
- $( '.wc_error_tip' ).fadeOut( '100', function() { $( this ).remove(); } );
- })
- .on( 'blur', '.wc_input_decimal[type=text], .wc_input_price[type=text], .wc_input_country_iso[type=text]', function() {
- $( '.wc_error_tip' ).fadeOut( '100', function() { $( this ).remove(); } );
- })
- .on(
- 'change',
- '.wc_input_price[type=text], .wc_input_decimal[type=text], .wc-order-totals #refund_amount[type=text]',
- function() {
- var regex, decimalRegex,
- decimailPoint = woocommerce_admin.decimal_point;
- if ( $( this ).is( '.wc_input_price' ) || $( this ).is( '#refund_amount' ) ) {
- decimailPoint = woocommerce_admin.mon_decimal_point;
- }
- regex = new RegExp( '[^\-0-9\%\\' + decimailPoint + ']+', 'gi' );
- decimalRegex = new RegExp( '\\' + decimailPoint + '+', 'gi' );
- var value = $( this ).val();
- var newvalue = value.replace( regex, '' ).replace( decimalRegex, decimailPoint );
- if ( value !== newvalue ) {
- $( this ).val( newvalue );
- }
- }
- )
- .on(
- 'keyup',
- // eslint-disable-next-line max-len
- '.wc_input_price[type=text], .wc_input_decimal[type=text], .wc_input_country_iso[type=text], .wc-order-totals #refund_amount[type=text]',
- function() {
- var regex, error, decimalRegex;
- var checkDecimalNumbers = false;
- if ( $( this ).is( '.wc_input_price' ) || $( this ).is( '#refund_amount' ) ) {
- checkDecimalNumbers = true;
- regex = new RegExp( '[^\-0-9\%\\' + woocommerce_admin.mon_decimal_point + ']+', 'gi' );
- decimalRegex = new RegExp( '[^\\' + woocommerce_admin.mon_decimal_point + ']', 'gi' );
- error = 'i18n_mon_decimal_error';
- } else if ( $( this ).is( '.wc_input_country_iso' ) ) {
- regex = new RegExp( '([^A-Z])+|(.){3,}', 'im' );
- error = 'i18n_country_iso_error';
- } else {
- checkDecimalNumbers = true;
- regex = new RegExp( '[^\-0-9\%\\' + woocommerce_admin.decimal_point + ']+', 'gi' );
- decimalRegex = new RegExp( '[^\\' + woocommerce_admin.decimal_point + ']', 'gi' );
- error = 'i18n_decimal_error';
- }
- var value = $( this ).val();
- var newvalue = value.replace( regex, '' );
- // Check if newvalue have more than one decimal point.
- if ( checkDecimalNumbers && 1 < newvalue.replace( decimalRegex, '' ).length ) {
- newvalue = newvalue.replace( decimalRegex, '' );
- }
- if ( value !== newvalue ) {
- $( document.body ).triggerHandler( 'wc_add_error_tip', [ $( this ), error ] );
- } else {
- $( document.body ).triggerHandler( 'wc_remove_error_tip', [ $( this ), error ] );
- }
- }
- )
- .on( 'change', '#_sale_price.wc_input_price[type=text], .wc_input_price[name^=variable_sale_price]', function() {
- var sale_price_field = $( this ), regular_price_field;
- if ( sale_price_field.attr( 'name' ).indexOf( 'variable' ) !== -1 ) {
- regular_price_field = sale_price_field
- .parents( '.variable_pricing' )
- .find( '.wc_input_price[name^=variable_regular_price]' );
- } else {
- regular_price_field = $( '#_regular_price' );
- }
- var sale_price = parseFloat(
- window.accounting.unformat( sale_price_field.val(), woocommerce_admin.mon_decimal_point )
- );
- var regular_price = parseFloat(
- window.accounting.unformat( regular_price_field.val(), woocommerce_admin.mon_decimal_point )
- );
- if ( sale_price >= regular_price ) {
- $( this ).val( '' );
- }
- })
- .on( 'keyup', '#_sale_price.wc_input_price[type=text], .wc_input_price[name^=variable_sale_price]', function() {
- var sale_price_field = $( this ), regular_price_field;
- if ( sale_price_field.attr( 'name' ).indexOf( 'variable' ) !== -1 ) {
- regular_price_field = sale_price_field
- .parents( '.variable_pricing' )
- .find( '.wc_input_price[name^=variable_regular_price]' );
- } else {
- regular_price_field = $( '#_regular_price' );
- }
- var sale_price = parseFloat(
- window.accounting.unformat( sale_price_field.val(), woocommerce_admin.mon_decimal_point )
- );
- var regular_price = parseFloat(
- window.accounting.unformat( regular_price_field.val(), woocommerce_admin.mon_decimal_point )
- );
- if ( sale_price >= regular_price ) {
- $( document.body ).triggerHandler( 'wc_add_error_tip', [ $(this), 'i18n_sale_less_than_regular_error' ] );
- } else {
- $( document.body ).triggerHandler( 'wc_remove_error_tip', [ $(this), 'i18n_sale_less_than_regular_error' ] );
- }
- })
- .on( 'init_tooltips', function() {
- $( '.tips, .help_tip, .woocommerce-help-tip' ).tipTip( {
- 'attribute': 'data-tip',
- 'fadeIn': 50,
- 'fadeOut': 50,
- 'delay': 200,
- 'keepAlive': true
- } );
- $( '.column-wc_actions .wc-action-button' ).tipTip( {
- 'fadeIn': 50,
- 'fadeOut': 50,
- 'delay': 200
- } );
- // Add tiptip to parent element for widefat tables
- $( '.parent-tips' ).each( function() {
- $( this ).closest( 'a, th' ).attr( 'data-tip', $( this ).data( 'tip' ) ).tipTip( {
- 'attribute': 'data-tip',
- 'fadeIn': 50,
- 'fadeOut': 50,
- 'delay': 200,
- 'keepAlive': true
- } ).css( 'cursor', 'help' );
- });
- });
- // Tooltips
- $( document.body ).trigger( 'init_tooltips' );
- // wc_input_table tables
- $( '.wc_input_table.sortable tbody' ).sortable({
- items: 'tr',
- cursor: 'move',
- axis: 'y',
- scrollSensitivity: 40,
- forcePlaceholderSize: true,
- helper: 'clone',
- opacity: 0.65,
- placeholder: 'wc-metabox-sortable-placeholder',
- start: function( event, ui ) {
- ui.item.css( 'background-color', '#f6f6f6' );
- },
- stop: function( event, ui ) {
- ui.item.removeAttr( 'style' );
- }
- });
- // Focus on inputs within the table if clicked instead of trying to sort.
- $( '.wc_input_table.sortable tbody input' ).on( 'click', function() {
- $( this ).trigger( 'focus' );
- } );
- $( '.wc_input_table .remove_rows' ).on( 'click', function() {
- var $tbody = $( this ).closest( '.wc_input_table' ).find( 'tbody' );
- if ( $tbody.find( 'tr.current' ).length > 0 ) {
- var $current = $tbody.find( 'tr.current' );
- $current.each( function() {
- $( this ).remove();
- });
- }
- return false;
- });
- var controlled = false;
- var shifted = false;
- var hasFocus = false;
- $( document.body ).on( 'keyup keydown', function( e ) {
- shifted = e.shiftKey;
- controlled = e.ctrlKey || e.metaKey;
- });
- $( '.wc_input_table' ).on( 'focus click', 'input', function( e ) {
- var $this_table = $( this ).closest( 'table, tbody' );
- var $this_row = $( this ).closest( 'tr' );
- if ( ( e.type === 'focus' && hasFocus !== $this_row.index() ) || ( e.type === 'click' && $( this ).is( ':focus' ) ) ) {
- hasFocus = $this_row.index();
- if ( ! shifted && ! controlled ) {
- $( 'tr', $this_table ).removeClass( 'current' ).removeClass( 'last_selected' );
- $this_row.addClass( 'current' ).addClass( 'last_selected' );
- } else if ( shifted ) {
- $( 'tr', $this_table ).removeClass( 'current' );
- $this_row.addClass( 'selected_now' ).addClass( 'current' );
- if ( $( 'tr.last_selected', $this_table ).length > 0 ) {
- if ( $this_row.index() > $( 'tr.last_selected', $this_table ).index() ) {
- $( 'tr', $this_table )
- .slice( $( 'tr.last_selected', $this_table ).index(), $this_row.index() )
- .addClass( 'current' );
- } else {
- $( 'tr', $this_table )
- .slice( $this_row.index(), $( 'tr.last_selected', $this_table ).index() + 1 )
- .addClass( 'current' );
- }
- }
- $( 'tr', $this_table ).removeClass( 'last_selected' );
- $this_row.addClass( 'last_selected' );
- } else {
- $( 'tr', $this_table ).removeClass( 'last_selected' );
- if ( controlled && $( this ).closest( 'tr' ).is( '.current' ) ) {
- $this_row.removeClass( 'current' );
- } else {
- $this_row.addClass( 'current' ).addClass( 'last_selected' );
- }
- }
- $( 'tr', $this_table ).removeClass( 'selected_now' );
- }
- }).on( 'blur', 'input', function() {
- hasFocus = false;
- });
- // Additional cost and Attribute term tables
- $( '.woocommerce_page_wc-settings .shippingrows tbody tr:even, table.attributes-table tbody tr:nth-child(odd)' )
- .addClass( 'alternate' );
- // Show order items on orders page
- $( document.body ).on( 'click', '.show_order_items', function() {
- $( this ).closest( 'td' ).find( 'table' ).toggle();
- return false;
- });
- // Select availability
- $( 'select.availability' ).on( 'change', function() {
- if ( $( this ).val() === 'all' ) {
- $( this ).closest( 'tr' ).next( 'tr' ).hide();
- } else {
- $( this ).closest( 'tr' ).next( 'tr' ).show();
- }
- }).trigger( 'change' );
- // Hidden options
- $( '.hide_options_if_checked' ).each( function() {
- $( this ).find( 'input:eq(0)' ).on( 'change', function() {
- if ( $( this ).is( ':checked' ) ) {
- $( this )
- .closest( 'fieldset, tr' )
- .nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option' )
- .hide();
- } else {
- $( this )
- .closest( 'fieldset, tr' )
- .nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option' )
- .show();
- }
- }).trigger( 'change' );
- });
- $( '.show_options_if_checked' ).each( function() {
- $( this ).find( 'input:eq(0)' ).on( 'change', function() {
- if ( $( this ).is( ':checked' ) ) {
- $( this )
- .closest( 'fieldset, tr' )
- .nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option' )
- .show();
- } else {
- $( this )
- .closest( 'fieldset, tr' )
- .nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option' )
- .hide();
- }
- }).trigger( 'change' );
- });
- // Reviews.
- $( 'input#woocommerce_enable_reviews' ).on( 'change', function() {
- if ( $( this ).is( ':checked' ) ) {
- $( '#woocommerce_enable_review_rating' ).closest( 'tr' ).show();
- } else {
- $( '#woocommerce_enable_review_rating' ).closest( 'tr' ).hide();
- }
- }).trigger( 'change' );
- // Attribute term table
- $( 'table.attributes-table tbody tr:nth-child(odd)' ).addClass( 'alternate' );
- // Toggle gateway on/off.
- $( '.wc_gateways' ).on( 'click', '.wc-payment-gateway-method-toggle-enabled', function() {
- var $link = $( this ),
- $row = $link.closest( 'tr' ),
- $toggle = $link.find( '.woocommerce-input-toggle' );
- var data = {
- action: 'woocommerce_toggle_gateway_enabled',
- security: woocommerce_admin.nonces.gateway_toggle,
- gateway_id: $row.data( 'gateway_id' )
- };
- $toggle.addClass( 'woocommerce-input-toggle--loading' );
- $.ajax( {
- url: woocommerce_admin.ajax_url,
- data: data,
- dataType : 'json',
- type : 'POST',
- success: function( response ) {
- if ( true === response.data ) {
- $toggle.removeClass( 'woocommerce-input-toggle--enabled, woocommerce-input-toggle--disabled' );
- $toggle.addClass( 'woocommerce-input-toggle--enabled' );
- $toggle.removeClass( 'woocommerce-input-toggle--loading' );
- } else if ( false === response.data ) {
- $toggle.removeClass( 'woocommerce-input-toggle--enabled, woocommerce-input-toggle--disabled' );
- $toggle.addClass( 'woocommerce-input-toggle--disabled' );
- $toggle.removeClass( 'woocommerce-input-toggle--loading' );
- } else if ( 'needs_setup' === response.data ) {
- window.location.href = $link.attr( 'href' );
- }
- }
- } );
- return false;
- });
- $( '#wpbody' ).on( 'click', '#doaction, #doaction2', function() {
- var action = $( this ).is( '#doaction' ) ? $( '#bulk-action-selector-top' ).val() : $( '#bulk-action-selector-bottom' ).val();
- if ( 'remove_personal_data' === action ) {
- return window.confirm( woocommerce_admin.i18n_remove_personal_data_notice );
- }
- });
- var marketplaceSectionDropdown = $( '#marketplace-current-section-dropdown' );
- var marketplaceSectionName = $( '#marketplace-current-section-name' );
- var marketplaceMenuIsOpen = false;
- // Add event listener to toggle Marketplace menu on touch devices
- if ( marketplaceSectionDropdown.length ) {
- if ( isTouchDevice() ) {
- marketplaceSectionName.on( 'click', function() {
- marketplaceMenuIsOpen = ! marketplaceMenuIsOpen;
- if ( marketplaceMenuIsOpen ) {
- marketplaceSectionDropdown.addClass( 'is-open' );
- $( document ).on( 'click', maybeToggleMarketplaceMenu );
- } else {
- marketplaceSectionDropdown.removeClass( 'is-open' );
- $( document ).off( 'click', maybeToggleMarketplaceMenu );
- }
- } );
- } else {
- document.body.classList.add( 'no-touch' );
- }
- }
- // Close menu if the user clicks outside it
- function maybeToggleMarketplaceMenu( e ) {
- if (
- ! marketplaceSectionDropdown.is( e.target )
- && marketplaceSectionDropdown.has( e.target ).length === 0
- ) {
- marketplaceSectionDropdown.removeClass( 'is-open' );
- marketplaceMenuIsOpen = false;
- $( document ).off( 'click', maybeToggleMarketplaceMenu );
- }
- }
- function isTouchDevice() {
- return ( ( 'ontouchstart' in window ) ||
- ( navigator.maxTouchPoints > 0 ) ||
- ( navigator.msMaxTouchPoints > 0 ) );
- }
- });
- })( jQuery, woocommerce_admin );
|