import { useQuery } from '@apollo/client' import { PageOptions } from '@graphcommerce/framer-next-pages' import { ApolloCustomerErrorFullPage } from '@graphcommerce/magento-customer' import { AccountDashboardReviewsDocument, AccountReviews } from '@graphcommerce/magento-review' import { PageMeta, StoreConfigDocument } from '@graphcommerce/magento-store' import { FullPageMessage, SvgImage, iconStar, AppShellTitle, SheetShellHeader, Title, } from '@graphcommerce/next-ui' import { Container, NoSsr } from '@material-ui/core' import { GetStaticProps } from 'next' import React from 'react' import SheetShell, { SheetShellProps } from '../../../components/AppShell/SheetShell' import apolloClient from '../../../lib/apolloClient' type GetPageStaticProps = GetStaticProps function AccountReviewsPage() { const { data, loading, error } = useQuery(AccountDashboardReviewsDocument, { fetchPolicy: 'cache-and-network', ssr: false, }) const customer = data?.customer if (loading) return
if (error) return ( ) return ( <> Orders {((customer?.reviews && customer?.reviews.items.length < 1) || !customer?.reviews) && ( } /> )} {customer?.reviews && customer?.reviews.items.length > 1 && ( <> Reviews {customer?.reviews && } )} ) } const pageOptions: PageOptions = { overlayGroup: 'account', SharedComponent: SheetShell, } AccountReviewsPage.pageOptions = pageOptions export default AccountReviewsPage export const getStaticProps: GetPageStaticProps = async ({ locale }) => { const client = apolloClient(locale, true) const conf = client.query({ query: StoreConfigDocument }) return { props: { apolloState: await conf.then(() => client.cache.extract()), variant: 'bottom', size: 'max', backFallbackHref: '/account', backFallbackTitle: 'Account', }, } }