From a3a4c50f26b8750ae1c87f1f1103b84b7d2e6315 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 14 Nov 2023 15:11:22 +0100 Subject: refactor(components): replace LinksListWidget with LinksWidget * avoid List component repeat * rewrite tests and CSS * add an id to LinksWidgetItemData (previously LinksListItems) type because the label could be duplicated --- src/pages/404.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/pages/404.tsx') diff --git a/src/pages/404.tsx b/src/pages/404.tsx index 00e2d5a..2b6ddf3 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -8,7 +8,7 @@ import { getLayout, Heading, Link, - LinksListWidget, + LinksWidget, PageLayout, SearchForm, type SearchFormSubmit, @@ -25,7 +25,7 @@ import type { RawTopicPreview, } from '../types'; import { ROUTES } from '../utils/constants'; -import { getLinksListItems, getPageLinkFromRawData } from '../utils/helpers'; +import { getLinksItemData, getPageLinkFromRawData } from '../utils/helpers'; import { loadTranslation, type Messages } from '../utils/helpers/server'; import { useBreadcrumb, useSettings } from '../utils/hooks'; @@ -122,13 +122,13 @@ const Error404Page: NextPageWithLayout = ({ breadcrumb={breadcrumbItems} breadcrumbSchema={breadcrumbSchema} widgets={[ - {thematicsListTitle} } - items={getLinksListItems( + items={getLinksItemData( thematicsList.map((thematic) => getPageLinkFromRawData(thematic, 'thematic') ) @@ -136,13 +136,13 @@ const Error404Page: NextPageWithLayout = ({ // eslint-disable-next-line react/jsx-no-literals -- Key allowed key="thematics-list" />, - {topicsListTitle} } - items={getLinksListItems( + items={getLinksItemData( topicsList.map((topic) => getPageLinkFromRawData(topic, 'topic')) )} // eslint-disable-next-line react/jsx-no-literals -- Key allowed -- cgit v1.2.3