JSPM

react-to-text

2.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 73809
  • Score
    100M100P100Q142109F
  • License MIT

Convert react components to plain text without any HTML markup

Package Exports

  • react-to-text
  • react-to-text/dist/index.js
  • react-to-text/dist/module.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-to-text) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-to-text

npm CI

Convert react components to plain text without any HTML markup. Written in Typscript with zero dependencies.

Installation

yarn add react-to-text
npm install --save react-to-text

Usage

Out of the box

react-to-text takes in any React component and will return the text content (without any HTML). It will accept any value React can render (strings, arrays, Fragments, etc.), and can handle deeply nested components.

import reactToText from 'react-to-text';

const text = reactToText(
  <div>
    We sell <a href="/apples">apples</a> and <a href="/oranges"> oranges</a>.
  </div>
)

console.log(text);
> "We sell apples and oranges."

Custom logic

The default logic won't always work, for example when you have a custom component which simply renders one of it's props. In this case you can define custom stringification behavior using a second argument.

import reactToText, { ResolverMap } from 'react-to-text';

const CustomComponent: React.FC<{ title: string }> = (props) => <p>{props.title}</p>;

// since this component does not have any direct children
// it will not output anything by default
console.log(reactToText(<CustomComponent title="foo" />));
> ""

// using a custom resolver map using the custom component as it's key
// and the stringification logic as it's value, we can adjust this behavior
const resolvers: ResolverMap = new Map([
  [CustomComponent, (props: { title: string }) => props.title],
]);
console.log(reactToText(<CustomComponent title="foo" />, resolvers));
> "foo"

Deploying

Deploys to NPM are automatically run when a release is created in Github (see .github/workflows/npm-publish.yml).

License

Licensed under MIT.