@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,141 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { useState } from "react";
|
|
4
|
-
import { useRouter } from "next/navigation";
|
|
5
|
-
// MUI
|
|
6
|
-
import Button from "@mui/material/Button";
|
|
7
|
-
import Divider from "@mui/material/Divider";
|
|
8
|
-
import Tooltip from "@mui/material/Tooltip";
|
|
9
|
-
import ClickAwayListener from "@mui/material/ClickAwayListener";
|
|
10
|
-
// MUI ICON COMPONENTS
|
|
11
|
-
import Close from "@mui/icons-material/Close";
|
|
12
|
-
import Settings from "@mui/icons-material/Settings";
|
|
13
|
-
// LOCAL CUSTOM COMPONENTS
|
|
14
|
-
import { H6 } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
15
|
-
import Scrollbar from "@evenicanpm/storefront-core/src/components-v2/scrollbar/scrollbar";
|
|
16
|
-
import FlexBox from "@evenicanpm/storefront-core/src/components-v2/flex-box/flex-box";
|
|
17
|
-
// GLOBAL CUSTOM HOOK
|
|
18
|
-
import useSettings from "@evenicanpm/storefront-core/src/hooks/use-settings";
|
|
19
|
-
// STYLED COMPONENTS
|
|
20
|
-
import {
|
|
21
|
-
BodyWrapper,
|
|
22
|
-
MainContainer,
|
|
23
|
-
StyledAvatar,
|
|
24
|
-
StyledIconButton,
|
|
25
|
-
} from "./styles";
|
|
26
|
-
|
|
27
|
-
export default function Setting() {
|
|
28
|
-
const { push } = useRouter();
|
|
29
|
-
const { updateSettings, settings } = useSettings();
|
|
30
|
-
const [showBody, setShowBody] = useState(false);
|
|
31
|
-
|
|
32
|
-
return (
|
|
33
|
-
<ClickAwayListener onClickAway={() => setShowBody(false)}>
|
|
34
|
-
<MainContainer>
|
|
35
|
-
<Tooltip title="Settings & Demos" placement="left">
|
|
36
|
-
<StyledIconButton onClick={() => setShowBody((state) => !state)}>
|
|
37
|
-
{!showBody && <Settings />}
|
|
38
|
-
{showBody && <Close />}
|
|
39
|
-
</StyledIconButton>
|
|
40
|
-
</Tooltip>
|
|
41
|
-
|
|
42
|
-
<BodyWrapper showBody={showBody ? 1 : 0}>
|
|
43
|
-
<Scrollbar sx={{ maxHeight: showBody ? "calc(100vh - 200px)" : 0 }}>
|
|
44
|
-
<FlexBox gap={2}>
|
|
45
|
-
<Button
|
|
46
|
-
fullWidth
|
|
47
|
-
onClick={() => updateSettings({ direction: "rtl" })}
|
|
48
|
-
color={settings.direction === "rtl" ? "primary" : "secondary"}
|
|
49
|
-
variant={
|
|
50
|
-
settings.direction === "rtl" ? "contained" : "outlined"
|
|
51
|
-
}
|
|
52
|
-
>
|
|
53
|
-
RTL
|
|
54
|
-
</Button>
|
|
55
|
-
|
|
56
|
-
<Button
|
|
57
|
-
fullWidth
|
|
58
|
-
onClick={() => updateSettings({ direction: "ltr" })}
|
|
59
|
-
color={settings.direction === "ltr" ? "primary" : "secondary"}
|
|
60
|
-
variant={
|
|
61
|
-
settings.direction === "ltr" ? "contained" : "outlined"
|
|
62
|
-
}
|
|
63
|
-
>
|
|
64
|
-
LTR
|
|
65
|
-
</Button>
|
|
66
|
-
</FlexBox>
|
|
67
|
-
|
|
68
|
-
<Divider sx={{ my: 3 }} />
|
|
69
|
-
|
|
70
|
-
<H6 textAlign="center" mb={2}>
|
|
71
|
-
Bazaar Demos
|
|
72
|
-
</H6>
|
|
73
|
-
|
|
74
|
-
<FlexBox gap={2} flexWrap="wrap">
|
|
75
|
-
{demos.map((demo) => (
|
|
76
|
-
<StyledAvatar
|
|
77
|
-
key={demo.id}
|
|
78
|
-
src={demo.img}
|
|
79
|
-
onClick={() => push(demo.path)}
|
|
80
|
-
/>
|
|
81
|
-
))}
|
|
82
|
-
</FlexBox>
|
|
83
|
-
</Scrollbar>
|
|
84
|
-
</BodyWrapper>
|
|
85
|
-
</MainContainer>
|
|
86
|
-
</ClickAwayListener>
|
|
87
|
-
);
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
const demos = [
|
|
91
|
-
{
|
|
92
|
-
id: 17,
|
|
93
|
-
path: "/furniture-3",
|
|
94
|
-
img: "/assets/images/landing/home/furniture-3.jpg",
|
|
95
|
-
},
|
|
96
|
-
{
|
|
97
|
-
id: 16,
|
|
98
|
-
path: "/gadget-3",
|
|
99
|
-
img: "/assets/images/landing/home/gadget-3.jpg",
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
id: 15,
|
|
103
|
-
path: "/grocery-4",
|
|
104
|
-
img: "/assets/images/landing/home/grocery-4.jpg",
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
id: 12,
|
|
108
|
-
path: "/furniture-2",
|
|
109
|
-
img: "/assets/images/landing/home/furniture-2.jpg",
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
id: 13,
|
|
113
|
-
path: "/gadget-2",
|
|
114
|
-
img: "/assets/images/landing/home/gadget-2.png",
|
|
115
|
-
},
|
|
116
|
-
{ id: 14, path: "/medical", img: "/assets/images/landing/home/medical.png" },
|
|
117
|
-
{
|
|
118
|
-
id: 5,
|
|
119
|
-
path: "/fashion-3",
|
|
120
|
-
img: "/assets/images/landing/home/fashion-3.jpg",
|
|
121
|
-
},
|
|
122
|
-
{ id: 0, path: "/market-1", img: "/assets/images/landing/page-1.png" },
|
|
123
|
-
{ id: 1, path: "/market-2", img: "/assets/images/landing/home/market-2.jpg" },
|
|
124
|
-
{ id: 9, path: "/grocery-1", img: "/assets/images/landing/grocery1.png" },
|
|
125
|
-
{ id: 2, path: "/grocery-2", img: "/assets/images/landing/page-2.png" },
|
|
126
|
-
{ id: 10, path: "/grocery-3", img: "/assets/images/landing/grocery3.png" },
|
|
127
|
-
{ id: 3, path: "/fashion-1", img: "/assets/images/landing/page-3.png" },
|
|
128
|
-
{
|
|
129
|
-
id: 4,
|
|
130
|
-
path: "/fashion-2",
|
|
131
|
-
img: "/assets/images/landing/home/fashion-2.jpg",
|
|
132
|
-
},
|
|
133
|
-
{ id: 6, path: "/gadget-1", img: "/assets/images/landing/page-4.png" },
|
|
134
|
-
{ id: 7, path: "/furniture-1", img: "/assets/images/landing/furniture.png" },
|
|
135
|
-
{ id: 8, path: "/gift-shop", img: "/assets/images/landing/gift-shop.png" },
|
|
136
|
-
{
|
|
137
|
-
id: 11,
|
|
138
|
-
path: "/health-beauty",
|
|
139
|
-
img: "/assets/images/landing/healthbeauty.png",
|
|
140
|
-
},
|
|
141
|
-
];
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import Avatar from "@mui/material/Avatar";
|
|
2
|
-
import styled from "@mui/material/styles/styled";
|
|
3
|
-
import IconButton from "@mui/material/IconButton";
|
|
4
|
-
|
|
5
|
-
export const MainContainer = styled("div")(({ theme }) => ({
|
|
6
|
-
top: 50,
|
|
7
|
-
right: 50,
|
|
8
|
-
zIndex: 1501,
|
|
9
|
-
position: "fixed",
|
|
10
|
-
[theme.breakpoints.down("md")]: { display: "none" },
|
|
11
|
-
}));
|
|
12
|
-
|
|
13
|
-
export const StyledIconButton = styled(IconButton)(({ theme }) => ({
|
|
14
|
-
right: 50,
|
|
15
|
-
zIndex: 99,
|
|
16
|
-
bottom: 50,
|
|
17
|
-
padding: 12,
|
|
18
|
-
color: "#fff",
|
|
19
|
-
position: "fixed",
|
|
20
|
-
borderRadius: "50%",
|
|
21
|
-
boxShadow: theme.shadows[12],
|
|
22
|
-
backgroundColor: theme.palette.primary.main,
|
|
23
|
-
":hover": { backgroundColor: theme.palette.primary.main },
|
|
24
|
-
}));
|
|
25
|
-
|
|
26
|
-
export const BodyWrapper = styled("div", {
|
|
27
|
-
shouldForwardProp: (props) => props !== "showBody",
|
|
28
|
-
})<{ showBody: number }>(({ theme, showBody }) => ({
|
|
29
|
-
borderRadius: "4px",
|
|
30
|
-
backgroundColor: "white",
|
|
31
|
-
opacity: showBody ? 1 : 0,
|
|
32
|
-
width: showBody ? 300 : 0,
|
|
33
|
-
padding: showBody ? 24 : 0,
|
|
34
|
-
boxShadow: theme.shadows[3],
|
|
35
|
-
transition: "transform 0.4s",
|
|
36
|
-
// maxHeight: showBody ? "calc(100vh - 100px)" : 0,
|
|
37
|
-
transform: `translateY(${showBody ? 0 : "10px"})`,
|
|
38
|
-
}));
|
|
39
|
-
|
|
40
|
-
export const StyledAvatar = styled(Avatar)({
|
|
41
|
-
flexGrow: 1,
|
|
42
|
-
height: 100,
|
|
43
|
-
width: "45%",
|
|
44
|
-
cursor: "pointer",
|
|
45
|
-
borderRadius: "10px",
|
|
46
|
-
":last-of-type": { flexGrow: 0 },
|
|
47
|
-
":hover": { "&::after": { opacity: 0.5 } },
|
|
48
|
-
"::after": {
|
|
49
|
-
opacity: 0,
|
|
50
|
-
content: '""',
|
|
51
|
-
width: "100%",
|
|
52
|
-
height: "100%",
|
|
53
|
-
background: "black",
|
|
54
|
-
position: "absolute",
|
|
55
|
-
transition: "all 0.3s",
|
|
56
|
-
},
|
|
57
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "./sticky-wrapper";
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { PropsWithChildren, ReactNode } from "react";
|
|
2
|
-
import Container from "@mui/material/Container";
|
|
3
|
-
// STYLED COMPONENTS
|
|
4
|
-
import { ContentWrapper } from "./styles";
|
|
5
|
-
|
|
6
|
-
// ==============================================================
|
|
7
|
-
interface Props extends PropsWithChildren {
|
|
8
|
-
SideNav: ReactNode;
|
|
9
|
-
}
|
|
10
|
-
// ==============================================================
|
|
11
|
-
|
|
12
|
-
export default function StickyWrapper({ SideNav, children }: Props) {
|
|
13
|
-
return (
|
|
14
|
-
<Container>
|
|
15
|
-
<ContentWrapper>
|
|
16
|
-
<div className="sidebar">{SideNav}</div>
|
|
17
|
-
<div className="content">{children}</div>
|
|
18
|
-
</ContentWrapper>
|
|
19
|
-
</Container>
|
|
20
|
-
);
|
|
21
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import styled from "@mui/material/styles/styled";
|
|
4
|
-
import { layoutConstant } from "@evenicanpm/storefront-core/src/components-v2/utils/constants";
|
|
5
|
-
|
|
6
|
-
export const ContentWrapper = styled("div")(({ theme }) => ({
|
|
7
|
-
display: "flex",
|
|
8
|
-
position: "relative",
|
|
9
|
-
|
|
10
|
-
".sidebar": {
|
|
11
|
-
width: "100%",
|
|
12
|
-
height: "100%",
|
|
13
|
-
position: "sticky",
|
|
14
|
-
top: layoutConstant.headerHeight + 15,
|
|
15
|
-
maxWidth: layoutConstant.grocerySidenavWidth,
|
|
16
|
-
[theme.breakpoints.down("md")]: { display: "none" },
|
|
17
|
-
},
|
|
18
|
-
|
|
19
|
-
".content": {
|
|
20
|
-
width: "100%",
|
|
21
|
-
paddingLeft: "2rem",
|
|
22
|
-
maxWidth: `calc(100% - ${layoutConstant.grocerySidenavWidth}px)`,
|
|
23
|
-
[theme.breakpoints.down("md")]: { maxWidth: "100%", paddingLeft: 0 },
|
|
24
|
-
},
|
|
25
|
-
}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "./story-content";
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import Link from "next/link";
|
|
2
|
-
import LazyImage from "@evenicanpm/storefront-core/src/components-v2/LazyImage";
|
|
3
|
-
// STYLED COMPONENT
|
|
4
|
-
import { StyledButton, StyledRoot } from "./styles";
|
|
5
|
-
|
|
6
|
-
// ==============================================================
|
|
7
|
-
interface Props {
|
|
8
|
-
image: string;
|
|
9
|
-
url?: string;
|
|
10
|
-
}
|
|
11
|
-
// ==============================================================
|
|
12
|
-
|
|
13
|
-
export default function StoryContent({ image, url }: Props) {
|
|
14
|
-
return (
|
|
15
|
-
<StyledRoot>
|
|
16
|
-
<LazyImage src={image} width={450} height={824} alt="Story" />
|
|
17
|
-
|
|
18
|
-
<StyledButton
|
|
19
|
-
color="primary"
|
|
20
|
-
variant="contained"
|
|
21
|
-
LinkComponent={Link}
|
|
22
|
-
href={url}
|
|
23
|
-
>
|
|
24
|
-
View More
|
|
25
|
-
</StyledButton>
|
|
26
|
-
</StyledRoot>
|
|
27
|
-
);
|
|
28
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import Button from "@mui/material/Button";
|
|
4
|
-
import styled from "@mui/material/styles/styled";
|
|
5
|
-
|
|
6
|
-
export const StyledRoot = styled("div")(() => ({
|
|
7
|
-
width: "100%",
|
|
8
|
-
height: "100%",
|
|
9
|
-
display: "flex",
|
|
10
|
-
position: "relative",
|
|
11
|
-
}));
|
|
12
|
-
|
|
13
|
-
export const StyledButton = styled(Button)(() => ({
|
|
14
|
-
bottom: 30,
|
|
15
|
-
left: "50%",
|
|
16
|
-
zIndex: 1111,
|
|
17
|
-
color: "white",
|
|
18
|
-
fontWeight: 400,
|
|
19
|
-
position: "absolute",
|
|
20
|
-
paddingInline: "2rem",
|
|
21
|
-
transform: "translateX(-50%)",
|
|
22
|
-
}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "./story-item";
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import LazyImage from "@evenicanpm/storefront-core/src/components-v2/LazyImage";
|
|
2
|
-
// STYLED COMPONENT
|
|
3
|
-
import { StyledRoot } from "./styles";
|
|
4
|
-
|
|
5
|
-
// ==============================================================
|
|
6
|
-
interface Props {
|
|
7
|
-
image: string;
|
|
8
|
-
handleClick: () => void;
|
|
9
|
-
}
|
|
10
|
-
// ==============================================================
|
|
11
|
-
|
|
12
|
-
export default function StoryItem({ image, handleClick }: Props) {
|
|
13
|
-
return (
|
|
14
|
-
<StyledRoot>
|
|
15
|
-
<LazyImage
|
|
16
|
-
src={image}
|
|
17
|
-
alt="Story"
|
|
18
|
-
width={164}
|
|
19
|
-
height={300}
|
|
20
|
-
onClick={handleClick}
|
|
21
|
-
/>
|
|
22
|
-
</StyledRoot>
|
|
23
|
-
);
|
|
24
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "./story-viewer";
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import Modal from "@mui/material/Modal";
|
|
4
|
-
import Stories from "react-insta-stories";
|
|
5
|
-
// STYLED COMPONENTS
|
|
6
|
-
import { ModalWrapper } from "./styles";
|
|
7
|
-
import {
|
|
8
|
-
ReactInstaStoriesProps,
|
|
9
|
-
Story,
|
|
10
|
-
} from "react-insta-stories/dist/interfaces";
|
|
11
|
-
|
|
12
|
-
// ==============================================================
|
|
13
|
-
interface Props extends ReactInstaStoriesProps {
|
|
14
|
-
open: boolean;
|
|
15
|
-
handleClose: () => void;
|
|
16
|
-
stories: Story[];
|
|
17
|
-
currentIndex: number;
|
|
18
|
-
}
|
|
19
|
-
// ==============================================================
|
|
20
|
-
|
|
21
|
-
export default function StoryViewer({
|
|
22
|
-
open,
|
|
23
|
-
handleClose,
|
|
24
|
-
stories,
|
|
25
|
-
currentIndex,
|
|
26
|
-
}: Props) {
|
|
27
|
-
return (
|
|
28
|
-
<Modal open={open} onClose={handleClose}>
|
|
29
|
-
<ModalWrapper>
|
|
30
|
-
<Stories
|
|
31
|
-
stories={stories}
|
|
32
|
-
currentIndex={currentIndex}
|
|
33
|
-
onAllStoriesEnd={handleClose}
|
|
34
|
-
progressStyles={{ height: 3, borderRadius: 10 }}
|
|
35
|
-
progressWrapperStyles={{
|
|
36
|
-
height: 3,
|
|
37
|
-
borderRadius: 10,
|
|
38
|
-
background: "#373F50",
|
|
39
|
-
}}
|
|
40
|
-
/>
|
|
41
|
-
</ModalWrapper>
|
|
42
|
-
</Modal>
|
|
43
|
-
);
|
|
44
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import styled from "@mui/material/styles/styled";
|
|
4
|
-
|
|
5
|
-
export const ModalWrapper = styled("div")(() => ({
|
|
6
|
-
top: "50%",
|
|
7
|
-
outline: 0,
|
|
8
|
-
left: "50%",
|
|
9
|
-
borderRadius: 4,
|
|
10
|
-
overflow: "hidden",
|
|
11
|
-
aspectRatio: "9/16",
|
|
12
|
-
position: "absolute",
|
|
13
|
-
backgroundColor: "white",
|
|
14
|
-
transform: "translate(-50%, -50%)",
|
|
15
|
-
}));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "./subscribe-input";
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import ButtonBase from "@mui/material/ButtonBase";
|
|
4
|
-
import styled from "@mui/material/styles/styled";
|
|
5
|
-
|
|
6
|
-
export const StyledButton = styled(ButtonBase)({
|
|
7
|
-
height: "100%",
|
|
8
|
-
color: "white",
|
|
9
|
-
fontWeight: 600,
|
|
10
|
-
padding: ".75rem 1.5rem",
|
|
11
|
-
backgroundColor: "black",
|
|
12
|
-
borderTopRightRadius: 8,
|
|
13
|
-
borderBottomRightRadius: 8,
|
|
14
|
-
});
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { SxProps, Theme } from "@mui/material/styles";
|
|
2
|
-
import TextField, { TextFieldProps } from "@mui/material/TextField";
|
|
3
|
-
// STYLED COMPONENT
|
|
4
|
-
import { StyledButton } from "./styles";
|
|
5
|
-
|
|
6
|
-
// ==============================================================
|
|
7
|
-
interface Props {
|
|
8
|
-
buttonText?: string;
|
|
9
|
-
buttonSx?: SxProps<Theme>;
|
|
10
|
-
}
|
|
11
|
-
// ==============================================================
|
|
12
|
-
|
|
13
|
-
export default function SubscribeInput({
|
|
14
|
-
fullWidth,
|
|
15
|
-
InputProps,
|
|
16
|
-
buttonSx = {},
|
|
17
|
-
variant = "outlined",
|
|
18
|
-
buttonText = "SUBSCRIBE",
|
|
19
|
-
placeholder = "Enter Your Mail Here",
|
|
20
|
-
...props
|
|
21
|
-
}: Props & TextFieldProps) {
|
|
22
|
-
const INPUT_PROPS = {
|
|
23
|
-
endAdornment: <StyledButton sx={buttonSx}>{buttonText}</StyledButton>,
|
|
24
|
-
sx: {
|
|
25
|
-
border: 0,
|
|
26
|
-
padding: 0,
|
|
27
|
-
borderRadius: 2,
|
|
28
|
-
backgroundColor: "white",
|
|
29
|
-
...InputProps?.sx,
|
|
30
|
-
},
|
|
31
|
-
...InputProps,
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
return (
|
|
35
|
-
<TextField
|
|
36
|
-
variant={variant}
|
|
37
|
-
fullWidth={fullWidth}
|
|
38
|
-
placeholder={placeholder}
|
|
39
|
-
InputProps={INPUT_PROPS}
|
|
40
|
-
{...props}
|
|
41
|
-
/>
|
|
42
|
-
);
|
|
43
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default } from "./top-bar";
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import Box from "@mui/material/Box";
|
|
2
|
-
import Chip from "@mui/material/Chip";
|
|
3
|
-
import Container from "@mui/material/Container";
|
|
4
|
-
import styled from "@mui/material/styles/styled";
|
|
5
|
-
|
|
6
|
-
import { layoutConstant } from "@evenicanpm/storefront-core/src/components-v2/utils/constants";
|
|
7
|
-
|
|
8
|
-
export const StyledRoot = styled(Box, {
|
|
9
|
-
shouldForwardProp: (prop) => prop !== "bgColor" && prop !== "expand",
|
|
10
|
-
})<{ bgColor?: string; expand: number }>(({ theme, bgColor, expand }) => ({
|
|
11
|
-
fontSize: 12,
|
|
12
|
-
height: layoutConstant.topbarHeight,
|
|
13
|
-
color: theme.palette.secondary.contrastText,
|
|
14
|
-
background: bgColor || theme.palette.grey[900],
|
|
15
|
-
transition: "height 300ms ease",
|
|
16
|
-
"& .menuItem": { minWidth: 100 },
|
|
17
|
-
"& .marginRight": { marginRight: "1.25rem" },
|
|
18
|
-
"& .expand": { display: "none", padding: 0 },
|
|
19
|
-
"& .handler": { height: layoutConstant.topbarHeight },
|
|
20
|
-
"& .menuTitle": { fontSize: 12, marginLeft: "0.5rem", fontWeight: 600 },
|
|
21
|
-
|
|
22
|
-
[theme.breakpoints.down("sm")]: {
|
|
23
|
-
height: expand ? 80 : layoutConstant.topbarHeight,
|
|
24
|
-
|
|
25
|
-
"& .MuiSvgIcon-root": { color: "white" },
|
|
26
|
-
|
|
27
|
-
"& .topbarRight": {
|
|
28
|
-
paddingBottom: 5,
|
|
29
|
-
display: expand ? "flex" : "none",
|
|
30
|
-
},
|
|
31
|
-
|
|
32
|
-
"& .expand": {
|
|
33
|
-
display: "block",
|
|
34
|
-
height: layoutConstant.topbarHeight,
|
|
35
|
-
},
|
|
36
|
-
},
|
|
37
|
-
}));
|
|
38
|
-
|
|
39
|
-
export const StyledContainer = styled(Container)(({ theme }) => ({
|
|
40
|
-
height: "100%",
|
|
41
|
-
display: "flex",
|
|
42
|
-
alignItems: "center",
|
|
43
|
-
justifyContent: "space-between",
|
|
44
|
-
[theme.breakpoints.down("sm")]: {
|
|
45
|
-
alignItems: "start",
|
|
46
|
-
flexDirection: "column",
|
|
47
|
-
},
|
|
48
|
-
}));
|
|
49
|
-
|
|
50
|
-
export const StyledChip = styled(Chip)(({ theme }) => ({
|
|
51
|
-
color: "white",
|
|
52
|
-
fontWeight: 700,
|
|
53
|
-
backgroundColor: theme.palette.primary.main,
|
|
54
|
-
"& .MuiChip-label": { paddingInline: ".8rem" },
|
|
55
|
-
}));
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
import Link from "next/link";
|
|
2
|
-
import { useState } from "react";
|
|
3
|
-
// MUI
|
|
4
|
-
import MenuItem from "@mui/material/MenuItem";
|
|
5
|
-
import IconButton from "@mui/material/IconButton";
|
|
6
|
-
import TouchRipple from "@mui/material/ButtonBase";
|
|
7
|
-
// TRANSLATION
|
|
8
|
-
import { useTranslation } from "react-i18next";
|
|
9
|
-
// MUI ICON COMPONENTS
|
|
10
|
-
import Add from "@mui/icons-material/Add";
|
|
11
|
-
import Remove from "@mui/icons-material/Remove";
|
|
12
|
-
import Twitter from "@mui/icons-material/Twitter";
|
|
13
|
-
import Facebook from "@mui/icons-material/Facebook";
|
|
14
|
-
import Instagram from "@mui/icons-material/Instagram";
|
|
15
|
-
import ExpandMore from "@mui/icons-material/ExpandMore";
|
|
16
|
-
// GLOBAL CUSTOM COMPONENTS
|
|
17
|
-
import { Span } from "@evenicanpm/storefront-core/src/components-v2/Typography";
|
|
18
|
-
import BazaarMenu from "@evenicanpm/storefront-core/src/components-v2/BazaarMenu";
|
|
19
|
-
import {
|
|
20
|
-
FlexBetween,
|
|
21
|
-
FlexBox,
|
|
22
|
-
} from "@evenicanpm/storefront-core/src/components-v2/flex-box/index";
|
|
23
|
-
// STYLED COMPONENTS
|
|
24
|
-
import { StyledChip, StyledContainer, StyledRoot } from "./styles";
|
|
25
|
-
|
|
26
|
-
// ==============================================================
|
|
27
|
-
interface LanguageOption {
|
|
28
|
-
[key: string]: { title: string; value: string };
|
|
29
|
-
}
|
|
30
|
-
// ==============================================================
|
|
31
|
-
|
|
32
|
-
// LANGUAGE OPTIONS
|
|
33
|
-
const languageOptions: LanguageOption = {
|
|
34
|
-
en: { title: "EN", value: "en" },
|
|
35
|
-
es: { title: "DE", value: "de" },
|
|
36
|
-
};
|
|
37
|
-
|
|
38
|
-
const socialLinks = [
|
|
39
|
-
{ id: 1, Icon: Twitter, url: "#" },
|
|
40
|
-
{ id: 2, Icon: Facebook, url: "#" },
|
|
41
|
-
{ id: 3, Icon: Instagram, url: "#" },
|
|
42
|
-
];
|
|
43
|
-
|
|
44
|
-
// ===========================================
|
|
45
|
-
type Props = { bgColor?: string };
|
|
46
|
-
// ===========================================
|
|
47
|
-
|
|
48
|
-
export default function Topbar({ bgColor }: Props) {
|
|
49
|
-
const { i18n, t } = useTranslation();
|
|
50
|
-
const [expand, setExpand] = useState<boolean>(false);
|
|
51
|
-
|
|
52
|
-
const handleChangeLanguage = (language: string) => {
|
|
53
|
-
i18n.changeLanguage(language);
|
|
54
|
-
};
|
|
55
|
-
|
|
56
|
-
const selectedLanguage = languageOptions[i18n.language];
|
|
57
|
-
|
|
58
|
-
return (
|
|
59
|
-
<StyledRoot bgColor={bgColor} expand={expand ? 1 : 0}>
|
|
60
|
-
<StyledContainer>
|
|
61
|
-
<FlexBetween width="100%">
|
|
62
|
-
<FlexBox alignItems="center" gap={1}>
|
|
63
|
-
<StyledChip label={t("HOT")} size="small" />
|
|
64
|
-
<Span className="title">{t("Free Express Shipping")}</Span>
|
|
65
|
-
</FlexBox>
|
|
66
|
-
|
|
67
|
-
<IconButton
|
|
68
|
-
disableRipple
|
|
69
|
-
className="expand"
|
|
70
|
-
onClick={() => setExpand((state) => !state)}
|
|
71
|
-
>
|
|
72
|
-
{expand ? <Remove /> : <Add />}
|
|
73
|
-
</IconButton>
|
|
74
|
-
</FlexBetween>
|
|
75
|
-
|
|
76
|
-
<FlexBox className="topbarRight" alignItems="center">
|
|
77
|
-
{/* LANGUAGE MENU SELECTOR */}
|
|
78
|
-
<BazaarMenu
|
|
79
|
-
handler={(e) => (
|
|
80
|
-
<TouchRipple className="handler marginRight" onClick={e}>
|
|
81
|
-
<Span className="menuTitle">{selectedLanguage.title}</Span>
|
|
82
|
-
<ExpandMore fontSize="inherit" />
|
|
83
|
-
</TouchRipple>
|
|
84
|
-
)}
|
|
85
|
-
options={(onClose) => {
|
|
86
|
-
return Object.keys(languageOptions).map((language: string) => (
|
|
87
|
-
<MenuItem
|
|
88
|
-
className="menuItem"
|
|
89
|
-
key={languageOptions[language].title}
|
|
90
|
-
onClick={() => {
|
|
91
|
-
handleChangeLanguage(language);
|
|
92
|
-
onClose();
|
|
93
|
-
}}
|
|
94
|
-
>
|
|
95
|
-
<Span className="menuTitle">
|
|
96
|
-
{languageOptions[language].title}
|
|
97
|
-
</Span>
|
|
98
|
-
</MenuItem>
|
|
99
|
-
));
|
|
100
|
-
}}
|
|
101
|
-
/>
|
|
102
|
-
|
|
103
|
-
{/* SOCIAL LINKS AREA */}
|
|
104
|
-
<FlexBox alignItems="center" gap={1.5}>
|
|
105
|
-
{socialLinks.map(({ id, Icon, url }) => (
|
|
106
|
-
<Link href={url} key={id}>
|
|
107
|
-
<Icon sx={{ fontSize: 16 }} />
|
|
108
|
-
</Link>
|
|
109
|
-
))}
|
|
110
|
-
</FlexBox>
|
|
111
|
-
</FlexBox>
|
|
112
|
-
</StyledContainer>
|
|
113
|
-
</StyledRoot>
|
|
114
|
-
);
|
|
115
|
-
}
|