-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
110 lines (99 loc) · 2.94 KB
/
index.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
import React, { Component } from "react";
import {
requireNativeComponent,
View,
StyleSheet,
} from "react-native";
import PropTypes from "prop-types";
import { ViewPropTypes } from 'deprecated-react-native-prop-types';
class RNGoogleIMA extends Component {
_assignRoot = (component) => {
this._root = component;
};
playFallbackContent = () => {
this._root.setNativeProps({ playFallbackContent: true });
};
componentWillUnmount() {
this._root.setNativeProps({ componentWillUnmount: true });
}
render() {
const {
children,
enabled = true,
contentSourceID = null,
videoID = null,
assetKey = null,
imaSettings = null,
adTagParameters = null,
onAdsLoaderLoaded = null,
onAdsLoaderFailed = null,
onStreamManagerAdEvent = null,
onStreamManagerAdProgress = null,
onStreamManagerAdError = null,
onAdsManagerAdEvent = null,
onAdsManagerAdError = null,
adContainerStyle = null,
style,
} = this.props;
return (
<RCTRNGoogleIMA
ref={this._assignRoot}
enabled={enabled}
style={style}
contentSourceID={contentSourceID}
videoID={videoID}
assetKey={assetKey}
imaSettings={imaSettings}
adTagParameters={adTagParameters}
onAdsLoaderLoaded={onAdsLoaderLoaded}
onAdsLoaderFailed={onAdsLoaderFailed}
onStreamManagerAdEvent={onStreamManagerAdEvent}
onStreamManagerAdProgress={onStreamManagerAdProgress}
onStreamManagerAdError={onStreamManagerAdError}
onAdsManagerAdEvent={onAdsManagerAdEvent}
onAdsManagerAdError={onAdsManagerAdError}
pointerEvents="box-none"
>
<View
testID="adContainerView"
nativeID="adContainerView"
style={[styles.adContainerStyle, adContainerStyle]}
// pointerEvents="box-none"
/>
{children}
</RCTRNGoogleIMA>
);
}
}
RNGoogleIMA.propTypes = {
enabled: PropTypes.bool,
contentSourceID: PropTypes.string,
videoID: PropTypes.string,
assetKey: PropTypes.string,
adTagParameters: PropTypes.objectOf(PropTypes.string),
imaSettings: PropTypes.objectOf(PropTypes.bool),
style: ViewPropTypes.style,
adContainerStyle: ViewPropTypes.style,
onAdsLoaderLoaded: PropTypes.func,
onAdsLoaderFailed: PropTypes.func,
onStreamManagerAdEvent: PropTypes.func,
onStreamManagerAdProgress: PropTypes.func,
onStreamManagerAdError: PropTypes.func,
onAdsManagerAdEvent: PropTypes.func,
onAdsManagerAdError: PropTypes.func,
};
// const RCTRNGoogleIMA = requireNativeComponent('RNGoogleIMA', null);
const styles = StyleSheet.create({
adContainerStyle: {
...StyleSheet.absoluteFillObject,
borderWidth: 1,
borderColor: "transparent",
},
});
const RCTRNGoogleIMA = requireNativeComponent("RNGoogleIMA", RNGoogleIMA, {
nativeOnly: {
playFallbackContent: true,
componentWillUnmount: true,
},
});
export default RNGoogleIMA;