{"version":3,"file":"generic-products-53e1121b.js","sources":["../../../client/src/javascripts/customer_pages/_utils/product-thumbnails-styles-helper.js","../../../client/src/javascripts/customer_pages/_utils/new-product-thumbnail.jsx","../../../client/src/javascripts/customer_pages/_utils/new-image-thumbnail-spinner.jsx","../../../client/src/javascripts/customer_pages/_utils/new-product-image-thumbnail.jsx","../../../client/src/javascripts/customer_pages/_utils/remaining-thumbnails.jsx","../../../client/src/javascripts/customer_pages/_utils/new-product.jsx","../../../client/src/javascripts/customer_pages/_shelf-category/types/pre-selections-type.js","../../../client/src/javascripts/customer_pages/_shelf-category/generic-products.jsx"],"sourcesContent":["function foldedStyles(ratio) {\n let styles;\n const orientation = ratio > 1 ? 'landscape' : 'portrait';\n\n switch (orientation) {\n case 'landscape':\n styles = {\n left: '100%',\n width: '8%',\n \"max-height\": 'inherit'\n }\n break;\n case 'portrait':\n styles = {\n width: '100%',\n height: 'auto',\n top: '-5%',\n \"max-height\": 'inherit'\n }\n break;\n }\n\n return styles;\n}\n\nfunction cornerStyles(ratio) {\n let styles;\n const orientation = ratio > 1 ? 'landscape' : 'portrait';\n\n switch (orientation) {\n case 'landscape':\n styles = {\n width: '100%',\n \"max-height\": 'inherit'\n }\n break;\n case 'portrait':\n styles = {\n height: '100%',\n width: '100%',\n \"max-height\": 'inherit'\n }\n break;\n }\n\n return styles;\n}\n\nfunction foldedSrc(ratio) {\n let backgroundImage;\n const orientation = ratio > 1 ? 'landscape' : 'portrait';\n\n switch (orientation) {\n case 'landscape':\n backgroundImage = '/stylesheets/walmart/images/fake_folded_card_backs/landscape.png';\n break;\n case 'portrait':\n backgroundImage = '/stylesheets/walmart/images/fake_folded_card_backs/portrait.png';\n break; \n }\n\n return backgroundImage;\n}\n\nfunction roundedSrc(ratio) {\n return `/stylesheets/walmart/images/rounded_corners/ratio_${ratio}.svg`;\n}\n\nfunction maskSrc(cornerType, ratio) {\n const getSVGSource = (cornerType, ratio) => {\n const imageOrientation = ratio > 1 ? 'landscape' : 'portrait';\n return `/stylesheets/walmart/images/scalloped_edges_and_elegant_corners/5x7_${cornerType.replace(\n 'ed',\n ''\n )}_mask_${imageOrientation}.svg`;\n };\n const SVGSource = getSVGSource(cornerType, ratio);\n\n return SVGSource;\n}\nexport { cornerStyles, foldedStyles, foldedSrc, roundedSrc, maskSrc };\n","import React, { useState } from 'react';\nimport classNames from 'classnames';\nimport ProductThumbnailSpinner from './product-thumbnail-loading-spinner';\nimport {\n foldedStyles,\n cornerStyles,\n foldedSrc,\n roundedSrc,\n maskSrc\n} from './product-thumbnails-styles-helper';\nimport screenAndStyle from './screen-and-style';\nimport { getViewport } from '../_utils/hoc/with-viewport-size';\n\n// -----------------------------------------------------------\n// NewProductThumbnail\n// -----------------------------------------------------------\nconst NewProductThumbnail = ({\n thumbnails,\n imageIndex,\n isLoading,\n isCard,\n children,\n roundedCorners,\n foldedCard,\n scallopedEdges,\n elegantCorners,\n altTag,\n}) => {\n const [values, setValues] = useState({\n srcUrl: thumbnails[imageIndex],\n loading: isLoading,\n dimensions: { width: null, height: null },\n ratio: null,\n orientation: null,\n isMobile: getViewport().isMobile,\n });\n const cornerType = (() => {\n if (scallopedEdges) {\n return 'scalloped';\n }\n if (elegantCorners) {\n return 'elegant';\n }\n return null;\n })();\n const previewIndex = React.useRef(imageIndex);\n const srcRef = React.useRef();\n const minHeight = React.useRef();\n const intervalRef = React.useRef(); //create a ref for interval\n const over = React.useRef(false);\n const styleClasses =\n screenAndStyle.isSafari() &&\n screenAndStyle.isMobileBrowser() &&\n roundedCorners\n ? 'double-background-image-edge'\n : '';\n\n React.useEffect(() => {\n let isMounted = true;\n if (isMounted) { // to prevent state update in unmounted component\n setValues({ ...values, loading: true });\n const img = new Image();\n img.src = thumbnails[imageIndex];\n img.onload = () => {\n const ratio = (img.width / img.height).toFixed(2);\n minHeight.current = ratio > 1 ? img.width : img.height;\n srcRef.current = src(ratio);\n if (isMounted) { // to prevent state update in unmounted component\n setValues(prevValues => {\n return {\n ...prevValues,\n loading: false,\n srcUrl: thumbnails[imageIndex],\n dimensions: { width: img.width, height: img.height },\n ratio: ratio,\n orientation: ratio > 1 ? 'landscape' : 'portrait',\n };\n });\n }\n }\n return () => { isMounted = false };\n };\n img.onerror = () => {\n setValues({ ...values, loading: false });\n };\n }, [imageIndex]);\n\n function src(ratio) {\n if (foldedCard) {\n return foldedSrc(ratio);\n }\n\n if (roundedCorners) {\n return roundedSrc(ratio);\n }\n\n if (scallopedEdges || elegantCorners) {\n return maskSrc(cornerType, ratio);\n }\n }\n\n function handleMouseEnter() {\n if ((thumbnails || []).length < 2) {\n return;\n }\n\n over.current = true;\n\n setTimeout(() => debouncedHandler(), 200);\n async function debouncedHandler() {\n if (!values.loading) {\n const promises = [];\n\n setValues(prevValues => {\n return { ...prevValues, loading: true };\n });\n thumbnails.forEach(thumbnail => {\n promises.push(\n new Promise((resolve, reject) => {\n const image = new Image();\n\n image.onload = function() {\n resolve();\n };\n\n image.src = thumbnail;\n })\n );\n });\n await Promise.all(promises);\n onLoaded();\n }\n }\n function onLoaded() {\n setValues(prevValues => {\n return { ...prevValues, loading: false };\n });\n\n if (over.current) {\n start();\n }\n }\n }\n\n function start() {\n load(previewIndex.current);\n intervalRef.current = setInterval(() => {\n load();\n }, 800);\n }\n\n function stop() {\n clearInterval(intervalRef.current);\n load(0);\n }\n\n function handleMouseLeave() {\n over.current = false;\n setValues(prevValues => {\n return { ...prevValues, loading: false };\n });\n stop();\n }\n\n function load(newPreviewIndex) {\n if (typeof newPreviewIndex === 'undefined') {\n newPreviewIndex = previewIndex.current + 1;\n }\n const index = newPreviewIndex % thumbnails.length;\n const image = new Image();\n\n image.onload = function() {\n previewIndex.current = index;\n const ratio = (image.width / image.height).toFixed(2);\n srcRef.current = src(ratio);\n setValues(prevValues => {\n return {\n loading: false,\n srcUrl: thumbnails[index],\n dimensions: { width: image.width, height: image.height },\n ratio,\n orientation: ratio > 1 ? 'landscape' : 'portrait',\n };\n });\n };\n image.src = thumbnails[index];\n }\n\n function renderOverlay() {\n if (roundedCorners || foldedCard || scallopedEdges || elegantCorners) {\n return (\n \n );\n }\n }\n\n return (\n
\n \n {theme_title}\n \n \n
\n {Title()}\n \n