forked from jsdf/react-native-htmlview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
htmlToElement.js
160 lines (140 loc) · 4.08 KB
/
htmlToElement.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import React from 'react';
import {Text} from 'react-native';
import htmlparser from 'htmlparser2-without-node-native';
import entities from 'entities';
import AutoSizedImage from './AutoSizedImage';
const defaultOpts = {
lineBreak: '\n',
paragraphBreak: '\n\n',
bullet: '\u2022 ',
TextComponent: Text,
textComponentProps: null,
NodeComponent: Text,
nodeComponentProps: null,
};
const Img = props => {
const width =
parseInt(props.attribs['width'], 10) || parseInt(props.attribs['data-width'], 10) || 0;
const height =
parseInt(props.attribs['height'], 10) ||
parseInt(props.attribs['data-height'], 10) ||
0;
const imgStyle = {
width,
height,
};
const source = {
uri: props.attribs.src,
width,
height,
};
return <AutoSizedImage source={source} style={imgStyle} />;
};
export default function htmlToElement(rawHtml, customOpts = {}, done) {
const opts = {
...defaultOpts,
...customOpts,
};
function inheritedStyle(parent) {
if (!parent) { return null; }
const style = [opts.styles[parent.name] || {}];
return parent.parent ? style.concat(inheritedStyle(parent.parent)) : style;
}
function domToElement(dom, parent) {
if (!dom) return null;
const renderNode = opts.customRenderer;
return dom.map((node, index, list) => {
if (renderNode) {
const rendered = renderNode(
node,
index,
list,
parent,
domToElement
);
if (rendered || rendered === null) return rendered;
}
const {TextComponent} = opts;
if (node.type === 'text') {
const defaultStyle = opts.textComponentProps ? opts.textComponentProps.style : null;
const customStyle = inheritedStyle(parent);
return (
<TextComponent
{...opts.textComponentProps}
key={index}
style={[defaultStyle, customStyle]}
>
{entities.decodeHTML(node.data)}
</TextComponent>
);
}
if (node.type === 'tag') {
if (node.name === 'img') {
return <Img key={index} attribs={node.attribs} />;
}
let linkPressHandler = null;
let linkLongPressHandler = null;
if (node.name === 'a' && node.attribs && node.attribs.href) {
linkPressHandler = () =>
opts.linkHandler(entities.decodeHTML(node.attribs.href));
if (opts.linkLongPressHandler) {
linkLongPressHandler = () =>
opts.linkLongPressHandler(entities.decodeHTML(node.attribs.href));
}
}
let linebreakBefore = null;
let linebreakAfter = null;
if (opts.addLineBreaks) {
switch (node.name) {
case 'pre':
linebreakBefore = opts.lineBreak;
break;
case 'p':
if (index < list.length - 1) {
linebreakAfter = opts.paragraphBreak;
}
break;
case 'br':
case 'h1':
case 'h2':
case 'h3':
case 'h4':
case 'h5':
linebreakAfter = opts.lineBreak;
break;
}
}
let listItemPrefix = null;
if (node.name === 'li') {
if (parent.name === 'ol') {
listItemPrefix = `${index + 1}. `;
} else if (parent.name === 'ul') {
listItemPrefix = opts.bullet;
}
linebreakAfter = opts.lineBreak;
}
const {NodeComponent} = opts;
return (
<NodeComponent
{...opts.nodeComponentProps}
key={index}
onPress={linkPressHandler}
onLongPress={linkLongPressHandler}
>
{linebreakBefore}
{listItemPrefix}
{domToElement(node.children, node)}
{linebreakAfter}
</NodeComponent>
);
}
});
}
const handler = new htmlparser.DomHandler(function(err, dom) {
if (err) done(err);
done(null, domToElement(dom));
});
const parser = new htmlparser.Parser(handler);
parser.write(rawHtml);
parser.done();
}