Files
wc-composable-product/assets/js/admin.js
magdev 867abc8f63 Document v1.1.4 session: Fixed price field enhancement
Added session history for v1.1.4 which introduced:
- Fixed price field in Composable Options tab
- JavaScript toggle based on pricing mode selection
- Improved admin UX with progressive disclosure

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-31 21:01:52 +01:00

68 lines
2.0 KiB
JavaScript

/**
* Admin JavaScript for Composable Products
*
* @package WC_Composable_Product
*/
(function($) {
'use strict';
$(document).ready(function() {
/**
* Show/hide product data tab for composable products
*/
$('select#product-type').on('change', function() {
const productType = $(this).val();
if (productType === 'composable') {
$('.show_if_composable').show();
$('.hide_if_composable').hide();
$('#composable_product_data').show();
$('.product_data_tabs .composable_options a').show();
} else {
$('.show_if_composable').hide();
$('#composable_product_data').hide();
$('.product_data_tabs .composable_options a').hide();
}
}).trigger('change');
/**
* Toggle criteria groups based on selected type
*/
$('#_composable_criteria_type').on('change', function() {
const criteriaType = $(this).val();
$('.composable_criteria_group').hide();
$('#composable_criteria_' + criteriaType).show();
}).trigger('change');
/**
* Toggle fixed price field based on pricing mode
*/
function toggleFixedPriceField() {
const pricingMode = $('#_composable_pricing_mode').val();
const $fixedPriceField = $('.composable_fixed_price_field');
if (pricingMode === 'fixed') {
$fixedPriceField.show();
} else {
$fixedPriceField.hide();
}
}
$('#_composable_pricing_mode').on('change', toggleFixedPriceField);
toggleFixedPriceField();
/**
* Initialize enhanced select for categories and tags
*/
if ($.fn.selectWoo) {
$('#_composable_categories, #_composable_tags').selectWoo({
placeholder: 'Select options...',
allowClear: true
});
}
});
})(jQuery);