import wixLocationFrontend from 'wix-location-frontend';
import { cart } from 'wix-stores-frontend';
$w.onReady(async function () {
const product = await $w('#productPage1').getProduct();
const isStockKayak = product.name.toLowerCase().includes('stock');
$w('#text193').collapse();
$w('#text195').collapse();
$w('#button10').label = 'Request a Quote';
$w('#button11').label = 'Buy Stock Kayak';
if (isStockKayak) {
$w('#button10').collapse();
$w('#button11').expand();
} else {
$w('#button11').collapse();
$w('#button10').expand();
}
$w('#button10').onClick(() => {
wixLocationFrontend.to('/kayak-quote');
});
$w('#button11').onClick(async () => {
await cart.addProducts([{ productId: product._id, quantity: 1 }]);
wixLocationFrontend.to('/cart-page');
});
});
import wixLocationFrontend from 'wix-location-frontend';
import { cart } from 'wix-stores-frontend';
$w.onReady(async function () {
const product = await $w('#productPage1').getProduct();
const isStockKayak = product.name.toLowerCase().includes('stock');
$w('#text193').collapse();
$w('#text195').collapse();
$w('#text196').collapse();
$w('#button11').collapse();
$w('#button10').label = isStockKayak ? 'Buy Stock Kayak' : 'Request a Quote';
$w('#button10').expand();
$w('#button10').onClick(async () => {
if (isStockKayak) {
await cart.addProducts([{ productId: product._id, quantity: 1 }]);
wixLocationFrontend.to('/cart-page');
} else {
wixLocationFrontend.to('/kayak-quote');
}
});
});