aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/card/card-title.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-10-17 19:46:08 +0200
committerArmand Philippot <git@armandphilippot.com>2023-11-11 18:14:41 +0100
commitc153f93dc8691a71dc76aad3dd618298da9d238a (patch)
tree9c116c1472bab5585f98bceee19cfeca5041360d /src/components/molecules/card/card-title.tsx
parent006b15b467a5cd835a6eab1b49023100bdc8f2e6 (diff)
refactor(components): rewrite Card component
* make the component more generic * merge `<Summary />` and `<Comment />` styles into card component to avoid repeating the same structure * remove most of the props to use composition However the CSS is a bit complex because of the two variants... Also, the component should be refactored when the CSS pseudo-class `:has` has enough support: the provider and the `cover` and `meta` props should be removed.
Diffstat (limited to 'src/components/molecules/card/card-title.tsx')
-rw-r--r--src/components/molecules/card/card-title.tsx27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/components/molecules/card/card-title.tsx b/src/components/molecules/card/card-title.tsx
new file mode 100644
index 0000000..09d61ea
--- /dev/null
+++ b/src/components/molecules/card/card-title.tsx
@@ -0,0 +1,27 @@
+import { type ForwardRefRenderFunction, forwardRef } from 'react';
+import { Heading, type HeadingProps } from '../../atoms';
+import styles from './card.module.scss';
+
+export type CardTitleProps = Omit<HeadingProps, 'level'> & {
+ /**
+ * The title level (between 1 and 6).
+ *
+ * @default 2
+ */
+ level?: HeadingProps['level'];
+};
+
+const CardTitleWithRef: ForwardRefRenderFunction<
+ HTMLHeadingElement,
+ CardTitleProps
+> = ({ children, className = '', level = 2, ...props }, ref) => {
+ const headingClass = `${styles.title} ${className}`;
+
+ return (
+ <Heading {...props} className={headingClass} level={level} ref={ref}>
+ {children}
+ </Heading>
+ );
+};
+
+export const CardTitle = forwardRef(CardTitleWithRef);