@axa-ch/react-polymorphic-types
Version:
About Zero-runtime polymorphic component definitions for React
567 lines (458 loc) • 18.2 kB
Markdown
# react-polymorphic-types
[![Build Status][ci-image]][ci-url]
[![MIT License][license-image]][license-url]
[![NPM version][npm-version-image]][npm-url]
[![NPM downloads][npm-downloads-image]][npm-url]
## About
**react-polymorphic-types** is a library that enables the creation of zero-runtime polymorphic component definitions in React.
## Explanation
### What is a React polymorphic component?
When building design systems or reusable UI components in React, you may come across the need for **polymorphic components**. A polymorphic component is a versatile component that can render different underlying HTML elements or custom components based on a prop.
A React polymorphic component provides flexibility to the consumer, allowing them to specify the desired element or component type to be rendered using a prop.
For example, let's consider a polymorphic heading component:
```tsx
import { createElement, ElementType, PropsWithChildren, ComponentProps } from 'react';
// Define the props for the polymorphic heading component
type HeadingProps<T extends ElementType = 'h1'> = PropsWithChildren<
{
as?: T;
} & ComponentProps<T>
>;
// Define the polymorphic heading component
export const Heading = <T extends ElementType = 'h1'>({ as = 'h1', children, ...rest }: HeadingProps<T>) =>
createElement(as, rest, children);
```
In the above example, the `Heading` component can render different heading levels (`h1`, `h2`, `h3`, etc.) based on the `as` prop. By default, it renders as an `h1` element.
You can use the `Heading` component in your application like this:
```tsx
const App = () => (
<article>
<Heading>My Main Headline</Heading>
<Heading as='h2'>A Subtitle</Heading>
<p>A description</p>
</article>
);
```
In this case, the same `Heading` component is used to render two different semantic tags, `h1` and `h2`, allowing you to control the heading level and maintain consistency across your application.
Polymorphic components provide an elegant solution for building flexible and reusable UI components in React, enabling you to create a cohesive design system with consistent semantics.
### What problems does this package solve?
The use of the `as` attribute can become complex when adding constraints to your rendered markup or when using third-party components. Declaring polymorphic types for each component can also be a tedious task that you may want to abstract.
With `-ch/react-polymorphic-types`, you can easily add constraints to your polymorphic React components and avoid redundant type definitions.
## Installation and Usage
Install the TypeScript types via npm:
```shell
npm i -ch/react-polymorphic-types -D
```
### Polymorphic Components Recipes
The following recipes provide a starting point for creating polymorphic components. You can copy and modify them according to your requirements.
<details>
<summary>Basic Example</summary>
This example showcases a simple polymorphic heading element. It allows you to independently define its size and markup using props.
```tsx
import { ComponentPropsWithoutRef, createElement, ElementType } from 'react';
import { PolymorphicProps } from '@axa-ch/react-polymorphic-types';
// Default HTML element if the "as" prop is not provided
export const HeadingDefaultElement: ElementType = 'h1';
// List of allowed HTML elements that can be passed via the "as" prop
export type HeadingAllowedElements = typeof HeadingDefaultElement | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
export type HeadingSizes = 1 | 2 | 3 | 4 | 5 | 6;
// Component-specific props
export type HeadingOwnProps<T extends HeadingAllowedElements> = ComponentPropsWithoutRef<T> & {
size?: HeadingSizes;
};
// Extend own props with others inherited from the underlying element type
// Own props take precedence over the inherited ones
export type HeadingProps<T extends HeadingAllowedElements = typeof HeadingDefaultElement> = PolymorphicProps<
HeadingOwnProps<T>,
T,
HeadingAllowedElements
>;
export const Heading = <T extends HeadingAllowedElements>({
as = HeadingDefaultElement,
size,
className,
children,
...rest
}: HeadingProps<T>) =>
createElement(
as,
{
...rest,
className: `${className} size-${size || 1}`,
},
children,
);
```
You can use the `Heading` component in your application as shown below:
```tsx
const App = () => (
<article>
<Heading
as='h1'
size={2}
>
My Main Headline
</Heading>
<Heading
as='h2'
size={5}
>
A Subtitle
</Heading>
{/* The following component will throw a TypeScript error because 'div' elements are not allowed here */}
<Heading
as='div'
size={5}
>
A Subtitle
</Heading>
<p>A description</p>
</article>
);
```
</details>
<details>
<summary>Basic Example with Ref</summary>
This example is similar to the previous one, but it also allows the use of React refs.
```tsx
import { ComponentPropsWithoutRef, createElement, ElementType, forwardRef } from 'react';
import { PolymorphicProps, PolymorphicForwardedRef } from '@axa-ch/react-polymorphic-types';
// Default HTML element if the "as" prop is not provided
export const HeadingDefaultElement: ElementType = 'h1';
// List of allowed HTML elements that can be passed via the "as" prop
export type HeadingAllowedElements = typeof HeadingDefaultElement | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
export type HeadingSizes = 1 | 2 | 3 | 4 | 5 | 6;
// Component-specific props
export type HeadingOwnProps<T extends HeadingAllowedElements> = ComponentPropsWithoutRef<T> & {
size?: HeadingSizes;
};
// Extend own props with others inherited from the underlying element type
// Own props take precedence over the inherited ones
export type HeadingProps<T extends HeadingAllowedElements> = PolymorphicProps<
HeadingOwnProps<T>,
T,
HeadingAllowedElements
>;
const HeadingInner = <T extends HeadingAllowedElements>(
{ as = HeadingDefaultElement, size, className, children, ...rest }: HeaadingProps<T>,
// notice the use of the PolymorphicForwardedRef type here
ref: PolymorphicForwardedRef<T>,
) =>
createElement(
as,
{
...rest,
ref,
className: `${className} size-${size || 1}`,
},
children,
);
// Forward refs with generics is tricky
// see also https://fettblog.eu/typescript-react-generic-forward-refs/
export const Heading = forwardRef(HeadingInner) as unknown as <T extends HeadingAllowedElements>(
props: HeadingProps<T> & { ref?: PolymorphicForwardedRef<T> },
) => ReturnType<typeof HeadingInner>;
```
Using the `-ch/react-polymorphic-types` types will allow you to automatically infer the proper ref DOM node.
```tsx
const App = () => {
// The use of HTMLHeadingElement type is safe
const ref = useRef<HTMLHeadingElement | null>(null);
return (
<Heading
ref={ref}
as='h2'
/>
);
};
```
</details>
<details>
<summary>React 19 Example with Ref</summary>
This example is similar to the previous one, but with React 19 the [refs forwarding got much easier](https://react.dev/blog/2024/12/05/react-19#ref-as-a-prop)
```tsx
import { ComponentPropsWithoutRef, createElement, ElementType, forwardRef } from 'react';
import { PolymorphicProps, PolymorphicForwardedRef } from '-ch/react-polymorphic-types';
// Default HTML element if the "as" prop is not provided
export const HeadingDefaultElement: ElementType = 'h1';
// List of allowed HTML elements that can be passed via the "as" prop
export type HeadingAllowedElements = typeof HeadingDefaultElement | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
export type HeadingSizes = 1 | 2 | 3 | 4 | 5 | 6;
// Component-specific props
export type HeadingOwnProps<T extends HeadingAllowedElements> = ComponentPropsWithoutRef<T> & {
size?: HeadingSizes;
ref?: PolymorphicForwardedRef<T>;
};
// Extend own props with others inherited from the underlying element type
// Own props take precedence over the inherited ones
export type HeadingProps<T extends HeadingAllowedElements> = PolymorphicProps<
HeadingOwnProps<T>,
T,
HeadingAllowedElements
>;
const Heading = <T extends HeadingAllowedElements>({
as = HeadingDefaultElement,
size,
className,
ref,
children,
...rest
}: HeadingProps<T>) =>
createElement(
as,
{
...rest,
ref,
className: `${className} size-${size || 1}`,
},
children,
);
```
Using the `-ch/react-polymorphic-types` types will allow you to automatically infer the proper ref DOM node.
```tsx
const App = () => {
// The use of HTMLHeadingElement type is safe
const ref = useRef<HTMLHeadingElement | null>(null);
return (
<Heading
ref={ref}
as='h2'
/>
);
};
```
</details>
<details>
<summary>Basic Example with Memo</summary>
This example shows the use of React.memo with a polymorphic component.
```tsx
import { ComponentPropsWithoutRef, createElement, ElementType, memo } from 'react';
import { PolymorphicProps } from '-ch/react-polymorphic-types';
// Default HTML element if the "as" prop is not provided
export const HeadingDefaultElement: ElementType = 'h1';
// List of allowed HTML elements that can be passed via the "as" prop
export type HeadingAllowedElements = typeof HeadingDefaultElement | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
export type HeadingSizes = 1 | 2 | 3 | 4 | 5 | 6;
// Component-specific props
export type HeadingOwnProps<T extends HeadingAllowedElements> = ComponentPropsWithoutRef<T> & {
size?: HeadingSizes;
};
// Extend own props with others inherited from the underlying element type
// Own props take precedence over the inherited ones
export type HeadingProps<T extends HeadingAllowedElements> = PolymorphicProps<
HeadingOwnProps<T>,
T,
HeadingAllowedElements
>;
const HeadingInner = <T extends HeadingAllowedElements>({
as = HeadingDefaultElement,
size,
className,
children,
...rest
}: HeadingProps<T>) =>
createElement(
as,
{
...rest,
className: `${className} size-${size || 1}`,
},
children,
);
// Memo with generics is tricky
// see also https://fettblog.eu/typescript-react-generic-forward-refs/
export const Heading = memo(HeadingInner) as <T extends HeadingAllowedElements>(
props: HeadingProps<T>,
) => ReturnType<typeof HeadingInner>;
```
The above component can be consumed without any additional overhead as follows:
```tsx
const App = () => (
<>
<Heading as='h2' />
</>
);
```
</details>
<details>
<summary>Exotic Component Example</summary>
Polymorphic exotic components allow you to use either DOM nodes or custom rendering functions for your HTML.
```tsx
import { ComponentPropsWithoutRef, createElement, ElementType, ExoticComponent } from 'react';
import { PolymorphicExoticProps, PolymorphicProps } from '-ch/react-polymorphic-types';
// Default HTML element if the "as" prop is not provided
export const ContainerDefaultElement: ElementType = 'div';
// List of allowed HTML elements that can be passed via the "as" prop
export type ContainerAllowedDOMElements = typeof ContainerDefaultElement | 'article' | 'section';
export type ContainerAllowedElements = ContainerAllowedDOMElements | ExoticComponent;
// Component-specific props
export type ContainerOwnProps<T extends ContainerAllowedDOMElements> = ComponentPropsWithoutRef<T>;
// Extend own props with others inherited from the underlying element type
// Own props take precedence over the inherited ones
export type ContainerProps<T extends ContainerAllowedElements> = T extends ContainerAllowedDOMElements
? PolymorphicProps<ContainerOwnProps<T>, T, ContainerAllowedDOMElements>
: PolymorphicExoticProps<ContainerOwnProps<ContainerAllowedDOMElements>, T, ContainerAllowedDOMElements>;
export const Container = <T extends ContainerAllowedElements>({
as = ContainerDefaultElement,
className,
children,
...rest
}: ContainerProps<T>) =>
createElement(
as,
{
...rest,
className,
},
children,
);
```
The above component works with straight HTML nodes or with external exotic components like, for example, the ones provided by [framer-motion](https://www.framer.com/motion/).
```tsx
import { motion } from 'framer-motion';
const App = () => (
<>
<Container as='div' />
{/* Notice that the exotic props here will be automatically inferred */}
<Container
as={motion.article}
layout
/>
</>
);
```
</details>
<details>
<summary>Exotic Component Example with Ref</summary>
Polymorphic exotic components that use refs are slightly more complex and require some additional code to work properly.
```tsx
import { ComponentPropsWithoutRef, createElement, ElementType, ExoticComponent, forwardRef } from 'react';
import { PolymorphicProps, PolymorphicForwardedRef, PolymorphicExoticProps } from '-ch/react-polymorphic-types';
// Default HTML element if the "as" prop is not provided
export const ContainerDefaultElement: ElementType = 'div';
// List of allowed HTML elements that can be passed via the "as" prop
export type ContainerAllowedDOMElements = 'div' | 'article' | 'section';
export type ContainerAllowedElements = ContainerAllowedDOMElements | ExoticComponent;
// Component-specific props
export type ContainerOwnProps<T extends ContainerAllowedDOMElements> = ComponentPropsWithoutRef<T>;
// Extend own props with others inherited from the underlying element type
// Own props take precedence over the inherited ones
export type ContainerProps<T extends ContainerAllowedElements> = T extends ContainerAllowedDOMElements
? PolymorphicProps<ContainerOwnProps<T>, T, ContainerAllowedDOMElements>
: PolymorphicExoticProps<ContainerOwnProps<ContainerAllowedDOMElements>, T, ContainerAllowedDOMElements>;
// Forwarded ref component
const ContainerInner = <T extends ContainerAllowedElements>(
{ as = ContainerDefaultElement, className, children, ...rest }: ContainerProps<T>,
ref: PolymorphicForwardedRef<T>,
) =>
createElement(
as,
{
...rest,
ref,
className,
},
children,
);
// Forward refs with generics is tricky
// see also https://fettblog.eu/typescript-react-generic-forward-refs/
export const Container = forwardRef<ContainerAllowedElements>(ContainerInner) as <T extends ContainerAllowedElements>(
props: ContainerProps<T> & { ref?: PolymorphicForwardedRef<T> },
) => ReturnType<typeof ContainerInner>;
```
With the above example, DOM nodes will be automatically inferred, including when using third-party exotic rendering functions.
```tsx
import { motion } from 'framer-motion';
const App = () => {
const div = useRef<HTMLDivElement | null>(null);
// Article and other HTML5 tags are just of type HTMLElement
const article = useRef<HTMLElement | null>(null);
return (
<>
<Container
ref={div}
as='div'
/>
<Container
ref={article}
as={motion.article}
layout
/>
</>
);
};
```
</details>
<details>
<summary>Complex Exotic/Functional Component Example</summary>
This example combines multiple rendering strategies for your component to allow maximum flexibility for its consumers.
```tsx
// We need to infer the functional component properties so 'any' is used in this case
// You can also add strict types for your functional components, but it will reduce flexibility
import { ComponentPropsWithoutRef, createElement, ElementType, ExoticComponent, FC } from 'react';
import { PolymorphicFunctionalProps, PolymorphicExoticProps, PolymorphicProps } from '-ch/react-polymorphic-types';
// Default HTML element if the "as" prop is not provided
export const ContainerDefaultElement: ElementType = 'div';
// List of allowed HTML elements that can be passed via the "as" prop
export type ContainerAllowedDOMElements = 'div' | 'article' | 'section';
export type ContainerAllowedElements = ContainerAllowedDOMElements | ExoticComponent | FC<any>;
// Component-specific props
export type ContainerOwnProps<T extends ContainerAllowedDOMElements> = ComponentPropsWithoutRef<T>;
// Extend own props with others inherited from the underlying element type
// Own props take precedence over the inherited ones
export type ContainerProps<T extends ContainerAllowedElements> = T extends ContainerAllowedDOMElements
? PolymorphicProps<ContainerOwnProps<T>, T, ContainerAllowedDOMElements>
: T extends FC<any>
? PolymorphicFunctionalProps<ContainerOwnProps<ContainerAllowedDOMElements>, T, ContainerAllowedDOMElements>
: PolymorphicExoticProps<ContainerOwnProps<ContainerAllowedDOMElements>, T, ContainerAllowedDOMElements>;
export const Container = <T extends ContainerAllowedElements>({
as = ContainerDefaultElement,
className,
children,
...rest
}: ContainerProps<T>) =>
createElement(
as,
{
...rest,
className,
},
children,
);
```
Let's see how we can use the above component with all its possible rendering options:
```tsx
import { motion } from 'framer-motion';
type FooProps = ComponentPropsWithoutRef<'div'> & { size: 'small' | 'large'; name: string };
const Foo: FC<FooProps> = ({ className, size = 'large', ...rest }) => (
<div
{...rest}
className={`${className} the-foo ${size}`}
/>
);
const App = () => (
<>
<Container as='div' />
<Container
size='small'
name='foo'
as={Foo}
/>
<Container
as={motion.div}
layout
animate
/>
</>
);
```
</details>
## Credits
This project wouldn't exist without [react-polymorphic-types](https://github.com/kripod/react-polymorphic-types)
[ci-image]: https://img.shields.io/github/actions/workflow/status/axa-ch/react-polymorphic-types/ci.yml?style=flat-square&branch=main
[ci-url]: https://github.com/axa-ch/react-polymorphic-types/actions
[license-image]: http://img.shields.io/badge/license-MIT-000000.svg?style=flat-square
[license-url]: LICENSE
[npm-version-image]: https://img.shields.io/npm/v/@axa-ch/react-polymorphic-types.svg?style=flat-square
[npm-downloads-image]: https://img.shields.io/npm/dm/@axa-ch/react-polymorphic-types.svg?style=flat-square
[npm-url]: https://npmjs.org/package/@axa-ch/react-polymorphic-types