@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,161 +0,0 @@
|
|
|
1
|
-
import React, { Fragment } from "react";
|
|
2
|
-
import isFunction from "lodash/isFunction";
|
|
3
|
-
import { useTranslations } from "next-intl";
|
|
4
|
-
import { Grid, Button, Dialog, DialogContent } from "@mui/material";
|
|
5
|
-
import { MdFavorite } from "react-icons/md";
|
|
6
|
-
// Global Custom components
|
|
7
|
-
import DashboardHeader from "./components/dashboard-header";
|
|
8
|
-
import CreateWishlistButton from "./components/create-wishlist-button";
|
|
9
|
-
import WishlistModalItem from "./components/wishlist-modal-item";
|
|
10
|
-
import NoRecords from "./components/no-records";
|
|
11
|
-
// API
|
|
12
|
-
import {
|
|
13
|
-
CopyCartToWishlistInput,
|
|
14
|
-
Wishlist,
|
|
15
|
-
WishlistLinesInput,
|
|
16
|
-
} from "@evenicanpm/storefront-core/src/api-manager/schemas/user.schema";
|
|
17
|
-
import { Cart } from "@evenicanpm/storefront-core/src/api-manager/schemas/cart.schema";
|
|
18
|
-
import useAddToWishlist from "@/api-manager/services/user/mutations/add-to-wishlist";
|
|
19
|
-
import { useNotification } from "@evenicanpm/storefront-core/src/providers/notifications/use-notification";
|
|
20
|
-
import useCopyCartToWishlist from "@/api-manager/services/user/mutations/copy-cart-to-wishlist";
|
|
21
|
-
import { useSession } from "next-auth/react";
|
|
22
|
-
import getWishlists from "@/api-manager/services/user/queries/get-wishlists";
|
|
23
|
-
|
|
24
|
-
interface Props {
|
|
25
|
-
open: boolean;
|
|
26
|
-
handleClose: () => void;
|
|
27
|
-
productId?: number;
|
|
28
|
-
cart?: Cart;
|
|
29
|
-
onSuccess?: () => void;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export default function AddToWishlistDialog(props: Props) {
|
|
33
|
-
const { data: wishlists, isLoading } = getWishlists.useData();
|
|
34
|
-
|
|
35
|
-
const t = useTranslations("Account.Wishlists");
|
|
36
|
-
const { setNotification } = useNotification();
|
|
37
|
-
|
|
38
|
-
const { mutateAsync: addToWishlist } = useAddToWishlist();
|
|
39
|
-
const { mutateAsync: copyCartToWishlist } = useCopyCartToWishlist();
|
|
40
|
-
|
|
41
|
-
const { data: session } = useSession();
|
|
42
|
-
const isAuthenticated = !!session;
|
|
43
|
-
|
|
44
|
-
const handleClose = () => {
|
|
45
|
-
if (isFunction(props.handleClose)) {
|
|
46
|
-
props.handleClose();
|
|
47
|
-
}
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
const handleAddToWishlist = async (wishlistId: string) => {
|
|
51
|
-
if (props.productId) {
|
|
52
|
-
try {
|
|
53
|
-
const wishlistLinesInput: WishlistLinesInput = {
|
|
54
|
-
Id: wishlistId,
|
|
55
|
-
ProductListLines: [],
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
wishlistLinesInput.ProductListLines.push({
|
|
59
|
-
ProductListId: wishlistId,
|
|
60
|
-
ProductId: props.productId,
|
|
61
|
-
Quantity: 1,
|
|
62
|
-
UnitOfMeasure: "ea",
|
|
63
|
-
});
|
|
64
|
-
await addToWishlist(wishlistLinesInput);
|
|
65
|
-
setNotification({
|
|
66
|
-
message: t("wishlistLineAddSuccess"),
|
|
67
|
-
severity: "success",
|
|
68
|
-
});
|
|
69
|
-
if (isFunction(props.onSuccess)) {
|
|
70
|
-
props.onSuccess();
|
|
71
|
-
}
|
|
72
|
-
} catch (error) {
|
|
73
|
-
setNotification({
|
|
74
|
-
message: t("wishlistLineAddFailed"),
|
|
75
|
-
severity: "error",
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
} else if (props.cart) {
|
|
79
|
-
try {
|
|
80
|
-
const copyCartToWishlistInput: CopyCartToWishlistInput = {
|
|
81
|
-
Id: wishlistId,
|
|
82
|
-
CartID: props.cart.Id,
|
|
83
|
-
IsRewrite: false,
|
|
84
|
-
IsQuantityAggregate: true,
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
await copyCartToWishlist(copyCartToWishlistInput);
|
|
88
|
-
setNotification({
|
|
89
|
-
message: t("wishlistCartCopySuccess"),
|
|
90
|
-
severity: "success",
|
|
91
|
-
});
|
|
92
|
-
} catch (error) {
|
|
93
|
-
setNotification({
|
|
94
|
-
message: t("wishlistCartCopyFailed"),
|
|
95
|
-
severity: "error",
|
|
96
|
-
});
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
};
|
|
100
|
-
|
|
101
|
-
return (
|
|
102
|
-
<Dialog
|
|
103
|
-
open={props.open}
|
|
104
|
-
onClose={handleClose}
|
|
105
|
-
aria-labelledby="form-dialog-title"
|
|
106
|
-
>
|
|
107
|
-
<DialogContent>
|
|
108
|
-
<Fragment>
|
|
109
|
-
<DashboardHeader
|
|
110
|
-
title="Account.Wishlists.heading"
|
|
111
|
-
Icon={MdFavorite}
|
|
112
|
-
href=""
|
|
113
|
-
buttonText=""
|
|
114
|
-
buttons={
|
|
115
|
-
isAuthenticated && (
|
|
116
|
-
<CreateWishlistButton path="Account.Wishlists.btnCreateNewList" />
|
|
117
|
-
)
|
|
118
|
-
}
|
|
119
|
-
/>
|
|
120
|
-
{isAuthenticated && !isLoading ? (
|
|
121
|
-
wishlists && wishlists.length > 0 ? (
|
|
122
|
-
wishlists?.map((wishlist: Wishlist) => (
|
|
123
|
-
<WishlistModalItem
|
|
124
|
-
key={wishlist.Id}
|
|
125
|
-
wishlist={wishlist}
|
|
126
|
-
addToWishlist={handleAddToWishlist}
|
|
127
|
-
/>
|
|
128
|
-
))
|
|
129
|
-
) : (
|
|
130
|
-
<NoRecords message="Account.Wishlists.noWishlists" />
|
|
131
|
-
)
|
|
132
|
-
) : (
|
|
133
|
-
<NoRecords message="Account.Wishlists.wishlistAddUnauthenticated" />
|
|
134
|
-
)}
|
|
135
|
-
</Fragment>
|
|
136
|
-
<Grid container spacing={3}>
|
|
137
|
-
<Grid
|
|
138
|
-
item
|
|
139
|
-
sm={12}
|
|
140
|
-
xs={12}
|
|
141
|
-
sx={{
|
|
142
|
-
display: "flex",
|
|
143
|
-
justifyContent: "flex-start",
|
|
144
|
-
gap: 2,
|
|
145
|
-
}}
|
|
146
|
-
>
|
|
147
|
-
<Button
|
|
148
|
-
color="primary"
|
|
149
|
-
variant="outlined"
|
|
150
|
-
size="small"
|
|
151
|
-
onClick={handleClose}
|
|
152
|
-
sx={{ height: 30.75 }}
|
|
153
|
-
>
|
|
154
|
-
{t("btnCancel")}
|
|
155
|
-
</Button>
|
|
156
|
-
</Grid>
|
|
157
|
-
</Grid>
|
|
158
|
-
</DialogContent>
|
|
159
|
-
</Dialog>
|
|
160
|
-
);
|
|
161
|
-
}
|
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
import React, { useEffect } from "react";
|
|
2
|
-
import isFunction from "lodash/isFunction";
|
|
3
|
-
import { useTranslations } from "next-intl";
|
|
4
|
-
import {
|
|
5
|
-
Box,
|
|
6
|
-
Button,
|
|
7
|
-
TextField,
|
|
8
|
-
Dialog,
|
|
9
|
-
DialogContent,
|
|
10
|
-
FormControlLabel,
|
|
11
|
-
Checkbox,
|
|
12
|
-
} from "@mui/material";
|
|
13
|
-
import Grid from "@mui/material/Grid2";
|
|
14
|
-
// Global Custom components
|
|
15
|
-
import { H5 } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
16
|
-
import { useNotification } from "@evenicanpm/storefront-core/src/providers/notifications/use-notification";
|
|
17
|
-
// Forms
|
|
18
|
-
import { useFormik } from "formik";
|
|
19
|
-
import { z } from "zod";
|
|
20
|
-
import { withZodSchema } from "formik-validator-zod";
|
|
21
|
-
// API
|
|
22
|
-
import useCreateWishlist from "@evenicanpm/storefront-core/src/api-manager/services/user/mutations/create-wishlist";
|
|
23
|
-
|
|
24
|
-
interface Props {
|
|
25
|
-
open: boolean;
|
|
26
|
-
handleClose: () => void;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export default function CreateNewList(props: Props) {
|
|
30
|
-
const t = useTranslations("Account.Wishlists");
|
|
31
|
-
const { setNotification } = useNotification();
|
|
32
|
-
|
|
33
|
-
const { mutateAsync: createWishlist } = useCreateWishlist();
|
|
34
|
-
|
|
35
|
-
const FormSchema = z.object({
|
|
36
|
-
Id: z.string(),
|
|
37
|
-
Name: z.string().nonempty(t("Validation.required", { field: t("name") })),
|
|
38
|
-
Comment: z.string().optional(),
|
|
39
|
-
IsPublic: z.boolean().optional(),
|
|
40
|
-
});
|
|
41
|
-
type FormSchemaType = z.infer<typeof FormSchema>;
|
|
42
|
-
|
|
43
|
-
const handleSubmit = async (values: FormSchemaType) => {
|
|
44
|
-
try {
|
|
45
|
-
await createWishlist({ ...values, IsPublic: !values.IsPublic });
|
|
46
|
-
handleClose();
|
|
47
|
-
setNotification({
|
|
48
|
-
message: t("wishlistSuccess"),
|
|
49
|
-
severity: "success",
|
|
50
|
-
});
|
|
51
|
-
} catch (error) {
|
|
52
|
-
setNotification({
|
|
53
|
-
message: t("wishlistFailed"),
|
|
54
|
-
severity: "error",
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
|
|
59
|
-
const formik = useFormik<FormSchemaType>({
|
|
60
|
-
initialValues: {
|
|
61
|
-
Id: "",
|
|
62
|
-
Name: "",
|
|
63
|
-
Comment: "",
|
|
64
|
-
IsPublic: false,
|
|
65
|
-
},
|
|
66
|
-
onSubmit: handleSubmit,
|
|
67
|
-
validate: withZodSchema(FormSchema),
|
|
68
|
-
});
|
|
69
|
-
|
|
70
|
-
// destructure to put in dependency array
|
|
71
|
-
// of use effect instead of whole formik
|
|
72
|
-
const { resetForm } = formik;
|
|
73
|
-
|
|
74
|
-
useEffect(() => {
|
|
75
|
-
if (props.open) {
|
|
76
|
-
resetForm();
|
|
77
|
-
}
|
|
78
|
-
}, [props.open, resetForm]);
|
|
79
|
-
|
|
80
|
-
const handleClose = () => {
|
|
81
|
-
if (isFunction(props.handleClose)) {
|
|
82
|
-
props.handleClose();
|
|
83
|
-
}
|
|
84
|
-
};
|
|
85
|
-
|
|
86
|
-
return (
|
|
87
|
-
<Dialog
|
|
88
|
-
open={props.open}
|
|
89
|
-
onClose={handleClose}
|
|
90
|
-
aria-labelledby="form-dialog-title"
|
|
91
|
-
>
|
|
92
|
-
<DialogContent>
|
|
93
|
-
<H5 mb={4}>{t("formTitle")}</H5>
|
|
94
|
-
<Box component="form" onSubmit={formik.handleSubmit}>
|
|
95
|
-
<Grid container spacing={3}>
|
|
96
|
-
<Grid size={{ sm: 6, xs: 12 }}>
|
|
97
|
-
<TextField
|
|
98
|
-
name="Name"
|
|
99
|
-
fullWidth
|
|
100
|
-
label={t("name")}
|
|
101
|
-
value={formik.values.Name}
|
|
102
|
-
onChange={formik.handleChange}
|
|
103
|
-
onBlur={formik.handleBlur}
|
|
104
|
-
error={formik.touched.Name && Boolean(formik.errors.Name)}
|
|
105
|
-
helperText={formik.touched.Name && formik.errors.Name}
|
|
106
|
-
required
|
|
107
|
-
/>
|
|
108
|
-
</Grid>
|
|
109
|
-
<Grid size={{ sm: 6, xs: 12 }}>
|
|
110
|
-
<TextField
|
|
111
|
-
name="Comment"
|
|
112
|
-
fullWidth
|
|
113
|
-
label={t("comment")}
|
|
114
|
-
value={formik.values.Comment}
|
|
115
|
-
onChange={formik.handleChange}
|
|
116
|
-
onBlur={formik.handleBlur}
|
|
117
|
-
error={formik.touched.Comment && Boolean(formik.errors.Comment)}
|
|
118
|
-
helperText={formik.touched.Comment && formik.errors.Comment}
|
|
119
|
-
/>
|
|
120
|
-
</Grid>
|
|
121
|
-
<Grid size={{ sm: 6, xs: 12 }}>
|
|
122
|
-
<FormControlLabel
|
|
123
|
-
control={
|
|
124
|
-
<Checkbox
|
|
125
|
-
name="IsPublic"
|
|
126
|
-
checked={formik.values.IsPublic}
|
|
127
|
-
onChange={formik.handleChange}
|
|
128
|
-
onBlur={formik.handleBlur}
|
|
129
|
-
/>
|
|
130
|
-
}
|
|
131
|
-
label={t("private")}
|
|
132
|
-
/>
|
|
133
|
-
</Grid>
|
|
134
|
-
<Grid
|
|
135
|
-
size={{ sm: 6, xs: 12 }}
|
|
136
|
-
sx={{
|
|
137
|
-
display: "flex",
|
|
138
|
-
justifyContent: "flex-end",
|
|
139
|
-
alignItems: "center",
|
|
140
|
-
gap: 2,
|
|
141
|
-
}}
|
|
142
|
-
>
|
|
143
|
-
<Button
|
|
144
|
-
color="primary"
|
|
145
|
-
variant="contained"
|
|
146
|
-
size="small"
|
|
147
|
-
type="submit"
|
|
148
|
-
sx={{ height: 30.75 }}
|
|
149
|
-
>
|
|
150
|
-
{t("btnSave")}
|
|
151
|
-
</Button>
|
|
152
|
-
<Button
|
|
153
|
-
color="primary"
|
|
154
|
-
variant="outlined"
|
|
155
|
-
size="small"
|
|
156
|
-
onClick={handleClose}
|
|
157
|
-
sx={{ height: 30.75 }}
|
|
158
|
-
>
|
|
159
|
-
{t("btnCancel")}
|
|
160
|
-
</Button>
|
|
161
|
-
</Grid>
|
|
162
|
-
</Grid>
|
|
163
|
-
</Box>
|
|
164
|
-
</DialogContent>
|
|
165
|
-
</Dialog>
|
|
166
|
-
);
|
|
167
|
-
}
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
import React, { ReactNode } from "react";
|
|
2
|
-
import Link from "next/link";
|
|
3
|
-
import { Box, Button, IconButton, Theme, styled } from "@mui/material";
|
|
4
|
-
import useMediaQuery from "@mui/material/useMediaQuery";
|
|
5
|
-
import { useTranslations } from "next-intl";
|
|
6
|
-
// ICON COMPONENTS
|
|
7
|
-
import { MdMenu as Menu } from "react-icons/md";
|
|
8
|
-
// GLOBAL CUSTOM COMPONENTS
|
|
9
|
-
import SideNav from "@evenicanpm/storefront-core/src/components-v2/side-nav/index";
|
|
10
|
-
import { H2 } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
11
|
-
import FlexBox from "@evenicanpm/storefront-core/src/components-v2/flex-box/flex-box";
|
|
12
|
-
// LOCAL CUSTOM COMPONENTS
|
|
13
|
-
import Navigation from "./navigation";
|
|
14
|
-
import { IconType } from "react-icons";
|
|
15
|
-
|
|
16
|
-
// STYLED COMPONENT
|
|
17
|
-
const StyledBox = styled("div")(({ theme }) => ({
|
|
18
|
-
display: "flex",
|
|
19
|
-
marginTop: theme.spacing(-2),
|
|
20
|
-
marginBottom: theme.spacing(3),
|
|
21
|
-
"& .headerHold": {
|
|
22
|
-
flexGrow: 1,
|
|
23
|
-
alignItems: "center",
|
|
24
|
-
justifyContent: "space-between",
|
|
25
|
-
},
|
|
26
|
-
[theme.breakpoints.up("md")]: {
|
|
27
|
-
"& .sidenav": { display: "none" },
|
|
28
|
-
},
|
|
29
|
-
[theme.breakpoints.down("md")]: {
|
|
30
|
-
flexDirection: "column",
|
|
31
|
-
},
|
|
32
|
-
}));
|
|
33
|
-
|
|
34
|
-
// ==============================================================
|
|
35
|
-
|
|
36
|
-
type WithButtons = {
|
|
37
|
-
title: string;
|
|
38
|
-
titleMessage?: string;
|
|
39
|
-
buttons: ReactNode;
|
|
40
|
-
Icon: IconType;
|
|
41
|
-
href?: never;
|
|
42
|
-
buttonText?: never;
|
|
43
|
-
};
|
|
44
|
-
|
|
45
|
-
type WithGeneratedButton = {
|
|
46
|
-
title: string;
|
|
47
|
-
titleMessage?: string;
|
|
48
|
-
href?: string;
|
|
49
|
-
buttonText?: string;
|
|
50
|
-
Icon: IconType;
|
|
51
|
-
buttons?: ReactNode;
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
type Props = WithButtons | WithGeneratedButton;
|
|
55
|
-
|
|
56
|
-
// ==============================================================
|
|
57
|
-
|
|
58
|
-
export default function DashboardHeader({
|
|
59
|
-
title,
|
|
60
|
-
titleMessage,
|
|
61
|
-
buttons,
|
|
62
|
-
href,
|
|
63
|
-
buttonText,
|
|
64
|
-
Icon,
|
|
65
|
-
}: Props) {
|
|
66
|
-
const t = useTranslations();
|
|
67
|
-
const isTablet = useMediaQuery((theme: Theme) =>
|
|
68
|
-
theme.breakpoints.down(1025),
|
|
69
|
-
);
|
|
70
|
-
|
|
71
|
-
const GENERATED_BUTTON = href ? (
|
|
72
|
-
<Button
|
|
73
|
-
href={href}
|
|
74
|
-
color="primary"
|
|
75
|
-
LinkComponent={Link}
|
|
76
|
-
sx={{ bgcolor: "primary.light", px: 4 }}
|
|
77
|
-
>
|
|
78
|
-
{t(buttonText)}
|
|
79
|
-
</Button>
|
|
80
|
-
) : null;
|
|
81
|
-
|
|
82
|
-
const HEADER_LINKS = (
|
|
83
|
-
<FlexBox gap={1} justifyContent="flex-end">
|
|
84
|
-
{buttons || GENERATED_BUTTON}
|
|
85
|
-
</FlexBox>
|
|
86
|
-
);
|
|
87
|
-
|
|
88
|
-
return (
|
|
89
|
-
<StyledBox>
|
|
90
|
-
<FlexBox mt={2} className="headerHold">
|
|
91
|
-
<FlexBox alignItems="center" gap={0.5}>
|
|
92
|
-
{Icon && (
|
|
93
|
-
<IconButton color="primary">
|
|
94
|
-
<Icon />
|
|
95
|
-
</IconButton>
|
|
96
|
-
)}
|
|
97
|
-
<H2 my={0} lineHeight={1} ellipsis>
|
|
98
|
-
{titleMessage ? titleMessage : t(title)}
|
|
99
|
-
</H2>
|
|
100
|
-
</FlexBox>
|
|
101
|
-
|
|
102
|
-
<FlexBox className="button-container" justifyContent="flex-end">
|
|
103
|
-
{!isTablet && HEADER_LINKS}
|
|
104
|
-
</FlexBox>
|
|
105
|
-
|
|
106
|
-
<div className="sidenav">
|
|
107
|
-
<SideNav
|
|
108
|
-
position="left"
|
|
109
|
-
handler={(close) => (
|
|
110
|
-
<IconButton onClick={close}>
|
|
111
|
-
<Menu fontSize="small" />
|
|
112
|
-
</IconButton>
|
|
113
|
-
)}
|
|
114
|
-
>
|
|
115
|
-
<Navigation />
|
|
116
|
-
</SideNav>
|
|
117
|
-
</div>
|
|
118
|
-
</FlexBox>
|
|
119
|
-
|
|
120
|
-
{isTablet ? <Box mt={2}>{HEADER_LINKS}</Box> : null}
|
|
121
|
-
</StyledBox>
|
|
122
|
-
);
|
|
123
|
-
}
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { usePathname } from "next/navigation";
|
|
4
|
-
import { Fragment } from "react";
|
|
5
|
-
import { useTranslations } from "next-intl";
|
|
6
|
-
|
|
7
|
-
// ICON COMPONENTS
|
|
8
|
-
import {
|
|
9
|
-
MdOutlineShoppingBag as ShoppingBagOutlined,
|
|
10
|
-
MdFavoriteBorder as FavoriteBorder,
|
|
11
|
-
MdPerson as Person,
|
|
12
|
-
MdPlace as Place,
|
|
13
|
-
} from "react-icons/md";
|
|
14
|
-
|
|
15
|
-
// GLOBAL CUSTOM COMPONENTS
|
|
16
|
-
import FlexBox from "@evenicanpm/storefront-core/src/components-v2/flex-box/flex-box";
|
|
17
|
-
import {
|
|
18
|
-
Paragraph,
|
|
19
|
-
Span,
|
|
20
|
-
} from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
21
|
-
|
|
22
|
-
// API
|
|
23
|
-
import getUser from "@evenicanpm/storefront-core/src/api-manager/services/user/queries/get-user";
|
|
24
|
-
import getUserCounts from "@evenicanpm/storefront-core/src/api-manager/services/user/queries/get-user-counts";
|
|
25
|
-
|
|
26
|
-
// STYLED COMPONENTS
|
|
27
|
-
import { MainContainer, StyledNavLink } from "../styles";
|
|
28
|
-
|
|
29
|
-
const MENU_ITEMS = [
|
|
30
|
-
{
|
|
31
|
-
title: "DASHBOARD",
|
|
32
|
-
list: [
|
|
33
|
-
{
|
|
34
|
-
href: "/account/orders",
|
|
35
|
-
title: "orders",
|
|
36
|
-
Icon: ShoppingBagOutlined,
|
|
37
|
-
count: 0,
|
|
38
|
-
},
|
|
39
|
-
{ href: "/account/wish-lists", title: "wishlists", Icon: FavoriteBorder },
|
|
40
|
-
],
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
title: "ACCOUNT SETTINGS",
|
|
44
|
-
list: [
|
|
45
|
-
{ href: "/account/profile", title: "profile", Icon: Person },
|
|
46
|
-
{ href: "/account/addresses", title: "addresses", Icon: Place, count: 0 },
|
|
47
|
-
],
|
|
48
|
-
},
|
|
49
|
-
];
|
|
50
|
-
|
|
51
|
-
export default function Navigation() {
|
|
52
|
-
const pathname = usePathname();
|
|
53
|
-
const t = useTranslations("Account.Menu");
|
|
54
|
-
|
|
55
|
-
const { data: user } = getUser.useData();
|
|
56
|
-
const { data: counts } = getUserCounts.useData(String(user?.RecordId) || "");
|
|
57
|
-
|
|
58
|
-
MENU_ITEMS[0].list[0].count = counts?.orderCount;
|
|
59
|
-
MENU_ITEMS[1].list[1].count = counts?.addressCount;
|
|
60
|
-
|
|
61
|
-
return (
|
|
62
|
-
<MainContainer>
|
|
63
|
-
{MENU_ITEMS.map((item) => (
|
|
64
|
-
<Fragment key={item.title}>
|
|
65
|
-
<Paragraph p="26px 30px 1rem" color="grey.600" fontSize={12}>
|
|
66
|
-
{item.title}
|
|
67
|
-
</Paragraph>
|
|
68
|
-
|
|
69
|
-
{item.list.map(({ Icon, count, href, title }) => (
|
|
70
|
-
<StyledNavLink
|
|
71
|
-
href={href}
|
|
72
|
-
key={title}
|
|
73
|
-
isCurrentPath={pathname.includes(href)}
|
|
74
|
-
>
|
|
75
|
-
<FlexBox alignItems="center" gap={1}>
|
|
76
|
-
<Icon color="inherit" fontSize="large" className="nav-icon" />
|
|
77
|
-
<Span>{t(title)}</Span>
|
|
78
|
-
</FlexBox>
|
|
79
|
-
|
|
80
|
-
<Span>{count}</Span>
|
|
81
|
-
</StyledNavLink>
|
|
82
|
-
))}
|
|
83
|
-
</Fragment>
|
|
84
|
-
))}
|
|
85
|
-
</MainContainer>
|
|
86
|
-
);
|
|
87
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { Box } from "@mui/material";
|
|
3
|
-
import { H4 } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
4
|
-
import { useTranslations } from "next-intl";
|
|
5
|
-
|
|
6
|
-
type Props = { message: string };
|
|
7
|
-
|
|
8
|
-
export default function NoRecords({ message }: Props) {
|
|
9
|
-
const t = useTranslations();
|
|
10
|
-
return (
|
|
11
|
-
<Box
|
|
12
|
-
display="flex"
|
|
13
|
-
justifyContent="center"
|
|
14
|
-
alignItems="center"
|
|
15
|
-
height="50vh"
|
|
16
|
-
>
|
|
17
|
-
<H4 color="grey.500">{t(message)}</H4>
|
|
18
|
-
</Box>
|
|
19
|
-
);
|
|
20
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { Button } from "@mui/material";
|
|
2
|
-
import { format } from "date-fns";
|
|
3
|
-
// MUI ICON COMPONENTS
|
|
4
|
-
// GLOBAL CUSTOM COMPONENTS
|
|
5
|
-
import { Paragraph } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
6
|
-
// LOCAL CUSTOM COMPONENT
|
|
7
|
-
|
|
8
|
-
// API
|
|
9
|
-
import { Wishlist } from "@/api-manager/schemas/user.schema";
|
|
10
|
-
import { StyledTableRow } from "../styles";
|
|
11
|
-
|
|
12
|
-
interface Props {
|
|
13
|
-
wishlist: Wishlist;
|
|
14
|
-
addToWishlist?: (wishlistId: string) => void;
|
|
15
|
-
removeFromWishlist?: (wishlistId: string) => void;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export default function WishlistModalItem({
|
|
19
|
-
wishlist,
|
|
20
|
-
addToWishlist,
|
|
21
|
-
removeFromWishlist,
|
|
22
|
-
}: Props) {
|
|
23
|
-
const handleClick = () => {
|
|
24
|
-
if (addToWishlist) {
|
|
25
|
-
addToWishlist(wishlist.Id);
|
|
26
|
-
} else if (removeFromWishlist) {
|
|
27
|
-
removeFromWishlist(wishlist.Id);
|
|
28
|
-
}
|
|
29
|
-
};
|
|
30
|
-
return (
|
|
31
|
-
<StyledTableRow
|
|
32
|
-
sx={{
|
|
33
|
-
display: "grid",
|
|
34
|
-
gridTemplateColumns: "2fr 1fr 1fr 1fr", // Define equal column structure
|
|
35
|
-
alignItems: "center",
|
|
36
|
-
gap: 2,
|
|
37
|
-
padding: "10px 15px",
|
|
38
|
-
width: "500px",
|
|
39
|
-
cursor: "default",
|
|
40
|
-
}}
|
|
41
|
-
>
|
|
42
|
-
<Paragraph ellipsis sx={{ fontWeight: "bold" }}>
|
|
43
|
-
{wishlist?.Name ?? ""}
|
|
44
|
-
</Paragraph>
|
|
45
|
-
<Paragraph ellipsis>
|
|
46
|
-
{" "}
|
|
47
|
-
{format(
|
|
48
|
-
new Date(wishlist?.CreatedDateTime ?? wishlist?.LastUpdated ?? ""),
|
|
49
|
-
"MMM dd, yyyy",
|
|
50
|
-
)}
|
|
51
|
-
</Paragraph>
|
|
52
|
-
<Paragraph ellipsis>
|
|
53
|
-
{" "}
|
|
54
|
-
{`${wishlist?.ProductListLines?.length} products`}
|
|
55
|
-
</Paragraph>
|
|
56
|
-
|
|
57
|
-
<Button
|
|
58
|
-
onClick={handleClick}
|
|
59
|
-
color="primary"
|
|
60
|
-
sx={{ bgcolor: "primary.light", px: 4 }}
|
|
61
|
-
>
|
|
62
|
-
{addToWishlist ? "Add" : "Remove"}
|
|
63
|
-
</Button>
|
|
64
|
-
</StyledTableRow>
|
|
65
|
-
);
|
|
66
|
-
}
|