@elliottsj/react-render-html
v0.2.3
Published
No more dangerouslySetInnerHTML, render HTML as React element.
Downloads
11
Readme
react-render-html
No more dangerouslySetInnerHTML, render HTML as React element.
How it works
It renders a provided HTML string into a React element.
import renderHTML from 'react-render-html';
renderHTML("<a class='github' href='https://github.com'><b>GitHub</b></a>")
// => React Element
// <a className="github" href="https://github.com"><b>GitHub</b></a>
It may be used in the render
method in a React component:
let App = React.createClass({
render() {
return (
<div className='app'>
{renderHTML(someHTML)}
</div>
);
}
});
Or just by itself
ReactDOM.render(renderHTML(someHTML), document.getElementById('app'));
If a provided HTML contains several top-level nodes, the function will return an array of React elements.
renderHTML('<li>hello</li><li>world</li>');
// => [React Element <li>hello</li>, React Element <li>world</li>]
Custom renderers ("Middleware")
Pass a function as the 2nd argument to renderHTML
to customize how nodes are rendered:
function middleware(renderNode) { /* ... */ }
renderHTML('<li>hello</li><li>world</li>', middleware);
The middleware function should have the signature
type Middleware = (renderNode: NodeRenderer) => (next: NodeRenderer) => NodeRenderer
type NodeRenderer = (node: ASTNode.<Element>, key: String) => ReactElement
Where next
is the next renderer in the middleware chain, renderNode
is the entire chain, and node
and key
correspond to the current node being rendered.
For example, to replace the href
attribute of all <a>
elements, use:
function replaceHref(renderNode) {
return next => (node, key) => {
const element = next(node, key);
if (node.tagName === 'a') {
return React.cloneElement(element, {
href: 'https://example.com'
});
}
return element;
};
}
const htmlElement = renderHTML('<p><a class="hello" href="https://github.com">hihi</a></p>', replaceHref);
console.log(renderToStaticMarkup(htmlElement));
// <p><a class="hello" href="https://example.com">hihi</a></p>
Custom renders are composable: using applyMiddleware
, simply call next
from within a renderer to get the resulting ReactElement from subsequent renderers, and call renderNode
if you need to render a node from scratch using the entire renderer chain (e.g. child nodes). For example:
import renderHTML, {
applyMiddleware
} from 'react-render-html';
const replaceHref = renderNode => next => (node, key) => {
const element = next(node, key);
if (node.tagName === 'a') {
return React.cloneElement(element, {
href: 'https://example.com'
});
}
return element;
};
const replacePs = renderNode => next => (node, key) => {
if (node.tagName === 'p') {
return React.createElement(node.tagName, {}, 'Redacted');
}
return next(node, key);
};
const addLi = renderNode => next => (node, key) => {
const element = next(node, key);
if (node.tagName === 'ul') {
return React.cloneElement(
element,
{},
...node.childNodes.map(renderNode),
React.createElement('li', {}, 'One more')
);
}
return element;
};
const htmlElement = renderHTML(
'<ul>' +
'<li><a class="hello" href="https://github.com">hihi</a></li>' +
'<li><p><b>hello</b>world</p><p>react</p></li>' +
'</ul>',
applyMiddleware(replaceHref, replacePs, addLi)
);
const htmlElement = renderHTML('<p><a class="hello" href="https://github.com">hihi</a></p>', replaceHref);
console.log(renderToStaticMarkup(htmlElement));
// <ul><li><a class="hello" href="https://example.com">hihi</a></li><li><p>Redacted</p><p>Redacted</p></li><li>One more</li></ul>
Install
Install with NPM:
npm i --save react-render-html
Import with CommonJS or whatever:
const {
default: renderHTML,
applyMiddleware
} = require('react-render-html');
// OR
import renderHTML, { applyMiddleware } from 'react-render-html';
A bug!
When a bug is found, please report them in Issues.
Also, any form of contribution(especially a PR) will absolutely be welcomed :beers: