@meeovi/layer-commerce 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/components/catalog/product/ProductAccordion/ProductAccordion.vue +39 -0
- package/app/components/catalog/product/ProductAccordion/__tests__/ProductAccordion.spec.ts +15 -0
- package/app/components/catalog/product/ProductAccordion/types.ts +5 -0
- package/app/components/catalog/product/ProductProperties/ProductProperties.vue +50 -0
- package/app/components/catalog/product/ProductProperties/__tests__/ProductProperties.spec.ts +15 -0
- package/app/components/catalog/product/ProductProperties/types.ts +5 -0
- package/app/components/catalog/product/ProductSlider/ProductSlider.vue +28 -0
- package/app/components/catalog/product/ProductSlider/__tests__/ProductSlider.spec.ts +14 -0
- package/app/components/catalog/product/ProductSlider/types.ts +7 -0
- package/app/components/catalog/product/RecommendedProducts/RecommendedProducts.vue +12 -0
- package/app/components/catalog/product/RecommendedProducts/types.ts +5 -0
- package/app/components/catalog/product/RenderContentProductSlider/RenderContentProductSlider.vue +11 -0
- package/app/components/catalog/product/add-attribute.vue +54 -0
- package/app/components/catalog/product/add-product-type.vue +54 -0
- package/app/components/catalog/product/add-product.vue +53 -0
- package/app/components/catalog/product/add-showcase.vue +52 -0
- package/app/components/catalog/product/add-station.vue +54 -0
- package/app/components/catalog/product/bestsellers.vue +69 -0
- package/app/components/catalog/product/bidding.vue +93 -0
- package/app/components/catalog/product/colorOptions.vue +58 -0
- package/app/components/catalog/product/deals.vue +61 -0
- package/app/components/catalog/product/exclusives.vue +58 -0
- package/app/components/catalog/product/featuredproducts.vue +69 -0
- package/app/components/catalog/product/giftCard.vue +63 -0
- package/app/components/catalog/product/latestproducts.vue +58 -0
- package/app/components/catalog/product/productCard.vue +71 -0
- package/app/components/catalog/product/productCompare.vue +60 -0
- package/app/components/catalog/product/productCompareTable.vue +441 -0
- package/app/components/catalog/product/productDetails.vue +120 -0
- package/app/components/catalog/product/productFaqs.vue +17 -0
- package/app/components/catalog/product/productGallery.vue +16 -0
- package/app/components/catalog/product/productQty.vue +54 -0
- package/app/components/catalog/product/productReviews.vue +56 -0
- package/app/components/catalog/product/productSpecs.vue +116 -0
- package/app/components/catalog/product/radiostation.vue +36 -0
- package/app/components/catalog/product/recentlyviewed.vue +43 -0
- package/app/components/catalog/product/relatedbrands.vue +54 -0
- package/app/components/catalog/product/relatedproducts.vue +58 -0
- package/app/components/catalog/product/relatedstations.vue +40 -0
- package/app/components/catalog/product/shippingOptions.vue +41 -0
- package/app/components/catalog/product/sizeOptions.vue +47 -0
- package/app/components/catalog/product/update-attribute-set.vue +209 -0
- package/app/components/catalog/product/update-attribute.vue +118 -0
- package/app/components/catalog/product/update-product.vue +372 -0
- package/app/components/catalog/product/update-showcase.vue +153 -0
- package/app/components/catalog/shops/relatedstores.vue +52 -0
- package/app/components/catalog/shops/restaurant.vue +66 -0
- package/app/components/catalog/shops/stores.vue +44 -0
- package/app/components/catalog/vendor/README.md +3 -0
- package/app/components/catalog/vendor/blocks/biggestcustomers.vue +33 -0
- package/app/components/catalog/vendor/blocks/lowestselling.vue +33 -0
- package/app/components/catalog/vendor/blocks/topcategories.vue +33 -0
- package/app/components/catalog/vendor/blocks/topproducts.vue +27 -0
- package/app/components/catalog/vendor/pages/attributes.vue +43 -0
- package/app/components/catalog/vendor/pages/commissions.vue +43 -0
- package/app/components/catalog/vendor/pages/crm.vue +67 -0
- package/app/components/catalog/vendor/pages/dashboard.vue +46 -0
- package/app/components/catalog/vendor/pages/emails.vue +43 -0
- package/app/components/catalog/vendor/pages/enquiries.vue +43 -0
- package/app/components/catalog/vendor/pages/invoices.vue +43 -0
- package/app/components/catalog/vendor/pages/orders.vue +68 -0
- package/app/components/catalog/vendor/pages/products.vue +55 -0
- package/app/components/catalog/vendor/pages/reviews.vue +48 -0
- package/app/components/catalog/vendor/pages/shipments.vue +43 -0
- package/app/components/catalog/vendor/pages/stores.vue +43 -0
- package/app/components/content/blocks/breadcrumbs.vue +0 -0
- package/app/components/content/blocks/currencySwitcher.vue +0 -0
- package/app/components/content/blocks/languageSwitcher.vue +0 -0
- package/app/components/content/blocks/videoproduct.vue +9 -0
- package/app/components/content/pages/checkout.vue +118 -0
- package/app/components/content/pages/meeoviGlobal.vue +68 -0
- package/app/components/content/pages/pickup-locations.vue +238 -0
- package/app/components/content/pages/showcases.vue +90 -0
- package/app/components/content/pages/success.vue +60 -0
- package/app/components/marketing/add-brand.vue +54 -0
- package/app/components/marketing/add-incentive.vue +54 -0
- package/app/components/marketing/promotions/giftcards.vue +127 -0
- package/app/components/marketing/promotions/subscriptions.vue +134 -0
- package/app/components/marketing/update-incentive.vue +326 -0
- package/app/components/menus/lowernav.vue +78 -0
- package/app/components/partials/LocaleSelector.vue +24 -0
- package/app/components/partials/ShoppingCart.vue +128 -0
- package/app/components/partials/StripePayment.vue +149 -0
- package/app/components/partials/addToCartBtn.vue +40 -0
- package/app/components/partials/cartItem.vue +124 -0
- package/app/components/partials/checkoutButton.vue +44 -0
- package/app/components/partials/compareBtn.vue +68 -0
- package/app/components/partials/ratings.vue +13 -0
- package/app/components/partials/store/CurrencySelector.vue +133 -0
- package/app/components/partials/store/StoreSwitcher.vue +13 -0
- package/app/components/related/brandCard.vue +41 -0
- package/app/components/related/incentiveCard.vue +44 -0
- package/app/components/related/invoiceCard.vue +43 -0
- package/app/components/related/orderCard.vue +43 -0
- package/app/components/related/relatedproducts.vue +17 -0
- package/app/components/sales/CartPageContent/CartPageContent.vue +37 -0
- package/app/components/sales/CheckoutAddress/CheckoutAddress.vue +50 -0
- package/app/components/sales/CheckoutAddress/__tests__/CheckoutAddress.spec.ts +16 -0
- package/app/components/sales/CheckoutAddress/types.ts +15 -0
- package/app/components/sales/CheckoutPayment/CheckoutPayment.vue +68 -0
- package/app/components/sales/CheckoutPayment/__tests__/CheckoutPayment.spec.ts +14 -0
- package/app/components/sales/CheckoutPayment/types.ts +12 -0
- package/app/components/sales/OrderSummary/OrderSummary.vue +57 -0
- package/app/components/sales/OrderSummary/__tests__/ContactInformation.spec.ts +52 -0
- package/app/components/sales/OrderSummary/types.ts +5 -0
- package/app/components/sales/incentives.vue +247 -0
- package/app/components/sales/invoices.vue +107 -0
- package/app/components/sales/orders.vue +378 -0
- package/app/components/sales/shipments.vue +65 -0
- package/app/components/sales/transactions.vue +109 -0
- package/app/components/shop/add-shop.vue +54 -0
- package/app/components/shop/cart/cartItem.vue +182 -0
- package/app/components/shop/cart/checkout.vue +415 -0
- package/app/components/shop/checkout/StripeCardElement.vue +206 -0
- package/app/components/shop/checkout/StripeCheckout.vue +49 -0
- package/app/components/shop/checkout/addressBilling.vue +263 -0
- package/app/components/shop/checkout/addressShipping.vue +175 -0
- package/app/components/shop/checkout/cart/ProductItem.vue +56 -0
- package/app/components/shop/checkout/cart/PromotionItem.vue +53 -0
- package/app/composables/_types.ts +17 -0
- package/app/composables/adapters/abstract/cartAdapter.ts +0 -0
- package/app/composables/adapters/abstract/categoryAdapter.ts +0 -0
- package/app/composables/adapters/abstract/customerAdapter.ts +0 -0
- package/app/composables/adapters/abstract/inventoryAdapter.ts +0 -0
- package/app/composables/adapters/abstract/orderAdapter.ts +0 -0
- package/app/composables/adapters/abstract/productAdapter.ts +7 -0
- package/app/composables/cart/registry.ts +13 -0
- package/app/composables/cart/types.ts +18 -0
- package/app/composables/cart/useCart.ts +15 -0
- package/app/composables/config.ts +19 -0
- package/app/composables/defs/apiDefinitions.ts +55 -0
- package/app/composables/defs/extension.feature +40 -0
- package/app/composables/defs/extension.mocks.ts +39 -0
- package/app/composables/defs/extension.test.ts +280 -0
- package/app/composables/defs/extension.ts +236 -0
- package/app/composables/defs/index.ts +3 -0
- package/app/composables/defs/types.ts +136 -0
- package/app/composables/domain/cart.ts +0 -0
- package/app/composables/domain/category.ts +0 -0
- package/app/composables/domain/order.ts +0 -0
- package/app/composables/domain/price.ts +0 -0
- package/app/composables/domain/product.ts +8 -0
- package/app/composables/domain/reward.ts +0 -0
- package/app/composables/domain/transactions.ts +0 -0
- package/app/composables/helpers/contextualizedNormalizers.feature +14 -0
- package/app/composables/helpers/contextualizedNormalizers.test.ts +85 -0
- package/app/composables/helpers/contextualizedNormalizers.ts +20 -0
- package/app/composables/helpers/index.ts +1 -0
- package/app/composables/index.ts +5 -0
- package/app/composables/methods/auth.ts +83 -0
- package/app/composables/methods/cart.ts +119 -0
- package/app/composables/methods/category.ts +27 -0
- package/app/composables/methods/checkout.ts +54 -0
- package/app/composables/methods/customer.ts +52 -0
- package/app/composables/methods/helpers.ts +5 -0
- package/app/composables/methods/index.ts +75 -0
- package/app/composables/methods/order.ts +39 -0
- package/app/composables/methods/product.ts +95 -0
- package/app/composables/methods/settings.ts +16 -0
- package/app/composables/models/cart.ts +95 -0
- package/app/composables/models/category.ts +13 -0
- package/app/composables/models/checkout.ts +17 -0
- package/app/composables/models/customer.ts +16 -0
- package/app/composables/models/facets.ts +25 -0
- package/app/composables/models/index.ts +94 -0
- package/app/composables/models/order.ts +43 -0
- package/app/composables/models/product.ts +73 -0
- package/app/composables/models/shared.ts +75 -0
- package/app/composables/products/registry.ts +13 -0
- package/app/composables/products/types.ts +13 -0
- package/app/composables/products/useEvents.ts +0 -0
- package/app/composables/products/useGiftCards.ts +0 -0
- package/app/composables/products/useProducts.ts +12 -0
- package/app/composables/products/useSubscriptions.ts +0 -0
- package/app/composables/stores/cart.ts +218 -0
- package/app/composables/stores/cartStore.ts +300 -0
- package/app/composables/stores/checkout.ts +19 -0
- package/app/composables/stores/compare.ts +65 -0
- package/app/composables/stores/currency.js +29 -0
- package/app/composables/stores/digital-products.js +11 -0
- package/app/composables/stores/index.js +0 -0
- package/app/composables/stores/orders.ts +161 -0
- package/app/composables/stores/product.ts +26 -0
- package/app/composables/stores/productList.ts +0 -0
- package/app/composables/stores/productListInfo.ts +0 -0
- package/app/composables/stores/products.ts +112 -0
- package/app/composables/stores/recentlyViewedProducts.ts +0 -0
- package/app/composables/stores/review.ts +25 -0
- package/app/composables/stores/storeInPickUp.ts +22 -0
- package/app/composables/stores/user.ts +20 -0
- package/app/composables/stores/wishlist.ts +19 -0
- package/app/composables/types/Order.type.ts +181 -0
- package/app/composables/types/index.ts +285 -0
- package/app/composables/types/product.ts +14 -0
- package/app/composables/useBreakpoints/index.ts +1 -0
- package/app/composables/useBreakpoints/useBreakpoints.ts +28 -0
- package/app/composables/useCart/__tests__/useCart.spec.ts +11 -0
- package/app/composables/useCart/index.ts +1 -0
- package/app/composables/useCart/types.ts +17 -0
- package/app/composables/useCart/useCart.ts +46 -0
- package/app/composables/useCartShippingMethods/__tests__/useCartShippingMethods.spec.ts +11 -0
- package/app/composables/useCartShippingMethods/index.ts +1 -0
- package/app/composables/useCartShippingMethods/types.ts +17 -0
- package/app/composables/useCartShippingMethods/useCartShippingMethods.ts +47 -0
- package/app/composables/useContent/index.ts +1 -0
- package/app/composables/useContent/types.ts +44 -0
- package/app/composables/useContent/useContent.ts +45 -0
- package/app/composables/useCustomer/__tests__/useCustomer.spec.ts +25 -0
- package/app/composables/useCustomer/index.ts +2 -0
- package/app/composables/useCustomer/types.ts +17 -0
- package/app/composables/useCustomer/useCustomer.ts +40 -0
- package/app/composables/useCustomerAddress/__tests__/useCustomerAddress.spec.ts +11 -0
- package/app/composables/useCustomerAddress/index.ts +2 -0
- package/app/composables/useCustomerAddress/types.ts +17 -0
- package/app/composables/useCustomerAddress/useCustomerAddress.ts +55 -0
- package/app/composables/useCustomerOrder/__tests__/useCustomerOrder.spec.ts +11 -0
- package/app/composables/useCustomerOrder/adress.ts +10 -0
- package/app/composables/useCustomerOrder/index.ts +2 -0
- package/app/composables/useCustomerOrder/product.ts +37 -0
- package/app/composables/useCustomerOrder/types.ts +40 -0
- package/app/composables/useCustomerOrder/useCustomerOrder.ts +63 -0
- package/app/composables/useCustomerOrders/__tests__/useCustomerOrders.spec.ts +11 -0
- package/app/composables/useCustomerOrders/index.ts +2 -0
- package/app/composables/useCustomerOrders/types.ts +20 -0
- package/app/composables/useCustomerOrders/useCustomerOrders.ts +56 -0
- package/app/composables/useCustomerReturns/__tests__/useCustomerReturns.spec.ts +11 -0
- package/app/composables/useCustomerReturns/index.ts +2 -0
- package/app/composables/useCustomerReturns/types.ts +17 -0
- package/app/composables/useCustomerReturns/useCustomerReturns.ts +41 -0
- package/app/composables/useHandleError/index.ts +1 -0
- package/app/composables/useHandleError/types.ts +11 -0
- package/app/composables/useHandleError/useHandleError.ts +27 -0
- package/app/composables/usePageTitle.ts +16 -0
- package/app/composables/useProduct/index.ts +2 -0
- package/app/composables/useProduct/types.ts +17 -0
- package/app/composables/useProduct/useProduct.ts +42 -0
- package/app/composables/useProductAttribute/__tests__/useProduct.mock.ts +31 -0
- package/app/composables/useProductAttribute/__tests__/useProductAttribute.spec.ts +14 -0
- package/app/composables/useProductAttribute/index.ts +1 -0
- package/app/composables/useProductAttribute/useProductAttribute.ts +37 -0
- package/app/composables/useProductRecommended/__tests__/useProductRecommended.spec.ts +12 -0
- package/app/composables/useProductRecommended/index.ts +1 -0
- package/app/composables/useProductRecommended/types.ts +17 -0
- package/app/composables/useProductRecommended/useProductRecommended.ts +43 -0
- package/app/composables/useProductReviews/__tests__/productReviews.mock.ts +20 -0
- package/app/composables/useProductReviews/__tests__/useProductReviews.spec.ts +22 -0
- package/app/composables/useProductReviews/index.ts +2 -0
- package/app/composables/useProductReviews/types.ts +17 -0
- package/app/composables/useProductReviews/useProductReviews.ts +46 -0
- package/app/composables/useProducts/__tests__/useProducts.spec.ts +11 -0
- package/app/composables/useProducts/types.ts +17 -0
- package/app/composables/useProducts/useProducts.ts +41 -0
- package/app/composables/utils/countryList.ts +14 -0
- package/app/composables/utils/currency.js +56 -0
- package/app/composables/utils/glossary.ts +0 -0
- package/app/composables/utils/importExport.ts +0 -0
- package/app/composables/utils/index.js +0 -0
- package/app/composables/utils/print.ts +0 -0
- package/app/composables/utils/shopThemes.ts +0 -0
- package/app/composables/utils/statistics.ts +0 -0
- package/app/composables/utils/stock.ts +0 -0
- package/app/composables/utils/stripe.ts +16 -0
- package/app/composables/utils/taxation.ts +0 -0
- package/app/composables/utils/tellFriends.ts +0 -0
- package/app/composables/validationRules/index.ts +1 -0
- package/app/composables/validationRules/password.feature +67 -0
- package/app/composables/validationRules/password.test.ts +89 -0
- package/app/composables/validationRules/password.ts +25 -0
- package/app/composables/vendors/index.ts +0 -0
- package/app/composables/vendors/registry.ts +0 -0
- package/app/composables/vendors/useAffiliates.ts +0 -0
- package/app/composables/vendors/useCommission.ts +0 -0
- package/app/pages/brand/[...slug].vue +92 -0
- package/app/pages/brands.vue +90 -0
- package/app/pages/cart.vue +142 -0
- package/app/pages/compare.vue +166 -0
- package/app/pages/incentive/[...id].vue +66 -0
- package/app/pages/invoice/[id].vue +309 -0
- package/app/pages/order/[id].vue +327 -0
- package/app/pages/product/[...id].vue +309 -0
- package/app/pages/product/showcases/index.vue +86 -0
- package/app/pages/shipment/[...id].vue +176 -0
- package/app/pages/shop/[...slug].vue +164 -0
- package/app/pages/shops.vue +83 -0
- package/app/pages/subscription/[...id].vue +147 -0
- package/app/pages/transaction/[...id].vue +74 -0
- package/app/types/shims-imports.d.ts +13 -0
- package/app/utils/client.ts +26 -0
- package/app/utils/index.ts +53 -0
- package/app/utils/normalizer.ts +23 -0
- package/app/utils/normalizers/magento.ts +29 -0
- package/app/utils/normalizers/shopify.ts +29 -0
- package/dist/client.js +1 -1
- package/nuxt.config.ts +11 -0
- package/package.json +9 -24
- package/tsconfig.json +15 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div data-testid="product-accordion">
|
|
3
|
+
<UiAccordionItem
|
|
4
|
+
summary-class="md:rounded-md w-full hover:bg-neutral-100 py-2 pl-4 pr-3 flex justify-between items-center"
|
|
5
|
+
v-model="productDetailsOpen"
|
|
6
|
+
>
|
|
7
|
+
<template #summary>
|
|
8
|
+
<h2 class="font-bold font-headings text-lg leading-6 md:text-2xl">
|
|
9
|
+
{{ $t('productDetails') }}
|
|
10
|
+
</h2>
|
|
11
|
+
</template>
|
|
12
|
+
<p>{{ product.description }}</p>
|
|
13
|
+
</UiAccordionItem>
|
|
14
|
+
<UiDivider class="my-4" />
|
|
15
|
+
<UiAccordionItem
|
|
16
|
+
summary-class="md:rounded-md w-full hover:bg-neutral-100 py-2 pl-4 pr-3 flex justify-between items-center"
|
|
17
|
+
>
|
|
18
|
+
<template #summary>
|
|
19
|
+
<h2 class="font-bold font-headings text-lg leading-6 md:text-2xl">
|
|
20
|
+
{{ $t('customerReviews') }}
|
|
21
|
+
</h2>
|
|
22
|
+
</template>
|
|
23
|
+
<UiReview v-for="review in productReviews" :key="review.id" :review="review" class="mb-4" />
|
|
24
|
+
</UiAccordionItem>
|
|
25
|
+
</div>
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<script setup lang="ts">
|
|
29
|
+
import type { ProductAccordionPropsType } from '~/components/ProductAccordion/types';
|
|
30
|
+
|
|
31
|
+
const props = defineProps<ProductAccordionPropsType>();
|
|
32
|
+
|
|
33
|
+
const { product } = toRefs(props);
|
|
34
|
+
const { data: productReviews, fetchProductReviews } = useProductReviews(product.value.slug);
|
|
35
|
+
|
|
36
|
+
const productDetailsOpen = ref(true);
|
|
37
|
+
|
|
38
|
+
fetchProductReviews(product.value.slug);
|
|
39
|
+
</script>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { mount } from '@vue/test-utils';
|
|
2
|
+
import ProductAccordion from '~/components/ProductAccordion/ProductAccordion.vue';
|
|
3
|
+
import { mockProduct } from '~/composables/useProductAttribute/__tests__/useProduct.mock';
|
|
4
|
+
|
|
5
|
+
describe('<ProductAccordion />', () => {
|
|
6
|
+
it('should render component', () => {
|
|
7
|
+
const { getByTestId } = mount(ProductAccordion, {
|
|
8
|
+
props: {
|
|
9
|
+
product: mockProduct,
|
|
10
|
+
},
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
expect(getByTestId('product-accordion'));
|
|
14
|
+
});
|
|
15
|
+
});
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="px-4" data-testid="product-properties">
|
|
3
|
+
<fieldset v-if="sizes?.length" class="pb-4">
|
|
4
|
+
<legend class="block mb-2 text-base font-medium leading-6 text-neutral-900">{{ $t('size') }}</legend>
|
|
5
|
+
<span v-for="{ label, value } in sizes" class="mr-2 mb-2 uppercase" :key="value">
|
|
6
|
+
<SfChip
|
|
7
|
+
class="min-w-[48px]"
|
|
8
|
+
size="sm"
|
|
9
|
+
:input-props="{
|
|
10
|
+
onClick: (e) => value == selectedSize && e.preventDefault(),
|
|
11
|
+
}"
|
|
12
|
+
:model-value="value === selectedSize"
|
|
13
|
+
@update:model-value="value !== selectedSize && setAttribute('size', value)"
|
|
14
|
+
>
|
|
15
|
+
{{ label }}
|
|
16
|
+
</SfChip>
|
|
17
|
+
</span>
|
|
18
|
+
</fieldset>
|
|
19
|
+
<fieldset v-if="sizes?.length" class="pb-2">
|
|
20
|
+
<legend class="block mb-2 text-base font-medium leading-6 text-neutral-900">{{ $t('color') }}</legend>
|
|
21
|
+
<span v-for="{ label, value } in colors" class="mr-2 mb-2 uppercase" :key="value">
|
|
22
|
+
<SfChip
|
|
23
|
+
class="min-w-[48px]"
|
|
24
|
+
size="sm"
|
|
25
|
+
:input-props="{
|
|
26
|
+
onClick: (e) => value == selectedSize && e.preventDefault(),
|
|
27
|
+
}"
|
|
28
|
+
:model-value="value === selectedColor"
|
|
29
|
+
@update:model-value="setAttribute('color', value)"
|
|
30
|
+
>
|
|
31
|
+
<template #prefix><SfThumbnail size="sm" :style="{ background: value }" /></template>
|
|
32
|
+
{{ label }}
|
|
33
|
+
</SfChip>
|
|
34
|
+
</span>
|
|
35
|
+
</fieldset>
|
|
36
|
+
</div>
|
|
37
|
+
</template>
|
|
38
|
+
|
|
39
|
+
<script setup lang="ts">
|
|
40
|
+
import { SfChip, SfThumbnail } from '@storefront-ui/vue';
|
|
41
|
+
import { ProductPropertiesProps } from '~/components/ProductProperties/types';
|
|
42
|
+
|
|
43
|
+
const props = defineProps<ProductPropertiesProps>();
|
|
44
|
+
|
|
45
|
+
const { getAttributeList, getAttribute, setAttribute } = useProductAttribute(props.product, ['color', 'size']);
|
|
46
|
+
const sizes = getAttributeList('size');
|
|
47
|
+
const colors = getAttributeList('color');
|
|
48
|
+
const selectedSize = computed(() => getAttribute('size'));
|
|
49
|
+
const selectedColor = computed(() => getAttribute('color'));
|
|
50
|
+
</script>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { mount } from '@vue/test-utils';
|
|
2
|
+
import ProductProperties from '~/components/ProductProperties/ProductProperties.vue';
|
|
3
|
+
import { mockProduct } from '~/composables/useProductAttribute/__tests__/useProduct.mock';
|
|
4
|
+
|
|
5
|
+
describe('<ProductProperties />', () => {
|
|
6
|
+
it('should render component', () => {
|
|
7
|
+
const { getByTestId } = mount(ProductProperties, {
|
|
8
|
+
props: {
|
|
9
|
+
product: mockProduct
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
expect(getByTestId('product-properties'));
|
|
14
|
+
});
|
|
15
|
+
});
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<SfScrollable
|
|
3
|
+
buttons-placement="floating"
|
|
4
|
+
class="items-center pb-4"
|
|
5
|
+
:wrapper-class="wrapperClass"
|
|
6
|
+
data-testid="product-slider"
|
|
7
|
+
>
|
|
8
|
+
<UiProductCard
|
|
9
|
+
v-for="product in items"
|
|
10
|
+
:key="product.id"
|
|
11
|
+
class="max-w-[192px]"
|
|
12
|
+
:name="product.name ?? ''"
|
|
13
|
+
:slug="product.slug"
|
|
14
|
+
:image-url="product.primaryImage?.url ?? ''"
|
|
15
|
+
:image-alt="product.primaryImage?.alt ?? ''"
|
|
16
|
+
:price="product.price?.value.amount"
|
|
17
|
+
:rating-count="product.rating?.count"
|
|
18
|
+
:rating="product.rating?.average"
|
|
19
|
+
/>
|
|
20
|
+
</SfScrollable>
|
|
21
|
+
</template>
|
|
22
|
+
|
|
23
|
+
<script setup lang="ts">
|
|
24
|
+
import { SfScrollable } from '@storefront-ui/vue';
|
|
25
|
+
import type { ProductSliderProps } from '~/components/ProductSlider/types';
|
|
26
|
+
|
|
27
|
+
defineProps<ProductSliderProps>();
|
|
28
|
+
</script>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { mount } from '@vue/test-utils';
|
|
2
|
+
import ProductSlider from '~/components/ProductSlider/ProductSlider.vue';
|
|
3
|
+
|
|
4
|
+
describe('<ProductSlider />', () => {
|
|
5
|
+
it('should render component', () => {
|
|
6
|
+
const { getByTestId } = mount(ProductSlider, {
|
|
7
|
+
props: {
|
|
8
|
+
items: [],
|
|
9
|
+
},
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
expect(getByTestId('product-slider'));
|
|
13
|
+
});
|
|
14
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<p data-testid="recommended-products" class="my-4 typography-text-lg">
|
|
3
|
+
{{ $t('recommendedProducts') }}
|
|
4
|
+
</p>
|
|
5
|
+
<ProductSlider :items="products" />
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
import type { RecommendedProductsProps } from '~/components/RecommendedProducts/types';
|
|
10
|
+
|
|
11
|
+
defineProps<RecommendedProductsProps>();
|
|
12
|
+
</script>
|
package/app/components/catalog/product/RenderContentProductSlider/RenderContentProductSlider.vue
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<NuxtLazyHydrate when-visible>
|
|
3
|
+
<ProductSlider v-bind="$attrs" :wrapper-class="['max-w-screen-3xl mx-auto px-4 md:px-10 mb-20', $attrs.class]" />
|
|
4
|
+
</NuxtLazyHydrate>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
inheritAttrs: false,
|
|
10
|
+
};
|
|
11
|
+
</script>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-row justify="center">
|
|
3
|
+
<v-dialog v-model="dialog" :scrim="false" transition="dialog-bottom-transition">
|
|
4
|
+
<template v-slot:activator="{ props }">
|
|
5
|
+
<v-btn v-bind="props" class="rightAddBtn">
|
|
6
|
+
<v-icon start icon="fas:fa fa-plus"></v-icon>Create a Attribute
|
|
7
|
+
</v-btn>
|
|
8
|
+
</template>
|
|
9
|
+
<v-card class="b-1">
|
|
10
|
+
<v-card-title>
|
|
11
|
+
<h3>Create New Attribute</h3>
|
|
12
|
+
</v-card-title>
|
|
13
|
+
|
|
14
|
+
<v-card-text>
|
|
15
|
+
<div v-if="formError" class="error">{{ formError }}</div>
|
|
16
|
+
<div v-else-if="formSuccess" class="success">{{ formSuccess }}</div>
|
|
17
|
+
<form @submit.prevent="submitForm">
|
|
18
|
+
<DirectusFormElement v-for="field in attributeFields" :key="field.field" :field="field" v-model="form[field.field]" />
|
|
19
|
+
<v-btn type="submit">Submit</v-btn>
|
|
20
|
+
</form>
|
|
21
|
+
</v-card-text>
|
|
22
|
+
</v-card>
|
|
23
|
+
</v-dialog>
|
|
24
|
+
</v-row>
|
|
25
|
+
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<script setup>
|
|
29
|
+
import { ref } from 'vue'
|
|
30
|
+
import DirectusFormElement from '#shared/app/components/ui/forms/DirectusFormElement.vue'
|
|
31
|
+
import { useDirectusForm } from '#shared/app/composables/globals/useDirectusForm'
|
|
32
|
+
|
|
33
|
+
const dialog = ref(false)
|
|
34
|
+
const { $directus, $readFieldsByCollection } = useNuxtApp()
|
|
35
|
+
|
|
36
|
+
const { data, error } = await useAsyncData('attributes', async () => {
|
|
37
|
+
return $directus.request($readFieldsByCollection('attributes'))
|
|
38
|
+
})
|
|
39
|
+
|
|
40
|
+
// guard against undefined/null data.value and empty arrays
|
|
41
|
+
if (error.value || data.value == null || (data.value?.length ?? 0) === 0) {
|
|
42
|
+
console.error(error)
|
|
43
|
+
throw createError({
|
|
44
|
+
statusCode: 404,
|
|
45
|
+
statusMessage: 'Attribute not found'
|
|
46
|
+
})
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const attributeFields = data
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
// use composable for form handling (validation, submit, provide context)
|
|
53
|
+
const { form, formError, formSuccess, submitForm } = useDirectusForm('attributes', attributeFields, { clearOnSuccess: true, closeDialogRef: dialog })
|
|
54
|
+
</script>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-row justify="center">
|
|
3
|
+
<v-dialog v-model="dialog" :scrim="false" transition="dialog-bottom-transition">
|
|
4
|
+
<template v-slot:activator="{ props }">
|
|
5
|
+
<v-btn v-bind="props" class="rightAddBtn">
|
|
6
|
+
<v-icon start icon="fas:fa fa-plus"></v-icon>Create a Product Type
|
|
7
|
+
</v-btn>
|
|
8
|
+
</template>
|
|
9
|
+
<v-card class="b-1">
|
|
10
|
+
<v-card-title>
|
|
11
|
+
<h3>Create New Product Type</h3>
|
|
12
|
+
</v-card-title>
|
|
13
|
+
|
|
14
|
+
<v-card-text>
|
|
15
|
+
<div v-if="formError" class="error">{{ formError }}</div>
|
|
16
|
+
<div v-else-if="formSuccess" class="success">{{ formSuccess }}</div>
|
|
17
|
+
<form @submit.prevent="submitForm">
|
|
18
|
+
<DirectusFormElement v-for="field in productTypeFields" :key="field.field" :field="field" v-model="form[field.field]" />
|
|
19
|
+
<v-btn type="submit">Submit</v-btn>
|
|
20
|
+
</form>
|
|
21
|
+
</v-card-text>
|
|
22
|
+
</v-card>
|
|
23
|
+
</v-dialog>
|
|
24
|
+
</v-row>
|
|
25
|
+
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<script setup>
|
|
29
|
+
import { ref } from 'vue'
|
|
30
|
+
import DirectusFormElement from '#shared/app/components/ui/forms/DirectusFormElement.vue'
|
|
31
|
+
import { useDirectusForm } from '#shared/app/composables/globals/useDirectusForm'
|
|
32
|
+
|
|
33
|
+
const dialog = ref(false)
|
|
34
|
+
const { $directus, $readFieldsByCollection } = useNuxtApp()
|
|
35
|
+
|
|
36
|
+
const { data, error } = await useAsyncData('product_types', async () => {
|
|
37
|
+
return $directus.request($readFieldsByCollection('product_types'))
|
|
38
|
+
})
|
|
39
|
+
|
|
40
|
+
// guard against undefined/null data.value and empty arrays
|
|
41
|
+
if (error.value || data.value == null || (data.value?.length ?? 0) === 0) {
|
|
42
|
+
console.error(error)
|
|
43
|
+
throw createError({
|
|
44
|
+
statusCode: 404,
|
|
45
|
+
statusMessage: 'Product Type not found'
|
|
46
|
+
})
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const productTypeFields = data
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
// use composable for form handling (validation, submit, provide context)
|
|
53
|
+
const { form, formError, formSuccess, submitForm } = useDirectusForm('product_types', productTypeFields, { clearOnSuccess: true, closeDialogRef: dialog })
|
|
54
|
+
</script>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-row justify="center">
|
|
3
|
+
<v-dialog v-model="dialog" :scrim="false" transition="dialog-bottom-transition">
|
|
4
|
+
<template v-slot:activator="{ props }">
|
|
5
|
+
<v-btn v-bind="props" class="rightAddBtn">
|
|
6
|
+
<v-icon start icon="fas:fa fa-plus"></v-icon>Create a Product
|
|
7
|
+
</v-btn>
|
|
8
|
+
</template>
|
|
9
|
+
<v-card class="b-1">
|
|
10
|
+
<v-card-title>
|
|
11
|
+
<h3>Create New Product</h3>
|
|
12
|
+
</v-card-title>
|
|
13
|
+
|
|
14
|
+
<v-card-text>
|
|
15
|
+
<div v-if="formError" class="error">{{ formError }}</div>
|
|
16
|
+
<div v-else-if="formSuccess" class="success">{{ formSuccess }}</div>
|
|
17
|
+
<form @submit.prevent="submitForm">
|
|
18
|
+
<DirectusFormElement v-for="field in productFields" :key="field.field" :field="field" v-model="form[field.field]" />
|
|
19
|
+
<v-btn type="submit">Submit</v-btn>
|
|
20
|
+
</form>
|
|
21
|
+
</v-card-text>
|
|
22
|
+
</v-card>
|
|
23
|
+
</v-dialog>
|
|
24
|
+
</v-row>
|
|
25
|
+
</template>
|
|
26
|
+
|
|
27
|
+
<script setup>
|
|
28
|
+
import { ref } from 'vue'
|
|
29
|
+
import DirectusFormElement from '#shared/app/components/ui/forms/DirectusFormElement.vue'
|
|
30
|
+
import { useDirectusForm } from '#shared/app/composables/globals/useDirectusForm'
|
|
31
|
+
|
|
32
|
+
const dialog = ref(false)
|
|
33
|
+
const { $directus, $readFieldsByCollection } = useNuxtApp()
|
|
34
|
+
|
|
35
|
+
const { data, error } = await useAsyncData('products', async () => {
|
|
36
|
+
return $directus.request($readFieldsByCollection('products'))
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
// guard against undefined/null data.value and empty arrays
|
|
40
|
+
if (error.value || data.value == null || (data.value?.length ?? 0) === 0) {
|
|
41
|
+
console.error(error)
|
|
42
|
+
throw createError({
|
|
43
|
+
statusCode: 404,
|
|
44
|
+
statusMessage: 'Product not found'
|
|
45
|
+
})
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
const productFields = data
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
// use composable for form handling (validation, submit, provide context)
|
|
52
|
+
const { form, formError, formSuccess, submitForm } = useDirectusForm('products', productFields, { clearOnSuccess: true, closeDialogRef: dialog })
|
|
53
|
+
</script>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-row justify="center">
|
|
3
|
+
<v-dialog v-model="dialog" :scrim="false" transition="dialog-bottom-transition">
|
|
4
|
+
<template v-slot:activator="{ props }">
|
|
5
|
+
<v-btn v-bind="props" class="rightAddBtn">
|
|
6
|
+
<v-icon start icon="fas:fa fa-plus"></v-icon>Create a Showcase
|
|
7
|
+
</v-btn>
|
|
8
|
+
</template>
|
|
9
|
+
<v-card class="b-1">
|
|
10
|
+
<v-card-title>
|
|
11
|
+
<h3>Create New Showcase</h3>
|
|
12
|
+
</v-card-title>
|
|
13
|
+
|
|
14
|
+
<v-card-text>
|
|
15
|
+
<div v-if="formError" class="error">{{ formError }}</div>
|
|
16
|
+
<div v-else-if="formSuccess" class="success">{{ formSuccess }}</div>
|
|
17
|
+
<form @submit.prevent="submitForm">
|
|
18
|
+
<DirectusFormElement v-for="field in showcaseFields" :key="field.field" :field="field" v-model="form[field.field]" />
|
|
19
|
+
<v-btn type="submit">Submit</v-btn>
|
|
20
|
+
</form>
|
|
21
|
+
</v-card-text>
|
|
22
|
+
</v-card>
|
|
23
|
+
</v-dialog>
|
|
24
|
+
</v-row>
|
|
25
|
+
</template>
|
|
26
|
+
|
|
27
|
+
<script setup>
|
|
28
|
+
import { ref } from 'vue'
|
|
29
|
+
import DirectusFormElement from '#shared/app/components/ui/forms/DirectusFormElement.vue'
|
|
30
|
+
import { useDirectusForm } from '#shared/app/composables/globals/useDirectusForm'
|
|
31
|
+
|
|
32
|
+
const dialog = ref(false)
|
|
33
|
+
const { $directus, $readFieldsByCollection } = useNuxtApp()
|
|
34
|
+
|
|
35
|
+
const { data, error } = await useAsyncData('showcases', async () => {
|
|
36
|
+
return $directus.request($readFieldsByCollection('showcases'))
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
// guard against undefined/null data.value and empty arrays
|
|
40
|
+
if (error.value || data.value == null || (data.value?.length ?? 0) === 0) {
|
|
41
|
+
console.error(error)
|
|
42
|
+
throw createError({
|
|
43
|
+
statusCode: 404,
|
|
44
|
+
statusMessage: 'Showcase not found'
|
|
45
|
+
})
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
const showcaseFields = data
|
|
49
|
+
|
|
50
|
+
// use composable for form handling (validation, submit, provide context)
|
|
51
|
+
const { form, formError, formSuccess, submitForm } = useDirectusForm('showcases', showcaseFields, { clearOnSuccess: true, closeDialogRef: dialog })
|
|
52
|
+
</script>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<v-row justify="center">
|
|
3
|
+
<v-dialog v-model="dialog" :scrim="false" transition="dialog-bottom-transition">
|
|
4
|
+
<template v-slot:activator="{ props }">
|
|
5
|
+
<v-btn v-bind="props" class="rightAddBtn">
|
|
6
|
+
<v-icon start icon="fas:fa fa-plus"></v-icon>Create a Station
|
|
7
|
+
</v-btn>
|
|
8
|
+
</template>
|
|
9
|
+
<v-card class="b-1">
|
|
10
|
+
<v-card-title>
|
|
11
|
+
<h3>Create New Station</h3>
|
|
12
|
+
</v-card-title>
|
|
13
|
+
|
|
14
|
+
<v-card-text>
|
|
15
|
+
<div v-if="formError" class="error">{{ formError }}</div>
|
|
16
|
+
<div v-else-if="formSuccess" class="success">{{ formSuccess }}</div>
|
|
17
|
+
<form @submit.prevent="submitForm">
|
|
18
|
+
<DirectusFormElement v-for="field in stationFields" :key="field.field" :field="field" v-model="form[field.field]" />
|
|
19
|
+
<v-btn type="submit">Submit</v-btn>
|
|
20
|
+
</form>
|
|
21
|
+
</v-card-text>
|
|
22
|
+
</v-card>
|
|
23
|
+
</v-dialog>
|
|
24
|
+
</v-row>
|
|
25
|
+
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<script setup>
|
|
29
|
+
import { ref } from 'vue'
|
|
30
|
+
import DirectusFormElement from '#shared/app/components/ui/forms/DirectusFormElement.vue'
|
|
31
|
+
import { useDirectusForm } from '#shared/app/composables/globals/useDirectusForm'
|
|
32
|
+
|
|
33
|
+
const dialog = ref(false)
|
|
34
|
+
const { $directus, $readFieldsByCollection } = useNuxtApp()
|
|
35
|
+
|
|
36
|
+
const { data, error } = await useAsyncData('radios', async () => {
|
|
37
|
+
return $directus.request($readFieldsByCollection('radios'))
|
|
38
|
+
})
|
|
39
|
+
|
|
40
|
+
// guard against undefined/null data.value and empty arrays
|
|
41
|
+
if (error.value || data.value == null || (data.value?.length ?? 0) === 0) {
|
|
42
|
+
console.error(error)
|
|
43
|
+
throw createError({
|
|
44
|
+
statusCode: 404,
|
|
45
|
+
statusMessage: 'Station not found'
|
|
46
|
+
})
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const stationFields = data
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
// use composable for form handling (validation, submit, provide context)
|
|
53
|
+
const { form, formError, formSuccess, submitForm } = useDirectusForm('radios', stationFields, { clearOnSuccess: true, closeDialogRef: dialog })
|
|
54
|
+
</script>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<section data-bs-version="5.1" class="mbr-section features20 cid-txNnCwzel4" id="features20-4t"
|
|
4
|
+
data-sortbtn="btn-primary">
|
|
5
|
+
<div class="container-fluid">
|
|
6
|
+
<h2 class="mbr-section-title align-left mbr-fonts-style display-5">
|
|
7
|
+
Best Sellers</h2>
|
|
8
|
+
<div class="underline align-left pb-3">
|
|
9
|
+
<div class="line"></div>
|
|
10
|
+
</div>
|
|
11
|
+
<v-sheet class="mx-auto">
|
|
12
|
+
<v-slide-group v-model="model" class="pa-4" show-arrows>
|
|
13
|
+
<v-slide-group-item v-slot="{ isSelected, toggle, selectedClass }"
|
|
14
|
+
v-for="(products, index) in bestsellers" :key="index">
|
|
15
|
+
<productCard :product="products" :class="['ma-4', selectedClass]" @click="toggle" />
|
|
16
|
+
|
|
17
|
+
<div class="d-flex fill-height align-center justify-center">
|
|
18
|
+
<v-scale-transition>
|
|
19
|
+
<v-icon v-if="isSelected" color="white" icon="mdi-close-circle-outline" size="48"></v-icon>
|
|
20
|
+
</v-scale-transition>
|
|
21
|
+
</div>
|
|
22
|
+
</v-slide-group-item>
|
|
23
|
+
</v-slide-group>
|
|
24
|
+
</v-sheet>
|
|
25
|
+
</div>
|
|
26
|
+
</section>
|
|
27
|
+
</div>
|
|
28
|
+
</template>
|
|
29
|
+
|
|
30
|
+
<script setup>
|
|
31
|
+
import productCard from './productCard.vue'
|
|
32
|
+
|
|
33
|
+
const model = ref(null);
|
|
34
|
+
const {
|
|
35
|
+
$directus,
|
|
36
|
+
$readItems
|
|
37
|
+
} = useNuxtApp()
|
|
38
|
+
|
|
39
|
+
const {
|
|
40
|
+
data: bestsellers
|
|
41
|
+
} = await useAsyncData('bestsellers', () => {
|
|
42
|
+
return $directus.request($readItems('products', {
|
|
43
|
+
fields: ['*',
|
|
44
|
+
'products.products_id.*',
|
|
45
|
+
'products.products_id.image.*',
|
|
46
|
+
'currency.currency_id.*',
|
|
47
|
+
'brands.brands_id.*',
|
|
48
|
+
'image.*',
|
|
49
|
+
],
|
|
50
|
+
limit: 10,
|
|
51
|
+
filter: {
|
|
52
|
+
lists: {
|
|
53
|
+
lists_id: {
|
|
54
|
+
lists_types: {
|
|
55
|
+
lists_types_id: {
|
|
56
|
+
name: {
|
|
57
|
+
_eq: "Best Sellers"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
status: {
|
|
64
|
+
_eq: "published"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}))
|
|
68
|
+
})
|
|
69
|
+
</script>
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="auction-item">
|
|
3
|
+
<h2>{{ item.name }}</h2>
|
|
4
|
+
<NuxtImg loading="lazy" :src="item.image" :alt="item.name" />
|
|
5
|
+
<p>Current Bid: ${{ currentBid }}</p>
|
|
6
|
+
<p>Time Left: {{ timeLeft }}</p>
|
|
7
|
+
<input v-model.number="bidAmount" type="number" :min="minBid" step="0.01" />
|
|
8
|
+
<button @click="placeBid" :disabled="!canBid">Place Bid</button>
|
|
9
|
+
<div v-if="bidHistory.length > 0">
|
|
10
|
+
<h3>Bid History</h3>
|
|
11
|
+
<ul>
|
|
12
|
+
<li v-for="bid in bidHistory" :key="bid.id">
|
|
13
|
+
{{ bid.user }}: ${{ bid.amount }}
|
|
14
|
+
</li>
|
|
15
|
+
</ul>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<script setup>
|
|
21
|
+
import {
|
|
22
|
+
ref,
|
|
23
|
+
computed,
|
|
24
|
+
onMounted,
|
|
25
|
+
onUnmounted
|
|
26
|
+
} from 'vue'
|
|
27
|
+
import {
|
|
28
|
+
useUserStore
|
|
29
|
+
} from '#auth/app/stores/user'
|
|
30
|
+
|
|
31
|
+
const {
|
|
32
|
+
$io
|
|
33
|
+
} = useNuxtApp()
|
|
34
|
+
const userStore = useUserStore()
|
|
35
|
+
|
|
36
|
+
const props = defineProps({
|
|
37
|
+
itemId: {
|
|
38
|
+
type: String,
|
|
39
|
+
required: true
|
|
40
|
+
}
|
|
41
|
+
})
|
|
42
|
+
|
|
43
|
+
const item = ref({})
|
|
44
|
+
const currentBid = ref(0)
|
|
45
|
+
const timeLeft = ref('')
|
|
46
|
+
const bidAmount = ref(0)
|
|
47
|
+
const bidHistory = ref([])
|
|
48
|
+
|
|
49
|
+
const minBid = computed(() => currentBid.value + 1)
|
|
50
|
+
const canBid = computed(() => bidAmount.value >= minBid.value)
|
|
51
|
+
|
|
52
|
+
onMounted(async () => {
|
|
53
|
+
// Fetch initial item data
|
|
54
|
+
const {
|
|
55
|
+
data
|
|
56
|
+
} = await useFetch(`/api/items/${props.itemId}`)
|
|
57
|
+
item.value = data.value
|
|
58
|
+
currentBid.value = item.value.startingBid
|
|
59
|
+
|
|
60
|
+
$io.emit('join-auction', props.itemId)
|
|
61
|
+
|
|
62
|
+
$io.on('new-bid', (bid) => {
|
|
63
|
+
currentBid.value = bid.amount
|
|
64
|
+
bidHistory.value.unshift(bid)
|
|
65
|
+
})
|
|
66
|
+
|
|
67
|
+
$io.on('auction-time-update', (time) => {
|
|
68
|
+
timeLeft.value = time
|
|
69
|
+
})
|
|
70
|
+
|
|
71
|
+
$io.on('auction-ended', (winner) => {
|
|
72
|
+
alert(`Auction ended! Winner: ${winner}`)
|
|
73
|
+
})
|
|
74
|
+
})
|
|
75
|
+
|
|
76
|
+
const placeBid = () => {
|
|
77
|
+
if (canBid.value) {
|
|
78
|
+
$io.emit('place-bid', {
|
|
79
|
+
itemId: props.itemId,
|
|
80
|
+
amount: bidAmount.value,
|
|
81
|
+
user: userStore.currentUser.name
|
|
82
|
+
})
|
|
83
|
+
bidAmount.value = 0
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
onUnmounted(() => {
|
|
88
|
+
$io.off('new-bid')
|
|
89
|
+
$io.off('auction-time-update')
|
|
90
|
+
$io.off('auction-ended')
|
|
91
|
+
$io.emit('leave-auction', props.itemId)
|
|
92
|
+
})
|
|
93
|
+
</script>
|