diff --git a/static/js/shop/ProductCartItem.jsx b/static/js/shop/ProductCartItem.jsx index 8216506..39b7fc7 100644 --- a/static/js/shop/ProductCartItem.jsx +++ b/static/js/shop/ProductCartItem.jsx @@ -25,6 +25,7 @@ export function ProductCartItem({card_index, crate_index, first, last}) { const card_counted_resources = useShopStore(state => state.crates[crate_index].items[card_index].counted_resources, compareObjectsEmptiness); const highlighted = useShopStore((state) => state.crates[crate_index].id === state.highlighted.crate && card_index === state.highlighted.card); + const options_disabled = useShopStore((state) => !!state.crateParams(state.crates[crate_index].crate_mode).warnings_disabled); const crate_id = useShopStore((state) => state.crates[crate_index].id); const setHighlight = useShopStore((state) => state.highlightCard); const removeHighlight = useShopStore((state) => state.highlightReset); @@ -34,9 +35,9 @@ export function ProductCartItem({card_index, crate_index, first, last}) { console.log("ProductCartItem renders: ", renderCount) - const options = card && card.options && card.options.length > 0; - const warnings = card_show_warnings && card_show_warnings.length > 0; - const resources = card_counted_resources && card_counted_resources.length > 0; + const options = !options_disabled && card && card.options && card.options.length > 0; + const warnings = !options_disabled && card_show_warnings && card_show_warnings.length > 0; + const resources = !options_disabled && card_counted_resources && card_counted_resources.length > 0; return ( diff --git a/static/js/shop/SummaryCrateCard.jsx b/static/js/shop/SummaryCrateCard.jsx index a998e13..29444ce 100644 --- a/static/js/shop/SummaryCrateCard.jsx +++ b/static/js/shop/SummaryCrateCard.jsx @@ -23,14 +23,16 @@ export function SummaryCrateCard({crate_index, card_index}) { (a, b) => a.id === b.id); const card_show_warnings = useShopStore(state => state.crates[crate_index].items[card_index].show_warnings, compareObjectsEmptiness); const card_options_data = useShopStore(state => state.crates[crate_index].items[card_index].options_data, compareObjectsEmptiness); + const options_disabled = useShopStore((state) => !!state.crateParams(state.crates[crate_index].crate_mode).warnings_disabled); + // #!render_count console.log("SummaryCrateCard renders: ", renderCount) - const options = card && card.options && card.options.length > 0; - const options_data = card_options_data && Object.keys(card_options_data).length > 0; - const warnings = card_show_warnings && card_show_warnings.length > 0; + const options = !options_disabled && card && card.options && card.options.length > 0; + const options_data = !options_disabled && card_options_data && Object.keys(card_options_data).length > 0; + const warnings = !options_disabled && card_show_warnings && card_show_warnings.length > 0; return (