@evenicanpm/storefront-core 1.0.1 → 1.0.3
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/package.json +1 -1
- package/src/api-manager/README.md +30 -22
- package/src/api-manager/datasources/e4/{e4-address.datasource.ts → address/e4-address.datasource.ts} +10 -10
- package/src/api-manager/datasources/e4/address/e4-address.remaps.ts +70 -0
- package/src/api-manager/datasources/e4/address/e4-address.translator.ts +98 -0
- package/src/api-manager/datasources/e4/{e4-cart.datasource.ts → cart/e4-cart.datasource.ts} +17 -16
- package/src/api-manager/datasources/e4/cart/e4-cart.remaps.ts +94 -0
- package/src/api-manager/datasources/e4/cart/e4-cart.translator.ts +23 -0
- package/src/api-manager/datasources/e4/categories/e4-categories.datasource.ts +38 -0
- package/src/api-manager/datasources/e4/categories/e4-categories.translator.ts +161 -0
- package/src/api-manager/datasources/e4/e4.datasource.ts +8 -39
- package/src/api-manager/datasources/e4/graphqlRequestSdk.ts +8427 -0
- package/src/api-manager/datasources/e4/{e4-order.datasource.ts → order/e4-order.datasource.ts} +3 -3
- package/src/api-manager/datasources/e4/order/e4-order.remaps.ts +101 -0
- package/src/api-manager/datasources/e4/{e4-organization.datasource.ts → organization/e4-organization.datasource.ts} +1 -1
- package/src/api-manager/datasources/e4/{e4-product.datasource.ts → product/e4-product.datasource.ts} +13 -11
- package/src/api-manager/datasources/e4/product/e4-product.remaps.ts +88 -0
- package/src/api-manager/datasources/e4/{e4.translator.ts → product/e4-product.translator.ts} +9 -329
- package/src/api-manager/datasources/e4/{e4-session.datasource.ts → session/e4-session.datasource.ts} +3 -3
- package/src/api-manager/datasources/e4/session/e4-session.translator.ts +18 -0
- package/src/api-manager/datasources/e4/user/e4-user.datasource.ts +13 -6
- package/src/api-manager/datasources/e4/user/e4-user.remaps.ts +49 -0
- package/src/api-manager/datasources/e4/user/e4-user.translator.ts +23 -2
- package/src/api-manager/datasources/e4/utils/unwrap-e4-variants.ts +1 -1
- package/src/api-manager/index.ts +11 -6
- package/src/api-manager/schemas/user.schema.ts +3 -1
- package/src/api-manager/services/cart/mutations/add-to-cart.ts +1 -1
- package/src/api-manager/services/cart/mutations/checkout.ts +1 -2
- package/src/api-manager/services/product/server/product.server.ts +4 -1
- package/src/api-manager/types/Datasource.ts +1 -5
- package/src/cms/blocks/BlockManager.tsx +67 -0
- package/src/cms/blocks/Components/BrandLogosScroller.tsx +72 -0
- package/src/cms/blocks/Components/CategoryCard.tsx +47 -0
- package/src/cms/blocks/Components/CategoryCarousel/index.tsx +60 -0
- package/src/cms/blocks/Components/FeaturePill.tsx +99 -0
- package/src/cms/blocks/Components/FeaturedCategories.tsx +41 -0
- package/src/cms/blocks/Components/FeaturedProducts.tsx +41 -0
- package/src/cms/blocks/Components/Footer/data/index.ts +32 -0
- package/src/cms/blocks/Components/Footer/index.tsx +88 -0
- package/src/cms/blocks/Components/Footer/interfaces.ts +37 -0
- package/src/cms/blocks/Components/Footer/sections/FooterAppStore.tsx +45 -0
- package/src/cms/blocks/Components/Footer/sections/FooterContact.tsx +36 -0
- package/src/cms/blocks/Components/Footer/sections/FooterLinks.tsx +30 -0
- package/src/cms/blocks/Components/Footer/sections/FooterLogo.tsx +26 -0
- package/src/cms/blocks/Components/Footer/sections/FooterSocialLinks.tsx +70 -0
- package/src/cms/blocks/Components/Footer/styles/index.ts +39 -0
- package/src/cms/blocks/Components/Footer.tsx +77 -0
- package/src/cms/blocks/Components/Hero.tsx +73 -0
- package/src/cms/blocks/Components/HeroCarousel/index.tsx +42 -0
- package/src/cms/blocks/Components/Image.tsx +39 -0
- package/src/cms/blocks/Components/MediaCard.tsx +41 -0
- package/src/cms/blocks/Components/ProductCarousel/index.tsx +82 -0
- package/src/cms/blocks/Components/ProductSectionFullWidth/index.tsx +103 -0
- package/src/cms/blocks/Components/RichText.tsx +19 -0
- package/src/cms/blocks/Components/Seo/index.tsx +48 -0
- package/src/cms/blocks/Components/Services/index.tsx +21 -0
- package/src/cms/blocks/Components/Services/service-card.tsx +73 -0
- package/src/cms/blocks/Components/shared/featured-product-card.tsx +29 -0
- package/src/cms/blocks/Components/shared/product-category-item.tsx +49 -0
- package/src/cms/blocks/Components/shared/product-grid.tsx +48 -0
- package/src/cms/blocks/Components/shared/top-categories-card.tsx +66 -0
- package/src/cms/blocks/Components/shared/top-rating-product-card.tsx +66 -0
- package/src/cms/blocks/Icons/Components/Category.tsx +14 -0
- package/src/cms/blocks/Icons/Components/DottedStar.tsx +40 -0
- package/src/cms/blocks/Icons/Components/FallbackIcon.tsx +33 -0
- package/src/cms/blocks/Icons/Components/GiftBox.tsx +18 -0
- package/src/cms/blocks/Icons/Components/Light.tsx +13 -0
- package/src/cms/blocks/Icons/Components/NewArrival.tsx +18 -0
- package/src/cms/blocks/Icons/Components/RankBadge.tsx +39 -0
- package/src/cms/blocks/Icons/index.ts +32 -0
- package/src/cms/blocks/index.tsx +16 -0
- package/src/cms/blocks/interfaces.ts +240 -0
- package/src/components/Notifications/README.md +1 -1
- package/src/components/Notifications/notification-context.tsx +1 -1
- package/src/components/README.md +3 -8
- package/src/components/_components/MiniCartClient.tsx +1 -1
- package/src/components/_components/navbar/category-based-menu/components/categories.tsx +1 -1
- package/src/components/_components/navbar/mega-menu/mega-menu.tsx +1 -1
- package/src/components/_components/navbar/nav-list/nav-item-child.tsx +2 -2
- package/src/components/_components/product-cards/product-card-1/product-card-1-wrapper.tsx +1 -1
- package/src/components/_components/products-view/product-view-dialog.tsx +1 -1
- package/src/components/_components/settings/setting.tsx +1 -1
- package/src/components/_components/wishlist/add-to-wishlist-dialog.tsx +1 -1
- package/src/components/_components/wishlist/components/create-new-list.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/countries-input.tsx +0 -1
- package/src/components-v2/BazaarCard.tsx +21 -0
- package/src/components-v2/BazaarImage.tsx +12 -0
- package/src/components-v2/BazaarMenu.tsx +47 -0
- package/src/components-v2/BazaarSwitch.tsx +37 -0
- package/src/components-v2/BazaarTextField.tsx +73 -0
- package/src/components-v2/BoxShadowCard.tsx +16 -0
- package/src/components-v2/DropZone.tsx +86 -0
- package/src/components-v2/HoverBox.tsx +22 -0
- package/src/components-v2/Image.tsx +5 -0
- package/src/components-v2/ImageWithFallback.tsx +51 -0
- package/src/components-v2/LazyImage.tsx +12 -0
- package/src/components-v2/Loading.tsx +36 -0
- package/src/components-v2/MiniCartClient.tsx +65 -0
- package/src/components-v2/README.md +4 -0
- package/src/components-v2/SearchInput.tsx +28 -0
- package/src/components-v2/SnackbarProvider.tsx +32 -0
- package/src/components-v2/T/index.tsx +15 -0
- package/src/components-v2/Typography.tsx +227 -0
- package/src/components-v2/WhiteButton.tsx +20 -0
- package/src/components-v2/accordion/accordion-header.tsx +43 -0
- package/src/components-v2/accordion/index.ts +1 -0
- package/src/components-v2/bazaar-types.ts +84 -0
- package/src/components-v2/carousel/carousel.tsx +72 -0
- package/src/components-v2/carousel/components/carousel-arrows.tsx +60 -0
- package/src/components-v2/carousel/components/carousel-dots.tsx +21 -0
- package/src/components-v2/carousel/index.ts +3 -0
- package/src/components-v2/carousel/styles/index.ts +93 -0
- package/src/components-v2/carousel-cards/carousel-card-1/carousel-card-1.tsx +64 -0
- package/src/components-v2/carousel-cards/carousel-card-1/index.ts +1 -0
- package/src/components-v2/carousel-cards/carousel-card-1/styles.ts +34 -0
- package/src/components-v2/carousel-cards/carousel-card-2/carousel-card-2.tsx +78 -0
- package/src/components-v2/carousel-cards/carousel-card-2/index.ts +1 -0
- package/src/components-v2/carousel-cards/carousel-card-2/styles.ts +26 -0
- package/src/components-v2/carousel-cards/carousel-card-3/carousel-card-3.tsx +37 -0
- package/src/components-v2/carousel-cards/carousel-card-3/index.ts +1 -0
- package/src/components-v2/carousel-cards/carousel-card-3/styles.ts +28 -0
- package/src/components-v2/carousel-cards/carousel-card-4/carousel-card-4.tsx +81 -0
- package/src/components-v2/carousel-cards/carousel-card-4/index.ts +1 -0
- package/src/components-v2/carousel-cards/carousel-card-4/styles.ts +27 -0
- package/src/components-v2/categories/category-list/category-list.tsx +59 -0
- package/src/components-v2/categories/category-list/index.ts +1 -0
- package/src/components-v2/categories/category-list/styles.ts +29 -0
- package/src/components-v2/categories/category-list/types.ts +4 -0
- package/src/components-v2/categories/category-list-item/category-menu-item.tsx +37 -0
- package/src/components-v2/categories/category-list-item/index.ts +1 -0
- package/src/components-v2/categories/category-list-item/styles.ts +35 -0
- package/src/components-v2/categories/category-menu.tsx +51 -0
- package/src/components-v2/categories/mega-menu/banner.tsx +60 -0
- package/src/components-v2/categories/mega-menu/column-list.tsx +70 -0
- package/src/components-v2/categories/mega-menu/mega-menu-1.tsx +37 -0
- package/src/components-v2/categories/mega-menu/mega-menu-2.tsx +37 -0
- package/src/components-v2/categories/mega-menu/styles.ts +25 -0
- package/src/components-v2/categories/types.ts +16 -0
- package/src/components-v2/category-cards/category-card-1/category-card-1.tsx +21 -0
- package/src/components-v2/category-cards/category-card-1/index.ts +1 -0
- package/src/components-v2/category-cards/category-card-1/styles.ts +37 -0
- package/src/components-v2/countdown/count-box.tsx +19 -0
- package/src/components-v2/countdown/count-down.tsx +24 -0
- package/src/components-v2/countdown/index.tsx +2 -0
- package/src/components-v2/countdown/useCountDown.ts +41 -0
- package/src/components-v2/countries-input.tsx +73 -0
- package/src/components-v2/data-table/index.ts +2 -0
- package/src/components-v2/data-table/table-header.tsx +91 -0
- package/src/components-v2/data-table/table-pagination.tsx +36 -0
- package/src/components-v2/flex-box/flex-between.tsx +14 -0
- package/src/components-v2/flex-box/flex-box.tsx +9 -0
- package/src/components-v2/flex-box/flex-row-center.tsx +9 -0
- package/src/components-v2/flex-box/index.ts +5 -0
- package/src/components-v2/footer/components/about-links.tsx +23 -0
- package/src/components-v2/footer/components/app-store.tsx +38 -0
- package/src/components-v2/footer/components/customer-care-links.tsx +21 -0
- package/src/components-v2/footer/components/logo.tsx +23 -0
- package/src/components-v2/footer/components/social-links.tsx +43 -0
- package/src/components-v2/footer/data/index.ts +54 -0
- package/src/components-v2/footer/footer-1.tsx +62 -0
- package/src/components-v2/footer/footer-2.tsx +57 -0
- package/src/components-v2/footer/footer-3.tsx +53 -0
- package/src/components-v2/footer/footer-4.tsx +71 -0
- package/src/components-v2/footer/index.ts +4 -0
- package/src/components-v2/footer/styles/index.ts +42 -0
- package/src/components-v2/header/components/categories-menu.tsx +23 -0
- package/src/components-v2/header/components/mobile-header.tsx +75 -0
- package/src/components-v2/header/components/user.test.tsx +200 -0
- package/src/components-v2/header/components/user.tsx +204 -0
- package/src/components-v2/header/header.tsx +63 -0
- package/src/components-v2/header/hooks/use-header.ts +13 -0
- package/src/components-v2/header/index.ts +1 -0
- package/src/components-v2/header/sticky-header.tsx +17 -0
- package/src/components-v2/header/styles/index.ts +24 -0
- package/src/components-v2/icons/cart-bag.tsx +13 -0
- package/src/components-v2/icons/category-outline.tsx +29 -0
- package/src/components-v2/icons/category.tsx +12 -0
- package/src/components-v2/icons/home.tsx +19 -0
- package/src/components-v2/icons/search.tsx +13 -0
- package/src/components-v2/icons/shopping-bag-outlined.tsx +13 -0
- package/src/components-v2/icons/up-down.tsx +21 -0
- package/src/components-v2/icons/user.tsx +13 -0
- package/src/components-v2/icons/user2.tsx +14 -0
- package/src/components-v2/mini-cart/__tests__/cart-item.test.tsx +174 -0
- package/src/components-v2/mini-cart/__tests__/mini-cart.test.tsx +121 -0
- package/src/components-v2/mini-cart/__tests__/test-cart-empty.json +84 -0
- package/src/components-v2/mini-cart/__tests__/test-cart-with-item.json +244 -0
- package/src/components-v2/mini-cart/components/bottom-actions.tsx +27 -0
- package/src/components-v2/mini-cart/components/cart-item.tsx +147 -0
- package/src/components-v2/mini-cart/components/empty-view.tsx +29 -0
- package/src/components-v2/mini-cart/components/top-header.tsx +37 -0
- package/src/components-v2/mini-cart/index.ts +1 -0
- package/src/components-v2/mini-cart/mini-cart.tsx +107 -0
- package/src/components-v2/mobile-navigation/index.ts +3 -0
- package/src/components-v2/mobile-navigation/mobile-navigation-bar.tsx +73 -0
- package/src/components-v2/mobile-navigation/styles/index.ts +63 -0
- package/src/components-v2/nav-link/index.ts +5 -0
- package/src/components-v2/nav-link/nav-link-2.tsx +32 -0
- package/src/components-v2/nav-link/nav-link-3.tsx +67 -0
- package/src/components-v2/nav-link/nav-link.tsx +53 -0
- package/src/components-v2/navbar/categories.tsx +27 -0
- package/src/components-v2/navbar/category-based-menu/category-based-menu.tsx +52 -0
- package/src/components-v2/navbar/category-based-menu/components/categories.tsx +44 -0
- package/src/components-v2/navbar/category-based-menu/components/category-item.tsx +31 -0
- package/src/components-v2/navbar/category-based-menu/components/child-categories.tsx +38 -0
- package/src/components-v2/navbar/category-based-menu/index.ts +1 -0
- package/src/components-v2/navbar/category-based-menu/styles.ts +81 -0
- package/src/components-v2/navbar/category-based-menu/types.ts +18 -0
- package/src/components-v2/navbar/index.ts +1 -0
- package/src/components-v2/navbar/mega-menu/category-list.tsx +29 -0
- package/src/components-v2/navbar/mega-menu/index.ts +1 -0
- package/src/components-v2/navbar/mega-menu/mega-menu.tsx +71 -0
- package/src/components-v2/navbar/mega-menu/styles.ts +43 -0
- package/src/components-v2/navbar/mobile-menu/index.ts +1 -0
- package/src/components-v2/navbar/mobile-menu/mobile-menu.tsx +70 -0
- package/src/components-v2/navbar/mobile-menu/render-levels.test.tsx +71 -0
- package/src/components-v2/navbar/mobile-menu/render-levels.tsx +62 -0
- package/src/components-v2/navbar/nav-list/cms-nav.test.tsx +84 -0
- package/src/components-v2/navbar/nav-list/index.ts +1 -0
- package/src/components-v2/navbar/nav-list/nav-item-child.tsx +66 -0
- package/src/components-v2/navbar/nav-list/nav-list.tsx +119 -0
- package/src/components-v2/navbar/navbar.tsx +43 -0
- package/src/components-v2/navbar/styles.ts +90 -0
- package/src/components-v2/navbar/utils/transform-nav.test.ts +209 -0
- package/src/components-v2/navbar/utils/transform-nav.ts +43 -0
- package/src/components-v2/newsletter/index.ts +1 -0
- package/src/components-v2/newsletter/newsletter.tsx +112 -0
- package/src/components-v2/newsletter/social-icons.tsx +35 -0
- package/src/components-v2/newsletter/styles.ts +65 -0
- package/src/components-v2/page-sidenav/grocery-side-nav/components/link-item.tsx +21 -0
- package/src/components-v2/page-sidenav/grocery-side-nav/components/list-item.tsx +27 -0
- package/src/components-v2/page-sidenav/grocery-side-nav/components/nav-accordion.tsx +36 -0
- package/src/components-v2/page-sidenav/grocery-side-nav/components/render-child.tsx +26 -0
- package/src/components-v2/page-sidenav/grocery-side-nav/grocery-side-nav.tsx +32 -0
- package/src/components-v2/page-sidenav/grocery-side-nav/index.ts +1 -0
- package/src/components-v2/page-sidenav/grocery-side-nav/styles/index.ts +11 -0
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/list-item.tsx +27 -0
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/nav-accordion.tsx +44 -0
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/render-child.tsx +20 -0
- package/src/components-v2/page-sidenav/health-beauty-side-nav/health-beauty-side-nav.tsx +43 -0
- package/src/components-v2/page-sidenav/health-beauty-side-nav/index.ts +1 -0
- package/src/components-v2/page-sidenav/health-beauty-side-nav/styles/index.ts +27 -0
- package/src/components-v2/page-sidenav/side-navbar/components/list-item.tsx +25 -0
- package/src/components-v2/page-sidenav/side-navbar/components/nav-accordion.tsx +46 -0
- package/src/components-v2/page-sidenav/side-navbar/components/render-child.tsx +20 -0
- package/src/components-v2/page-sidenav/side-navbar/index.ts +1 -0
- package/src/components-v2/page-sidenav/side-navbar/side-nav-bar.tsx +77 -0
- package/src/components-v2/page-sidenav/side-navbar/styles/index.ts +73 -0
- package/src/components-v2/page-sidenav/side-navbar-2/components/button-content.tsx +32 -0
- package/src/components-v2/page-sidenav/side-navbar-2/components/sidebar-accordion.tsx +66 -0
- package/src/components-v2/page-sidenav/side-navbar-2/index.ts +1 -0
- package/src/components-v2/page-sidenav/side-navbar-2/side-navbar-2.tsx +63 -0
- package/src/components-v2/page-sidenav/side-navbar-2/styles/index.ts +68 -0
- package/src/components-v2/product-cards/discount-chip.tsx +43 -0
- package/src/components-v2/product-cards/product-card-1/components/hover-actions.tsx +37 -0
- package/src/components-v2/product-cards/product-card-1/components/quantity-buttons.tsx +65 -0
- package/src/components-v2/product-cards/product-card-1/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-1/product-card-1-wrapper.tsx +304 -0
- package/src/components-v2/product-cards/product-card-1/product-card.tsx +107 -0
- package/src/components-v2/product-cards/product-card-1/styles/index.ts +46 -0
- package/src/components-v2/product-cards/product-card-10/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-10/product-card.tsx +128 -0
- package/src/components-v2/product-cards/product-card-10/styles/index.ts +38 -0
- package/src/components-v2/product-cards/product-card-11/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-11/product-card.tsx +66 -0
- package/src/components-v2/product-cards/product-card-11/styles/index.ts +16 -0
- package/src/components-v2/product-cards/product-card-12/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-12/product-card.tsx +42 -0
- package/src/components-v2/product-cards/product-card-12/styles/index.ts +16 -0
- package/src/components-v2/product-cards/product-card-13/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-13/product-card.tsx +48 -0
- package/src/components-v2/product-cards/product-card-13/styles/index.ts +25 -0
- package/src/components-v2/product-cards/product-card-14/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-14/product-card.tsx +125 -0
- package/src/components-v2/product-cards/product-card-14/styles/index.ts +40 -0
- package/src/components-v2/product-cards/product-card-15/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-15/product-card.tsx +121 -0
- package/src/components-v2/product-cards/product-card-15/styles/index.ts +57 -0
- package/src/components-v2/product-cards/product-card-16/components/quantity-buttons.tsx +54 -0
- package/src/components-v2/product-cards/product-card-16/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-16/product-card.tsx +116 -0
- package/src/components-v2/product-cards/product-card-16/styles/index.ts +18 -0
- package/src/components-v2/product-cards/product-card-2/components/favorite-button.tsx +29 -0
- package/src/components-v2/product-cards/product-card-2/components/product-price.tsx +26 -0
- package/src/components-v2/product-cards/product-card-2/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-2/product-card.tsx +70 -0
- package/src/components-v2/product-cards/product-card-3/components/hover-actions.tsx +83 -0
- package/src/components-v2/product-cards/product-card-3/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-3/product-card.tsx +110 -0
- package/src/components-v2/product-cards/product-card-3/styles/index.ts +89 -0
- package/src/components-v2/product-cards/product-card-4/components/hover-actions.tsx +50 -0
- package/src/components-v2/product-cards/product-card-4/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-4/product-card.tsx +128 -0
- package/src/components-v2/product-cards/product-card-4/styles/index.ts +66 -0
- package/src/components-v2/product-cards/product-card-5/components/button-actions.tsx +49 -0
- package/src/components-v2/product-cards/product-card-5/components/hover-actions.tsx +50 -0
- package/src/components-v2/product-cards/product-card-5/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-5/product-card.tsx +137 -0
- package/src/components-v2/product-cards/product-card-5/styles/index.ts +94 -0
- package/src/components-v2/product-cards/product-card-6/components/hover-actions.tsx +50 -0
- package/src/components-v2/product-cards/product-card-6/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-6/product-card.tsx +121 -0
- package/src/components-v2/product-cards/product-card-6/styles/index.ts +63 -0
- package/src/components-v2/product-cards/product-card-7/components/product-status.tsx +18 -0
- package/src/components-v2/product-cards/product-card-7/components/quantity-buttons.tsx +47 -0
- package/src/components-v2/product-cards/product-card-7/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-7/product-card.tsx +139 -0
- package/src/components-v2/product-cards/product-card-7/styles/index.ts +98 -0
- package/src/components-v2/product-cards/product-card-8/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-8/product-card.tsx +151 -0
- package/src/components-v2/product-cards/product-card-8/styles/index.ts +61 -0
- package/src/components-v2/product-cards/product-card-9/components/add-to-cart.tsx +63 -0
- package/src/components-v2/product-cards/product-card-9/components/favorite-button.tsx +27 -0
- package/src/components-v2/product-cards/product-card-9/components/tags.tsx +33 -0
- package/src/components-v2/product-cards/product-card-9/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-9/product-card.tsx +169 -0
- package/src/components-v2/product-cards/product-card-wishlist/components/hover-actions.tsx +37 -0
- package/src/components-v2/product-cards/product-card-wishlist/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-wishlist/product-card.tsx +118 -0
- package/src/components-v2/product-cards/product-card-wishlist/styles/index.ts +53 -0
- package/src/components-v2/product-cards/product-price.tsx +26 -0
- package/src/components-v2/product-cards/product-rating.tsx +28 -0
- package/src/components-v2/product-cards/product-title.tsx +24 -0
- package/src/components-v2/product-cards/use-product.ts +35 -0
- package/src/components-v2/product-dimensions/components/dimensions-group-error.tsx +46 -0
- package/src/components-v2/product-dimensions/components/dimensions-group-label.tsx +27 -0
- package/src/components-v2/product-dimensions/components/dimensions-group-list-chip.tsx +78 -0
- package/src/components-v2/product-dimensions/components/dimensions-group-list.tsx +24 -0
- package/src/components-v2/product-dimensions/components/dimensions-group.tsx +55 -0
- package/src/components-v2/product-dimensions/components/dimensions.tsx +84 -0
- package/src/components-v2/product-dimensions/index.tsx +38 -0
- package/src/components-v2/product-dimensions/utils/has-selected-dimension.ts +20 -0
- package/src/components-v2/product-quantity-buttons/product-quantity-buttons.tsx +88 -0
- package/src/components-v2/products-view/product-view-dialog.tsx +218 -0
- package/src/components-v2/products-view/products-grid-view.tsx +52 -0
- package/src/components-v2/products-view/products-list-view.tsx +49 -0
- package/src/components-v2/progress/index.ts +1 -0
- package/src/components-v2/progress/progress.tsx +77 -0
- package/src/components-v2/scrollbar/index.ts +1 -0
- package/src/components-v2/scrollbar/scrollbar.tsx +27 -0
- package/src/components-v2/scrollbar/styles.ts +15 -0
- package/src/components-v2/search-box/__test__/search-input-category.test.tsx +110 -0
- package/src/components-v2/search-box/__test__/search-input.test.tsx +137 -0
- package/src/components-v2/search-box/__test__/search-results.json +165 -0
- package/src/components-v2/search-box/components/category-dropdown.tsx +61 -0
- package/src/components-v2/search-box/components/search-result.tsx +86 -0
- package/src/components-v2/search-box/hooks/use-search.ts +63 -0
- package/src/components-v2/search-box/index.ts +2 -0
- package/src/components-v2/search-box/search-input-category.test.tsx +110 -0
- package/src/components-v2/search-box/search-input-category.tsx +203 -0
- package/src/components-v2/search-box/search-input.test.tsx +41 -0
- package/src/components-v2/search-box/search-input.tsx +66 -0
- package/src/components-v2/search-box/styles/index.ts +47 -0
- package/src/components-v2/section-header/index.ts +2 -0
- package/src/components-v2/section-header/section-creator.tsx +29 -0
- package/src/components-v2/section-header/section-header.tsx +44 -0
- package/src/components-v2/service-cards/icon-component.tsx +18 -0
- package/src/components-v2/service-cards/service-card-1/index.ts +1 -0
- package/src/components-v2/service-cards/service-card-1/service-card-1.tsx +42 -0
- package/src/components-v2/service-cards/service-card-2/index.ts +1 -0
- package/src/components-v2/service-cards/service-card-2/service-card-2.tsx +37 -0
- package/src/components-v2/service-cards/service-card-3/index.ts +1 -0
- package/src/components-v2/service-cards/service-card-3/service-card-3.tsx +28 -0
- package/src/components-v2/service-cards/service-card-3/styles.ts +23 -0
- package/src/components-v2/settings/index.ts +1 -0
- package/src/components-v2/settings/setting.tsx +141 -0
- package/src/components-v2/settings/styles.ts +57 -0
- package/src/components-v2/shop-card/index.ts +1 -0
- package/src/components-v2/shop-card/shop-card.tsx +152 -0
- package/src/components-v2/shop-card/styles.ts +33 -0
- package/src/components-v2/side-nav/index.ts +1 -0
- package/src/components-v2/side-nav/side-nav.tsx +49 -0
- package/src/components-v2/site-logo.tsx +17 -0
- package/src/components-v2/sticky/Sticky.tsx +62 -0
- package/src/components-v2/sticky/index.ts +1 -0
- package/src/components-v2/sticky/styles.ts +38 -0
- package/src/components-v2/sticky-wrapper/index.ts +1 -0
- package/src/components-v2/sticky-wrapper/sticky-wrapper.tsx +21 -0
- package/src/components-v2/sticky-wrapper/styles.ts +25 -0
- package/src/components-v2/stories/story-content/index.ts +1 -0
- package/src/components-v2/stories/story-content/story-content.tsx +28 -0
- package/src/components-v2/stories/story-content/styles.ts +22 -0
- package/src/components-v2/stories/story-item/index.ts +1 -0
- package/src/components-v2/stories/story-item/story-item.tsx +24 -0
- package/src/components-v2/stories/story-item/styles.ts +11 -0
- package/src/components-v2/stories/story-viewer/index.ts +1 -0
- package/src/components-v2/stories/story-viewer/story-viewer.tsx +44 -0
- package/src/components-v2/stories/story-viewer/styles.ts +15 -0
- package/src/components-v2/subscribe-input/index.ts +1 -0
- package/src/components-v2/subscribe-input/styles.ts +14 -0
- package/src/components-v2/subscribe-input/subscribe-input.tsx +43 -0
- package/src/components-v2/topbar/index.ts +1 -0
- package/src/components-v2/topbar/styles.ts +55 -0
- package/src/components-v2/topbar/top-bar.tsx +115 -0
- package/src/components-v2/utils/constants.ts +8 -0
- package/src/components-v2/wishlist/add-to-wishlist-dialog.tsx +161 -0
- package/src/components-v2/wishlist/components/create-new-list.tsx +167 -0
- package/src/components-v2/wishlist/components/create-wishlist-button.tsx +40 -0
- package/src/components-v2/wishlist/components/dashboard-header.tsx +123 -0
- package/src/components-v2/wishlist/components/navigation.tsx +87 -0
- package/src/components-v2/wishlist/components/no-records.tsx +20 -0
- package/src/components-v2/wishlist/components/wishlist-modal-item.tsx +66 -0
- package/src/components-v2/wishlist/remove-from-wishlist-dialog.tsx +175 -0
- package/src/components-v2/wishlist/styles.ts +61 -0
- package/src/components-v2/wishlist-modal/TODO.md +10 -0
- package/src/components-v2/wishlist-modal/add-to-wishlist-button.tsx +69 -0
- package/src/components-v2/wishlist-modal/add-to-wishlist-dialog.tsx +161 -0
- package/src/components-v2/wishlist-modal/remove-from-wishlist-dialog.tsx +174 -0
- package/src/components-v2/wishlist-modal/wishlist-modal-item.tsx +65 -0
- package/src/pages/README.md +4 -0
- package/src/pages/product-details/product-intro/product-intro.tsx +3 -1
- package/src/pages/product-list/quick-view-dialog-content.tsx +4 -2
- package/src/pages-v2/README.md +4 -0
- package/src/pages-v2/account/addresses/address-form.tsx +289 -0
- package/src/pages-v2/account/addresses/address-item.tsx +104 -0
- package/src/pages-v2/account/dashboard-header.tsx +123 -0
- package/src/pages-v2/account/navigation.tsx +87 -0
- package/src/pages-v2/account/no-records.tsx +20 -0
- package/src/pages-v2/account/orders/icons/delivery.tsx +14 -0
- package/src/pages-v2/account/orders/icons/package-box.tsx +13 -0
- package/src/pages-v2/account/orders/icons/truck-filled.tsx +14 -0
- package/src/pages-v2/account/orders/order-progress.tsx +114 -0
- package/src/pages-v2/account/orders/order-row.tsx +64 -0
- package/src/pages-v2/account/orders/order-summary.tsx +87 -0
- package/src/pages-v2/account/orders/ordered-products.tsx +121 -0
- package/src/pages-v2/account/profile/profile-button.test.tsx +59 -0
- package/src/pages-v2/account/profile/profile-button.tsx +50 -0
- package/src/pages-v2/account/profile/user-info.tsx +62 -0
- package/src/pages-v2/account/styles.ts +32 -0
- package/src/pages-v2/account/table-row.tsx +19 -0
- package/src/pages-v2/account/wishlist/create-new-list.tsx +167 -0
- package/src/pages-v2/account/wishlist/create-wishlist-button.tsx +40 -0
- package/src/pages-v2/account/wishlist/wishlist-item.tsx +82 -0
- package/src/pages-v2/blog/pagination.tsx +38 -0
- package/src/pages-v2/cart/cart-item.tsx +312 -0
- package/src/pages-v2/cart/checkout-form.tsx +122 -0
- package/src/pages-v2/cart/coupon-entry.tsx +90 -0
- package/src/pages-v2/cart/estimate-shipping.tsx +183 -0
- package/src/pages-v2/cart/wrapper.tsx +30 -0
- package/src/pages-v2/checkout/checkout-alt-form/address-card.tsx +76 -0
- package/src/pages-v2/checkout/checkout-alt-form/checkout-form.tsx +131 -0
- package/src/pages-v2/checkout/checkout-alt-form/checkout-step.tsx +120 -0
- package/src/pages-v2/checkout/checkout-alt-form/customer-information.tsx +94 -0
- package/src/pages-v2/checkout/checkout-alt-form/delivery-address.tsx +174 -0
- package/src/pages-v2/checkout/checkout-alt-form/delivery-date.tsx +114 -0
- package/src/pages-v2/checkout/checkout-alt-form/delivery-options.tsx +190 -0
- package/src/pages-v2/checkout/checkout-alt-form/edit-address-form.tsx +130 -0
- package/src/pages-v2/checkout/checkout-alt-form/heading.tsx +50 -0
- package/src/pages-v2/checkout/checkout-alt-form/index.ts +1 -0
- package/src/pages-v2/checkout/checkout-alt-form/new-address-form.tsx +299 -0
- package/src/pages-v2/checkout/checkout-alt-form/node.tsx +9 -0
- package/src/pages-v2/checkout/checkout-alt-form/payment-details.tsx +347 -0
- package/src/pages-v2/checkout/checkout-alt-form/safe-card-preview-data.tsx +36 -0
- package/src/pages-v2/checkout/checkout-alt-form/types.ts +20 -0
- package/src/pages-v2/checkout/checkout-alt-summary/cart-item.tsx +42 -0
- package/src/pages-v2/checkout/checkout-alt-summary/checkout-alt-summary.tsx +42 -0
- package/src/pages-v2/checkout/checkout-alt-summary/index.ts +1 -0
- package/src/pages-v2/checkout/checkout-alt-summary/list-item.tsx +31 -0
- package/src/pages-v2/confirmation/address.tsx +25 -0
- package/src/pages-v2/confirmation/confirmation-summary.tsx +55 -0
- package/src/pages-v2/confirmation/ordered-products.tsx +115 -0
- package/src/pages-v2/product-details/available-shops.tsx +48 -0
- package/src/pages-v2/product-details/bopis/find-in-store-button.tsx +63 -0
- package/src/pages-v2/product-details/bopis/find-in-store-modal.tsx +257 -0
- package/src/pages-v2/product-details/bopis/pickup-option-select.tsx +127 -0
- package/src/pages-v2/product-details/bopis/search-header.tsx +69 -0
- package/src/pages-v2/product-details/checkbox-label.tsx +20 -0
- package/src/pages-v2/product-details/currency.ts +64 -0
- package/src/pages-v2/product-details/frequently-bought.tsx +97 -0
- package/src/pages-v2/product-details/frequently-product-card.tsx +63 -0
- package/src/pages-v2/product-details/product-comment.tsx +49 -0
- package/src/pages-v2/product-details/product-description.tsx +22 -0
- package/src/pages-v2/product-details/product-filter-card.tsx +265 -0
- package/src/pages-v2/product-details/product-intro/product-intro-images.tsx +90 -0
- package/src/pages-v2/product-details/product-intro/product-intro.tsx +256 -0
- package/src/pages-v2/product-details/product-review.tsx +131 -0
- package/src/pages-v2/product-details/product-tabs.tsx +51 -0
- package/src/pages-v2/product-details/related-products.tsx +42 -0
- package/src/pages-v2/product-details/types.ts +11 -0
- package/src/pages-v2/product-list/breadcrumbs.tsx +39 -0
- package/src/pages-v2/product-list/checkbox-label.tsx +20 -0
- package/src/pages-v2/product-list/facet-group.tsx +125 -0
- package/src/pages-v2/product-list/facet.tsx +36 -0
- package/src/pages-v2/product-list/list-filter.tsx +43 -0
- package/src/pages-v2/product-list/pagination.tsx +80 -0
- package/src/pages-v2/product-list/product-list-context.tsx +302 -0
- package/src/pages-v2/product-list/product-list-state.ts +187 -0
- package/src/pages-v2/product-list/product-rating.tsx +16 -0
- package/src/pages-v2/product-list/quick-view-dialog-content.tsx +207 -0
- package/src/pages-v2/product-list/quick-view-dialog.tsx +54 -0
- package/src/pages-v2/product-list/range-filter.tsx +125 -0
- package/src/pages-v2/product-list/scrollbar.tsx +38 -0
- package/src/pages-v2/product-list/search-bar.tsx +162 -0
- package/src/pages-v2/product-list/selected-facets.tsx +80 -0
- package/src/pages-v2/product-list/side-nav.tsx +49 -0
- package/src/pages-v2/product-list/swatch.tsx +80 -0
- package/src/pages-v2/product-list/types.ts +18 -0
- package/src/pages-v2/product-list/use-product-list.ts +12 -0
- package/src/pages-v2/product-list/useCategoryFilter.tsx +26 -0
- package/src/pages-v2/product-list/utils/facet-helpers.ts +5 -0
- package/src/pages-v2/product-list/utils/generate-breadcrumbs.ts +30 -0
- package/src/pages-v2/product-list/utils/getCategoryFilterFromSlug.ts +153 -0
- package/src/pages-v2/product-list/utils/product-list-helper.ts +111 -0
- package/src/pages-v2/product-list/utils/product-list-types.ts +41 -0
- package/src/pages-v2/product-list/utils/search-for-category.ts +76 -0
- package/src/pages-v2/product-list/utils/sort-options.ts +44 -0
- package/src/pages-v2/product-list/utils/use-previous-refiners.ts +14 -0
- package/src/pages-v2/quickorder/order-upload.tsx +150 -0
- package/src/pages-v2/quickorder/quick-order-form.tsx +346 -0
- package/src/pages-v2/quickorder/quick-order-row.tsx +144 -0
- package/src/providers/nav-provider/index.tsx +59 -0
- package/src/providers/nav-provider/utils/createLink.ts +15 -0
- package/src/providers/notifications/README.md +15 -0
- package/src/providers/notifications/notification-context.tsx +82 -0
- package/src/providers/notifications/use-notification.ts +12 -0
- package/tsconfig.json +3 -2
- package/typedoc.js +10 -0
- package/src/api-manager/api-manager.config.json +0 -12
- package/src/api-manager/datasources/e4/e4.remaps.ts +0 -355
- package/src/api-manager/datasources/e4/e4.translator.test.ts +0 -202
- /package/src/hooks/{use-cart.tsx → use-cart.ts} +0 -0
- /package/src/hooks/{use-variants.tsx → use-variants.ts} +0 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/*import React from "react";
|
|
2
|
+
import { expect, describe, it } from "vitest";
|
|
3
|
+
import { render, screen } from "@testing-library/react";
|
|
4
|
+
import { NavContext } from "@evenicanpm/storefront-core/src/components-v2/NavProvider";
|
|
5
|
+
import NavCms from "./index";
|
|
6
|
+
|
|
7
|
+
describe("NavCms", () => {
|
|
8
|
+
it("Renders the page links and dropdown menu", () => {
|
|
9
|
+
render(
|
|
10
|
+
<NavContext.Provider value={mockData}>
|
|
11
|
+
<NavCms />
|
|
12
|
+
</NavContext.Provider>,
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
expect(screen.getByText("About Us")).toBeInTheDocument();
|
|
16
|
+
expect(screen.getByText("Pages")).toBeInTheDocument();
|
|
17
|
+
expect(screen.getByText("My Page")).toBeInTheDocument();
|
|
18
|
+
});
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
const mockData = {
|
|
22
|
+
categories: [],
|
|
23
|
+
cmsNav: [
|
|
24
|
+
{
|
|
25
|
+
id: 1,
|
|
26
|
+
title: "About Us",
|
|
27
|
+
menuAttached: false,
|
|
28
|
+
order: 1,
|
|
29
|
+
path: "https://youtube.com",
|
|
30
|
+
type: "EXTERNAL",
|
|
31
|
+
uiRouterKey: "about-us",
|
|
32
|
+
slug: {},
|
|
33
|
+
external: true,
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
id: 2,
|
|
37
|
+
title: "Pages",
|
|
38
|
+
menuAttached: true,
|
|
39
|
+
order: 2,
|
|
40
|
+
path: "/pages",
|
|
41
|
+
type: "WRAPPER",
|
|
42
|
+
uiRouterKey: "pages",
|
|
43
|
+
slug: "pages-1",
|
|
44
|
+
external: false,
|
|
45
|
+
items: [
|
|
46
|
+
{
|
|
47
|
+
id: 3,
|
|
48
|
+
title: "My Page",
|
|
49
|
+
menuAttached: false,
|
|
50
|
+
order: 1,
|
|
51
|
+
path: "/pages/my-page",
|
|
52
|
+
type: "INTERNAL",
|
|
53
|
+
uiRouterKey: "my-page",
|
|
54
|
+
slug: "pages-my-page",
|
|
55
|
+
external: false,
|
|
56
|
+
related: {
|
|
57
|
+
id: 1,
|
|
58
|
+
title: "My Page",
|
|
59
|
+
slug: "my-page",
|
|
60
|
+
createdAt: "2025-01-20T17:27:16.685Z",
|
|
61
|
+
updatedAt: "2025-01-20T17:27:19.608Z",
|
|
62
|
+
publishedAt: "2025-01-20T17:27:19.603Z",
|
|
63
|
+
__contentType: "api::page.page",
|
|
64
|
+
navigationItemId: 3,
|
|
65
|
+
__templateName: "Generic",
|
|
66
|
+
},
|
|
67
|
+
items: [
|
|
68
|
+
{
|
|
69
|
+
id: 4,
|
|
70
|
+
title: "NESTED",
|
|
71
|
+
menuAttached: false,
|
|
72
|
+
order: 1,
|
|
73
|
+
path: "https://google.com",
|
|
74
|
+
type: "EXTERNAL",
|
|
75
|
+
uiRouterKey: "nested",
|
|
76
|
+
slug: {},
|
|
77
|
+
external: true,
|
|
78
|
+
},
|
|
79
|
+
],
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
},
|
|
83
|
+
],
|
|
84
|
+
};*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./nav-list";
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
|
|
3
|
+
import { PropsWithChildren, RefObject } from "react";
|
|
4
|
+
import { usePathname } from "next/navigation";
|
|
5
|
+
import MenuItem from "@mui/material/MenuItem";
|
|
6
|
+
// MUI ICON COMPONENTS
|
|
7
|
+
import ArrowLeft from "@mui/icons-material/ArrowLeft";
|
|
8
|
+
import ArrowRight from "@mui/icons-material/ArrowRight";
|
|
9
|
+
// GLOBAL CUSTOM HOOKS
|
|
10
|
+
import useOverflowDetect from "@evenicanpm/storefront-core/src/hooks/use-overflow-detect";
|
|
11
|
+
import useSettings from "@evenicanpm/storefront-core/src/hooks/use-settings";
|
|
12
|
+
// GLOBAL CUSTOM COMPONENTS
|
|
13
|
+
import { Span } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
14
|
+
import BazaarCard from "@evenicanpm/storefront-core/src/components-v2/BazaarCard";
|
|
15
|
+
// STYLED COMPONENTS
|
|
16
|
+
import { ParentNav, ParentNavItem } from "../styles";
|
|
17
|
+
|
|
18
|
+
import { TransformedNavItem } from "@evenicanpm/storefront-core/src/components-v2/navbar/utils/transform-nav";
|
|
19
|
+
|
|
20
|
+
// ==============================================================
|
|
21
|
+
interface Props extends PropsWithChildren {
|
|
22
|
+
nav: TransformedNavItem;
|
|
23
|
+
}
|
|
24
|
+
// ==============================================================
|
|
25
|
+
|
|
26
|
+
export default function NavItemChild({ nav, children }: Props) {
|
|
27
|
+
const pathname = usePathname();
|
|
28
|
+
const { settings } = useSettings();
|
|
29
|
+
const { checkOverflow, elementRef, isLeftOverflowing, isRightOverflowing } =
|
|
30
|
+
useOverflowDetect();
|
|
31
|
+
|
|
32
|
+
const isActive = nav.items.flat().find((item) => {
|
|
33
|
+
const { href } = item;
|
|
34
|
+
if (!href || !pathname) return false;
|
|
35
|
+
return href === pathname;
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
return (
|
|
39
|
+
<ParentNav
|
|
40
|
+
minWidth={200}
|
|
41
|
+
active={isActive ? 1 : 0}
|
|
42
|
+
onMouseEnter={checkOverflow}
|
|
43
|
+
>
|
|
44
|
+
<MenuItem color="grey.700">
|
|
45
|
+
<Span flex="1 1 0">{nav?.title}</Span>
|
|
46
|
+
|
|
47
|
+
{settings.direction === "ltr" ? (
|
|
48
|
+
<ArrowRight fontSize="small" />
|
|
49
|
+
) : (
|
|
50
|
+
<ArrowLeft fontSize="small" />
|
|
51
|
+
)}
|
|
52
|
+
</MenuItem>
|
|
53
|
+
|
|
54
|
+
<ParentNavItem
|
|
55
|
+
ref={elementRef as RefObject<HTMLDivElement>}
|
|
56
|
+
left={isLeftOverflowing}
|
|
57
|
+
right={isRightOverflowing}
|
|
58
|
+
className="parent-nav-item"
|
|
59
|
+
>
|
|
60
|
+
<BazaarCard elevation={3} sx={{ py: "0.5rem", minWidth: 180 }}>
|
|
61
|
+
{children}
|
|
62
|
+
</BazaarCard>
|
|
63
|
+
</ParentNavItem>
|
|
64
|
+
</ParentNav>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { useContext } from "react";
|
|
2
|
+
import MenuItem from "@mui/material/MenuItem";
|
|
3
|
+
// MUI ICON COMPONENTS
|
|
4
|
+
import KeyboardArrowDown from "@mui/icons-material/KeyboardArrowDown";
|
|
5
|
+
// GLOBAL CUSTOM COMPONENTS
|
|
6
|
+
import { NavLink } from "@evenicanpm/storefront-core/src/components-v2/nav-link/index";
|
|
7
|
+
import { FlexBox } from "@evenicanpm/storefront-core/src/components-v2/flex-box/index";
|
|
8
|
+
import BazaarCard from "@evenicanpm/storefront-core/src/components-v2/BazaarCard";
|
|
9
|
+
// LOCAL CUSTOM COMPONENTS
|
|
10
|
+
import MegaMenu from "../mega-menu/index";
|
|
11
|
+
import NavItemChild from "./nav-item-child";
|
|
12
|
+
import CategoryBasedMenu from "../category-based-menu/index";
|
|
13
|
+
// STYLED COMPONENTS
|
|
14
|
+
import { StyledNavLink, NAV_LINK_STYLES, ChildNavListWrapper } from "../styles";
|
|
15
|
+
// NAV RELATED
|
|
16
|
+
import { NavContext } from "@evenicanpm/storefront-core/src/providers/nav-provider";
|
|
17
|
+
import {
|
|
18
|
+
transformCmsNav,
|
|
19
|
+
TransformedNavItem,
|
|
20
|
+
} from "@evenicanpm/storefront-core/src/components-v2/navbar/utils/transform-nav";
|
|
21
|
+
|
|
22
|
+
export default function NavigationList() {
|
|
23
|
+
const renderNestedNav = (list: TransformedNavItem[], isRoot = false) => {
|
|
24
|
+
return list.map((nav: TransformedNavItem) => {
|
|
25
|
+
const { href, title, items } = nav;
|
|
26
|
+
|
|
27
|
+
if (isRoot) {
|
|
28
|
+
// We can show mega menu or full screen mega menu based on client requirements
|
|
29
|
+
// Just set menuType as required in transform nav data (/navbar/utils/transform-nav.ts) and see the magic.
|
|
30
|
+
// By default we show normal menu
|
|
31
|
+
|
|
32
|
+
// Show mega menu - column based menu with single level children
|
|
33
|
+
if (nav.menuType === "mega-menu") {
|
|
34
|
+
return (
|
|
35
|
+
<MegaMenu
|
|
36
|
+
key={title}
|
|
37
|
+
title={title}
|
|
38
|
+
menuList={
|
|
39
|
+
nav.items.map((item) => [item]) as TransformedNavItem[][]
|
|
40
|
+
}
|
|
41
|
+
/>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// Show fullscreen mega menu with multi level children - good to use for categories
|
|
46
|
+
if (nav.menuType === "full-screen-mega-menu") {
|
|
47
|
+
return (
|
|
48
|
+
<CategoryBasedMenu
|
|
49
|
+
key={title}
|
|
50
|
+
title={title}
|
|
51
|
+
menuList={nav.items as TransformedNavItem[]}
|
|
52
|
+
/>
|
|
53
|
+
);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
const hasChildren = !!(items && items.length);
|
|
57
|
+
|
|
58
|
+
if (href && !hasChildren) {
|
|
59
|
+
return (
|
|
60
|
+
<StyledNavLink href={href} key={title}>
|
|
61
|
+
{title}
|
|
62
|
+
</StyledNavLink>
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
if (hasChildren) {
|
|
67
|
+
return (
|
|
68
|
+
<FlexBox
|
|
69
|
+
key={title}
|
|
70
|
+
alignItems="center"
|
|
71
|
+
position="relative"
|
|
72
|
+
flexDirection="column"
|
|
73
|
+
sx={{
|
|
74
|
+
"&:hover": { "& > .child-nav-item": { display: "block" } },
|
|
75
|
+
}}
|
|
76
|
+
>
|
|
77
|
+
<FlexBox alignItems="flex-end" gap={0.3} sx={NAV_LINK_STYLES}>
|
|
78
|
+
{title}{" "}
|
|
79
|
+
<KeyboardArrowDown
|
|
80
|
+
sx={{ color: "grey.500", fontSize: "1.1rem" }}
|
|
81
|
+
/>
|
|
82
|
+
</FlexBox>
|
|
83
|
+
|
|
84
|
+
<ChildNavListWrapper className="child-nav-item">
|
|
85
|
+
<BazaarCard
|
|
86
|
+
elevation={3}
|
|
87
|
+
sx={{ mt: 2.5, py: 1, minWidth: 100 }}
|
|
88
|
+
>
|
|
89
|
+
{renderNestedNav(items as TransformedNavItem[])}
|
|
90
|
+
</BazaarCard>
|
|
91
|
+
</ChildNavListWrapper>
|
|
92
|
+
</FlexBox>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
} else {
|
|
96
|
+
const hasChildren = !!(items && items.length);
|
|
97
|
+
if (href && !hasChildren) {
|
|
98
|
+
return (
|
|
99
|
+
<NavLink href={href} key={title}>
|
|
100
|
+
<MenuItem>{title}</MenuItem>
|
|
101
|
+
</NavLink>
|
|
102
|
+
);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
if (hasChildren) {
|
|
106
|
+
return (
|
|
107
|
+
<NavItemChild nav={nav} key={title}>
|
|
108
|
+
{renderNestedNav(items as TransformedNavItem[])}
|
|
109
|
+
</NavItemChild>
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
const cmsList = transformCmsNav(useContext(NavContext).cmsNav ?? []);
|
|
117
|
+
|
|
118
|
+
return <FlexBox gap={4}>{renderNestedNav(cmsList, true)}</FlexBox>;
|
|
119
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
// LOCAL CUSTOM COMPONENTS
|
|
3
|
+
import Categories from "./categories";
|
|
4
|
+
import NavigationList from "./nav-list/index";
|
|
5
|
+
// STYLED COMPONENTS
|
|
6
|
+
import { NavBarWrapper, InnerContainer } from "./styles";
|
|
7
|
+
// DATA TYPES
|
|
8
|
+
|
|
9
|
+
// ==========================================================
|
|
10
|
+
interface Props {
|
|
11
|
+
border?: number;
|
|
12
|
+
elevation?: number;
|
|
13
|
+
hideCategories?: boolean;
|
|
14
|
+
}
|
|
15
|
+
// ==========================================================
|
|
16
|
+
|
|
17
|
+
export default function Navbar({
|
|
18
|
+
border = 0,
|
|
19
|
+
elevation = 2,
|
|
20
|
+
hideCategories = false,
|
|
21
|
+
}: Props) {
|
|
22
|
+
return (
|
|
23
|
+
<NavBarWrapper
|
|
24
|
+
hoverEffect={false}
|
|
25
|
+
elevation={elevation}
|
|
26
|
+
border={border || 0}
|
|
27
|
+
>
|
|
28
|
+
{hideCategories ? (
|
|
29
|
+
<InnerContainer sx={{ justifyContent: "center" }}>
|
|
30
|
+
<NavigationList />
|
|
31
|
+
</InnerContainer>
|
|
32
|
+
) : (
|
|
33
|
+
<InnerContainer>
|
|
34
|
+
{/* CATEGORY MEGA MENU */}
|
|
35
|
+
<Categories />
|
|
36
|
+
|
|
37
|
+
{/* HORIZONTAL MENU */}
|
|
38
|
+
<NavigationList />
|
|
39
|
+
</InnerContainer>
|
|
40
|
+
)}
|
|
41
|
+
</NavBarWrapper>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import Box from "@mui/material/Box";
|
|
2
|
+
import Button from "@mui/material/Button";
|
|
3
|
+
import styled from "@mui/material/styles/styled";
|
|
4
|
+
import Container from "@mui/material/Container";
|
|
5
|
+
// GLOBAL CUSTOM COMPONENTS
|
|
6
|
+
import { NavLink } from "@evenicanpm/storefront-core/src/components-v2/nav-link/index";
|
|
7
|
+
import BazaarCard from "@evenicanpm/storefront-core/src/components-v2/BazaarCard";
|
|
8
|
+
|
|
9
|
+
// COMMON STYLED OBJECT
|
|
10
|
+
export const NAV_LINK_STYLES = {
|
|
11
|
+
fontWeight: 600,
|
|
12
|
+
cursor: "pointer",
|
|
13
|
+
transition: "color 150ms ease-in-out",
|
|
14
|
+
"&:hover": { color: "primary.main" },
|
|
15
|
+
"&:last-child": { marginRight: 0 },
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const StyledNavLink = styled(NavLink)({ ...NAV_LINK_STYLES });
|
|
19
|
+
|
|
20
|
+
export const ParentNav = styled(Box, {
|
|
21
|
+
shouldForwardProp: (prop) => prop !== "active",
|
|
22
|
+
})<{ active: number }>(({ theme, active }) => ({
|
|
23
|
+
position: "relative",
|
|
24
|
+
"&:hover": {
|
|
25
|
+
color: theme.palette.primary.main,
|
|
26
|
+
"& > .parent-nav-item": { display: "block" },
|
|
27
|
+
},
|
|
28
|
+
...(active && { color: theme.palette.primary.main }),
|
|
29
|
+
}));
|
|
30
|
+
|
|
31
|
+
type Args = { left: boolean; right: boolean };
|
|
32
|
+
|
|
33
|
+
export const ParentNavItem = styled("div", {
|
|
34
|
+
shouldForwardProp: (prop) => prop !== "left" && prop !== "right",
|
|
35
|
+
})<Args>(({ theme, left, right }) => ({
|
|
36
|
+
top: 0,
|
|
37
|
+
zIndex: 5,
|
|
38
|
+
left: "100%",
|
|
39
|
+
paddingLeft: 8,
|
|
40
|
+
display: "none",
|
|
41
|
+
position: "absolute",
|
|
42
|
+
...(right && left && { right: "100%", left: "auto", paddingRight: 8 }),
|
|
43
|
+
[theme.breakpoints.down(1640)]: {
|
|
44
|
+
right: "100%",
|
|
45
|
+
left: "auto",
|
|
46
|
+
paddingRight: 8,
|
|
47
|
+
},
|
|
48
|
+
}));
|
|
49
|
+
|
|
50
|
+
export const NavBarWrapper = styled(BazaarCard, {
|
|
51
|
+
shouldForwardProp: (prop) => prop !== "border",
|
|
52
|
+
})<{ border: number }>(({ theme, border }) => ({
|
|
53
|
+
height: "60px",
|
|
54
|
+
display: "block",
|
|
55
|
+
borderRadius: "0px",
|
|
56
|
+
position: "relative",
|
|
57
|
+
boxShadow: "none",
|
|
58
|
+
...(border && { borderBottom: `1px solid ${theme.palette.grey[200]}` }),
|
|
59
|
+
[theme.breakpoints.down(1150)]: { display: "none" },
|
|
60
|
+
}));
|
|
61
|
+
|
|
62
|
+
export const InnerContainer = styled(Container)({
|
|
63
|
+
height: "100%",
|
|
64
|
+
display: "flex",
|
|
65
|
+
alignItems: "center",
|
|
66
|
+
justifyContent: "space-between",
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
export const CategoryMenuButton = styled(Button)(({ theme }) => ({
|
|
70
|
+
width: 220,
|
|
71
|
+
borderRadius: 4,
|
|
72
|
+
backgroundColor: theme.palette.grey[200],
|
|
73
|
+
...(theme.direction === "rtl" && { ".dropdown-icon": { rotate: "180deg" } }),
|
|
74
|
+
".prefix": {
|
|
75
|
+
gap: 8,
|
|
76
|
+
flex: 1,
|
|
77
|
+
display: "flex",
|
|
78
|
+
alignItems: "center",
|
|
79
|
+
color: theme.palette.grey[800],
|
|
80
|
+
},
|
|
81
|
+
}));
|
|
82
|
+
|
|
83
|
+
export const ChildNavListWrapper = styled("div")({
|
|
84
|
+
zIndex: 5,
|
|
85
|
+
left: "50%",
|
|
86
|
+
top: "100%",
|
|
87
|
+
display: "none",
|
|
88
|
+
position: "absolute",
|
|
89
|
+
transform: "translate(-50%, 0%)",
|
|
90
|
+
});
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
import { describe, it, expect } from "vitest";
|
|
2
|
+
import { transformCategoryNav, transformCmsNav } from "./transform-nav";
|
|
3
|
+
import { CmsNavItem } from "@/cms/interfaces/navigation";
|
|
4
|
+
import { CategoryHierarchy } from "@/lib/category-helpers";
|
|
5
|
+
|
|
6
|
+
describe("transform nav items", () => {
|
|
7
|
+
it("should recursively transform deeply nested categories and its children with correct href, title, and items", () => {
|
|
8
|
+
const result = transformCategoryNav(
|
|
9
|
+
categories as unknown as CategoryHierarchy[],
|
|
10
|
+
);
|
|
11
|
+
const accessories = result[0];
|
|
12
|
+
expect(accessories.title).toBe("Accessories");
|
|
13
|
+
expect(accessories.href).toBe(
|
|
14
|
+
"/products/fabrikam-fashion/accessories/68719478036",
|
|
15
|
+
);
|
|
16
|
+
expect(Array.isArray(accessories.items)).toBe(true);
|
|
17
|
+
|
|
18
|
+
const handbagsAndWallets = accessories.items.find(
|
|
19
|
+
(i) => i.title === "Handbags and Wallets",
|
|
20
|
+
);
|
|
21
|
+
expect(handbagsAndWallets?.title).toBe("Handbags and Wallets");
|
|
22
|
+
expect(handbagsAndWallets?.href).toBe(
|
|
23
|
+
"/products/fabrikam-fashion/accessories/handbags-and-wallets/68719478063",
|
|
24
|
+
);
|
|
25
|
+
expect(Array.isArray(handbagsAndWallets?.items)).toBe(true);
|
|
26
|
+
|
|
27
|
+
const handbags = handbagsAndWallets?.items.find(
|
|
28
|
+
(i) => i.title === "Handbags",
|
|
29
|
+
);
|
|
30
|
+
expect(handbags?.title).toBe("Handbags");
|
|
31
|
+
expect(handbags?.href).toBe(
|
|
32
|
+
"/products/fabrikam-fashion/accessories/handbags-and-wallets/handbags/68719478067",
|
|
33
|
+
);
|
|
34
|
+
expect(Array.isArray(handbags?.items)).toBe(true);
|
|
35
|
+
expect(handbags?.items.length).toBe(0); // leaf node
|
|
36
|
+
|
|
37
|
+
const wallets = handbagsAndWallets?.items.find(
|
|
38
|
+
(i) => i.title === "Wallets",
|
|
39
|
+
);
|
|
40
|
+
expect(wallets?.title).toBe("Wallets");
|
|
41
|
+
expect(wallets?.href).toBe(
|
|
42
|
+
"/products/fabrikam-fashion/accessories/handbags-and-wallets/wallets/68719478069",
|
|
43
|
+
);
|
|
44
|
+
expect(Array.isArray(wallets?.items)).toBe(true);
|
|
45
|
+
expect(wallets?.items.length).toBe(0); // leaf node
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
it("should transform cms nav items with proper href", () => {
|
|
49
|
+
const { href, items } = transformCmsNav([cmsNavItemApiResponse])[0];
|
|
50
|
+
expect(href).toBe("/pages/news"); // Internal link
|
|
51
|
+
expect(items.length).toBe(1);
|
|
52
|
+
expect(items[0].href).toBe("http://example.com"); // External link
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
// Mock Data
|
|
57
|
+
export const categories = [
|
|
58
|
+
{
|
|
59
|
+
RecordId: 68719478036,
|
|
60
|
+
Name: "Accessories",
|
|
61
|
+
ParentCategory: 68719478035,
|
|
62
|
+
DisplayOrder: 1,
|
|
63
|
+
LocalizedDescription: "Accessories",
|
|
64
|
+
Images: [
|
|
65
|
+
{
|
|
66
|
+
Uri: "Categories/Accessories.png",
|
|
67
|
+
IsDefault: false,
|
|
68
|
+
IsSelfHosted: false,
|
|
69
|
+
Priority: 0,
|
|
70
|
+
IsAdditionalMedia: false,
|
|
71
|
+
MediaTypeValue: 0,
|
|
72
|
+
DisplayOrder: 0,
|
|
73
|
+
IsApplicableForChildEntities: false,
|
|
74
|
+
ExtensionProperties: [],
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
NameTranslations: [
|
|
78
|
+
{
|
|
79
|
+
Language: "en-us",
|
|
80
|
+
Text: "Accessories",
|
|
81
|
+
ExtensionProperties: [],
|
|
82
|
+
},
|
|
83
|
+
],
|
|
84
|
+
ExtensionProperties: [],
|
|
85
|
+
NeutralizedName: "Accessories",
|
|
86
|
+
Slug: "accessories",
|
|
87
|
+
Children: [
|
|
88
|
+
{
|
|
89
|
+
RecordId: 68719478063,
|
|
90
|
+
Name: "Handbags and Wallets",
|
|
91
|
+
ParentCategory: 68719478036,
|
|
92
|
+
DisplayOrder: 5,
|
|
93
|
+
LocalizedDescription: "Handbags and Wallets",
|
|
94
|
+
Images: [
|
|
95
|
+
{
|
|
96
|
+
Uri: "Categories/Handbags and Wallets.png",
|
|
97
|
+
IsDefault: false,
|
|
98
|
+
IsSelfHosted: false,
|
|
99
|
+
Priority: 0,
|
|
100
|
+
IsAdditionalMedia: false,
|
|
101
|
+
MediaTypeValue: 0,
|
|
102
|
+
DisplayOrder: 0,
|
|
103
|
+
IsApplicableForChildEntities: false,
|
|
104
|
+
ExtensionProperties: [],
|
|
105
|
+
},
|
|
106
|
+
],
|
|
107
|
+
NameTranslations: [
|
|
108
|
+
{
|
|
109
|
+
Language: "en-us",
|
|
110
|
+
Text: "Handbags and Wallets",
|
|
111
|
+
ExtensionProperties: [],
|
|
112
|
+
},
|
|
113
|
+
],
|
|
114
|
+
ExtensionProperties: [],
|
|
115
|
+
NeutralizedName: "Handbags and Wallets",
|
|
116
|
+
Slug: "handbags-and-wallets",
|
|
117
|
+
Children: [
|
|
118
|
+
{
|
|
119
|
+
RecordId: 68719478067,
|
|
120
|
+
Name: "Handbags",
|
|
121
|
+
ParentCategory: 68719478063,
|
|
122
|
+
DisplayOrder: 0,
|
|
123
|
+
LocalizedDescription: "Handbags",
|
|
124
|
+
Images: [
|
|
125
|
+
{
|
|
126
|
+
Uri: "Categories/Handbags.png",
|
|
127
|
+
IsDefault: false,
|
|
128
|
+
IsSelfHosted: false,
|
|
129
|
+
Priority: 0,
|
|
130
|
+
IsAdditionalMedia: false,
|
|
131
|
+
MediaTypeValue: 0,
|
|
132
|
+
DisplayOrder: 0,
|
|
133
|
+
IsApplicableForChildEntities: false,
|
|
134
|
+
ExtensionProperties: [],
|
|
135
|
+
},
|
|
136
|
+
],
|
|
137
|
+
NameTranslations: [
|
|
138
|
+
{
|
|
139
|
+
Language: "en-us",
|
|
140
|
+
Text: "Handbags",
|
|
141
|
+
ExtensionProperties: [],
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
ExtensionProperties: [],
|
|
145
|
+
NeutralizedName: "Handbags",
|
|
146
|
+
Slug: "handbags",
|
|
147
|
+
Url: "fabrikam-fashion/accessories/handbags-and-wallets/handbags/68719478067",
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
RecordId: 68719478069,
|
|
151
|
+
Name: "Wallets",
|
|
152
|
+
ParentCategory: 68719478063,
|
|
153
|
+
DisplayOrder: 6,
|
|
154
|
+
LocalizedDescription: "Wallets",
|
|
155
|
+
Images: [
|
|
156
|
+
{
|
|
157
|
+
Uri: "Categories/Wallets.png",
|
|
158
|
+
IsDefault: false,
|
|
159
|
+
IsSelfHosted: false,
|
|
160
|
+
Priority: 0,
|
|
161
|
+
IsAdditionalMedia: false,
|
|
162
|
+
MediaTypeValue: 0,
|
|
163
|
+
DisplayOrder: 0,
|
|
164
|
+
IsApplicableForChildEntities: false,
|
|
165
|
+
ExtensionProperties: [],
|
|
166
|
+
},
|
|
167
|
+
],
|
|
168
|
+
NameTranslations: [
|
|
169
|
+
{
|
|
170
|
+
Language: "en-us",
|
|
171
|
+
Text: "Wallets",
|
|
172
|
+
ExtensionProperties: [],
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
ExtensionProperties: [],
|
|
176
|
+
NeutralizedName: "Wallets",
|
|
177
|
+
Slug: "wallets",
|
|
178
|
+
Url: "fabrikam-fashion/accessories/handbags-and-wallets/wallets/68719478069",
|
|
179
|
+
},
|
|
180
|
+
],
|
|
181
|
+
Url: "fabrikam-fashion/accessories/handbags-and-wallets/68719478063",
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
Url: "fabrikam-fashion/accessories/68719478036",
|
|
185
|
+
},
|
|
186
|
+
];
|
|
187
|
+
|
|
188
|
+
const cmsNavItemApiResponse = {
|
|
189
|
+
title: "News",
|
|
190
|
+
menuAttached: true,
|
|
191
|
+
path: "/news",
|
|
192
|
+
type: "INTERNAL",
|
|
193
|
+
uiRouterKey: "news",
|
|
194
|
+
slug: "benefits",
|
|
195
|
+
external: false,
|
|
196
|
+
related: {
|
|
197
|
+
slug: "news",
|
|
198
|
+
},
|
|
199
|
+
items: [
|
|
200
|
+
{
|
|
201
|
+
title: "External url",
|
|
202
|
+
menuAttached: true,
|
|
203
|
+
path: "http://example.com",
|
|
204
|
+
type: "EXTERNAL",
|
|
205
|
+
uiRouterKey: "generic",
|
|
206
|
+
external: true,
|
|
207
|
+
},
|
|
208
|
+
],
|
|
209
|
+
} as CmsNavItem;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { CmsNavItem } from "@/cms/interfaces/navigation";
|
|
2
|
+
import { CategoryHierarchy } from "@/lib/category-helpers";
|
|
3
|
+
import { SvgIconComponent } from "@mui/icons-material";
|
|
4
|
+
|
|
5
|
+
type MenuType = "default" | "mega-menu" | "full-screen-mega-menu";
|
|
6
|
+
export interface TransformedNavItem {
|
|
7
|
+
href: string;
|
|
8
|
+
title: string;
|
|
9
|
+
items: TransformedNavItem[];
|
|
10
|
+
menuType: MenuType;
|
|
11
|
+
// Icon and img used only in full screen mega menu
|
|
12
|
+
Icon?: SvgIconComponent;
|
|
13
|
+
img?: string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const transformCmsNav = (items: CmsNavItem[]): TransformedNavItem[] => {
|
|
17
|
+
return items.map((item) => {
|
|
18
|
+
const transformedItem: TransformedNavItem = {
|
|
19
|
+
href:
|
|
20
|
+
item.type === "INTERNAL"
|
|
21
|
+
? `/pages/${item.related?.slug}`
|
|
22
|
+
: (item.path ?? ""),
|
|
23
|
+
title: item.title,
|
|
24
|
+
menuType: "default",
|
|
25
|
+
items: item.items ? transformCmsNav(item.items) : [],
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
return transformedItem;
|
|
29
|
+
});
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export const transformCategoryNav = (
|
|
33
|
+
items: CategoryHierarchy[],
|
|
34
|
+
): TransformedNavItem[] => {
|
|
35
|
+
return items.map((item: CategoryHierarchy) => {
|
|
36
|
+
return {
|
|
37
|
+
href: `/products/${item?.Url}`,
|
|
38
|
+
title: item?.Name ?? "",
|
|
39
|
+
menuType: "default",
|
|
40
|
+
items: item?.Children ? transformCategoryNav(item.Children) : [],
|
|
41
|
+
};
|
|
42
|
+
});
|
|
43
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./newsletter";
|