1
- import type { Metadata } from ' next' ;
2
- import { notFound } from ' next/navigation' ;
1
+ import type { Metadata } from " next" ;
2
+ import { notFound } from " next/navigation" ;
3
3
4
- import { GridTileImage } from ' components/grid/tile' ;
5
- import Footer from ' components/layout/footer' ;
6
- import { Gallery } from ' components/product/gallery' ;
7
- import { ProductProvider } from ' components/product/product-context' ;
8
- import { ProductDescription } from ' components/product/product-description' ;
9
- import { HIDDEN_PRODUCT_TAG } from ' lib/constants' ;
10
- import { getProduct , getProductRecommendations } from ' lib/shopware' ;
11
- import { Image } from ' lib/shopware/types' ;
12
- import Link from ' next/link' ;
13
- import { Suspense } from ' react' ;
4
+ import { GridTileImage } from " components/grid/tile" ;
5
+ import Footer from " components/layout/footer" ;
6
+ import { Gallery } from " components/product/gallery" ;
7
+ import { ProductProvider } from " components/product/product-context" ;
8
+ import { ProductDescription } from " components/product/product-description" ;
9
+ import { HIDDEN_PRODUCT_TAG } from " lib/constants" ;
10
+ import { getProduct , getProductRecommendations } from " lib/shopware" ;
11
+ import { Image } from " lib/shopware/types" ;
12
+ import Link from " next/link" ;
13
+ import { Suspense } from " react" ;
14
14
15
15
export async function generateMetadata ( props : {
16
16
params : Promise < { handle : string } > ;
@@ -32,8 +32,8 @@ export async function generateMetadata(props: {
32
32
follow : indexable ,
33
33
googleBot : {
34
34
index : indexable ,
35
- follow : indexable
36
- }
35
+ follow : indexable ,
36
+ } ,
37
37
} ,
38
38
openGraph : url
39
39
? {
@@ -42,46 +42,48 @@ export async function generateMetadata(props: {
42
42
url,
43
43
width,
44
44
height,
45
- alt
46
- }
47
- ]
45
+ alt,
46
+ } ,
47
+ ] ,
48
48
}
49
- : null
49
+ : null ,
50
50
} ;
51
51
}
52
52
53
- export default async function ProductPage ( props : { params : Promise < { handle : string } > } ) {
53
+ export default async function ProductPage ( props : {
54
+ params : Promise < { handle : string } > ;
55
+ } ) {
54
56
const params = await props . params ;
55
57
const product = await getProduct ( params . handle ) ;
56
58
57
59
if ( ! product ) return notFound ( ) ;
58
60
59
61
const productJsonLd = {
60
- ' @context' : ' https://schema.org' ,
61
- ' @type' : ' Product' ,
62
+ " @context" : " https://schema.org" ,
63
+ " @type" : " Product" ,
62
64
name : product . title ,
63
65
description : product . description ,
64
66
image : product . featuredImage . url ,
65
67
offers : {
66
- ' @type' : ' AggregateOffer' ,
68
+ " @type" : " AggregateOffer" ,
67
69
availability : product . availableForSale
68
- ? ' https://schema.org/InStock'
69
- : ' https://schema.org/OutOfStock' ,
70
+ ? " https://schema.org/InStock"
71
+ : " https://schema.org/OutOfStock" ,
70
72
priceCurrency : product . priceRange . minVariantPrice . currencyCode ,
71
73
highPrice : product . priceRange . maxVariantPrice . amount ,
72
- lowPrice : product . priceRange . minVariantPrice . amount
73
- }
74
+ lowPrice : product . priceRange . minVariantPrice . amount ,
75
+ } ,
74
76
} ;
75
77
76
78
return (
77
79
< ProductProvider >
78
80
< script
79
81
type = "application/ld+json"
80
82
dangerouslySetInnerHTML = { {
81
- __html : JSON . stringify ( productJsonLd )
83
+ __html : JSON . stringify ( productJsonLd ) ,
82
84
} }
83
85
/>
84
- < div className = "mx-auto max-w-screen- 2xl px-4" >
86
+ < div className = "mx-auto max-w-(--breakpoint- 2xl) px-4" >
85
87
< div className = "flex flex-col rounded-lg border border-neutral-200 bg-white p-8 md:p-12 lg:flex-row lg:gap-8 dark:border-neutral-800 dark:bg-black" >
86
88
< div className = "h-full w-full basis-full lg:basis-4/6" >
87
89
< Suspense
@@ -92,7 +94,7 @@ export default async function ProductPage(props: { params: Promise<{ handle: str
92
94
< Gallery
93
95
images = { product . images . slice ( 0 , 5 ) . map ( ( image : Image ) => ( {
94
96
src : image . url ,
95
- altText : image . altText
97
+ altText : image . altText ,
96
98
} ) ) }
97
99
/>
98
100
</ Suspense >
@@ -136,7 +138,7 @@ async function RelatedProducts({ id }: { id: string }) {
136
138
label = { {
137
139
title : product . title ,
138
140
amount : product . priceRange . maxVariantPrice . amount ,
139
- currencyCode : product . priceRange . maxVariantPrice . currencyCode
141
+ currencyCode : product . priceRange . maxVariantPrice . currencyCode ,
140
142
} }
141
143
src = { product . featuredImage ?. url }
142
144
fill
0 commit comments