@evenicanpm/storefront-core 1.0.3 → 1.0.4
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/docs.tsconfig.json +35 -0
- package/package.json +6 -3
- package/src/api-manager/schemas/product.schema.ts +0 -1
- package/src/api-manager/services/create-query.ts +10 -0
- package/src/api-manager/services/product/queries/get-product-availability.ts +1 -1
- package/src/api-manager/services/user/mutations/add-to-wishlist.ts +23 -3
- package/src/api-manager/services/user/mutations/remove-from-wishlist.ts +23 -0
- package/src/cms/blocks/Components/CategoryCarousel/index.tsx +6 -7
- package/src/cms/blocks/Components/HeroCarousel/index.tsx +25 -19
- package/src/cms/blocks/Components/ProductCarousel/index.tsx +44 -38
- package/src/cms/blocks/Components/ProductSectionFullWidth/index.tsx +7 -3
- package/src/cms/blocks/Components/shared/product-grid.tsx +38 -23
- package/src/components/_components/wishlist/add-to-wishlist-dialog.tsx +1 -1
- package/src/components/_components/wishlist/remove-from-wishlist-dialog.tsx +1 -1
- package/src/components/_components/wishlist-modal/add-to-wishlist-dialog.tsx +1 -1
- package/src/components/_components/wishlist-modal/remove-from-wishlist-dialog.tsx +1 -1
- package/src/components-v2/carousel/carousel.tsx +69 -35
- package/src/components-v2/carousel/components/carousel-arrows.tsx +40 -46
- package/src/components-v2/carousel/components/carousel-dots.tsx +10 -13
- package/src/components-v2/carousel/index.ts +0 -2
- package/src/components-v2/carousel-cards/carousel-card-1/carousel-card-1.tsx +68 -49
- package/src/components-v2/categories/category-list/category-list.tsx +83 -41
- package/src/components-v2/categories/category-list/styles.ts +7 -1
- package/src/components-v2/categories/category-menu.tsx +2 -0
- package/src/components-v2/categories/mega-menu/banner.tsx +68 -37
- package/src/components-v2/categories/mega-menu/column-list.tsx +59 -52
- package/src/components-v2/categories/mega-menu/mega-menu-1.tsx +19 -1
- package/src/components-v2/categories/mega-menu/mega-menu-2.tsx +32 -2
- package/src/components-v2/header/components/mobile-header.tsx +119 -46
- package/src/components-v2/header/components/user.tsx +163 -117
- package/src/components-v2/header/header.tsx +62 -42
- package/src/components-v2/header/sticky-header.tsx +34 -2
- package/src/components-v2/mini-cart/components/bottom-actions.tsx +71 -17
- package/src/components-v2/mini-cart/components/cart-item.tsx +159 -101
- package/src/components-v2/mini-cart/components/empty-view.tsx +59 -19
- package/src/components-v2/mini-cart/components/top-header.tsx +61 -22
- package/src/components-v2/mini-cart/mini-cart-trigger.tsx +99 -0
- package/src/components-v2/mini-cart/mini-cart.tsx +111 -43
- package/src/components-v2/mobile-navigation/mobile-navigation-bar.tsx +93 -48
- package/src/components-v2/navbar/categories.tsx +70 -16
- package/src/components-v2/navbar/category-based-menu/category-based-menu.tsx +135 -41
- package/src/components-v2/navbar/mega-menu/mega-menu.tsx +115 -48
- package/src/components-v2/navbar/mobile-menu/mobile-menu.test.tsx +111 -0
- package/src/components-v2/navbar/mobile-menu/mobile-menu.tsx +127 -56
- package/src/components-v2/navbar/nav-list/nav-list.tsx +125 -103
- package/src/components-v2/navbar/navbar.tsx +72 -20
- package/src/components-v2/product-cards/{product-card-1 → product-card}/components/quantity-buttons.tsx +1 -1
- package/src/components-v2/product-cards/product-card/product-card.tsx +410 -0
- package/src/components-v2/product-cards/{product-card-1 → product-card}/styles/index.ts +6 -0
- package/src/components-v2/product-cards/product-card-plp/product-card.tsx +161 -0
- package/src/components-v2/product-cards/product-card-plp-list/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-plp-list/product-card.tsx +219 -0
- package/src/components-v2/product-cards/product-card-search/product-card.tsx +166 -0
- package/src/components-v2/product-dialog/compound/product-dialog.tsx +225 -0
- package/src/components-v2/product-dialog/index.tsx +29 -0
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group-error.tsx +1 -1
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group-label.tsx +1 -1
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group-list-chip.tsx +1 -1
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group-list.tsx +1 -1
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group.tsx +1 -1
- package/src/components-v2/product-dimensions/{components → compound}/dimensions.tsx +0 -3
- package/src/components-v2/product-dimensions/index.tsx +1 -1
- package/src/components-v2/product-quantity-buttons/compound/quantity-buttons-root.tsx +181 -0
- package/src/components-v2/product-quantity-buttons/index.tsx +22 -0
- package/src/components-v2/product-quantity-variants/index.tsx +90 -0
- package/src/components-v2/products-view/compound/context.ts +25 -0
- package/src/components-v2/products-view/compound/products-grid-view.tsx +109 -0
- package/src/components-v2/products-view/compound/products-list-view.tsx +98 -0
- package/src/components-v2/products-view/compound/types.ts +12 -0
- package/src/components-v2/products-view/index.tsx +45 -0
- package/src/components-v2/products-view/products-grid-view.tsx +24 -11
- package/src/components-v2/products-view/products-list-view.tsx +29 -12
- package/src/components-v2/search-bar/compound/context.ts +31 -0
- package/src/components-v2/search-bar/compound/results-item-lg.tsx +43 -0
- package/src/components-v2/search-bar/compound/results-item-sm.tsx +48 -0
- package/src/components-v2/search-bar/compound/results-suspense.tsx +49 -0
- package/src/components-v2/search-bar/compound/results.tsx +42 -0
- package/src/components-v2/search-bar/compound/search-bar-root.tsx +64 -0
- package/src/components-v2/search-bar/compound/textfield-adornment-button.tsx +22 -0
- package/src/components-v2/{search-box/components/category-dropdown.tsx → search-bar/compound/textfield-adornment-category.tsx} +29 -7
- package/src/components-v2/search-bar/compound/textfield-adornment-search-icon.tsx +34 -0
- package/src/components-v2/search-bar/compound/textfield.tsx +58 -0
- package/src/components-v2/search-bar/hooks/use-click-outside.ts +20 -0
- package/src/components-v2/search-bar/hooks/use-search.ts +63 -0
- package/src/components-v2/search-bar/index.tsx +36 -0
- package/src/components-v2/{search-box → search-bar}/styles/index.ts +5 -3
- package/src/components-v2/search-bar/utils/findCategoryNameById.ts +18 -0
- package/src/components-v2/section/compound/section-header.tsx +63 -0
- package/src/components-v2/section/compound/section.tsx +26 -0
- package/src/components-v2/section/index.ts +1 -0
- package/src/components-v2/side-nav/side-nav.tsx +4 -5
- package/src/components-v2/sticky/index.ts +1 -1
- package/src/components-v2/{wishlist-modal → wishlist-dialogs/add-to-wishlist}/add-to-wishlist-button.tsx +1 -1
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/add-to-wishlist-bottom-ui.tsx +35 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/add-to-wishlist-dialog.tsx +79 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/add-to-wishlist-list.tsx +41 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/context.ts +29 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/wishlist-dialog-header.tsx +74 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/wishlist-dialog-item.tsx +82 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/hooks/use-add-to-wishlist.ts +152 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/index.tsx +39 -0
- package/src/components-v2/wishlist-dialogs/create-wishlist/compound/context.ts +2 -0
- package/src/components-v2/wishlist-dialogs/create-wishlist/compound/create-wishlist-bottom-ui.tsx +42 -0
- package/src/components-v2/wishlist-dialogs/create-wishlist/compound/create-wishlist-dialog.tsx +92 -0
- package/src/components-v2/wishlist-dialogs/create-wishlist/compound/create-wishlist-form.tsx +96 -0
- package/src/components-v2/{wishlist/components → wishlist-dialogs/create-wishlist}/create-wishlist-button.tsx +5 -3
- package/src/components-v2/wishlist-dialogs/create-wishlist/index.tsx +22 -0
- package/src/hooks/use-cart.ts +29 -23
- package/src/hooks/use-variants.ts +106 -53
- package/src/lib/build-detail-url.ts +2 -1
- package/src/pages/product-details/product-intro/product-intro.tsx +26 -23
- package/src/pages/product-list/quick-view-dialog-content.tsx +18 -9
- package/src/pages-v2/product-details/bopis/find-in-store-button.tsx +9 -8
- package/src/pages-v2/product-details/bopis/find-in-store-modal.tsx +2 -2
- package/src/{components-v2/shop-card → pages-v2/product-details/bopis/store-card}/shop-card.tsx +17 -48
- package/src/pages-v2/product-details/bopis/store-card/utils/convertSecondsToTime.ts +8 -0
- package/src/pages-v2/product-details/bopis/store-card/utils/getDaysResources.ts +25 -0
- package/src/pages-v2/product-details/product-intro/compound/context.ts +52 -0
- package/src/pages-v2/product-details/product-intro/compound/product-info.tsx +231 -0
- package/src/pages-v2/product-details/product-intro/compound/product-intro-images.tsx +124 -0
- package/src/pages-v2/product-details/product-intro/compound/product-intro.tsx +49 -0
- package/src/pages-v2/product-details/product-intro/compound/thumbnail-with-skeleton.tsx +28 -0
- package/src/pages-v2/product-details/product-intro/utils.ts +42 -0
- package/src/pages-v2/product-details/product-tabs.tsx +87 -21
- package/src/pages-v2/product-details/related-products.tsx +26 -12
- package/src/pages-v2/product-list/quick-view-dialog-content.tsx +17 -10
- package/typedoc.js +3 -1
- package/src/components-v2/MiniCartClient.tsx +0 -65
- package/src/components-v2/carousel-cards/carousel-card-2/carousel-card-2.tsx +0 -78
- package/src/components-v2/carousel-cards/carousel-card-2/index.ts +0 -1
- package/src/components-v2/carousel-cards/carousel-card-2/styles.ts +0 -26
- package/src/components-v2/carousel-cards/carousel-card-3/carousel-card-3.tsx +0 -37
- package/src/components-v2/carousel-cards/carousel-card-3/index.ts +0 -1
- package/src/components-v2/carousel-cards/carousel-card-3/styles.ts +0 -28
- package/src/components-v2/carousel-cards/carousel-card-4/carousel-card-4.tsx +0 -81
- package/src/components-v2/carousel-cards/carousel-card-4/index.ts +0 -1
- package/src/components-v2/carousel-cards/carousel-card-4/styles.ts +0 -27
- package/src/components-v2/category-cards/category-card-1/category-card-1.tsx +0 -21
- package/src/components-v2/category-cards/category-card-1/index.ts +0 -1
- package/src/components-v2/category-cards/category-card-1/styles.ts +0 -37
- package/src/components-v2/countdown/count-box.tsx +0 -19
- package/src/components-v2/countdown/count-down.tsx +0 -24
- package/src/components-v2/countdown/index.tsx +0 -2
- package/src/components-v2/countdown/useCountDown.ts +0 -41
- package/src/components-v2/data-table/index.ts +0 -2
- package/src/components-v2/data-table/table-header.tsx +0 -91
- package/src/components-v2/data-table/table-pagination.tsx +0 -36
- package/src/components-v2/footer/components/about-links.tsx +0 -23
- package/src/components-v2/footer/components/app-store.tsx +0 -38
- package/src/components-v2/footer/components/customer-care-links.tsx +0 -21
- package/src/components-v2/footer/components/logo.tsx +0 -23
- package/src/components-v2/footer/components/social-links.tsx +0 -43
- package/src/components-v2/footer/data/index.ts +0 -54
- package/src/components-v2/footer/footer-1.tsx +0 -62
- package/src/components-v2/footer/footer-2.tsx +0 -57
- package/src/components-v2/footer/footer-3.tsx +0 -53
- package/src/components-v2/footer/footer-4.tsx +0 -71
- package/src/components-v2/footer/index.ts +0 -4
- package/src/components-v2/footer/styles/index.ts +0 -42
- package/src/components-v2/navbar/category-based-menu/components/categories.tsx +0 -44
- package/src/components-v2/navbar/category-based-menu/components/category-item.tsx +0 -31
- package/src/components-v2/navbar/category-based-menu/components/child-categories.tsx +0 -38
- package/src/components-v2/navbar/mega-menu/category-list.tsx +0 -29
- package/src/components-v2/navbar/mobile-menu/render-levels.test.tsx +0 -71
- package/src/components-v2/navbar/mobile-menu/render-levels.tsx +0 -62
- package/src/components-v2/newsletter/index.ts +0 -1
- package/src/components-v2/newsletter/newsletter.tsx +0 -112
- package/src/components-v2/newsletter/social-icons.tsx +0 -35
- package/src/components-v2/newsletter/styles.ts +0 -65
- package/src/components-v2/page-sidenav/grocery-side-nav/components/link-item.tsx +0 -21
- package/src/components-v2/page-sidenav/grocery-side-nav/components/list-item.tsx +0 -27
- package/src/components-v2/page-sidenav/grocery-side-nav/components/nav-accordion.tsx +0 -36
- package/src/components-v2/page-sidenav/grocery-side-nav/components/render-child.tsx +0 -26
- package/src/components-v2/page-sidenav/grocery-side-nav/grocery-side-nav.tsx +0 -32
- package/src/components-v2/page-sidenav/grocery-side-nav/index.ts +0 -1
- package/src/components-v2/page-sidenav/grocery-side-nav/styles/index.ts +0 -11
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/list-item.tsx +0 -27
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/nav-accordion.tsx +0 -44
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/render-child.tsx +0 -20
- package/src/components-v2/page-sidenav/health-beauty-side-nav/health-beauty-side-nav.tsx +0 -43
- package/src/components-v2/page-sidenav/health-beauty-side-nav/index.ts +0 -1
- package/src/components-v2/page-sidenav/health-beauty-side-nav/styles/index.ts +0 -27
- package/src/components-v2/page-sidenav/side-navbar/components/list-item.tsx +0 -25
- package/src/components-v2/page-sidenav/side-navbar/components/nav-accordion.tsx +0 -46
- package/src/components-v2/page-sidenav/side-navbar/components/render-child.tsx +0 -20
- package/src/components-v2/page-sidenav/side-navbar/index.ts +0 -1
- package/src/components-v2/page-sidenav/side-navbar/side-nav-bar.tsx +0 -77
- package/src/components-v2/page-sidenav/side-navbar/styles/index.ts +0 -73
- package/src/components-v2/page-sidenav/side-navbar-2/components/button-content.tsx +0 -32
- package/src/components-v2/page-sidenav/side-navbar-2/components/sidebar-accordion.tsx +0 -66
- package/src/components-v2/page-sidenav/side-navbar-2/index.ts +0 -1
- package/src/components-v2/page-sidenav/side-navbar-2/side-navbar-2.tsx +0 -63
- package/src/components-v2/page-sidenav/side-navbar-2/styles/index.ts +0 -68
- package/src/components-v2/product-cards/product-card-1/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-1/product-card-1-wrapper.tsx +0 -304
- package/src/components-v2/product-cards/product-card-1/product-card.tsx +0 -107
- package/src/components-v2/product-cards/product-card-10/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-10/product-card.tsx +0 -128
- package/src/components-v2/product-cards/product-card-10/styles/index.ts +0 -38
- package/src/components-v2/product-cards/product-card-11/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-11/product-card.tsx +0 -66
- package/src/components-v2/product-cards/product-card-11/styles/index.ts +0 -16
- package/src/components-v2/product-cards/product-card-12/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-12/product-card.tsx +0 -42
- package/src/components-v2/product-cards/product-card-12/styles/index.ts +0 -16
- package/src/components-v2/product-cards/product-card-13/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-13/product-card.tsx +0 -48
- package/src/components-v2/product-cards/product-card-13/styles/index.ts +0 -25
- package/src/components-v2/product-cards/product-card-14/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-14/product-card.tsx +0 -125
- package/src/components-v2/product-cards/product-card-14/styles/index.ts +0 -40
- package/src/components-v2/product-cards/product-card-15/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-15/product-card.tsx +0 -121
- package/src/components-v2/product-cards/product-card-15/styles/index.ts +0 -57
- package/src/components-v2/product-cards/product-card-16/product-card.tsx +0 -116
- package/src/components-v2/product-cards/product-card-2/components/favorite-button.tsx +0 -29
- package/src/components-v2/product-cards/product-card-2/components/product-price.tsx +0 -26
- package/src/components-v2/product-cards/product-card-2/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-2/product-card.tsx +0 -70
- package/src/components-v2/product-cards/product-card-3/components/hover-actions.tsx +0 -83
- package/src/components-v2/product-cards/product-card-3/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-3/product-card.tsx +0 -110
- package/src/components-v2/product-cards/product-card-3/styles/index.ts +0 -89
- package/src/components-v2/product-cards/product-card-4/components/hover-actions.tsx +0 -50
- package/src/components-v2/product-cards/product-card-4/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-4/product-card.tsx +0 -128
- package/src/components-v2/product-cards/product-card-4/styles/index.ts +0 -66
- package/src/components-v2/product-cards/product-card-5/components/button-actions.tsx +0 -49
- package/src/components-v2/product-cards/product-card-5/components/hover-actions.tsx +0 -50
- package/src/components-v2/product-cards/product-card-5/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-5/product-card.tsx +0 -137
- package/src/components-v2/product-cards/product-card-5/styles/index.ts +0 -94
- package/src/components-v2/product-cards/product-card-6/components/hover-actions.tsx +0 -50
- package/src/components-v2/product-cards/product-card-6/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-6/product-card.tsx +0 -121
- package/src/components-v2/product-cards/product-card-6/styles/index.ts +0 -63
- package/src/components-v2/product-cards/product-card-7/components/product-status.tsx +0 -18
- package/src/components-v2/product-cards/product-card-7/components/quantity-buttons.tsx +0 -47
- package/src/components-v2/product-cards/product-card-7/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-7/product-card.tsx +0 -139
- package/src/components-v2/product-cards/product-card-7/styles/index.ts +0 -98
- package/src/components-v2/product-cards/product-card-8/product-card.tsx +0 -151
- package/src/components-v2/product-cards/product-card-9/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-9/product-card.tsx +0 -169
- package/src/components-v2/product-cards/product-card-wishlist/components/hover-actions.tsx +0 -37
- package/src/components-v2/product-cards/product-card-wishlist/product-card.tsx +0 -118
- package/src/components-v2/product-cards/product-card-wishlist/styles/index.ts +0 -53
- package/src/components-v2/product-quantity-buttons/product-quantity-buttons.tsx +0 -88
- package/src/components-v2/products-view/product-view-dialog.tsx +0 -218
- package/src/components-v2/search-box/__test__/search-input-category.test.tsx +0 -110
- package/src/components-v2/search-box/__test__/search-input.test.tsx +0 -137
- package/src/components-v2/search-box/__test__/search-results.json +0 -165
- package/src/components-v2/search-box/components/search-result.tsx +0 -86
- package/src/components-v2/search-box/hooks/use-search.ts +0 -63
- package/src/components-v2/search-box/index.ts +0 -2
- package/src/components-v2/search-box/search-input-category.test.tsx +0 -110
- package/src/components-v2/search-box/search-input-category.tsx +0 -203
- package/src/components-v2/search-box/search-input.test.tsx +0 -41
- package/src/components-v2/search-box/search-input.tsx +0 -66
- package/src/components-v2/section-header/index.ts +0 -2
- package/src/components-v2/section-header/section-creator.tsx +0 -29
- package/src/components-v2/section-header/section-header.tsx +0 -44
- package/src/components-v2/service-cards/icon-component.tsx +0 -18
- package/src/components-v2/service-cards/service-card-1/index.ts +0 -1
- package/src/components-v2/service-cards/service-card-1/service-card-1.tsx +0 -42
- package/src/components-v2/service-cards/service-card-2/index.ts +0 -1
- package/src/components-v2/service-cards/service-card-2/service-card-2.tsx +0 -37
- package/src/components-v2/service-cards/service-card-3/index.ts +0 -1
- package/src/components-v2/service-cards/service-card-3/service-card-3.tsx +0 -28
- package/src/components-v2/service-cards/service-card-3/styles.ts +0 -23
- package/src/components-v2/settings/index.ts +0 -1
- package/src/components-v2/settings/setting.tsx +0 -141
- package/src/components-v2/settings/styles.ts +0 -57
- package/src/components-v2/sticky-wrapper/index.ts +0 -1
- package/src/components-v2/sticky-wrapper/sticky-wrapper.tsx +0 -21
- package/src/components-v2/sticky-wrapper/styles.ts +0 -25
- package/src/components-v2/stories/story-content/index.ts +0 -1
- package/src/components-v2/stories/story-content/story-content.tsx +0 -28
- package/src/components-v2/stories/story-content/styles.ts +0 -22
- package/src/components-v2/stories/story-item/index.ts +0 -1
- package/src/components-v2/stories/story-item/story-item.tsx +0 -24
- package/src/components-v2/stories/story-item/styles.ts +0 -11
- package/src/components-v2/stories/story-viewer/index.ts +0 -1
- package/src/components-v2/stories/story-viewer/story-viewer.tsx +0 -44
- package/src/components-v2/stories/story-viewer/styles.ts +0 -15
- package/src/components-v2/subscribe-input/index.ts +0 -1
- package/src/components-v2/subscribe-input/styles.ts +0 -14
- package/src/components-v2/subscribe-input/subscribe-input.tsx +0 -43
- package/src/components-v2/topbar/index.ts +0 -1
- package/src/components-v2/topbar/styles.ts +0 -55
- package/src/components-v2/topbar/top-bar.tsx +0 -115
- package/src/components-v2/wishlist/add-to-wishlist-dialog.tsx +0 -161
- package/src/components-v2/wishlist/components/create-new-list.tsx +0 -167
- package/src/components-v2/wishlist/components/dashboard-header.tsx +0 -123
- package/src/components-v2/wishlist/components/navigation.tsx +0 -87
- package/src/components-v2/wishlist/components/no-records.tsx +0 -20
- package/src/components-v2/wishlist/components/wishlist-modal-item.tsx +0 -66
- package/src/components-v2/wishlist/remove-from-wishlist-dialog.tsx +0 -175
- package/src/components-v2/wishlist-modal/TODO.md +0 -10
- package/src/components-v2/wishlist-modal/add-to-wishlist-dialog.tsx +0 -161
- package/src/components-v2/wishlist-modal/remove-from-wishlist-dialog.tsx +0 -174
- package/src/components-v2/wishlist-modal/wishlist-modal-item.tsx +0 -65
- package/src/pages-v2/product-details/product-intro/product-intro-images.tsx +0 -90
- package/src/pages-v2/product-details/product-intro/product-intro.tsx +0 -256
- /package/src/{pages-v2/account → components-v2}/no-records.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-1 → product-card}/components/hover-actions.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-16 → product-card}/index.ts +0 -0
- /package/src/components-v2/product-cards/{product-card-16 → product-card-plp}/components/quantity-buttons.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-wishlist → product-card-plp}/index.ts +0 -0
- /package/src/components-v2/product-cards/{product-card-16 → product-card-plp}/styles/index.ts +0 -0
- /package/src/components-v2/product-cards/{product-card-9 → product-card-plp-list}/components/add-to-cart.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-9 → product-card-plp-list}/components/favorite-button.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-9 → product-card-plp-list}/components/tags.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-8 → product-card-search}/index.ts +0 -0
- /package/src/components-v2/product-cards/{product-card-8 → product-card-search}/styles/index.ts +0 -0
- /package/src/components-v2/sticky/{Sticky.tsx → sticky.tsx} +0 -0
- /package/src/components-v2/{wishlist → wishlist-dialogs}/styles.ts +0 -0
- /package/src/{components-v2/shop-card → pages-v2/product-details/bopis/store-card}/index.ts +0 -0
- /package/src/{components-v2/shop-card → pages-v2/product-details/bopis/store-card}/styles.ts +0 -0
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import Divider from "@mui/material/Divider";
|
|
2
|
-
// MUI ICON COMPONENTS
|
|
3
|
-
import Favorite from "@mui/icons-material/Favorite";
|
|
4
|
-
import RemoveRedEye from "@mui/icons-material/RemoveRedEye";
|
|
5
|
-
import FavoriteBorder from "@mui/icons-material/FavoriteBorder";
|
|
6
|
-
import AddShoppingCart from "@mui/icons-material/AddShoppingCart";
|
|
7
|
-
// GLOBAL CUSTOM COMPONENT
|
|
8
|
-
import { Span } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
9
|
-
// STYLED COMPONENT
|
|
10
|
-
import { HoverWrapper } from "../styles/index";
|
|
11
|
-
|
|
12
|
-
// ==============================================================
|
|
13
|
-
interface Props {
|
|
14
|
-
isFavorite: boolean;
|
|
15
|
-
toggleView: () => void;
|
|
16
|
-
toggleFavorite: () => void;
|
|
17
|
-
handleIncrementQuantity: () => void;
|
|
18
|
-
}
|
|
19
|
-
// ==============================================================
|
|
20
|
-
|
|
21
|
-
export default function HoverActions({
|
|
22
|
-
isFavorite,
|
|
23
|
-
toggleView,
|
|
24
|
-
toggleFavorite,
|
|
25
|
-
handleIncrementQuantity,
|
|
26
|
-
}: Props) {
|
|
27
|
-
return (
|
|
28
|
-
<HoverWrapper className="controller">
|
|
29
|
-
<Span onClick={toggleView}>
|
|
30
|
-
<RemoveRedEye />
|
|
31
|
-
</Span>
|
|
32
|
-
|
|
33
|
-
<Divider orientation="horizontal" flexItem />
|
|
34
|
-
|
|
35
|
-
<Span onClick={toggleFavorite}>
|
|
36
|
-
{isFavorite ? (
|
|
37
|
-
<Favorite color="primary" fontSize="small" />
|
|
38
|
-
) : (
|
|
39
|
-
<FavoriteBorder fontSize="small" color="primary" />
|
|
40
|
-
)}
|
|
41
|
-
</Span>
|
|
42
|
-
|
|
43
|
-
<Divider orientation="horizontal" flexItem />
|
|
44
|
-
|
|
45
|
-
<Span onClick={handleIncrementQuantity}>
|
|
46
|
-
<AddShoppingCart />
|
|
47
|
-
</Span>
|
|
48
|
-
</HoverWrapper>
|
|
49
|
-
);
|
|
50
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as ProductCard5 } from "./product-card";
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import Link from "next/link";
|
|
4
|
-
// GLOBAL CUSTOM COMPONENTS
|
|
5
|
-
import LazyImage from "@evenicanpm/storefront-core/src/components-v2/LazyImage";
|
|
6
|
-
import ProductViewDialog from "@evenicanpm/storefront-core/src/components-v2/products-view/product-view-dialog";
|
|
7
|
-
// LOCAL CUSTOM HOOKS
|
|
8
|
-
import useProduct from "../use-product";
|
|
9
|
-
// LOCAL CUSTOM COMPONENTS
|
|
10
|
-
import ProductPrice from "../product-price";
|
|
11
|
-
import ProductTitle from "../product-title";
|
|
12
|
-
import DiscountChip from "../discount-chip";
|
|
13
|
-
import ProductRating from "../product-rating";
|
|
14
|
-
import HoverActions from "./components/hover-actions";
|
|
15
|
-
import ButtonActions from "./components/button-actions";
|
|
16
|
-
// STYLED COMPONENTS
|
|
17
|
-
import {
|
|
18
|
-
ContentWrapper,
|
|
19
|
-
ImageBox,
|
|
20
|
-
ImageWrapper,
|
|
21
|
-
StyledBazaarCard,
|
|
22
|
-
} from "./styles/index";
|
|
23
|
-
|
|
24
|
-
// =============================================================
|
|
25
|
-
type Props = {
|
|
26
|
-
off: number;
|
|
27
|
-
slug: string;
|
|
28
|
-
title: string;
|
|
29
|
-
price: number;
|
|
30
|
-
imgUrl: string;
|
|
31
|
-
rating?: number;
|
|
32
|
-
id: string | number;
|
|
33
|
-
hideRating?: boolean;
|
|
34
|
-
hoverEffect?: boolean;
|
|
35
|
-
};
|
|
36
|
-
// =============================================================
|
|
37
|
-
|
|
38
|
-
export default function ProductCard5(props: Props) {
|
|
39
|
-
const {
|
|
40
|
-
off,
|
|
41
|
-
id,
|
|
42
|
-
title,
|
|
43
|
-
price,
|
|
44
|
-
imgUrl,
|
|
45
|
-
rating,
|
|
46
|
-
hideRating,
|
|
47
|
-
hoverEffect,
|
|
48
|
-
slug,
|
|
49
|
-
} = props;
|
|
50
|
-
|
|
51
|
-
const {
|
|
52
|
-
cartItem,
|
|
53
|
-
handleCartAmountChange,
|
|
54
|
-
isFavorite,
|
|
55
|
-
openModal,
|
|
56
|
-
toggleDialog,
|
|
57
|
-
toggleFavorite,
|
|
58
|
-
} = useProduct(slug);
|
|
59
|
-
|
|
60
|
-
const handleIncrementQuantity = () => {
|
|
61
|
-
const product = {
|
|
62
|
-
id,
|
|
63
|
-
slug,
|
|
64
|
-
price,
|
|
65
|
-
imgUrl,
|
|
66
|
-
name: title,
|
|
67
|
-
qty: (cartItem?.Quantity || 0) + 1,
|
|
68
|
-
};
|
|
69
|
-
product;
|
|
70
|
-
handleCartAmountChange();
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
const handleDecrementQuantity = () => {
|
|
74
|
-
const product = {
|
|
75
|
-
id,
|
|
76
|
-
slug,
|
|
77
|
-
price,
|
|
78
|
-
imgUrl,
|
|
79
|
-
name: title,
|
|
80
|
-
qty: (cartItem?.Quantity || 0) - 1,
|
|
81
|
-
};
|
|
82
|
-
product;
|
|
83
|
-
handleCartAmountChange("remove");
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
return (
|
|
87
|
-
<StyledBazaarCard elevation={0} hoverEffect={hoverEffect}>
|
|
88
|
-
<ImageWrapper>
|
|
89
|
-
{/* DISCOUNT PERCENT CHIP IF AVAILABLE */}
|
|
90
|
-
<DiscountChip
|
|
91
|
-
discount={off}
|
|
92
|
-
sx={{ left: 0, borderTopLeftRadius: 0, borderBottomLeftRadius: 0 }}
|
|
93
|
-
/>
|
|
94
|
-
|
|
95
|
-
<ImageBox>
|
|
96
|
-
{/* PRODUCT IMAGE / THUMBNAIL */}
|
|
97
|
-
<Link href={`/products/${slug}`}>
|
|
98
|
-
<LazyImage alt={title} src={imgUrl} width={150} height={150} />
|
|
99
|
-
</Link>
|
|
100
|
-
|
|
101
|
-
{/* HOVER ACTION ICONS */}
|
|
102
|
-
<HoverActions
|
|
103
|
-
isFavorite={isFavorite}
|
|
104
|
-
toggleView={toggleDialog}
|
|
105
|
-
toggleFavorite={toggleFavorite}
|
|
106
|
-
handleIncrementQuantity={handleIncrementQuantity}
|
|
107
|
-
/>
|
|
108
|
-
</ImageBox>
|
|
109
|
-
</ImageWrapper>
|
|
110
|
-
|
|
111
|
-
{/* PRODUCT VIEW DIALOG BOX */}
|
|
112
|
-
<ProductViewDialog
|
|
113
|
-
openDialog={openModal}
|
|
114
|
-
handleCloseDialog={toggleDialog}
|
|
115
|
-
product={{ title, price, id, slug, imgGroup: [imgUrl, imgUrl] }}
|
|
116
|
-
/>
|
|
117
|
-
|
|
118
|
-
<ContentWrapper>
|
|
119
|
-
{/* PRODUCT NAME / TITLE */}
|
|
120
|
-
<ProductTitle slug={slug} title={title} />
|
|
121
|
-
|
|
122
|
-
{/* PRODUCT RATINGS IF AVAILABLE */}
|
|
123
|
-
<ProductRating rating={rating ?? 0} showRating={!hideRating} />
|
|
124
|
-
|
|
125
|
-
{/* PRODUCT PRICE WITH DISCOUNT */}
|
|
126
|
-
<ProductPrice discount={off} price={price} />
|
|
127
|
-
|
|
128
|
-
{/* PRODUCT QUANTITY HANDLER & FAVORITE BUTTONS */}
|
|
129
|
-
<ButtonActions
|
|
130
|
-
hasQty={cartItem?.Quantity ? true : false}
|
|
131
|
-
handleIncrementQuantity={handleIncrementQuantity}
|
|
132
|
-
handleDecrementQuantity={handleDecrementQuantity}
|
|
133
|
-
/>
|
|
134
|
-
</ContentWrapper>
|
|
135
|
-
</StyledBazaarCard>
|
|
136
|
-
);
|
|
137
|
-
}
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import styled from "@mui/material/styles/styled";
|
|
2
|
-
import BazaarCard from "@evenicanpm/storefront-core/src/components-v2/BazaarCard";
|
|
3
|
-
import getPaletteColor from "@/lib/get-palette-color";
|
|
4
|
-
|
|
5
|
-
export const StyledBazaarCard = styled(BazaarCard)(({ theme }) => ({
|
|
6
|
-
margin: "auto",
|
|
7
|
-
height: "100%",
|
|
8
|
-
display: "flex",
|
|
9
|
-
overflow: "hidden",
|
|
10
|
-
position: "relative",
|
|
11
|
-
flexDirection: "column",
|
|
12
|
-
justifyContent: "space-between",
|
|
13
|
-
transition: "all 250ms ease-in-out",
|
|
14
|
-
border: `1px solid ${theme.palette.grey[300]}`,
|
|
15
|
-
":hover": {
|
|
16
|
-
boxShadow: theme.shadows[2],
|
|
17
|
-
".controller": { right: 10 },
|
|
18
|
-
},
|
|
19
|
-
}));
|
|
20
|
-
|
|
21
|
-
export const ImageWrapper = styled("div")(({ theme }) => ({
|
|
22
|
-
height: "100%",
|
|
23
|
-
textAlign: "center",
|
|
24
|
-
position: "relative",
|
|
25
|
-
display: "inline-block",
|
|
26
|
-
[theme.breakpoints.down("sm")]: { display: "block" },
|
|
27
|
-
}));
|
|
28
|
-
|
|
29
|
-
export const ImageBox = styled("div")(({ theme }) => ({
|
|
30
|
-
padding: "3rem",
|
|
31
|
-
height: "100%",
|
|
32
|
-
borderBottom: `1px solid ${theme.palette.grey[300]}`,
|
|
33
|
-
}));
|
|
34
|
-
|
|
35
|
-
export const HoverWrapper = styled("div")(({ theme }) => ({
|
|
36
|
-
top: 0,
|
|
37
|
-
bottom: 0,
|
|
38
|
-
width: 35,
|
|
39
|
-
right: -40,
|
|
40
|
-
height: 120,
|
|
41
|
-
margin: "auto",
|
|
42
|
-
display: "flex",
|
|
43
|
-
background: "#fff",
|
|
44
|
-
overflow: "hidden",
|
|
45
|
-
borderRadius: "5px",
|
|
46
|
-
alignItems: "center",
|
|
47
|
-
position: "absolute",
|
|
48
|
-
flexDirection: "column",
|
|
49
|
-
boxShadow: theme.shadows[2],
|
|
50
|
-
justifyContent: "space-between",
|
|
51
|
-
transition: "right 0.3s ease-in-out",
|
|
52
|
-
span: {
|
|
53
|
-
width: "100%",
|
|
54
|
-
height: "100%",
|
|
55
|
-
display: "flex",
|
|
56
|
-
padding: "10px 0px",
|
|
57
|
-
alignItems: "center",
|
|
58
|
-
justifyContent: "center",
|
|
59
|
-
":hover": { cursor: "pointer", background: "#f3f5f9" },
|
|
60
|
-
},
|
|
61
|
-
a: {
|
|
62
|
-
width: "100%",
|
|
63
|
-
height: "100%",
|
|
64
|
-
display: "flex",
|
|
65
|
-
alignItems: "center",
|
|
66
|
-
justifyContent: "center",
|
|
67
|
-
"&:hover": { cursor: "pointer", background: "#f3f5f9" },
|
|
68
|
-
},
|
|
69
|
-
svg: {
|
|
70
|
-
fontSize: 18,
|
|
71
|
-
color: theme.palette.grey[600],
|
|
72
|
-
},
|
|
73
|
-
}));
|
|
74
|
-
|
|
75
|
-
export const ContentWrapper = styled("div")({
|
|
76
|
-
padding: "1rem",
|
|
77
|
-
"& .title, & .categories": {
|
|
78
|
-
overflow: "hidden",
|
|
79
|
-
whiteSpace: "nowrap",
|
|
80
|
-
textOverflow: "ellipsis",
|
|
81
|
-
},
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
export const ButtonBox = styled("div")(({ theme }) => ({
|
|
85
|
-
gap: 10,
|
|
86
|
-
display: "flex",
|
|
87
|
-
marginTop: "15px",
|
|
88
|
-
justifyContent: "space-between",
|
|
89
|
-
"& button": {
|
|
90
|
-
color: "#fff",
|
|
91
|
-
background: theme.palette.primary.main,
|
|
92
|
-
"&:hover": { background: getPaletteColor(theme, "primary", 600) },
|
|
93
|
-
},
|
|
94
|
-
}));
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import Divider from "@mui/material/Divider";
|
|
2
|
-
// MUI ICON COMPONENTS
|
|
3
|
-
import Favorite from "@mui/icons-material/Favorite";
|
|
4
|
-
import RemoveRedEye from "@mui/icons-material/RemoveRedEye";
|
|
5
|
-
import FavoriteBorder from "@mui/icons-material/FavoriteBorder";
|
|
6
|
-
import AddShoppingCart from "@mui/icons-material/AddShoppingCart";
|
|
7
|
-
// GLOBAL CUSTOM COMPONENT
|
|
8
|
-
import { Span } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
9
|
-
// STYLED COMPONENT
|
|
10
|
-
import { ItemController } from "../styles/index";
|
|
11
|
-
|
|
12
|
-
// ==============================================================
|
|
13
|
-
interface Props {
|
|
14
|
-
isFavorite: boolean;
|
|
15
|
-
toggleView: () => void;
|
|
16
|
-
toggleFavorite: () => void;
|
|
17
|
-
handleAddToCart: () => void;
|
|
18
|
-
}
|
|
19
|
-
// ==============================================================
|
|
20
|
-
|
|
21
|
-
export default function HoverActions({
|
|
22
|
-
isFavorite,
|
|
23
|
-
toggleView,
|
|
24
|
-
toggleFavorite,
|
|
25
|
-
handleAddToCart,
|
|
26
|
-
}: Props) {
|
|
27
|
-
return (
|
|
28
|
-
<ItemController className="controlBox">
|
|
29
|
-
<Span onClick={toggleView}>
|
|
30
|
-
<RemoveRedEye />
|
|
31
|
-
</Span>
|
|
32
|
-
|
|
33
|
-
<Divider orientation="horizontal" flexItem />
|
|
34
|
-
|
|
35
|
-
<Span onClick={toggleFavorite}>
|
|
36
|
-
{isFavorite ? (
|
|
37
|
-
<Favorite color="primary" fontSize="small" />
|
|
38
|
-
) : (
|
|
39
|
-
<FavoriteBorder fontSize="small" color="primary" />
|
|
40
|
-
)}
|
|
41
|
-
</Span>
|
|
42
|
-
|
|
43
|
-
<Divider orientation="horizontal" flexItem />
|
|
44
|
-
|
|
45
|
-
<Span onClick={handleAddToCart}>
|
|
46
|
-
<AddShoppingCart />
|
|
47
|
-
</Span>
|
|
48
|
-
</ItemController>
|
|
49
|
-
);
|
|
50
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as ProductCard6 } from "./product-card";
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import Link from "next/link";
|
|
4
|
-
// LOCAL CUSTOM COMPONENTS
|
|
5
|
-
import LazyImage from "@evenicanpm/storefront-core/src/components-v2/LazyImage";
|
|
6
|
-
import ProductViewDialog from "@evenicanpm/storefront-core/src/components-v2/products-view/product-view-dialog";
|
|
7
|
-
// LOCAL CUSTOM HOOK
|
|
8
|
-
import useProduct from "../use-product";
|
|
9
|
-
// LOCAL CUSTOM COMPONENTS
|
|
10
|
-
import HoverActions from "./components/hover-actions";
|
|
11
|
-
import ProductTitle from "../product-title";
|
|
12
|
-
import ProductPrice from "../product-price";
|
|
13
|
-
import DiscountChip from "../discount-chip";
|
|
14
|
-
import ProductRating from "../product-rating";
|
|
15
|
-
// STYLED COMPONENTS
|
|
16
|
-
import { ContentWrapper, ImgBox, StyledCard } from "./styles/index";
|
|
17
|
-
// CUSTOM DATA MODEL
|
|
18
|
-
import { Product } from "@evenicanpm/storefront-core/src/components-v2/bazaar-types";
|
|
19
|
-
|
|
20
|
-
// ============================================================
|
|
21
|
-
interface Props extends Partial<Product> {
|
|
22
|
-
hideRating?: boolean;
|
|
23
|
-
showProductSize?: boolean;
|
|
24
|
-
discount?: number;
|
|
25
|
-
id?: string;
|
|
26
|
-
slug: string;
|
|
27
|
-
title?: string;
|
|
28
|
-
price?: number;
|
|
29
|
-
thumbnail?: string;
|
|
30
|
-
rating?: number;
|
|
31
|
-
imgUrl?: string;
|
|
32
|
-
}
|
|
33
|
-
// ============================================================
|
|
34
|
-
|
|
35
|
-
export default function ProductCard6(props: Props) {
|
|
36
|
-
const {
|
|
37
|
-
hideRating,
|
|
38
|
-
discount,
|
|
39
|
-
id,
|
|
40
|
-
slug,
|
|
41
|
-
title,
|
|
42
|
-
price,
|
|
43
|
-
thumbnail,
|
|
44
|
-
rating,
|
|
45
|
-
imgUrl,
|
|
46
|
-
} = props;
|
|
47
|
-
|
|
48
|
-
const {
|
|
49
|
-
cartItem,
|
|
50
|
-
isFavorite,
|
|
51
|
-
openModal,
|
|
52
|
-
toggleDialog,
|
|
53
|
-
toggleFavorite,
|
|
54
|
-
handleCartAmountChange,
|
|
55
|
-
} = useProduct(slug);
|
|
56
|
-
|
|
57
|
-
const handleAddToCart = () => {
|
|
58
|
-
const product = {
|
|
59
|
-
id,
|
|
60
|
-
slug,
|
|
61
|
-
price,
|
|
62
|
-
imgUrl,
|
|
63
|
-
name: title,
|
|
64
|
-
qty: (cartItem?.Quantity || 0) + 1,
|
|
65
|
-
};
|
|
66
|
-
product;
|
|
67
|
-
handleCartAmountChange();
|
|
68
|
-
};
|
|
69
|
-
|
|
70
|
-
return (
|
|
71
|
-
<StyledCard>
|
|
72
|
-
<ImgBox id="imgBox">
|
|
73
|
-
{/* DISCOUNT PERCENT CHIP IF AVAILABLE */}
|
|
74
|
-
<DiscountChip discount={discount ?? 0} shape="square" />
|
|
75
|
-
|
|
76
|
-
{/* PRODUCT IMAGE / THUMBNAIL */}
|
|
77
|
-
<Link href={`/products/${slug}`}>
|
|
78
|
-
<LazyImage
|
|
79
|
-
alt={title ?? "title error"}
|
|
80
|
-
width={550}
|
|
81
|
-
height={550}
|
|
82
|
-
src={thumbnail ?? ""}
|
|
83
|
-
style={{ height: 190, objectFit: "contain" }}
|
|
84
|
-
/>
|
|
85
|
-
</Link>
|
|
86
|
-
|
|
87
|
-
{/* HOVER ACTION ICONS */}
|
|
88
|
-
<HoverActions
|
|
89
|
-
isFavorite={isFavorite}
|
|
90
|
-
toggleView={toggleDialog}
|
|
91
|
-
toggleFavorite={toggleFavorite}
|
|
92
|
-
handleAddToCart={handleAddToCart}
|
|
93
|
-
/>
|
|
94
|
-
</ImgBox>
|
|
95
|
-
|
|
96
|
-
{/* PRODUCT VIEW DIALOG BOX */}
|
|
97
|
-
<ProductViewDialog
|
|
98
|
-
openDialog={openModal}
|
|
99
|
-
handleCloseDialog={toggleDialog}
|
|
100
|
-
product={{
|
|
101
|
-
title: title || "",
|
|
102
|
-
price: price || 0,
|
|
103
|
-
id: id || "",
|
|
104
|
-
slug: slug || "",
|
|
105
|
-
imgGroup: imgUrl ? [imgUrl] : ([] as string[]),
|
|
106
|
-
}}
|
|
107
|
-
/>
|
|
108
|
-
|
|
109
|
-
<ContentWrapper>
|
|
110
|
-
{/* PRODUCT PRICE WITH DISCOUNT */}
|
|
111
|
-
<ProductPrice discount={discount ?? 0} price={price ?? 0} />
|
|
112
|
-
|
|
113
|
-
{/* PRODUCT NAME / TITLE */}
|
|
114
|
-
<ProductTitle slug={slug} title={title ?? "title error"} />
|
|
115
|
-
|
|
116
|
-
{/* PRODUCT RATINGS IF AVAILABLE */}
|
|
117
|
-
<ProductRating rating={rating ?? 0} showRating={!hideRating} />
|
|
118
|
-
</ContentWrapper>
|
|
119
|
-
</StyledCard>
|
|
120
|
-
);
|
|
121
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import Box from "@mui/material/Box";
|
|
2
|
-
import styled from "@mui/material/styles/styled";
|
|
3
|
-
import { FlexBetween } from "@evenicanpm/storefront-core/src/components-v2/flex-box/index";
|
|
4
|
-
import getPaletteColor from "@/lib/get-palette-color";
|
|
5
|
-
|
|
6
|
-
export const StyledCard = styled(Box)(({ theme }) => ({
|
|
7
|
-
height: "100%",
|
|
8
|
-
margin: "auto",
|
|
9
|
-
borderRadius: 0,
|
|
10
|
-
overflow: "hidden",
|
|
11
|
-
position: "relative",
|
|
12
|
-
transition: "all 250ms ease-in-out",
|
|
13
|
-
"&:hover": {
|
|
14
|
-
boxShadow: theme.shadows[2],
|
|
15
|
-
"& .css-1i2n18j": { display: "flex" },
|
|
16
|
-
"& .controlBox": { display: "flex", bottom: 0 },
|
|
17
|
-
},
|
|
18
|
-
}));
|
|
19
|
-
|
|
20
|
-
export const ImgBox = styled("div")(({ theme }) => ({
|
|
21
|
-
overflow: "hidden",
|
|
22
|
-
position: "relative",
|
|
23
|
-
padding: "0 40px 20px 40px",
|
|
24
|
-
background: getPaletteColor(theme, "primary", 100),
|
|
25
|
-
}));
|
|
26
|
-
|
|
27
|
-
export const ItemController = styled(FlexBetween)(({ theme }) => ({
|
|
28
|
-
width: 35,
|
|
29
|
-
right: 15,
|
|
30
|
-
height: 120,
|
|
31
|
-
bottom: -120,
|
|
32
|
-
background: "#fff",
|
|
33
|
-
overflow: "hidden",
|
|
34
|
-
position: "absolute",
|
|
35
|
-
flexDirection: "column",
|
|
36
|
-
transition: "bottom 0.3s ease-in-out",
|
|
37
|
-
"& span": {
|
|
38
|
-
width: "100%",
|
|
39
|
-
height: "100%",
|
|
40
|
-
display: "flex",
|
|
41
|
-
padding: "8px 10px",
|
|
42
|
-
alignItems: "center",
|
|
43
|
-
justifyContent: "center",
|
|
44
|
-
"&:hover": {
|
|
45
|
-
cursor: "pointer",
|
|
46
|
-
background: theme.palette.primary.main,
|
|
47
|
-
"& svg": { color: "#fff" },
|
|
48
|
-
},
|
|
49
|
-
},
|
|
50
|
-
"& svg": { fontSize: 18, color: theme.palette.grey[600] },
|
|
51
|
-
}));
|
|
52
|
-
|
|
53
|
-
export const ContentWrapper = styled("div")({
|
|
54
|
-
display: "flex",
|
|
55
|
-
alignItems: "center",
|
|
56
|
-
flexDirection: "column",
|
|
57
|
-
padding: "1rem",
|
|
58
|
-
"& .title, & .categories": {
|
|
59
|
-
overflow: "hidden",
|
|
60
|
-
whiteSpace: "nowrap",
|
|
61
|
-
textOverflow: "ellipsis",
|
|
62
|
-
},
|
|
63
|
-
});
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// STYLED COMPONENTS
|
|
2
|
-
import { StatusChipBox, StatusChip } from "../styles/index";
|
|
3
|
-
|
|
4
|
-
// ==============================================================
|
|
5
|
-
type Props = { status: string };
|
|
6
|
-
// ==============================================================
|
|
7
|
-
|
|
8
|
-
export default function ProductStatus({ status }: Props) {
|
|
9
|
-
return status ? (
|
|
10
|
-
<StatusChipBox>
|
|
11
|
-
<StatusChip>{status}</StatusChip>
|
|
12
|
-
<div className="triangle">
|
|
13
|
-
<div className="triangle-left" />
|
|
14
|
-
<div className="triangle-right" />
|
|
15
|
-
</div>
|
|
16
|
-
</StatusChipBox>
|
|
17
|
-
) : null;
|
|
18
|
-
}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { Fragment } from "react";
|
|
2
|
-
// MUI ICON COMPONENTS
|
|
3
|
-
import Add from "@mui/icons-material/Add";
|
|
4
|
-
import Remove from "@mui/icons-material/Remove";
|
|
5
|
-
// GLOBAL CUSTOM COMPONENT
|
|
6
|
-
import { FlexBox } from "@evenicanpm/storefront-core/src/components-v2/flex-box/index";
|
|
7
|
-
import { Paragraph } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
8
|
-
// STYLED COMPONENT
|
|
9
|
-
import { StyledButton } from "../styles/index";
|
|
10
|
-
|
|
11
|
-
// ==============================================================
|
|
12
|
-
interface Props {
|
|
13
|
-
quantity: number;
|
|
14
|
-
handleDecrement: () => void;
|
|
15
|
-
handleIncrement: () => void;
|
|
16
|
-
}
|
|
17
|
-
// ==============================================================
|
|
18
|
-
|
|
19
|
-
export default function QuantityButtons({
|
|
20
|
-
quantity,
|
|
21
|
-
handleDecrement,
|
|
22
|
-
handleIncrement,
|
|
23
|
-
}: Props) {
|
|
24
|
-
return (
|
|
25
|
-
<FlexBox
|
|
26
|
-
width="30px"
|
|
27
|
-
alignItems="center"
|
|
28
|
-
className="add-cart"
|
|
29
|
-
flexDirection="column-reverse"
|
|
30
|
-
justifyContent={quantity ? "space-between" : "flex-start"}
|
|
31
|
-
>
|
|
32
|
-
<StyledButton variant="outlined" onClick={handleIncrement}>
|
|
33
|
-
<Add fontSize="small" />
|
|
34
|
-
</StyledButton>
|
|
35
|
-
|
|
36
|
-
{quantity ? (
|
|
37
|
-
<Fragment>
|
|
38
|
-
<Paragraph fontWeight={600}>{quantity}</Paragraph>
|
|
39
|
-
|
|
40
|
-
<StyledButton variant="outlined" onClick={handleDecrement}>
|
|
41
|
-
<Remove fontSize="small" />
|
|
42
|
-
</StyledButton>
|
|
43
|
-
</Fragment>
|
|
44
|
-
) : null}
|
|
45
|
-
</FlexBox>
|
|
46
|
-
);
|
|
47
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as ProductCard7 } from "./product-card";
|