From 655ed38c6cd53a19c6ba1ebab5f2429441b99a58 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 5 Apr 2022 23:10:44 +0200 Subject: chore: add a List component --- src/components/atoms/lists/list.tsx | 73 +++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/components/atoms/lists/list.tsx (limited to 'src/components/atoms/lists/list.tsx') diff --git a/src/components/atoms/lists/list.tsx b/src/components/atoms/lists/list.tsx new file mode 100644 index 0000000..8ce8437 --- /dev/null +++ b/src/components/atoms/lists/list.tsx @@ -0,0 +1,73 @@ +import { FC } from 'react'; +import styles from './list.module.scss'; + +export type ListItem = { + /** + * Nested list. + */ + child?: ListItem[]; + /** + * Item id. + */ + id: string; + /** + * Item value. + */ + value: any; +}; + +export type ListProps = { + /** + * Add additional classes to the list element. + */ + classes?: string; + /** + * An array of list items. + */ + items: ListItem[]; + /** + * The list kind (ordered or unordered). + */ + kind?: 'ordered' | 'unordered'; +}; + +/** + * List component + * + * Render either an ordered or an unordered list. + */ +const List: FC = ({ classes, items, kind = 'unordered' }) => { + const ListTag = kind === 'ordered' ? 'ol' : 'ul'; + const additionalClasses = classes || ''; + const kindClass = `list--${kind}`; + + /** + * Retrieve the list items. + * @param array - An array of items. + * @returns {JSX.Element[]} - An array of li elements. + */ + const getItems = (array: ListItem[]): JSX.Element[] => { + return array.map(({ child, id, value }) => ( +
  • + {value} + {child && ( + + {getItems(child)} + + )} +
  • + )); + }; + + return ( + + {getItems(items)} + + ); +}; + +export default List; -- cgit v1.2.3