{"version":3,"file":"index.zCbWUXhz.js","sources":["../../../../../../../node_modules/@babylon/ui-kit-hooks/media/useDown.js","../../../../../../../node_modules/@babylon/ui-kit-carousels/components/carousel-product/views/desktop/card-view-more/styled.js","../../../../../../../node_modules/@babylon/ui-kit-carousels/components/carousel-product/views/desktop/card-view-more/index.js","../../../../../../../node_modules/@babylon/ui-kit-structures/components/others/slider/constants.js","../../../../../../../node_modules/@babylon/ui-kit-carousels/components/carousel-product/views/desktop/constants/index.js","../../../../../../../node_modules/@babylon/ui-kit-carousels/components/carousel-product/views/desktop/hooks/useSliderProps.js","../../../../../../../node_modules/@babylon/ui-kit-carousels/components/carousel-product/views/desktop/index.js"],"sourcesContent":["import { checkIfMobile } from '@babylon/ui-kit-helpers/views';\nimport media from '@babylon/ui-kit-styles/common/media';\nimport { useMediaQuery, useIsClient } from 'usehooks-ts';\nimport { useDevice } from '../useDevice.js';\n\n/**\n * @deprecated\n * Try to make the style changes in the css to avoid React hydration problems.\n */ const useDown = (key)=>{\n const string = media.down(key).split('@media ')[1];\n const matches = useMediaQuery(string);\n const isClient = useIsClient();\n const device = useDevice();\n if (!isClient) {\n return checkIfMobile(device);\n }\n return matches;\n};\n\nexport { useDown as default, useDown };\n//# sourceMappingURL=useDown.js.map\n","import Anchor from '@babylon/ui-kit-base/components/others/anchor';\nimport { BoxShadowWithHover } from '@babylon/ui-kit-styles/common/mixins/box-shadow.styled';\nimport { FlexMixin, FontMixin } from '@babylon/ui-kit-styles/common/mixins/helpers.styled';\nimport { BorderRadius } from '@babylon/ui-kit-styles/common/mixins/logical.styled';\nimport styled from 'styled-components';\n\nconst CardBox = /*#__PURE__*/ styled.div.withConfig({\n displayName: \"CardBox\"\n})([\n `display:block;height:100%;padding:2px;`\n]);\nconst CardWrapper = /*#__PURE__*/ styled.article.withConfig({\n displayName: \"CardWrapper\"\n})([\n ``,\n ` `,\n ` `,\n ` background-color:`,\n `;height:100%;overflow:hidden;`\n], BorderRadius({\n all: '4px'\n}), BoxShadowWithHover, FlexMixin({\n direction: 'column'\n}), ({ theme })=>theme.colors.white.base);\nconst CardLink = /*#__PURE__*/ styled(Anchor).withConfig({\n displayName: \"CardLink\"\n})([\n `display:block;height:100%;p{`,\n ` color:`,\n `;left:0;position:absolute;text-align:center;top:calc(50% + 20px);width:100%;&::before{border:1px solid `,\n `;`,\n ` content:'';height:70px;left:50%;top:-48px;position:absolute;transform:translate(-50%,-50%);width:70px;z-index:`,\n `;}&::after{color:`,\n `;content:'+';font-size:50px;line-height:70px;`,\n ` text-align:center;left:50%;top:-50px;position:absolute;transform:translate(-50%,-50%);width:70px;z-index:`,\n `;}}`\n], FontMixin({\n size: 'base',\n weight: 'regular'\n}), ({ theme })=>theme.colors.primary.light, ({ theme })=>theme.colors.primary.light, BorderRadius({\n all: '50%'\n}), ({ theme })=>theme.zIndex.low, ({ theme })=>theme.colors.primary.light, FontMixin({\n weight: 'light'\n}), ({ theme })=>theme.zIndex.low);\n\nexport { CardBox, CardLink, CardWrapper };\n//# sourceMappingURL=styled.js.map\n","import { jsx } from 'react/jsx-runtime';\nimport { CardBox, CardWrapper, CardLink } from './styled.js';\n\nconst CardViewMore = ({ link, content })=>/*#__PURE__*/ jsx(CardBox, {\n \"data-testid\": \"CardViewMore\",\n children: /*#__PURE__*/ jsx(CardWrapper, {\n children: /*#__PURE__*/ jsx(CardLink, {\n ...link,\n children: /*#__PURE__*/ jsx(\"p\", {\n children: content\n })\n })\n })\n });\n\nexport { CardViewMore as default };\n//# sourceMappingURL=index.js.map\n","// Common SliderProps\nfunction sliderConstantsProps(theme) {\n const slider = {\n breakpoints: {\n [theme.breakpoints['2xl']]: {\n perPage: 4,\n perMove: 4\n },\n [theme.breakpoints.xl]: {\n perPage: 4,\n perMove: 4\n },\n [theme.breakpoints.tablet]: {\n perPage: 3,\n perMove: 3,\n pagination: true,\n navigation: false,\n arrows: false\n },\n [theme.breakpoints.lg]: {\n perPage: 3,\n perMove: 3\n }\n },\n perPage: 5,\n perMove: 5,\n pagination: false,\n arrows: true,\n paginationVariant: 'bottom',\n speed: 1000,\n gap: 12\n };\n return slider;\n}\n\nexport { sliderConstantsProps };\n//# sourceMappingURL=constants.js.map\n","const sliderWithBenefits = (theme)=>({\n breakpoints: {\n [theme.breakpoints.xxl]: {\n perPage: 3,\n perMove: 3\n },\n [theme.breakpoints.xl]: {\n perPage: 2,\n perMove: 2\n },\n [theme.breakpoints.tablet]: {\n perPage: 4,\n perMove: 4,\n pagination: true,\n navigation: false,\n arrows: false\n },\n [theme.breakpoints.lg]: {\n perPage: 3,\n perMove: 3\n }\n },\n perPage: 4,\n perMove: 4,\n pagination: false,\n arrows: true,\n paginationVariant: 'bottom',\n speed: 1000,\n gap: 12\n });\nconst sliderWithCustomCards = (theme)=>({\n breakpoints: {\n [theme.breakpoints.xxl]: {\n perPage: 4,\n perMove: 4\n },\n [theme.breakpoints.xl]: {\n perPage: 4,\n perMove: 4\n },\n [theme.breakpoints.tablet]: {\n perPage: 3,\n perMove: 3,\n pagination: true,\n navigation: false,\n arrows: false\n },\n [theme.breakpoints.lg]: {\n perPage: 3,\n perMove: 3\n }\n },\n perPage: 5,\n perMove: 5,\n pagination: false,\n arrows: true,\n paginationVariant: 'bottom',\n speed: 1000,\n gap: 12\n });\nconst liverpoolSliderConstantProps = (slider, theme, hasBenefitsOrBanner)=>{\n if (hasBenefitsOrBanner) return {\n ...slider,\n pagination: true,\n navigation: false,\n arrows: true,\n perPage: 3,\n perMove: 3,\n gap: 16,\n breakpoints: {\n [theme.breakpoints['2xl']]: {\n perPage: 3,\n perMove: 3\n },\n [theme.breakpoints.xl]: {\n perPage: 2,\n perMove: 2\n },\n [theme.breakpoints.tablet]: {\n perPage: 3,\n perMove: 3\n },\n [theme.breakpoints.lg]: {\n perPage: 2,\n perMove: 2\n }\n }\n };\n else return {\n ...sliderWithCustomCards(theme),\n navigation: false,\n pagination: true,\n arrows: false,\n gap: 16\n };\n};\n\nexport { liverpoolSliderConstantProps, sliderWithBenefits, sliderWithCustomCards };\n//# sourceMappingURL=index.js.map\n","import { sliderConstantsProps } from '@babylon/ui-kit-structures/components/others/slider/constants';\nimport { ThemeId } from '@babylon/ui-kit-styles/types/theme';\nimport { useMemo } from 'react';\nimport { useTheme } from 'styled-components';\nimport { liverpoolSliderConstantProps, sliderWithCustomCards, sliderWithBenefits } from '../constants/index.js';\n\nconst converterByTheme = {\n [ThemeId.partnershipsLiverpool]: liverpoolSliderConstantProps\n};\nconst useSliderProps = (props)=>{\n const { benefits, banner, visibleCardsCount = false } = props ?? {};\n const theme = /*#__PURE__*/ useTheme();\n const { id, breakpoints } = theme;\n // Check if carousel has fixed Card\n const hasBenefitsOrBanner = !!benefits || !!banner;\n const slider = useMemo(()=>{\n if (visibleCardsCount) return sliderWithCustomCards(theme);\n if (hasBenefitsOrBanner) return sliderWithBenefits(theme);\n return sliderConstantsProps({\n ...theme,\n breakpoints\n });\n }, [\n breakpoints,\n hasBenefitsOrBanner,\n theme,\n visibleCardsCount\n ]);\n return converterByTheme[id]?.(slider, theme, hasBenefitsOrBanner) ?? slider;\n};\n\nexport { useSliderProps as default };\n//# sourceMappingURL=useSliderProps.js.map\n","import { jsx, jsxs } from 'react/jsx-runtime';\nimport JsonLd from '@babylon/ui-kit-base/components/others/json-ld';\nimport CardSkeletonDesktop from '@babylon/ui-kit-cards/components/cards/product-card/views/desktop/card-skeleton';\nimport { getTitle } from '../utils.js';\nimport Origin from '@babylon/ui-kit-forms/components/others/origin/views/desktop';\nimport { genKey } from '@babylon/ui-kit-helpers/keys';\nimport { useDown } from '@babylon/ui-kit-hooks/media/useDown';\nimport classNames from 'classnames';\nimport { useMemo } from 'react';\nimport CardViewMore from './card-view-more/index.js';\nimport useSliderProps from './hooks/useSliderProps.js';\nimport { CardSkeletonWrapper, ProductCard, CarouselTitle, CarouselProductWrapper, CarouselProductBox, ProductsSlider, BenefitsCard, BannerCampaignVertical } from './styled.js';\n\nconst CarouselProductDesktopView = ({ props })=>{\n const { ldjson, items = [], className = '', benefits, link, config, isLoading, banner, searcher, defaultImage = {\n src: ''\n }, isFirstComponent = false, changeOrigin, cardsPerPage } = props ?? {};\n const title = getTitle(props?.title);\n const isTablet = useDown('tablet');\n const sliderProps = useSliderProps(props);\n const skeleton = useMemo(()=>new Array(sliderProps.perPage).fill(undefined).map((_, index)=>/*#__PURE__*/ jsx(CardSkeletonWrapper, {\n children: /*#__PURE__*/ jsx(CardSkeletonDesktop, {})\n }, genKey(index))), [\n sliderProps.perPage\n ]);\n const productCards = useMemo(()=>{\n const productCards = items.map((item, index)=>{\n const generalConfig = {\n ...config,\n ...item.config\n };\n const literals = {\n ...item.config?.literals,\n ...config?.literals\n };\n const productCardSearcher = {\n ...searcher,\n ...item.searcher\n };\n return /*#__PURE__*/ jsx(ProductCard, {\n ...item,\n searcher: productCardSearcher,\n config: {\n ...generalConfig,\n literals\n },\n defaultImage: defaultImage,\n isFirstComponent: isFirstComponent && index < 5\n }, genKey(item));\n });\n if (!link?.href) return productCards;\n return [\n ...productCards,\n /*#__PURE__*/ jsx(CardViewMore, {\n link: link,\n content: config?.literals?.viewMore\n }, genKey(link))\n ];\n }, [\n config,\n defaultImage,\n items,\n link,\n searcher,\n isFirstComponent\n ]);\n const renderBanner = (benefits, banner)=>{\n if (benefits) return /*#__PURE__*/ jsx(BenefitsCard, {\n ...benefits,\n className: classNames({\n 'is-tablet': isTablet\n })\n });\n return banner && /*#__PURE__*/ jsx(BannerCampaignVertical, {\n $isBanner: true,\n className: classNames({\n ['className']: !!className,\n 'is-tablet': isTablet\n }),\n ...banner,\n modifiyHoverCard: true,\n titleAs: \"h3\"\n });\n };\n // Origin select\n const origin = changeOrigin?.departure?.length && /*#__PURE__*/ jsx(Origin, {\n ...changeOrigin\n });\n return /*#__PURE__*/ jsxs(\"div\", {\n \"data-testid\": \"CarouselProduct\",\n className: classNames({\n ['className']: !!className\n }),\n children: [\n title && /*#__PURE__*/ jsx(CarouselTitle, {\n title: title,\n content: origin\n }),\n /*#__PURE__*/ jsxs(CarouselProductWrapper, {\n $isTablet: isTablet,\n children: [\n renderBanner(benefits, banner),\n /*#__PURE__*/ jsxs(CarouselProductBox, {\n className: classNames({\n 'has-benefits': !!benefits,\n 'has-banner': !!banner,\n 'is-tablet': isTablet\n }),\n children: [\n /*#__PURE__*/ jsx(ProductsSlider, {\n ...sliderProps,\n perPage: cardsPerPage ?? sliderProps.perPage,\n children: isLoading ? skeleton : productCards\n }),\n ldjson?.scripts?.map((script)=>/*#__PURE__*/ jsx(JsonLd, {\n structuredData: script\n }, genKey(script)))\n ]\n })\n ]\n })\n ]\n });\n};\nconst CarouselProductDesktop = (props)=>{\n if (!props.props.items?.length && !props.props.isLoading) return null;\n return /*#__PURE__*/ jsx(CarouselProductDesktopView, {\n ...props\n });\n};\n\nexport { CarouselProductDesktop as default };\n//# sourceMappingURL=index.js.map\n"],"names":["useDown","key","string","media","matches","useMediaQuery","isClient","useIsClient","device","useDevice","checkIfMobile","CardBox","styled","CardWrapper","BorderRadius","BoxShadowWithHover","FlexMixin","theme","CardLink","Anchor","FontMixin","CardViewMore","link","content","jsx","sliderConstantsProps","sliderWithBenefits","sliderWithCustomCards","liverpoolSliderConstantProps","slider","hasBenefitsOrBanner","converterByTheme","ThemeId","useSliderProps","props","benefits","banner","visibleCardsCount","useTheme","id","breakpoints","useMemo","_a","CarouselProductDesktopView","ldjson","items","className","config","isLoading","searcher","defaultImage","isFirstComponent","changeOrigin","cardsPerPage","title","getTitle","isTablet","sliderProps","skeleton","_","index","CardSkeletonWrapper","CardSkeletonDesktop","genKey","productCards","item","generalConfig","literals","productCardSearcher","ProductCard","renderBanner","BenefitsCard","classNames","BannerCampaignVertical","origin","Origin","jsxs","CarouselTitle","CarouselProductWrapper","CarouselProductBox","ProductsSlider","_b","script","JsonLd","CarouselProductDesktop"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6]}