Skip to content

Commit cea5566

Browse files
committed
fix: og:image
1 parent 4274192 commit cea5566

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

app/(cms)/opengraph-image.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { getPage } from 'lib/shopware';
44
export const runtime = 'edge';
55

66
export default async function Image({ params }: { params: { page: string } }) {
7-
const page = await getPage(params.page);
7+
const { page: pageParamName } = await params;
8+
const page = await getPage(pageParamName);
89
const title = page ? page.seo?.title || page.title : '';
910

1011
return await OpengraphImage({ title });

app/search/(collection)/[...collection]/page.tsx

+10-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,16 @@ export async function generateMetadata({
3131
return {
3232
title: collection.seo?.title || collection.title,
3333
description:
34-
collection.seo?.description || collection.description || `${collection.title} products`
34+
collection.seo?.description || collection.description || `${collection.title} products`,
35+
openGraph: collection.featuredImage
36+
? {
37+
images: [
38+
{
39+
url: collection.featuredImage
40+
}
41+
]
42+
}
43+
: null
3544
};
3645
}
3746

app/search/(collection)/opengraph-image.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { getCollection } from 'lib/shopware';
44
export const runtime = 'edge';
55

66
export default async function Image({ params }: { params: { collection: string } }) {
7-
const collection = await getCollection(params.collection);
7+
const { collection: collectionParamName } = await params;
8+
const collection = await getCollection(collectionParamName);
89
const title = collection?.seo?.title || collection?.title;
910

1011
return await OpengraphImage({ title });

lib/shopware/criteria.ts

+2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export function getDefaultCategoryCriteria(
8686
page: page,
8787
limit: limit,
8888
associations: {
89+
media: {},
8990
cmsPage: {}
9091
}
9192
};
@@ -96,6 +97,7 @@ export function getDefaultCategoryWithCmsCriteria(page: number = 1, limit: numbe
9697
page: page,
9798
limit: limit,
9899
associations: {
100+
media: {},
99101
cmsPage: {
100102
associations: {
101103
sections: {

lib/shopware/transform.ts

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ export function transformCollection(
9898
handle: seoUrlElement?.seoPathInfo ?? resCategory.id ?? '',
9999
title: resCategory.translated?.metaTitle ?? resCategory.name ?? '',
100100
description: resCategory.description ?? '',
101+
featuredImage: resCategory?.media?.url ?? '',
101102
seo: {
102103
title: resCategory.translated?.metaTitle ?? resCategory.name ?? '',
103104
description: resCategory.translated?.metaDescription ?? resCategory.description ?? ''

0 commit comments

Comments
 (0)