Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/connor-baer/rich-text-to-jsx
📄 Opinionated JSX renderer for the Contentful rich text field type.
https://github.com/connor-baer/rich-text-to-jsx
contentful jsx react rich-text
Last synced: 7 days ago
JSON representation
📄 Opinionated JSX renderer for the Contentful rich text field type.
- Host: GitHub
- URL: https://github.com/connor-baer/rich-text-to-jsx
- Owner: connor-baer
- License: mit
- Created: 2018-12-26T10:10:19.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2025-01-01T20:33:52.000Z (10 days ago)
- Last Synced: 2025-01-01T21:28:12.988Z (10 days ago)
- Topics: contentful, jsx, react, rich-text
- Language: JavaScript
- Homepage:
- Size: 5.23 MB
- Stars: 51
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# rich-text-to-jsx
Opinionated JSX renderer for the [Contentful Rich Text](https://www.contentful.com/developers/docs/concepts/rich-text/) field type
[![NPM version](https://img.shields.io/npm/v/@madebyconnor/rich-text-to-jsx)](https://www.npmjs.com/package/@madebyconnor/rich-text-to-jsx) [![Continuous Integration](https://github.com/connor-baer/rich-text-to-jsx/actions/workflows/ci.yaml/badge.svg)](https://github.com/connor-baer/rich-text-to-jsx/actions/workflows/ci.yaml) [![Code coverage](https://img.shields.io/codecov/c/github/connor-baer/rich-text-to-jsx)](https://codecov.io/gh/connor-baer/rich-text-to-jsx) [![License MIT](https://img.shields.io/github/license/connor-baer/rich-text-to-jsx.svg)](https://github.com/connor-baer/rich-text-to-jsx/blob/main/LICENSE) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.1%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)
- [Installation](#installation)
- [Getting started](#getting-started)
- [Parsing Options](#parsing-options)
- [options.overrides - Override any node's representation](#optionsoverrides---override-any-nodes-representation)
- [Entries](#entries)
- [Assets](#assets)
- [options.createElement - Custom React.createElement behavior](#optionscreateelement---custom-reactcreateelement-behavior)
- [Using the compiler directly](#using-the-compiler-directly)
- [Getting the smallest possible bundle size](#getting-the-smallest-possible-bundle-size)
- [Usage with Preact](#usage-with-preact)
- [Changelog](#changelog)---
[`rich-text-to-jsx`](https://www.npmjs.com/package/@madebyconnor/rich-text-to-jsx) is inspired by [`markdown-to-jsx`](https://github.com/probablyup/markdown-to-jsx). Notably, this package offers the following benefits:
Any HTML tags (corresponding to node types) rendered by the compiler can be [overridden](#optionsoverrides---override-any-nodes-representation) to include additional props or even a different React component entirely.
Embedded [entries](#entries) and [assets](#assets) can be rendered using different components depending on whether they are inline, blocks or hyperlinks.
The [rendering function](#optionscreateelement---custom-reactcreateelement-behavior) can be customized.
All this clocks in at around 4 kB gzipped.⚠️ Requires React >= 16.0.0. Some features depend on a specific content structure: entry and asset links need to be resolved and the content localized. If this is a deal breaker for you, have a look at the official [`rich-text-react-renderer`](https://github.com/contentful/rich-text/tree/master/packages/rich-text-react-renderer) package.
## Installation
Install `@madebyconnor/rich-text-to-jsx` with your favorite package manager.
```sh
# npm
npm i @madebyconnor/rich-text-to-jsx
```## Getting started
`@madebyconnor/rich-text-to-jsx` exports a React component for easy JSX composition:
```jsx
import React from 'react';
import { render } from 'react-dom';
import RichText from '@madebyconnor/rich-text-to-jsx';const richText = {
data: {},
content: [
{
data: {},
content: [
{
data: {},
marks: [],
value: 'Hello world!',
nodeType: 'text',
},
],
nodeType: 'paragraph',
},
],
nodeType: 'document',
};render(, document.body);
/*
renders:
Hello world!
*/
```## Parsing Options
### options.overrides - Override any node's representation
Pass the `options.overrides` prop to the compiler or the `` component to seamlessly revise the rendered representation of any node type. You can choose to change the component itself, add/change props, or both.
```jsx
import React from 'react';
import { render } from 'react-dom';
import RichText from '@madebyconnor/rich-text-to-jsx';
import { BLOCKS } from '@contentful/rich-text-types';// Surprise, it's a div instead!
const MyParagraph = ({ children, ...props }) => (
{children}
);render(
,
document.body
);/*
renders:
Hello World
*/
```If you only wish to provide a component override, a simplified syntax is available:
```js
const overrides = {
[BLOCKS.PARAGRAPH]: MyParagraph,
};// or by HTML tag
const overrides = {
p: MyParagraph,
};
```Any conflicts between passed `props` and the specific properties above will be resolved in favor of `@madebyconnor/rich-text-to-jsx`'s code. `classNames` are merged automatically. The `uri` prop on `INLINES.HYPERLINK` nodes is renamed to `href` for convenience.
#### Entries
For embedded entries, you need to specify the component for each possible node type and content type. This enables you to use different components for the same entry, depending on whether it is rendered inline, as a block or as a hyperlink. The component receives the data in `node.data.target` as props.
Let's say you have an entry of the content type `page`. When the `page` entry is referenced as a hyperlink, an anchor should be rendered. When the `page` entry is embedded as a block, a preview with its title and subtitle should be rendered. Here's how you could achieve that:
```jsx
const PageLink = ({ slug, children }) => {children};
const PagePreview = ({ title, summary, className }) => (
{title}
{summary}
);const overrides = {
[INLINES.ENTRY_HYPERLINK]: {
page: PageLink,
},
[BLOCKS.EMBEDDED_ENTRY]: {
page: {
component: PagePreview,
props: {
className: 'page-preview',
},
},
},
};
```#### Assets
Embedded assets work very similar to [entries](#Entries). However, assets don't have a content type, so instead you can define custom components for each [mime type group](https://www.contentful.com/developers/docs/references/content-delivery-api/#/reference/search-parameters/filtering-assets-by-mime-type). Here's an example:
```jsx
const ImageLink = ({ file, title }) => (
{title}
);
const Image = ({ file, title, className }) => (
);const overrides = {
[INLINES.ENTRY_HYPERLINK]: {
image: ImageLink,
},
[BLOCKS.EMBEDDED_ENTRY]: {
image: {
component: Image,
props: {
className: 'image--fullwidth',
},
},
},
};
```By default, images, videos, and audio files are rendered with the appropriate HTML5 elements when embedded as blocks and as download links when embedded inline or as hyperlinks.
### options.createElement - Custom React.createElement behavior
Sometimes, you might want to override the `React.createElement` default behavior to hook into the rendering process before the JSX gets rendered. This might be useful to add extra children or modify some props based on runtime conditions. The function mirrors the `React.createElement` function, so the params are [`type, [props], [...children]`](https://reactjs.org/docs/react-api.html#createelement):
```jsx
import React from 'react';
import { render } from 'react-dom';
import RichText from '@madebyconnor/rich-text-to-jsx';render(
(
{React.createElement(type, props, children)}
)}
/>,
document.body
);/*
renders:
Hello world!
*/
```## Using the compiler directly
If desired, the compiler function is a named export on the `@madebyconnor/rich-text-to-jsx` module:
```jsx
import React from 'react';
import { render } from 'react-dom';
import { richTextToJsx } from '@madebyconnor/rich-text-to-jsx';const richText = {{ ... }}
richTextToJsx(richText);
```It accepts the following arguments:
```js
richTextToJsx(richText: string, options: object?)
```## Getting the smallest possible bundle size
Many development conveniences are placed behind `process.env.NODE_ENV !== "production"` conditionals. When bundling your app, it's a good idea to replace these code snippets such that a minifier (like uglify) can sweep them away and leave a smaller overall bundle.
Here are instructions for some of the popular bundlers:
- [webpack](https://webpack.js.org/guides/production/#specify-the-environment)
- [browserify plugin](https://github.com/hughsk/envify)
- [parcel](https://parceljs.org/production.html)
- [fuse-box](http://fuse-box.org/plugins/replace-plugin#notes)## Usage with Preact
Everything will work just fine! Simply [Alias `react` to `preact-compat`](https://github.com/developit/preact-compat#usage-with-webpack) like you probably already are doing.
## Changelog
See [GitHub Releases](https://github.com/connor-baer/rich-text-to-jsx/releases).