From 50f1c501a87ef5f5650750dbeca797e833ec7c3a Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 14 Nov 2023 12:39:09 +0100 Subject: refactor(components): replace Sharing with SharingWidget component * all the widgets should have a coherent name * fix mailto uri * remove useless CSS * add tests --- src/pages/article/[slug].tsx | 11 +++++++++-- src/pages/projets/[slug].tsx | 10 ++++++++-- 2 files changed, 17 insertions(+), 4 deletions(-) (limited to 'src/pages') diff --git a/src/pages/article/[slug].tsx b/src/pages/article/[slug].tsx index d35541a..4eb7f2b 100644 --- a/src/pages/article/[slug].tsx +++ b/src/pages/article/[slug].tsx @@ -13,11 +13,12 @@ import { getLayout, Link, PageLayout, - Sharing, + SharingWidget, Spinner, type MetaItemData, Time, type CommentData, + Heading, } from '../../components'; import { getAllArticlesSlugs, @@ -301,6 +302,11 @@ const ArticlePage: NextPageWithLayout = ({ ); const pageUrl = `${website.url}${slug}`; + const sharingWidgetTitle = intl.formatMessage({ + defaultMessage: 'Share', + id: 'HKKkQk', + description: 'SharingWidget: widget title', + }); return ( <> @@ -335,11 +341,12 @@ const ArticlePage: NextPageWithLayout = ({ title={title} withToC={true} widgets={[ - {sharingWidgetTitle}} media={[ 'diaspora', 'email', diff --git a/src/pages/projets/[slug].tsx b/src/pages/projets/[slug].tsx index 58c03ce..fa8f43a 100644 --- a/src/pages/projets/[slug].tsx +++ b/src/pages/projets/[slug].tsx @@ -13,7 +13,7 @@ import { getLayout, Link, PageLayout, - Sharing, + SharingWidget, Spinner, Heading, List, @@ -289,6 +289,11 @@ const ProjectPage: NextPageWithLayout = ({ project }) => { title, }); const schemaJsonLd = getSchemaJson([webpageSchema, articleSchema]); + const sharingWidgetTitle = intl.formatMessage({ + defaultMessage: 'Share', + id: 'HKKkQk', + description: 'SharingWidget: widget title', + }); return ( <> @@ -317,10 +322,11 @@ const ProjectPage: NextPageWithLayout = ({ project }) => { headerMeta={filteredHeaderMeta} withToC={true} widgets={[ - {sharingWidgetTitle}} media={[ 'diaspora', 'email', -- cgit v1.2.3