From 329e7c89bac50be9db2c6d2ec6751ab0ffad42ac Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 22 Nov 2023 18:12:32 +0100 Subject: refactor(components): replace items prop in Grid with children prop It is easier to read and to maintain this way. The `items` prop was not useful since we are not manipulating the items. Changes: * extract GridItem component from Grid component * replace `items` prop of type Array with `children` prop of type ReactNode * remove GridItem styles --- src/components/mdx.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/components/mdx.tsx') diff --git a/src/components/mdx.tsx b/src/components/mdx.tsx index f11dda5..9f0a4a5 100644 --- a/src/components/mdx.tsx +++ b/src/components/mdx.tsx @@ -2,7 +2,7 @@ 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'; +import { Code, Grid, GridItem } from './molecules'; const Anchor = ({ children = '', @@ -45,16 +45,15 @@ const Img = ({ return {alt}; }; -const Gallery = ({ children }: { children: ReactNode[] }) => ( +const Gallery = ({ children }: { children: ReactNode }) => ( { - return { id: `${index}`, item: child }; - })} // eslint-disable-next-line react/jsx-no-literals sizeMin="250px" - /> + > + {children} + ); export const mdxComponents: MDXComponents = { @@ -63,6 +62,8 @@ export const mdxComponents: MDXComponents = { figure: ({ ref, ...props }) =>
, Figure, Gallery, + Grid, + GridItem, h1: ({ ref, ...props }) => , h2: ({ ref, ...props }) => , h3: ({ ref, ...props }) => , -- cgit v1.2.3