{"version":3,"file":"component---gatsby-theme-harvia-src-gatsby-templates-pim-product-tsx-704c9feb772e59dbddfd.js","mappings":"+JAoEA,UA9DgCA,IAAkF,IAAAC,EAAAC,EAAAC,EAAAC,EAGhH,MAAM,QAAEC,GAAYL,EAAMM,KAE1B,OAAKD,EAMHE,EAAAA,cAACC,EAAAA,EAAa,CAACC,SAA4B,QAApBR,EAAED,EAAMM,KAAKI,eAAO,IAAAT,OAAA,EAAlBA,EAAoBQ,SAAUE,OAA0B,QAApBT,EAAEF,EAAMM,KAAKI,eAAO,IAAAR,OAAA,EAAlBA,EAAoBS,OAAQC,YAAa,MACtGL,EAAAA,cAACM,EAAAA,QAAW,CACVC,IAAKT,EAAQU,WACbT,KAAMD,EACNW,aACE,CAAsB,QAAtBb,EAACH,EAAMM,KAAKW,kBAAU,IAAAd,OAAA,EAArBA,EAAuBe,MAAyB,QAApBd,EAAEJ,EAAMM,KAAKa,eAAO,IAAAf,OAAA,EAAlBA,EAAoBc,OAAOE,OAAOC,SAASC,UAVzE,IAaS,C","sources":["webpack://@nitro/gatsby-harvia.com/../gatsby-theme-harvia/src/gatsby-templates/pimProduct.tsx"],"sourcesContent":["import { graphql, PageProps } from \"gatsby\"\nimport React from \"react\"\nimport DefaultLayout from \"../components/layouts/DefaultLayout\"\nimport ProductPage from \"../components/pages/ProductPage\"\nimport { ProductLandingPageCta } from \"../components/pages/productPage/ProductPageContent\"\n\nconst PimProductPageTemplate = (props: PageProps) => {\n //console.debug(\"Rendering PimProduct\", props)\n\n const { product } = props.data\n\n if (!product) {\n return null\n }\n\n // buildattu tuote\n return (\n \n \n \n )\n}\n\nexport const query = graphql`\n query ProductPage(\n $locale: String!\n $sku: String!\n $localePim: String!\n $landing_pages_product_family: JSON!\n $landing_pages_sku: JSON!\n $fallbackLocales: [String!]\n ) {\n website: datoCmsWebsite(locale: $locale, fallbackLocales: $fallbackLocales) {\n mainMenu {\n ...DatoMainNavTree\n }\n footer {\n ...DatoFooter\n }\n }\n product: harviaProduct(identifier: { eq: $sku }, locale: { eq: $localePim }) {\n ...ProductPageHarviaProduct\n }\n\n cta_family: allDatoCmsProductLandingPage(\n filter: { relatedProductFamilies: { ne: null, glob: $landing_pages_product_family }, locales: { eq: $locale } }\n ) {\n nodes {\n ...ProductLandingPageCta\n }\n }\n cta_sku: allDatoCmsProductLandingPage(\n filter: { relatedProducts: { ne: null, glob: $landing_pages_sku }, locales: { in: [$locale] } }\n locale: $locale\n ) {\n nodes {\n ...ProductLandingPageCta\n }\n }\n }\n`\n\nexport default PimProductPageTemplate\n"],"names":["props","_props$data$website","_props$data$website2","_props$data$cta_famil","_props$data$cta_sku","product","data","React","DefaultLayout","mainMenu","website","footer","seoMetaTags","ProductPage","sku","identifier","landingPages","cta_family","nodes","cta_sku","filter","Boolean","flat"],"sourceRoot":""}