Created
June 4, 2020 10:54
-
-
Save rubenRP/43d7eb7b1fe68d31ef7ab6ff4f137719 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Fragment, useEffect } from "react" | |
import { useProduct } from "@magento/peregrine/lib/talons/RootComponents/Product/useProduct" | |
import { Title, Meta } from "../../components/Head" | |
import { fullPageLoadingIndicator } from "../../components/LoadingIndicator" | |
import ProductFullDetail from "../../components/ProductFullDetail" | |
import { MagentoGraphQLTypes } from "../../util/apolloCache" | |
import getUrlKey from "../../util/getUrlKey" | |
import mapProduct from "../../util/mapProduct" | |
/* | |
* As of this writing, there is no single Product query type in the M2.3 schema. | |
* The recommended solution is to use filter criteria on a Products query. | |
* However, the `id` argument is not supported. See | |
* https://github.com/magento/graphql-ce/issues/86 | |
* TODO: Replace with a single product query when possible. | |
*/ | |
import GET_PRODUCT_DETAIL from "../../queries/getProductDetail.graphql" | |
import PRODUCT_DETAILS_FRAGMENT from "../../fragments/productDetails.graphql" | |
const Product = () => { | |
useEffect(() => { | |
window.scrollTo(0, 0) | |
}, []) | |
const talonProps = useProduct({ | |
cachePrefix: MagentoGraphQLTypes.ProductInterface, | |
fragment: PRODUCT_DETAILS_FRAGMENT, | |
mapProduct, | |
query: GET_PRODUCT_DETAIL, | |
urlKey: getUrlKey(), | |
}) | |
const { error, loading, product } = talonProps | |
if (loading && !product) return fullPageLoadingIndicator | |
if (error) return <div>Data Fetch Error</div> | |
if (!product) { | |
return ( | |
<h1>This Product is currently out of stock. Please try again later.</h1> | |
) | |
} | |
// Note: STORE_NAME is injected by Webpack at build time. | |
return ( | |
<Fragment> | |
<Title>{`${product.name} - ${STORE_NAME}`}</Title> | |
<Meta name="description" content={product.meta_description} /> | |
<ProductFullDetail product={product} /> | |
</Fragment> | |
) | |
} | |
export default Product |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment