forked from cnjon/react-native-pdf-view
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPDFView.android.js
More file actions
35 lines (29 loc) · 779 Bytes
/
PDFView.android.js
File metadata and controls
35 lines (29 loc) · 779 Bytes
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
'use strict';
import React, { Component } from 'react';
import { requireNativeComponent, View } from 'react-native';
class PDFView extends Component {
constructor(props) {
super(props);
this._onChange = this._onChange.bind(this);
}
setNativeProps(nativeProps) {
this._root.setNativeProps(nativeProps);
}
_onChange(event: Event) {
this.props.onLoadComplete &&
this.props.onLoadComplete(Number(event.nativeEvent.message));
}
render() {
return (
<PDFCustomView
ref={component => (this._root = component)}
{...this.props}
onChange={this._onChange}
/>
);
}
}
var PDFCustomView = requireNativeComponent('RCTPDFViewAndroid', PDFView, {
nativeOnly: { onChange: true },
});
export default PDFView;