forked from sbugert/react-native-admob
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRNPublisherBanner.js
More file actions
132 lines (112 loc) · 3.26 KB
/
RNPublisherBanner.js
File metadata and controls
132 lines (112 loc) · 3.26 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
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
import React, { Component } from 'react';
import {
requireNativeComponent,
UIManager,
findNodeHandle,
ViewPropTypes,
} from 'react-native';
import { string, func, arrayOf } from 'prop-types';
import { createErrorFromErrorData } from './utils';
class PublisherBanner extends Component {
constructor() {
super();
this.handleSizeChange = this.handleSizeChange.bind(this);
this.handleAppEvent = this.handleAppEvent.bind(this);
this.handleAdFailedToLoad = this.handleAdFailedToLoad.bind(this);
this.state = {};
}
static getDerivedStateFromProps = (props: IProps, state: IState) => {
return {
...state,
style: {
width: props.width,
height: props.height,
},
};
};
componentDidMount() {
this.loadBanner();
}
loadBanner() {
UIManager.dispatchViewManagerCommand(
findNodeHandle(this._bannerView),
UIManager.getViewManagerConfig('RNDFPBannerView').Commands.loadBanner,
null
);
}
handleSizeChange(event) {
const { height, width } = event.nativeEvent;
if (height === this.state.style.height && width === this.state.style.width) {
return;
}
this.setState({ style: { width, height } });
if (this.props.onSizeChange) {
this.props.onSizeChange({ width, height });
}
}
handleAppEvent(event) {
if (this.props.onAppEvent) {
const { name, info } = event.nativeEvent;
this.props.onAppEvent({ name, info });
}
}
handleAdFailedToLoad(event) {
if (this.props.onAdFailedToLoad) {
this.props.onAdFailedToLoad(createErrorFromErrorData(event.nativeEvent.error));
}
}
render() {
return (
<RNDFPBannerView
{...this.props}
style={[this.props.style, this.state.style]}
onSizeChange={this.handleSizeChange}
onAdFailedToLoad={this.handleAdFailedToLoad}
onAppEvent={this.handleAppEvent}
ref={el => (this._bannerView = el)}
/>
);
}
}
PublisherBanner.simulatorId = 'SIMULATOR';
PublisherBanner.propTypes = {
...ViewPropTypes,
/**
* DFP iOS library banner size constants
* (https://developers.google.com/admob/ios/banner)
* banner (320x50, Standard Banner for Phones and Tablets)
* largeBanner (320x100, Large Banner for Phones and Tablets)
* mediumRectangle (300x250, IAB Medium Rectangle for Phones and Tablets)
* fullBanner (468x60, IAB Full-Size Banner for Tablets)
* leaderboard (728x90, IAB Leaderboard for Tablets)
* smartBannerPortrait (Screen width x 32|50|90, Smart Banner for Phones and Tablets)
* smartBannerLandscape (Screen width x 32|50|90, Smart Banner for Phones and Tablets)
*
* banner is default
*/
adSize: string,
/**
* Optional array specifying all valid sizes that are appropriate for this slot.
*/
validAdSizes: arrayOf(string),
/**
* DFP ad unit ID
*/
adUnitID: string,
/**
* Array of test devices. Use PublisherBanner.simulatorId for the simulator
*/
testDevices: arrayOf(string),
onSizeChange: func,
/**
* DFP library events
*/
onAdLoaded: func,
onAdFailedToLoad: func,
onAdOpened: func,
onAdClosed: func,
onAdLeftApplication: func,
onAppEvent: func,
};
const RNDFPBannerView = requireNativeComponent('RNDFPBannerView', PublisherBanner);
export default PublisherBanner;