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/components/mdx.tsx | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/components/mdx.tsx (limited to 'src/components/mdx.tsx') diff --git a/src/components/mdx.tsx b/src/components/mdx.tsx new file mode 100644 index 0000000..f11dda5 --- /dev/null +++ b/src/components/mdx.tsx @@ -0,0 +1,90 @@ +import type { MDXComponents } from 'mdx/types'; +import NextImage from 'next/image'; +import type { AnchorHTMLAttributes, ImgHTMLAttributes, ReactNode } from 'react'; +import { Figure, Heading, Link, List, ListItem } from './atoms'; +import { Code, Grid } from './molecules'; + +const Anchor = ({ + children = '', + href = '', + hrefLang, + rel, + ...props +}: AnchorHTMLAttributes) => ( + + {children} + +); + +const Img = ({ + alt, + src, + height, + placeholder, + width, + ...props +}: ImgHTMLAttributes) => { + if (src) + return ( + + ); + + // eslint-disable-next-line @next/next/no-img-element + return {alt}; +}; + +const Gallery = ({ children }: { children: ReactNode[] }) => ( + { + return { id: `${index}`, item: child }; + })} + // eslint-disable-next-line react/jsx-no-literals + sizeMin="250px" + /> +); + +export const mdxComponents: MDXComponents = { + a: Anchor, + Code, + figure: ({ ref, ...props }) =>
, + Figure, + Gallery, + h1: ({ ref, ...props }) => , + h2: ({ ref, ...props }) => , + h3: ({ ref, ...props }) => , + h4: ({ ref, ...props }) => , + h5: ({ ref, ...props }) => , + h6: ({ ref, ...props }) => , + img: Img, + li: ({ ref, ...props }) => , + Link, + ol: ({ ref, ...props }) => ( + + ), + ul: ({ ref, ...props }) => ( + + ), +}; -- cgit v1.2.3