htmr
Simple and lightweight (< 2kB) HTML string to react element conversion library
Install
$ yarn add htmr
$ npm install htmr --save
Usage
Use the default export, and pass HTML string.
import React from 'react';
import htmr from 'htmr';
function HTMLComponent() {
return htmr('<p>No more dangerouslySetInnerHTML</p>');
}
The API also accepts second argument options
containing few optional fields. Below are their default values:
const options = {
transform: {},
preserveAttributes: [],
dangerouslySetChildren: ['style'],
};
htmr(html, options);
transform
transform accepts key value pairs, that will be used to transforms node (key) to custom component (value). You can use it to render specific tag name with custom component. For example: component with
predefined styles like
styled-components.
import React from 'react';
import htmr from 'htmr';
import styled from 'styled-components';
const Paragraph = styled.p`
font-family: Helvetica, Arial, sans-serif;
line-height: 1.5;
`;
const transform = {
p: Paragraph,
a: 'span',
};
function TransformedHTMLComponent() {
return htmr('<p><a>Custom component</a></p>', { transform });
}
You can also provide default transform using underscore _
as property name.
This can be useful if you want to do string preprocessing (like removing all whitespace), or rendering HTML as native view in react-native:
import React from 'react';
import { Text, View } from 'react-native';
const transform = {
div: View,
_: (node, props, children) => {
if (typeof props === 'undefined') {
return <Text key={node}>{node}</Text>;
}
return <View {...props}>{children}</View>;
},
};
function NativeHTMLRenderer(props) {
return htmr(props.html, { transform });
}
preserveAttributes
By default htmr
will convert HTML attributes to camelCase because that's what React uses. You can override this behavior by passing preserveAttributes
options. Specify array of string / regular expression to test which attributes you want to preserve.
For example you want to make sure ng-if
, v-if
and v-for
to be rendered as is
htmr(html, { preserveAttributes: ['ng-if', new RegExp('v-')] });
dangerouslySetChildren
By default htmr
will only render children of style
tag inside dangerouslySetInnerHTML
due to security reason. You can override this behavior by passing array of HTML tags if you want the children of the tag to be rendered dangerously.
htmr(html, { dangerouslySetChildren: ['code', 'style'] });
Note that if you still want style
tag to be rendered using dangerouslySetInnerHTML
, you still need to include it in the array.
Multiple children
You can also convert HTML string which contains multiple elements. This returns
an array, so make sure to wrap the output inside other component such as div, or
use React 16.
import React from 'react';
import htmr from 'htmr';
const html = `
<h1>This string</h1>
<p>Contains multiple html tags</p>
<p>as sibling</p>
`;
function ComponentWithSibling() {
return htmr(html);
return <div>{htmr(html)}</div>;
}
Typescript, htmr transform and Web Components
If you're using htmr
to transform custom elements in a typescript code, you'll get type error because custom element is not defined as valid property. To work around this, you can define the mapping in a separate object, and typecast as any
while spreading in transform object:
import { ElementType } from 'react';
import { HtmrOptions } from 'htmr';
const customElementTransform: Record<string, ElementType> = {
'virtual-scroller': VirtualScroller,
};
const options: HtmrOptions = {
transform: {
a: Anchor,
...(customElementTransform as any),
},
};
htmr(html, options);
Use Cases
This library was initially built to provides easy component mapping between HTML
string and React component. It's mainly used to render custom
component from HTML string returned from an API. This library prioritize
file size and simple API over full HTML conversion coverage and other features
like JSX parsing or flexible node traversal.
That's why I've decided to not implement some features (see Trade Off
section below). If you feel like you need more features that's not possible
using this library, you can check out some related projects below.
Trade Off
- Inline event attributes (
onclick=""
etc) are not supported due to unnecessary complexity - htmr use native browser HTML parser when run in browser instead of using custom parser. Due to how browser HTML parser works, you can get weird result if you supply "invalid" html, for example
div
inside p
element like <p><div>text</div></p>
- Script tag is not rendered using
dangerouslySetInnerHTML
by default due to security. You can opt in by using dangerouslySetChildren
- Style tag renders it children using
dangerouslySetInnerHTML
by default. You can also reverse this behavior using same method.
Related projects
HTML to react element:
HTML (page) to react component (file/string):
License
MIT