From 85c4c42bd601270d7be0f34a0767a34bb85e29bb Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 12 Dec 2023 18:50:03 +0100 Subject: refactor(hooks): rewrite useBreadcrumbs hook * use next/router to get the slug instead of using props * handle cases where the current page title is not provided * update JSON-LD schema to match the example in documentation * add tests --- src/pages/sujet/[slug].tsx | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) (limited to 'src/pages/sujet') diff --git a/src/pages/sujet/[slug].tsx b/src/pages/sujet/[slug].tsx index 43b5aa6..9d42644 100644 --- a/src/pages/sujet/[slug].tsx +++ b/src/pages/sujet/[slug].tsx @@ -34,7 +34,6 @@ import type { WPTopicPreview, } from '../../types'; import { CONFIG } from '../../utils/config'; -import { ROUTES } from '../../utils/constants'; import { getLinksItemData, getPostsWithUrl, @@ -45,7 +44,7 @@ import { } from '../../utils/helpers'; import { loadTranslation, type Messages } from '../../utils/helpers/server'; import { - useBreadcrumb, + useBreadcrumbs, useHeadingsTree, useTopic, useTopicsList, @@ -71,10 +70,9 @@ const TopicPage: NextPageWithLayout = ({ data }) => { fallback: data.otherTopics, input: { first: data.totalTopics, where: { notIn: [topic.id] } }, }); - const { items: breadcrumbItems, schema: breadcrumbSchema } = useBreadcrumb({ - title: topic.title, - url: `${ROUTES.TOPICS}/${topic.slug}`, - }); + const { items: breadcrumbItems, schema: breadcrumbSchema } = useBreadcrumbs( + topic.title + ); const { ref, tree } = useHeadingsTree({ fromLevel: 2 }); if (isFallback || isLoading) return ; @@ -106,7 +104,11 @@ const TopicPage: NextPageWithLayout = ({ data }) => { slug, title, }); - const schemaJsonLd = getSchemaJson([webpageSchema, articleSchema]); + const schemaJsonLd = getSchemaJson([ + webpageSchema, + articleSchema, + breadcrumbSchema, + ]); const messages = { widgets: { @@ -163,12 +165,6 @@ const TopicPage: NextPageWithLayout = ({ data }) => { // eslint-disable-next-line react/no-danger -- Necessary for schema dangerouslySetInnerHTML={{ __html: JSON.stringify(schemaJsonLd) }} /> -