forked from sbugert/react-native-admob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RNAdMobBanner.js
89 lines (78 loc) · 2.66 KB
/
RNAdMobBanner.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
import React from 'react';
import PropTypes from 'prop-types';
import {
NativeModules,
requireNativeComponent,
View,
NativeEventEmitter,
ViewPropTypes,
} from 'react-native';
const RNBanner = requireNativeComponent('RNAdMob', AdMobBanner);
export default class AdMobBanner extends React.Component {
constructor() {
super();
this.onSizeChange = this.onSizeChange.bind(this);
this.state = {
style: {},
};
}
onSizeChange(event) {
const { height, width } = event.nativeEvent;
this.setState({ style: { width, height } });
}
render() {
const { adUnitID, testDeviceID, bannerSize, style, didFailToReceiveAdWithError } = this.props;
return (
<View style={this.props.style}>
<RNBanner
style={this.state.style}
onSizeChange={this.onSizeChange.bind(this)}
onAdViewDidReceiveAd={this.props.adViewDidReceiveAd}
onDidFailToReceiveAdWithError={(event) => didFailToReceiveAdWithError(event.nativeEvent.error)}
onAdViewWillPresentScreen={this.props.adViewWillPresentScreen}
onAdViewWillDismissScreen={this.props.adViewWillDismissScreen}
onAdViewDidDismissScreen={this.props.adViewDidDismissScreen}
onAdViewWillLeaveApplication={this.props.adViewWillLeaveApplication}
testDeviceID={testDeviceID}
adUnitID={adUnitID}
bannerSize={bannerSize} />
</View>
);
}
}
AdMobBanner.propTypes = {
style: ViewPropTypes.style,
/**
* AdMob 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
*/
bannerSize: PropTypes.string,
/**
* AdMob ad unit ID
*/
adUnitID: PropTypes.string,
/**
* Test device ID
*/
testDeviceID: PropTypes.string,
/**
* AdMob iOS library events
*/
adViewDidReceiveAd: PropTypes.func,
didFailToReceiveAdWithError: PropTypes.func,
adViewWillPresentScreen: PropTypes.func,
adViewWillDismissScreen: PropTypes.func,
adViewDidDismissScreen: PropTypes.func,
adViewWillLeaveApplication: PropTypes.func,
...ViewPropTypes,
};
AdMobBanner.defaultProps = { bannerSize: 'smartBannerPortrait', didFailToReceiveAdWithError: () => {} };