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/index.tsx | 74 +++-------------------------------------------------- 1 file changed, 3 insertions(+), 71 deletions(-) (limited to 'src/pages/index.tsx') diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 81883fc..32c2e7f 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,8 +1,7 @@ -/* eslint-disable max-statements */ import type { MDXComponents } from 'mdx/types'; import type { GetStaticProps } from 'next'; import Head from 'next/head'; -import NextImage, { type ImageProps as NextImageProps } from 'next/image'; +import NextImage from 'next/image'; import Script from 'next/script'; import type { FC, HTMLAttributes, ReactNode } from 'react'; import { useIntl } from 'react-intl'; @@ -14,11 +13,9 @@ import { CardHeader, CardMeta, CardTitle, - Figure, getLayout, Grid, type GridItem, - Heading, Icon, List, ListItem, @@ -27,6 +24,7 @@ import { Time, MetaItem, } from '../components'; +import { mdxComponents } from '../components/mdx'; import HomePageContent from '../content/pages/homepage.mdx'; import { getArticlesCard } from '../services/graphql'; import styles from '../styles/pages/home.module.scss'; @@ -46,66 +44,6 @@ const Column = ({ children, ...props }: HTMLAttributes) => (
{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 ResponsiveImage = (props: NextImageProps) => ( -
- -
-); - /** * Retrieve a list of coding links. * @@ -368,17 +306,11 @@ const HomePage: NextPageWithLayout = ({ recentPosts }) => { }; const components: MDXComponents = { + ...mdxComponents, CodingLinks, ColdarkRepos, Column, Grid: StyledGrid, - h1: H1, - h2: H2, - h3: H3, - h4: H4, - h5: H5, - h6: H6, - Image: ResponsiveImage, LibreLinks, MoreLinks, RecentPosts: getRecentPosts, -- cgit v1.2.3