From 0ac690339083f01a0b12a74ec117eeccd055e932 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 22 Nov 2023 17:45:03 +0100 Subject: refactor(components,pages): extract MDX components mapping from pages Instead of repeating the overriding on each pages, we should define it in one place and reuse it in pages. By default it is not possible to override native HTML tags with MDX so I added a plugin in next config to allow it. --- src/pages/cv.tsx | 108 ++----------------------------------------------------- 1 file changed, 3 insertions(+), 105 deletions(-) (limited to 'src/pages/cv.tsx') diff --git a/src/pages/cv.tsx b/src/pages/cv.tsx index fd19a83..edf267d 100644 --- a/src/pages/cv.tsx +++ b/src/pages/cv.tsx @@ -1,30 +1,24 @@ /* eslint-disable max-statements */ -import type { MDXComponents } from 'mdx/types'; import type { GetStaticProps } from 'next'; import Head from 'next/head'; import NextImage from 'next/image'; import { useRouter } from 'next/router'; import Script from 'next/script'; -import React, { - type AnchorHTMLAttributes, - type HTMLAttributes, - type ReactNode, -} from 'react'; +import React, { type ReactNode } from 'react'; import { useIntl } from 'react-intl'; import { getLayout, Heading, ImageWidget, Link, - List, SocialMediaWidget, - ListItem, Page, PageHeader, PageSidebar, TocWidget, PageBody, } from '../components'; +import { mdxComponents } from '../components/mdx'; import CVContent, { data, meta } from '../content/pages/cv.mdx'; import type { NextPageWithLayout } from '../types'; import { CONFIG } from '../utils/config'; @@ -37,102 +31,6 @@ import { import { loadTranslation } from '../utils/helpers/server'; import { useBreadcrumb, useHeadingsTree } from '../utils/hooks'; -const ExternalLink = ({ - children = '', - href = '', - ...props -}: AnchorHTMLAttributes) => ( - - {children} - -); - -const H1 = ({ - children = '', - ...props -}: HTMLAttributes) => ( - - {children} - -); - -const H2 = ({ - children = '', - ...props -}: HTMLAttributes) => ( - - {children} - -); - -const H3 = ({ - children = '', - ...props -}: HTMLAttributes) => ( - - {children} - -); - -const H4 = ({ - children = '', - ...props -}: HTMLAttributes) => ( - - {children} - -); - -const H5 = ({ - children = '', - ...props -}: HTMLAttributes) => ( - - {children} - -); - -const H6 = ({ - children = '', - ...props -}: HTMLAttributes) => ( - - {children} - -); - -const OrderedList = ({ - children, - ...props -}: HTMLAttributes) => ( - - {children} - -); - -const UnorderedList = ({ - children, - ...props -}: HTMLAttributes) => ( - - {children} - -); - -const components: MDXComponents = { - a: ExternalLink, - h1: H1, - h2: H2, - h3: H3, - h4: H4, - h5: H5, - h6: H6, - li: ({ ref, ...props }) => , - Link, - ol: OrderedList, - ul: UnorderedList, -}; - /** * CV page. */ @@ -258,7 +156,7 @@ const CVPage: NextPageWithLayout = () => { /> - +