react-native-google-mobile-ads
Version:
React Native Google Mobile Ads is an easy way to monetize mobile apps with targeted, in-app advertising.
115 lines (113 loc) • 4.56 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.InterstitialAd = void 0;
var _common = require("../common");
var _validateAdRequestOptions = require("../validateAdRequestOptions");
var _MobileAd = require("./MobileAd");
var _NativeInterstitialModule = _interopRequireDefault(require("../specs/modules/NativeInterstitialModule"));
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
/*
* Copyright (c) 2016-present Invertase Limited & Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this library except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
/**
* A class for interacting and showing Interstitial Ads.
*
* An Interstitial advert can be pre-loaded and shown at a suitable point in your apps flow, such as at the end of a level
* in a game. An Interstitial is a full screen advert, laid on-top of your entire application which the user can interact with.
* Interactions are passed back via events which should be handled accordingly inside of your app.
*
* #### Example
*
* First create a new Interstitial instance, passing in your Ad Unit ID from the Google Mobile Ads configuration console, and any additional
* request options. The example below will present a test advert, and only request a non-personalized ad.
*
* ```js
* import { InterstitialAd, TestIds } from 'react-native-google-mobile-ads';
*
* const interstitial = InterstitialAd.createForAdRequest(TestIds.INTERSTITIAL, {
* requestNonPersonalizedAdsOnly: true,
* });
* ```
*
* Each advert needs to be loaded from Google Mobile Ads before being shown. It is recommended this is performed before the user
* reaches the checkpoint to show the advert, so it's ready to go. Before loading the advert, we need to setup
* event listeners to listen for updates from Google Mobile Ads, such as advert loaded or failed to load.
*
* Event types match the `AdEventType` interface. Once the advert has loaded, we can trigger it to show:
*
* ```js
* import { AdEventType } from 'react-native-google-mobile-ads';
*
* interstitialAd.addAdEventListener(AdEventType.Loaded, () => {
* interstitialAd.show();
* });
*
* interstitial.load();
* ```
*
* The advert will be presented to the user, and several more events can be triggered such as the user clicking the
* advert or closing it.
*/
class InterstitialAd extends _MobileAd.MobileAd {
static _interstitialRequest = 0;
/**
* Creates a new InterstitialAd instance.
*
* #### Example
*
* ```js
* import { InterstitialAd, AdEventType, TestIds } from 'react-native-google-mobile-ads';
*
* const interstitialAd = await InterstitialAd.createForAdRequest(TestIds.INTERSTITIAL, {
* requestAgent: 'CoolAds',
* });
*
* interstitialAd.addAdEventListener(AdEventType.Loaded, () => {
* interstitialAd.show();
* });
*
* interstitialAd.load();
* ```
*
* @param adUnitId The Ad Unit ID for the Interstitial. You can find this on your Google Mobile Ads dashboard.
* @param requestOptions Optional RequestOptions used to load the ad.
*/
static createForAdRequest(adUnitId, requestOptions) {
if (!(0, _common.isString)(adUnitId)) {
throw new Error("InterstitialAd.createForAdRequest(*) 'adUnitId' expected an string value.");
}
let options = {};
try {
options = (0, _validateAdRequestOptions.validateAdRequestOptions)(requestOptions);
} catch (e) {
if (e instanceof Error) {
throw new Error(`InterstitialAd.createForAdRequest(_, *) ${e.message}.`);
}
}
const requestId = InterstitialAd._interstitialRequest++;
return new InterstitialAd('interstitial', requestId, adUnitId, _NativeInterstitialModule.default.interstitialLoad, _NativeInterstitialModule.default.interstitialShow, options);
}
addAdEventsListener(listener) {
return this._addAdEventsListener(listener);
}
addAdEventListener(type, listener) {
return this._addAdEventListener(type, listener);
}
}
exports.InterstitialAd = InterstitialAd;
//# sourceMappingURL=InterstitialAd.js.map
;