Last active
July 11, 2024 00:06
-
-
Save jsdf/7f983f2cd955fd75d6cc to your computer and use it in GitHub Desktop.
Rendering HTML rich text as React Native <Text> elements
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var React = require('react-native') | |
var { | |
View, | |
Text, | |
LinkingIOS, | |
StyleSheet, | |
} = React | |
// you might want to compile these two as standalone umd bundles | |
// using `browserify --standalone` and `derequire` | |
// until this issue is fixed: https://github.com/facebook/react-native/issues/231 | |
// and then just require the umd bundle files directly | |
var htmlparser = require('htmlparser2') | |
var entities = require('entities') | |
function htmlToElement(rawHtml, done) { | |
var handler = new htmlparser.DomHandler(function (err, dom) { | |
if (err) done(err) | |
done(null, domToElement(dom)) | |
}) | |
var parser = new htmlparser.Parser(handler) | |
parser.write(rawHtml) | |
parser.done() | |
} | |
var PARAGRAPH_BREAK = '\n\n' | |
function domToElement(dom, parent) { | |
if (!dom) return null | |
return dom.map((node, index, list) => { | |
if (node.type == 'text') { | |
return ( | |
<Text key={index} style={parent ? styles[parent.name] : null}> | |
{entities.decodeHTML(node.data)} | |
</Text> | |
) | |
} | |
if (node.type == 'tag') { | |
var touchHandler = null | |
if (node.name == 'a' && node.attribs && node.attribs.href) { | |
touchHandler = () => LinkingIOS.openURL(entities.decodeHTML(node.attribs.href)) | |
} | |
return ( | |
<Text key={index} onPress={touchHandler}> | |
{domToElement(node.children, node)} | |
{node.name == 'p' && index < list.length-1 ? PARAGRAPH_BREAK : null} | |
</Text> | |
) | |
} | |
}) | |
} | |
var boldStyle = {fontWeight: '500'} | |
var italicStyle = {fontStyle: 'italic'} | |
var codeStyle = {fontFamily: 'Menlo'} | |
var styles = StyleSheet.create({ | |
b: boldStyle, | |
strong: boldStyle, | |
i: italicStyle, | |
em: italicStyle, | |
pre: codeStyle, | |
code: codeStyle, | |
a: { | |
fontWeight: '500', | |
color: #007AFF, | |
}, | |
}) | |
var HTML = React.createClass({ | |
mixins: [React.addons.PureRenderMixin], | |
getInitialState() { | |
return {element: null} | |
}, | |
componentWillReceiveProps() { | |
if (this.state.element) return | |
this.startHtmlRender() | |
}, | |
componentDidMount() { | |
this.startHtmlRender() | |
}, | |
startHtmlRender() { | |
if (!this.props.value) return | |
if (this.renderingHtml) return | |
this.renderingHtml = true | |
htmlToElement(this.props.value, (err, element) => { | |
this.renderingHtml = false | |
if (err) return console.error(err) | |
if (this.isMounted()) this.setState({element}) | |
}) | |
}, | |
render() { | |
if (this.state.element) { | |
return <Text children={this.state.element} /> | |
} | |
return <Text /> | |
} | |
}) | |
module.exports = HTML |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Installable version: https://github.com/jsdf/react-native-htmlview