{"version":3,"file":"component---gatsby-theme-husky-src-templates-product-list-product-list-tsx-f8aab6ebdec0cd7aa134.js","mappings":"gNA+QA,UAnQoD,SAAH,GAO1C,IAAD,IANJA,KAAI,IACFC,YAAeC,EAAI,EAAJA,KAAMC,EAAG,EAAHA,IAAKC,EAAO,EAAPA,QAC1BC,EAAM,EAANA,OACAC,EAAM,EAANA,OACAC,EAAY,EAAZA,aAGaC,EAAiEL,EAAxEM,MAA2BC,EAA6CP,EAAvDQ,SAAoCC,EAAmBT,EAAhCU,YAChD,GAAgCC,EAAAA,EAAAA,UAAiC,IAA1DC,EAAQ,KAAEC,EAAW,KAkB5B,OAbAC,EAAAA,EAAAA,YAAU,WACRb,EAAQc,SAAQ,SAACC,GACXA,EAAUC,WAAWC,SAAS,yBAChCF,EAAUG,MAAMJ,SAAQ,SAAClB,GACvBgB,GAAY,SAACO,GAAY,wBACpBA,GAAY,CACf,CAAEC,UATOC,EASazB,EAAK0B,YARnC,IAAIC,WAAYC,gBAAgBH,EAAY,aAAaI,KAAKC,aAAe,OAD7D,IAACL,CAS+B,GAE5C,GAEJ,GACF,GAAG,CAACrB,IAGF,gBAAC,IAAM,CAAC2B,mBAAiB,GACtBzB,GAAU,gBAAC,IAAM,CAACN,KAAMM,EAAQ0B,SAAUzB,IAC3C,gBAAC,IAAG,CAAOL,KAAAA,EAAMC,IAAAA,IAEjB,gBAAC,IAAU,CACT8B,KAAK,UACLC,KAAM1B,EACNR,KAAM,CACJmC,UAAW3B,EACX4B,gBAAiBxB,EACjByB,aAAc3B,GAEhB4B,aAAc,CACZC,UAAW,iBACXC,QAAS,CACPC,MAAOjC,EACPkC,UAAW,CACTpB,MAAOP,OAKf,uBAAK4B,GAAG,OAAOC,UAAU,6BACtBxC,aAAO,EAAPA,EAASyC,KAAI,SAAC7C,EAAM8C,GACnB,IAAMC,EAAWD,EAAQE,KAAKC,MAE9B,OAAO,gBAAC,IAAQ,CAACjD,KAAMA,EAAM8C,MAAOA,EAAOI,IAAKH,GAClD,KAED1C,EAAS,gBAAC,IAAM,CAACL,KAAMK,IAAa,iCAG3C,C","sources":["webpack://husky-site/../gatsby-theme-husky/src/templates/ProductList/ProductList.tsx"],"sourcesContent":["import React, { FC, useEffect, useState } from 'react';\nimport { graphql } from 'gatsby';\n\nimport Layout from 'layout/Layout';\nimport PageSchema from 'common/PageSchema';\nimport Seo from 'common/Seo';\nimport Footer from 'components/Footer';\nimport Header from 'components/Header';\nimport SoBanner from 'components/SoBanner';\n\nimport { ProductListProps } from './models';\n\nconst ProductList: FC<{ data: ProductListProps }> = ({\n data: {\n productList: { urls, seo, content },\n footer,\n header,\n siteSettings,\n },\n}) => {\n const { title: seoTitle, keywords: seoKeywords, description: seoDescription } = seo;\n const [products, setProducts] = useState<{ itemName: string }[]>([]);\n\n const cleanHTML = (htmlString: string): string =>\n new DOMParser().parseFromString(htmlString, 'text/html').body.textContent || '';\n\n useEffect(() => {\n content.forEach((container) => {\n if (container.extraClass.includes('section__produt-list')) {\n container.items.forEach((data) => {\n setProducts((prevProducts) => [\n ...prevProducts,\n { itemName: cleanHTML(data.bannerText) },\n ]);\n });\n }\n });\n }, [content]);\n\n return (\n \n {header &&
}\n \n\n \n
\n {content?.map((data, index) => {\n const indexKey = index + Date.now();\n\n return ;\n })}\n
\n {footer ?