forked from bradoyler/newswatch-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVideoWebView.js
More file actions
80 lines (71 loc) · 1.98 KB
/
VideoWebView.js
File metadata and controls
80 lines (71 loc) · 1.98 KB
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
'use strict';
var moment = require('moment');
var React = require('react-native');
var {
Text,
StyleSheet,
View,
WebView,
} = React;
var ViewVideo = React.createClass({
getInitialState: function() {
return {
status: 'No Page Loaded',
backButtonEnabled: false,
forwardButtonEnabled: false,
loading: true,
};
},
render: function() {
var pubDate = moment(this.props.video.publishedAt).fromNow(false);
return (
<View style={styles.container}>
<Text style={[styles.noResultsText, styles.centerText]}>
{pubDate} via {this.props.video.channelTitle} | {this.props.video.stats.viewCount} views
</Text>
<WebView
style={styles.frame}
url={this.props.url}
renderLoading={this.renderLoading}
renderError={this.renderError}
automaticallyAdjustContentInsets={false}
/>
</View>
);
},
renderLoading: function () {
console.log('## webView: loading()');
return (
<View style={[styles.container, styles.centerText]}>
<Text style={styles.noResultsText}>Loading video...</Text>
</View>
);
},
renderError: function () {
return (
<View style={[styles.container, styles.centerText]}>
<Text style={styles.noResultsText}>Video not found - 404, {this.props.url}</Text>
</View>
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#cccccc',
flexDirection: 'column'
},
centerText: {
marginBottom:5,
textAlign: 'center',
},
noResultsText: {
marginTop: 70,
marginBottom:0,
color: '#000000',
},
frame: {
marginTop:0
}
});
module.exports = ViewVideo;