博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
reactnative插件 html,react-native-htmlview
阅读量:6256 次
发布时间:2019-06-22

本文共 5431 字,大约阅读时间需要 18 分钟。

React Native HTMLView react-native-htmlview.svg?branch=master

A component which takes HTML content and renders it as native views, with

customisable style and handling of links, etc.

d767b53d8df4232f84f5da084d432542.png

Table of contents

Install

npm install react-native-htmlview --save

Usage

props:

value: a string of HTML content to render

onLinkPress: a function which will be called with a url when a link is pressed.

Passing this prop will override how links are handled (defaults to calling Linking.openURL(url))

onLinkLongPress: a function which will be called with a url when a link is long pressed.

The default is null.

stylesheet: a stylesheet object keyed by tag name, which will override the

styles applied to those respective tags.

renderNode: a custom function to render HTML nodes however you see fit. If

the function returns undefined (not null), the default renderer will be

used for that node. The function takes the following arguments:

node the html node as parsed by htmlparser2

index position of the node in parent node's children

siblings parent node's children (including current node)

parent parent node

defaultRenderer the default rendering implementation, so you can use the normal rendering logic for some subtree. defaultRenderer takes the following arguments:

node the node to render with the default rendering logic

parent the parent of node of node

bullet: text which is rendered before every li inside a ul

paragraphBreak: text which appears after every p element

lineBreak: text which appears after text elements which create a new line (br, headings)

addLineBreaks: when explicitly false, effectively sets paragraphBreak and lineBreak to null

NodeComponent, nodeComponentProps, RootComponent, rootComponentProps, TextComponent, textComponentProps: see Customizing things even further below.

Example

import React from 'react';

import {StyleSheet} from 'react-native';

import HTMLView from 'react-native-htmlview';

class App extends React.Component {

render() {

const htmlContent = `

`;

return (

value={htmlContent}

stylesheet={styles}

/>

);

}

}

const styles = StyleSheet.create({

a: {

fontWeight: '300',

color: '#FF3366', // make links coloured pink

},

});

Custom Link Handling

When a link is clicked, by default ReactNative.Linking.openURL is called with the

link url. You can customise what happens when a link is clicked with onLinkPress:

class App extends React.Component {

render() {

return (

value={this.props.html}

onLinkPress={(url) => console.log('clicked link:', url)}

/>

);

}

}

If you're getting the error "undefined is not an object (evaluating 'RCTLinkingManager.openURL’)” from the LinkingIOS API, try adding ‘RCTLinking' to the project's 'Linked Frameworks and Libraries’. You might have to find RCTLinking.xcodeproj in the react-native package dir and drag that into your main Xcode project first.

Custom Element Rendering

You can implement the renderNode prop to add support for unsupported element

types, or override the rendering for supported types. renderNode is a function which is called with the type and attributes of each HTML element found in the input HTML, and from this function you can return a React element to be rendered in its place. If you return null nothing will be rendered in place of this element or its children. If you return undefined (or don't return anything) then HTMLView will drop back to its default rendering for that type of HTML element.

For example, here is how you might implement the element:

function renderNode(node, index, siblings, parent, defaultRenderer) {

if (node.name == 'iframe') {

const a = node.attribs;

const iframeHtml = ``;

return (

);

}

}

const htmlContent = `

`;

class App extends React.Component {

render() {

return (

);

}

}

Alternatively, this example shows how you could disallow the element:

function renderNode(node, index, siblings, parent, defaultRenderer) {

if (node.name == 'iframe') {

return null;

}

}

const htmlContent = `

`;

class App extends React.Component {

render() {

return (

);

}

}

If you want to reuse the default renderer, you need to call it passing an array of nodes. This example shows how to replace a specific HTML tag with something different, but still process the children.

function renderNode(node, index, siblings, parent, defaultRenderer) {

if (node.name == 'mytag') {

const specialSyle = node.attribs.style

return (

{defaultRenderer(node.children, parent)}

)

}

}

const htmlContent = `

some content processed normally by the engine

`;

class App extends React.Component {

render() {

return (

);

}

}

For further understanding of the possiblities of the renderNode prop, read through htmlToElement.js. Particularly look at where renderNode is called to see how it can override what sort of React element is created in place of an element in the input HTML.

Customizing things even further

In addition to supplying a custom renderNode function, you can customize what is rendered by the built in renderNode function. Read through htmlToElement.js and note the usage of NodeComponent (for rendering HTML element nodes) and TextComponent (for rendering text strings in the HTML). Both of these components can be injected as the NodeComponent and TextComponent props to HTMLView, or alternatively they can be given extra props by passing an object as the nodeComponentProps and textComponentProps props. Finally you can also use the props RootComponent and rootComponentProps to customize the root wrapper View element that is rendered by the HTMLView in HTMLView.js.

Changelog

转载地址:http://adtsa.baihongyu.com/

你可能感兴趣的文章
深入理解Java虚拟机:JVM高级特性与最佳实践(三):内存分配与回收策略
查看>>
我的友情链接
查看>>
1.1 introduction
查看>>
Xcode的Architectures和Valid Architectures的区别
查看>>
大数据入门基础:Hadoop简介
查看>>
Confluence 6 数据库字符集编码和问题
查看>>
Confluence 6 配置白名单
查看>>
ios是什么?ios有什么特点?
查看>>
JDK 源码阅读 :ByteBuffer
查看>>
linux 命令
查看>>
【插件开发】—— 1 Eclipse插件开发导盲
查看>>
Ruby 中关于block的一些总结
查看>>
苹果Magic Trackpad2成功被谷歌团队写进去个Linux
查看>>
开发自己的 chart - 每天5分钟玩转 Docker 容器技术(167)
查看>>
漫画告诉你:区块链到底是什么?
查看>>
使用10046 event跟踪session
查看>>
互联网学院大数据分析专业欢迎加入
查看>>
JSP 缓存 OSCache使用介紹
查看>>
linux复盘:基础篇二(三剑客)
查看>>
mybatis中:association和collection的区别
查看>>