2014-07-29 17:28:22 +00:00
|
|
|
/* global wp, woocommerce_admin_meta_boxes_variations, woocommerce_admin, woocommerce_admin_meta_boxes, accounting */
|
2015-07-02 20:42:22 +00:00
|
|
|
/*jshint devel: true */
|
2014-02-14 20:49:36 +00:00
|
|
|
jQuery( function ( $ ) {
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2015-06-03 15:35:13 +00:00
|
|
|
$( '.wc-metaboxes-wrapper' ).on( 'click', 'a.bulk_edit', function () {
|
2014-02-14 20:49:36 +00:00
|
|
|
var bulk_edit = $( 'select#field_to_edit' ).val(),
|
|
|
|
checkbox,
|
|
|
|
answer,
|
|
|
|
value;
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
switch ( bulk_edit ) {
|
|
|
|
case 'toggle_enabled' :
|
|
|
|
checkbox = $( 'input[name^="variable_enabled"]' );
|
|
|
|
checkbox.attr('checked', ! checkbox.attr( 'checked' ) );
|
2013-09-03 16:35:20 +00:00
|
|
|
break;
|
2014-02-14 20:49:36 +00:00
|
|
|
case 'toggle_downloadable' :
|
|
|
|
checkbox = $( 'input[name^="variable_is_downloadable"]' );
|
|
|
|
checkbox.attr( 'checked', ! checkbox.attr( 'checked' ) );
|
|
|
|
$('input.variable_is_downloadable').change();
|
2013-09-03 16:35:20 +00:00
|
|
|
break;
|
2014-02-14 20:49:36 +00:00
|
|
|
case 'toggle_virtual' :
|
|
|
|
checkbox = $('input[name^="variable_is_virtual"]');
|
|
|
|
checkbox.attr( 'checked', ! checkbox.attr( 'checked' ) );
|
|
|
|
$( 'input.variable_is_virtual' ).change();
|
2013-09-03 16:35:20 +00:00
|
|
|
break;
|
2014-06-19 15:17:43 +00:00
|
|
|
case 'toggle_manage_stock' :
|
|
|
|
checkbox = $('input[name^="variable_manage_stock"]');
|
|
|
|
checkbox.attr( 'checked', ! checkbox.attr( 'checked' ) );
|
|
|
|
$( 'input.variable_manage_stock' ).change();
|
|
|
|
break;
|
2014-02-14 20:49:36 +00:00
|
|
|
case 'delete_all' :
|
|
|
|
answer = window.confirm( woocommerce_admin_meta_boxes_variations.i18n_delete_all_variations );
|
2013-09-03 16:35:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
if ( answer ) {
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
answer = window.confirm( woocommerce_admin_meta_boxes_variations.i18n_last_warning );
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
if ( answer ) {
|
2013-08-06 10:41:20 +00:00
|
|
|
|
|
|
|
var variation_ids = [];
|
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
$( '.woocommerce_variations .woocommerce_variation' ).block({
|
|
|
|
message: null,
|
|
|
|
overlayCSS: {
|
2014-11-13 18:28:15 +00:00
|
|
|
background: '#fff',
|
2014-02-14 20:49:36 +00:00
|
|
|
opacity: 0.6
|
|
|
|
}
|
|
|
|
});
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
$( '.woocommerce_variations .woocommerce_variation .remove_variation' ).each( function () {
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
var variation = $( this ).attr( 'rel' );
|
|
|
|
if ( variation > 0 ) {
|
|
|
|
variation_ids.push( variation );
|
2013-08-06 10:41:20 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
action: 'woocommerce_remove_variations',
|
|
|
|
variation_ids: variation_ids,
|
|
|
|
security: woocommerce_admin_meta_boxes_variations.delete_variations_nonce
|
|
|
|
};
|
|
|
|
|
2015-07-02 20:42:22 +00:00
|
|
|
$.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function() {
|
2014-02-14 20:49:36 +00:00
|
|
|
$( '.woocommerce_variations .woocommerce_variation' ).fadeOut( '300', function () {
|
|
|
|
$( '.woocommerce_variations .woocommerce_variation' ).remove();
|
2013-08-06 10:41:20 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2013-09-03 16:35:20 +00:00
|
|
|
break;
|
2013-08-06 10:41:20 +00:00
|
|
|
case 'variable_regular_price_increase':
|
|
|
|
case 'variable_regular_price_decrease':
|
|
|
|
case 'variable_sale_price_increase':
|
2013-09-03 16:35:20 +00:00
|
|
|
case 'variable_sale_price_decrease':
|
2014-02-14 20:49:36 +00:00
|
|
|
var edit_field;
|
|
|
|
if ( bulk_edit.lastIndexOf( 'variable_regular_price', 0 ) === 0 ) {
|
|
|
|
edit_field = 'variable_regular_price';
|
|
|
|
} else {
|
|
|
|
edit_field = 'variable_sale_price';
|
|
|
|
}
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-09-24 10:38:13 +00:00
|
|
|
value = window.prompt( woocommerce_admin_meta_boxes_variations.i18n_enter_a_value_fixed_or_percent );
|
|
|
|
|
|
|
|
if ( value == null ) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
value = value.toString();
|
|
|
|
}
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-10-08 14:29:42 +00:00
|
|
|
$( ':input[name^="' + edit_field + '"]' ).not('[name*="dates"]').each( function() {
|
2014-07-29 17:28:22 +00:00
|
|
|
var current_value = accounting.unformat( $( this ).val(), woocommerce_admin.mon_decimal_point ),
|
2014-07-30 18:32:06 +00:00
|
|
|
new_value,
|
|
|
|
mod_value;
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-03-06 13:03:12 +00:00
|
|
|
if ( value.indexOf( '%' ) >= 0 ) {
|
2014-07-30 18:32:06 +00:00
|
|
|
mod_value = ( current_value / 100 ) * accounting.unformat( value.replace( /\%/, '' ), woocommerce_admin.mon_decimal_point );
|
2014-02-14 20:49:36 +00:00
|
|
|
} else {
|
2014-07-30 18:32:06 +00:00
|
|
|
mod_value = accounting.unformat( value, woocommerce_admin.mon_decimal_point );
|
2014-02-14 20:49:36 +00:00
|
|
|
}
|
2013-09-03 16:35:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
if ( bulk_edit.indexOf( 'increase' ) !== -1 ) {
|
2014-03-06 13:03:12 +00:00
|
|
|
new_value = current_value + mod_value;
|
2014-02-14 20:49:36 +00:00
|
|
|
} else {
|
2014-03-06 13:03:12 +00:00
|
|
|
new_value = current_value - mod_value;
|
2014-02-14 20:49:36 +00:00
|
|
|
}
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-07-29 17:28:22 +00:00
|
|
|
$( this ).val( accounting.formatNumber(
|
|
|
|
new_value,
|
|
|
|
woocommerce_admin_meta_boxes.currency_format_num_decimals,
|
|
|
|
woocommerce_admin_meta_boxes.currency_format_thousand_sep,
|
|
|
|
woocommerce_admin_meta_boxes.currency_format_decimal_sep
|
|
|
|
) ).change();
|
2013-08-06 10:41:20 +00:00
|
|
|
});
|
2013-09-03 16:35:20 +00:00
|
|
|
break;
|
2013-08-06 10:41:20 +00:00
|
|
|
case 'variable_regular_price' :
|
|
|
|
case 'variable_sale_price' :
|
|
|
|
case 'variable_stock' :
|
|
|
|
case 'variable_weight' :
|
|
|
|
case 'variable_length' :
|
|
|
|
case 'variable_width' :
|
|
|
|
case 'variable_height' :
|
|
|
|
case 'variable_download_limit' :
|
|
|
|
case 'variable_download_expiry' :
|
2014-02-14 20:49:36 +00:00
|
|
|
value = window.prompt( woocommerce_admin_meta_boxes_variations.i18n_enter_a_value );
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-09-24 10:38:13 +00:00
|
|
|
if ( value != null ) {
|
|
|
|
$( ':input[name^="' + bulk_edit + '"]').not('[name*="dates"]').val( value ).change();
|
|
|
|
}
|
2013-09-03 16:35:20 +00:00
|
|
|
break;
|
2014-11-17 16:50:25 +00:00
|
|
|
case 'variable_sale_schedule' :
|
|
|
|
var start = window.prompt( woocommerce_admin_meta_boxes_variations.i18n_scheduled_sale_start );
|
|
|
|
var end = window.prompt( woocommerce_admin_meta_boxes_variations.i18n_scheduled_sale_end );
|
|
|
|
var set = false;
|
|
|
|
|
2015-06-03 15:35:13 +00:00
|
|
|
if ( start != null && start !== '' ) {
|
2014-11-17 16:50:25 +00:00
|
|
|
$('.woocommerce_variable_attributes .sale_schedule').click();
|
|
|
|
$( ':input[name^="variable_sale_price_dates_from"]').val( start ).change();
|
|
|
|
set = true;
|
|
|
|
}
|
2015-06-03 15:35:13 +00:00
|
|
|
if ( end != null && end !== '' ) {
|
2014-11-17 16:50:25 +00:00
|
|
|
$('.woocommerce_variable_attributes .sale_schedule').click();
|
|
|
|
$( ':input[name^="variable_sale_price_dates_to"]').val( end ).change();
|
|
|
|
set = true;
|
|
|
|
}
|
|
|
|
if ( ! set ) {
|
|
|
|
$('.woocommerce_variable_attributes .cancel_sale_schedule').click();
|
|
|
|
}
|
|
|
|
break;
|
2013-11-03 17:50:24 +00:00
|
|
|
default:
|
2014-02-14 20:49:36 +00:00
|
|
|
$( 'select#field_to_edit' ).trigger( bulk_edit );
|
2013-11-03 17:50:24 +00:00
|
|
|
break;
|
|
|
|
|
2013-09-03 16:35:20 +00:00
|
|
|
}
|
2013-08-06 10:41:20 +00:00
|
|
|
});
|
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
$( '#variable_product_options' ).on( 'change', 'input.variable_is_downloadable', function () {
|
|
|
|
$( this ).closest( '.woocommerce_variation' ).find( '.show_if_variation_downloadable' ).hide();
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
if ( $( this ).is( ':checked' ) ) {
|
|
|
|
$( this ).closest( '.woocommerce_variation' ).find( '.show_if_variation_downloadable' ).show();
|
2013-08-06 10:41:20 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
$( '#variable_product_options' ).on( 'change', 'input.variable_is_virtual', function () {
|
|
|
|
$( this ).closest( '.woocommerce_variation' ).find( '.hide_if_variation_virtual' ).show();
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
if ( $( this ).is( ':checked' ) ) {
|
|
|
|
$( this ).closest( '.woocommerce_variation' ).find( '.hide_if_variation_virtual' ).hide();
|
2013-08-06 10:41:20 +00:00
|
|
|
}
|
2014-06-19 15:17:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
$( '#variable_product_options' ).on( 'change', 'input.variable_manage_stock', function () {
|
|
|
|
$( this ).closest( '.woocommerce_variation' ).find( '.show_if_variation_manage_stock' ).hide();
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-06-19 15:17:43 +00:00
|
|
|
if ( $( this ).is( ':checked' ) ) {
|
|
|
|
$( this ).closest( '.woocommerce_variation' ).find( '.show_if_variation_manage_stock' ).show();
|
|
|
|
}
|
2013-08-06 10:41:20 +00:00
|
|
|
});
|
|
|
|
|
2014-06-19 15:17:43 +00:00
|
|
|
$( 'input.variable_is_downloadable, input.variable_is_virtual, input.variable_manage_stock' ).change();
|
2013-08-06 10:41:20 +00:00
|
|
|
|
|
|
|
// Uploader
|
|
|
|
var variable_image_frame;
|
|
|
|
var setting_variation_image_id;
|
|
|
|
var setting_variation_image;
|
|
|
|
var wp_media_post_id = wp.media.model.settings.post.id;
|
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
$( '#variable_product_options' ).on( 'click', '.upload_image_button', function ( event ) {
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
var $button = $( this );
|
|
|
|
var post_id = $button.attr( 'rel' );
|
|
|
|
var $parent = $button.closest( '.upload_image' );
|
2013-08-06 10:41:20 +00:00
|
|
|
setting_variation_image = $parent;
|
|
|
|
setting_variation_image_id = post_id;
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
2014-02-14 20:49:36 +00:00
|
|
|
if ( $button.is( '.remove' ) ) {
|
2013-08-06 10:41:20 +00:00
|
|
|
|
|
|
|
setting_variation_image.find( '.upload_image_id' ).val( '' );
|
2014-05-23 03:46:42 +00:00
|
|
|
setting_variation_image.find( 'img' ).eq( 0 ).attr( 'src', woocommerce_admin_meta_boxes_variations.woocommerce_placeholder_img_src );
|
2013-08-06 10:41:20 +00:00
|
|
|
setting_variation_image.find( '.upload_image_button' ).removeClass( 'remove' );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// If the media frame already exists, reopen it.
|
|
|
|
if ( variable_image_frame ) {
|
|
|
|
variable_image_frame.uploader.uploader.param( 'post_id', setting_variation_image_id );
|
|
|
|
variable_image_frame.open();
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
wp.media.model.settings.post.id = setting_variation_image_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the media frame.
|
|
|
|
variable_image_frame = wp.media.frames.variable_image = wp.media({
|
|
|
|
// Set the title of the modal.
|
|
|
|
title: woocommerce_admin_meta_boxes_variations.i18n_choose_image,
|
|
|
|
button: {
|
|
|
|
text: woocommerce_admin_meta_boxes_variations.i18n_set_image
|
2014-01-08 00:38:54 +00:00
|
|
|
},
|
|
|
|
states : [
|
|
|
|
new wp.media.controller.Library({
|
|
|
|
title: woocommerce_admin_meta_boxes_variations.i18n_choose_image,
|
|
|
|
filterable : 'all'
|
|
|
|
})
|
|
|
|
]
|
2013-08-06 10:41:20 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// When an image is selected, run a callback.
|
2014-02-14 20:49:36 +00:00
|
|
|
variable_image_frame.on( 'select', function () {
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-05-23 14:29:08 +00:00
|
|
|
var attachment = variable_image_frame.state().get( 'selection' ).first().toJSON(),
|
|
|
|
url = attachment.sizes.thumbnail ? attachment.sizes.thumbnail.url : attachment.url;
|
2013-08-06 10:41:20 +00:00
|
|
|
|
|
|
|
setting_variation_image.find( '.upload_image_id' ).val( attachment.id );
|
|
|
|
setting_variation_image.find( '.upload_image_button' ).addClass( 'remove' );
|
2014-05-23 14:29:08 +00:00
|
|
|
setting_variation_image.find( 'img' ).eq( 0 ).attr( 'src', url );
|
2013-08-06 10:41:20 +00:00
|
|
|
|
|
|
|
wp.media.model.settings.post.id = wp_media_post_id;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Finally, open the modal.
|
|
|
|
variable_image_frame.open();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Restore ID
|
2015-07-05 23:19:45 +00:00
|
|
|
$( 'a.add_media' ).on( 'click', function() {
|
2013-08-06 10:41:20 +00:00
|
|
|
wp.media.model.settings.post.id = wp_media_post_id;
|
2014-02-14 20:49:36 +00:00
|
|
|
});
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2015-07-02 20:42:22 +00:00
|
|
|
/**
|
2015-07-06 01:00:38 +00:00
|
|
|
* Product variations metabox ajax methods
|
2015-07-02 20:42:22 +00:00
|
|
|
*/
|
2015-07-06 01:00:38 +00:00
|
|
|
var wc_meta_boxes_product_variations_ajax = {
|
2015-07-02 20:42:22 +00:00
|
|
|
|
|
|
|
/**
|
2015-07-06 02:55:08 +00:00
|
|
|
* Initialize variations ajax methods
|
2015-07-02 20:42:22 +00:00
|
|
|
*/
|
|
|
|
init: function() {
|
2015-07-05 23:19:45 +00:00
|
|
|
$( 'li.variations_tab a' ).on( 'click', this.initial_load );
|
2015-07-06 02:55:08 +00:00
|
|
|
|
|
|
|
$( '#variable_product_options' )
|
|
|
|
.on( 'click', 'button.add_variation', this.add_variation )
|
|
|
|
.on( 'click', 'button.remove_variation', this.remove_variation )
|
|
|
|
.on( 'click', 'button.link_all_variations', this.link_all_variations );
|
|
|
|
|
2015-07-06 01:31:56 +00:00
|
|
|
$( 'body' ).on( 'change', '#variable_product_options_inner .woocommerce_variations :input', this.input_changed );
|
2015-07-02 20:42:22 +00:00
|
|
|
},
|
|
|
|
|
2015-07-06 02:55:08 +00:00
|
|
|
/**
|
|
|
|
* Check if have some edition before leave the page
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
check_for_editions: function() {
|
|
|
|
var wrapper = $( '#variable_product_options_inner .woocommerce_variations' );
|
|
|
|
|
|
|
|
if ( 'true' === wrapper.attr( 'data-edited' ) ) {
|
|
|
|
if ( window.confirm( woocommerce_admin_meta_boxes_variations.i18n_edited_variations ) ) {
|
|
|
|
wrapper.attr( 'data-edited', false );
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
2015-07-02 20:42:22 +00:00
|
|
|
/**
|
|
|
|
* Initial load variations
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
initial_load: function() {
|
2015-07-05 23:19:45 +00:00
|
|
|
if ( 0 === $( '#variable_product_options_inner .woocommerce_variations .woocommerce_variation' ).length ) {
|
2015-07-06 04:09:36 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_paginav( 0 );
|
|
|
|
wc_meta_boxes_product_variations_pagenav.set_page( 1 );
|
2015-07-05 23:19:45 +00:00
|
|
|
}
|
2015-07-02 20:42:22 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load variations via Ajax
|
|
|
|
*
|
|
|
|
* @param {int} page (default: 1)
|
|
|
|
* @param {int} per_page (default: 10)
|
|
|
|
*/
|
|
|
|
load_variations: function( page, per_page ) {
|
|
|
|
page = page || 1;
|
2015-07-06 01:00:38 +00:00
|
|
|
per_page = per_page || woocommerce_admin_meta_boxes_variations.variations_per_page;
|
2015-07-02 20:42:22 +00:00
|
|
|
|
|
|
|
var wrapper = $( '#variable_product_options_inner .woocommerce_variations' );
|
|
|
|
|
|
|
|
$( '#woocommerce-product-data' ).block({
|
|
|
|
message: null,
|
|
|
|
overlayCSS: {
|
|
|
|
background: '#fff',
|
|
|
|
opacity: 0.6
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: woocommerce_admin_meta_boxes_variations.ajax_url,
|
|
|
|
data: {
|
|
|
|
action: 'woocommerce_load_variations',
|
|
|
|
security: woocommerce_admin_meta_boxes_variations.load_variations_nonce,
|
|
|
|
product_id: wrapper.data( 'product_id' ),
|
|
|
|
attributes: wrapper.data( 'attributes' ),
|
|
|
|
page: page,
|
|
|
|
per_page: per_page
|
|
|
|
},
|
|
|
|
type: 'POST',
|
|
|
|
success: function( response ) {
|
2015-07-06 02:55:08 +00:00
|
|
|
wrapper.empty().append( response ).attr( 'data-page', page );
|
2015-07-06 01:00:38 +00:00
|
|
|
|
2015-07-02 20:42:22 +00:00
|
|
|
$( '#woocommerce-product-data' ).unblock();
|
|
|
|
}
|
|
|
|
});
|
2015-07-06 01:31:56 +00:00
|
|
|
},
|
|
|
|
|
2015-07-06 02:55:08 +00:00
|
|
|
/**
|
|
|
|
* Add variation
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
add_variation: function() {
|
|
|
|
if ( ! wc_meta_boxes_product_variations_ajax.check_for_editions() ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$( '#woocommerce-product-data' ).block({
|
|
|
|
message: null,
|
|
|
|
overlayCSS: {
|
|
|
|
background: '#fff',
|
|
|
|
opacity: 0.6
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
action: 'woocommerce_add_variation',
|
|
|
|
post_id: woocommerce_admin_meta_boxes_variations.post_id,
|
|
|
|
loop: $( '.woocommerce_variation' ).size(),
|
|
|
|
security: woocommerce_admin_meta_boxes_variations.add_variation_nonce
|
|
|
|
};
|
|
|
|
|
|
|
|
$.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function() {
|
2015-07-06 04:09:36 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_paginav( 1 );
|
2015-07-06 02:55:08 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_page( 1 );
|
|
|
|
|
|
|
|
$( '#woocommerce-product-data' ).unblock();
|
|
|
|
$( '#variable_product_options' ).trigger( 'woocommerce_variations_added' );
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove variation
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
remove_variation: function() {
|
|
|
|
if ( ! wc_meta_boxes_product_variations_ajax.check_for_editions() ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( window.confirm( woocommerce_admin_meta_boxes_variations.i18n_remove_variation ) ) {
|
|
|
|
var variation = $( this ).attr( 'rel' ),
|
|
|
|
variation_ids = [],
|
|
|
|
data = {
|
|
|
|
action: 'woocommerce_remove_variations'
|
|
|
|
};
|
|
|
|
|
|
|
|
$( '#woocommerce-product-data' ).block({
|
|
|
|
message: null,
|
|
|
|
overlayCSS: {
|
|
|
|
background: '#fff',
|
|
|
|
opacity: 0.6
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if ( 0 < variation ) {
|
|
|
|
variation_ids.push( variation );
|
|
|
|
|
|
|
|
data.variation_ids = variation_ids;
|
|
|
|
data.security = woocommerce_admin_meta_boxes_variations.delete_variations_nonce;
|
|
|
|
|
|
|
|
$.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function() {
|
|
|
|
var current = parseInt( $( '#variable_product_options_inner .woocommerce_variations' ).attr( 'data-page' ), 10 );
|
|
|
|
|
2015-07-06 04:09:36 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_paginav( -1 );
|
2015-07-06 02:55:08 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_page( current );
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$( '#woocommerce-product-data' ).unblock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Link all variations (or at least try :p)
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
link_all_variations: function() {
|
|
|
|
if ( ! wc_meta_boxes_product_variations_ajax.check_for_editions() ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( window.confirm( woocommerce_admin_meta_boxes_variations.i18n_link_all_variations ) ) {
|
|
|
|
$( '#woocommerce-product-data' ).block({
|
|
|
|
message: null,
|
|
|
|
overlayCSS: {
|
|
|
|
background: '#fff',
|
|
|
|
opacity: 0.6
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var data = {
|
|
|
|
action: 'woocommerce_link_all_variations',
|
|
|
|
post_id: woocommerce_admin_meta_boxes_variations.post_id,
|
|
|
|
security: woocommerce_admin_meta_boxes_variations.link_variation_nonce
|
|
|
|
};
|
|
|
|
|
|
|
|
$.post( woocommerce_admin_meta_boxes_variations.ajax_url, data, function( response ) {
|
|
|
|
var count = parseInt( response, 10 );
|
|
|
|
|
|
|
|
if ( 1 === count ) {
|
|
|
|
window.alert( count + ' ' + woocommerce_admin_meta_boxes_variations.i18n_variation_added );
|
|
|
|
} else if ( 0 === count || count > 1 ) {
|
|
|
|
window.alert( count + ' ' + woocommerce_admin_meta_boxes_variations.i18n_variations_added );
|
|
|
|
} else {
|
|
|
|
window.alert( woocommerce_admin_meta_boxes_variations.i18n_no_variations_added );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( count > 0 ) {
|
2015-07-06 04:09:36 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_paginav( count );
|
2015-07-06 02:55:08 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_page( 1 );
|
|
|
|
|
|
|
|
$( '#variable_product_options' ).trigger( 'woocommerce_variations_added' );
|
|
|
|
} else {
|
|
|
|
$( '#woocommerce-product-data' ).unblock();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2015-07-06 01:31:56 +00:00
|
|
|
/**
|
|
|
|
* Add new class when have changes in some input
|
|
|
|
*/
|
|
|
|
input_changed: function() {
|
|
|
|
$( '#variable_product_options_inner .woocommerce_variations' ).attr( 'data-edited', true );
|
2015-07-02 20:42:22 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-07-06 01:00:38 +00:00
|
|
|
/**
|
|
|
|
* Product variations pagenav
|
|
|
|
*/
|
|
|
|
var wc_meta_boxes_product_variations_pagenav = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize products variations meta box
|
|
|
|
*/
|
|
|
|
init: function() {
|
2015-07-06 04:09:36 +00:00
|
|
|
$( '.variations-pagenav' )
|
|
|
|
.on( 'change', '.page-selector', this.page_selector )
|
|
|
|
.on( 'click', '.first-page', this.first_page )
|
|
|
|
.on( 'click', '.prev-page', this.prev_page )
|
|
|
|
.on( 'click', '.next-page', this.next_page )
|
|
|
|
.on( 'click', '.last-page', this.last_page );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the pagenav fields
|
|
|
|
*
|
|
|
|
* @param {int} qty
|
|
|
|
*/
|
|
|
|
set_paginav: function( qty ) {
|
|
|
|
var wrapper = $( '#variable_product_options_inner .woocommerce_variations' ),
|
|
|
|
total = parseInt( wrapper.attr( 'data-total' ), 10 ),
|
|
|
|
new_qty = total + qty,
|
|
|
|
displaying_num = $( '.variations-pagenav .displaying-num' ),
|
|
|
|
total_pages = Math.ceil( new_qty / woocommerce_admin_meta_boxes_variations.variations_per_page ),
|
|
|
|
options = '';
|
|
|
|
|
|
|
|
// Set the new total of variations
|
|
|
|
wrapper.attr( 'data-total', new_qty );
|
|
|
|
|
|
|
|
if ( 1 === new_qty ) {
|
|
|
|
displaying_num.text( woocommerce_admin_meta_boxes_variations.i18n_item.replace( '%qty%', new_qty ) );
|
|
|
|
} else {
|
|
|
|
displaying_num.text( woocommerce_admin_meta_boxes_variations.i18n_items.replace( '%qty%', new_qty ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the new total of pages
|
|
|
|
wrapper.attr( 'data-total_pages', total_pages );
|
|
|
|
|
|
|
|
$( '.variations-pagenav .total-pages' ).text( total_pages );
|
|
|
|
|
|
|
|
// Set the new pagenav options
|
|
|
|
for ( var i = 1; i <= total_pages; i++ ) {
|
|
|
|
options += '<option value="' + i + '">' + i + '</option>';
|
|
|
|
}
|
|
|
|
|
|
|
|
$( '.page-selector' ).empty().html( options );
|
2015-07-06 01:00:38 +00:00
|
|
|
},
|
|
|
|
|
2015-07-06 01:31:56 +00:00
|
|
|
/**
|
|
|
|
* Check button if enabled and if don't have editions
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
check_is_enabled: function( current ) {
|
2015-07-06 02:55:08 +00:00
|
|
|
return ! $( current ).hasClass( 'disabled' ) && wc_meta_boxes_product_variations_ajax.check_for_editions();
|
2015-07-06 01:31:56 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Change "disabled" class on pagenav
|
|
|
|
*/
|
|
|
|
change_classes: function( selected, total ) {
|
2015-07-06 04:09:36 +00:00
|
|
|
var first_page = $( '.variations-pagenav .first-page' ),
|
|
|
|
prev_page = $( '.variations-pagenav .prev-page' ),
|
|
|
|
next_page = $( '.variations-pagenav .next-page' ),
|
|
|
|
last_page = $( '.variations-pagenav .last-page' );
|
|
|
|
|
2015-07-06 01:00:38 +00:00
|
|
|
if ( 1 === selected ) {
|
2015-07-06 04:09:36 +00:00
|
|
|
first_page.addClass( 'disabled' );
|
|
|
|
prev_page.addClass( 'disabled' );
|
2015-07-06 01:00:38 +00:00
|
|
|
} else {
|
2015-07-06 04:09:36 +00:00
|
|
|
first_page.removeClass( 'disabled' );
|
|
|
|
prev_page.removeClass( 'disabled' );
|
2015-07-06 01:00:38 +00:00
|
|
|
}
|
|
|
|
|
2015-07-06 01:31:56 +00:00
|
|
|
if ( total === selected ) {
|
2015-07-06 04:09:36 +00:00
|
|
|
next_page.addClass( 'disabled' );
|
|
|
|
last_page.addClass( 'disabled' );
|
2015-07-06 01:00:38 +00:00
|
|
|
} else {
|
2015-07-06 04:09:36 +00:00
|
|
|
next_page.removeClass( 'disabled' );
|
|
|
|
last_page.removeClass( 'disabled' );
|
2015-07-06 01:00:38 +00:00
|
|
|
}
|
2015-07-06 01:31:56 +00:00
|
|
|
},
|
|
|
|
|
2015-07-06 02:55:08 +00:00
|
|
|
/**
|
|
|
|
* Set page
|
|
|
|
*/
|
|
|
|
set_page: function( page ) {
|
|
|
|
$( '.variations-pagenav .page-selector' ).val( page ).change();
|
|
|
|
},
|
|
|
|
|
2015-07-06 01:31:56 +00:00
|
|
|
/**
|
|
|
|
* Paginav pagination selector
|
|
|
|
*/
|
|
|
|
page_selector: function() {
|
|
|
|
var selected = parseInt( $( this ).val(), 10 ),
|
|
|
|
wrapper = $( '#variable_product_options_inner .woocommerce_variations' );
|
2015-07-06 01:00:38 +00:00
|
|
|
|
2015-07-06 02:55:08 +00:00
|
|
|
if ( wc_meta_boxes_product_variations_ajax.check_for_editions() ) {
|
2015-07-06 04:09:36 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.change_classes( selected, parseInt( wrapper.attr( 'data-total_pages' ), 10 ) );
|
2015-07-06 01:31:56 +00:00
|
|
|
wc_meta_boxes_product_variations_ajax.load_variations( selected );
|
|
|
|
} else {
|
2015-07-06 02:55:08 +00:00
|
|
|
$( this ).val( parseInt( wrapper.data( 'page' ), 10 ) );
|
2015-07-06 01:31:56 +00:00
|
|
|
}
|
2015-07-06 01:00:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Go to first page
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
first_page: function() {
|
2015-07-06 01:31:56 +00:00
|
|
|
if ( wc_meta_boxes_product_variations_pagenav.check_is_enabled( this ) ) {
|
2015-07-06 02:55:08 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_page( 1 );
|
2015-07-06 01:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Go to previous page
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
prev_page: function() {
|
2015-07-06 01:31:56 +00:00
|
|
|
if ( wc_meta_boxes_product_variations_pagenav.check_is_enabled( this ) ) {
|
2015-07-06 01:00:38 +00:00
|
|
|
var wrapper = $( '#variable_product_options_inner .woocommerce_variations' ),
|
2015-07-06 02:55:08 +00:00
|
|
|
prev_page = parseInt( wrapper.data( 'page' ), 10 ) - 1,
|
2015-07-06 01:00:38 +00:00
|
|
|
new_page = ( 0 < prev_page ) ? prev_page : 1;
|
|
|
|
|
2015-07-06 02:55:08 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_page( new_page );
|
2015-07-06 01:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Go to next page
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
next_page: function() {
|
2015-07-06 01:31:56 +00:00
|
|
|
if ( wc_meta_boxes_product_variations_pagenav.check_is_enabled( this ) ) {
|
2015-07-06 01:00:38 +00:00
|
|
|
var wrapper = $( '#variable_product_options_inner .woocommerce_variations' ),
|
2015-07-06 04:09:36 +00:00
|
|
|
total_pages = parseInt( wrapper.data( 'total_pages' ), 10 ),
|
2015-07-06 02:55:08 +00:00
|
|
|
next_page = parseInt( wrapper.data( 'page' ), 10 ) + 1,
|
2015-07-06 01:00:38 +00:00
|
|
|
new_page = ( total_pages >= next_page ) ? next_page : total_pages;
|
|
|
|
|
2015-07-06 02:55:08 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_page( new_page );
|
2015-07-06 01:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Go to last page
|
|
|
|
*
|
|
|
|
* @return {bool}
|
|
|
|
*/
|
|
|
|
last_page: function() {
|
2015-07-06 01:31:56 +00:00
|
|
|
if ( wc_meta_boxes_product_variations_pagenav.check_is_enabled( this ) ) {
|
2015-07-06 01:00:38 +00:00
|
|
|
var last_page = $( '#variable_product_options_inner .woocommerce_variations' ).data( 'total_pages' );
|
|
|
|
|
2015-07-06 02:55:08 +00:00
|
|
|
wc_meta_boxes_product_variations_pagenav.set_page( last_page );
|
2015-07-06 01:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
wc_meta_boxes_product_variations_ajax.init();
|
|
|
|
wc_meta_boxes_product_variations_pagenav.init();
|
2015-07-02 20:42:22 +00:00
|
|
|
|
2014-02-14 20:24:48 +00:00
|
|
|
});
|