-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathRichItem.js
112 lines (102 loc) · 2.38 KB
/
RichItem.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
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { StyleSheet, View, Text, Image } from 'react-native';
import { WebView } from 'react-native-webview';
import { getSemanticColor } from '../../theme';
const styles = StyleSheet.create( {
container: {
marginBottom: 0,
marginTop: 5,
flexDirection: 'row',
},
authorName: {
lineHeight: 16,
color: getSemanticColor( 'label' ),
},
contentRight: {
flex: 1,
},
content: {
marginBottom: 15,
},
webView: {
height: 10,
backgroundColor: 'transparent',
},
authorImage: {
marginRight: 15,
width: 30,
height: 30,
borderRadius: 15,
backgroundColor: '#EEEEEE',
},
} );
const injectedJavaScript = `
window.ReactNativeWebView.postMessage( document.getElementById('text').scrollHeight );
true;
`;
export default class RichItem extends Component {
static propTypes = {
avatarUrl: PropTypes.string,
title: PropTypes.string.isRequired,
content: PropTypes.string.isRequired,
};
state = {
webViewHeight: 150,
};
onMessage = event => {
this.setState( {
webViewHeight: parseInt( event.nativeEvent.data, 10 ),
} );
};
htmlExcerpt() {
return `
<meta name="viewport" content="width = device-width" />
<style>
body {
background: ${ getSemanticColor( 'systemBackground' ) };
font-size: 15px;
line-height: 20px;
color: ${ getSemanticColor( 'secondaryLabel' ) };
font-family: sans-serif;
margin: 0;
max-width: 100%;
}
img {
max-width: 100%;
}
</style>
<div id="text">${this.props.content}</div>
`;
}
render() {
return (
<View style={ styles.container }>
{ this.props.avatarUrl ? (
<Image
style={ styles.authorImage }
source={ { uri: this.props.avatarUrl } }
/>
) : (
<View style={ styles.authorImage } />
) }
<View style={ styles.contentRight }>
<View style={ styles.authorText }>
<Text style={ styles.authorName }>{ this.props.title }</Text>
</View>
<View style={ styles.content }>
<WebView
scrollEnabled={ false }
injectedJavaScript={ injectedJavaScript }
originWhitelist={ [ '*' ] }
style={ [ styles.webView, { height: this.state.webViewHeight } ] }
source={ { html: this.htmlExcerpt() } }
automaticallyAdjustContentInsets={ true }
onMessage={ this.onMessage }
/>
</View>
</View>
</View>
);
}
}