-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathAdsController.js
112 lines (99 loc) · 3.92 KB
/
AdsController.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
111
112
//*=================================================*//
//*-------------------------------------------------*//
//*----------------- Facebook ----------------------*//
//*--------------- Instant Game --------------------*//
//*--------------- AdsController -------------------*//
//*-------------- By Mohammed Cha ------------------*//
//*-------------- Re-Skinning grp ------------------*//
//*-------------------------------------------------*//
//*=================================================*//
const INTERSTITIAL_PLACEMENT_ID = 'xxxxxxxxxxxx_xxxxxxxxxxxx'; //*-------- Interstitial -------*//
const REWARDED_PLACEMENT_ID = 'xxxxxxxxxxxx_xxxxxxxxxxxx'; //*-------- Rewarded Video -----*//
// LoadRewarded();
// LoadInter();
// ShowRewarded();
// ShowInter();
//*=================================================*//
//*-------------------------------------------------*//
//*----------------- Facebook ----------------------*//
//*--------------- Instant Game --------------------*//
//*--------------- AdsController -------------------*//
//*-------------- By Mohammed Cha ------------------*//
//*-------------- Re-Skinning grp ------------------*//
//*-------------------------------------------------*//
//*=================================================*//
var preloadedRewardedVideo;
var preloadedInterstitial;
//*=================================================*//
//*-------- Interstitial ADS By Mohammed Cha -------*//
//*=================================================*//
//*-------- Load Interstitial --------*//
function LoadInter() {
var supportedAPIs = FBInstant.getSupportedAPIs();
if (supportedAPIs.includes('getInterstitialAdAsync')){
preloadedInterstitial = null;
FBInstant.getInterstitialAdAsync(
INTERSTITIAL_PLACEMENT_ID,
).then(function(interstitial) {
preloadedInterstitial = interstitial;
return preloadedInterstitial.loadAsync();
}).then(function() {
console.log('Interstitial preloaded')
}).catch(function(err){
console.error('Interstitial failed to preload: ' + err.message);
});
} else {
displayError('Ads not supported in this session');
}
}
//*-------- Show Interstitial --------*//
function ShowInter() {
preloadedInterstitial.showAsync()
.then(function () {
console.log('Interstitial ad finished successfully');
})
.catch(function (e) {
console.error(e.message);
});
}
//*=================================================*//
//*-------- Rewarded Video ADS By Mohammed Cha -----*//
//*=================================================*//
//*-------- Load Rewarded --------*//
function LoadRewarded() {
var supportedAPIs = FBInstant.getSupportedAPIs();
if (supportedAPIs.includes('getRewardedVideoAsync')){
preloadedRewardedVideo = null;
FBInstant.getRewardedVideoAsync(
REWARDED_PLACEMENT_ID
).then(function(rewarded) {
preloadedRewardedVideo = rewarded;
return preloadedRewardedVideo.loadAsync();
}).then(function() {
console.log('Rewarded Video preloaded')
}).catch(function(err){
console.error('Rewarded Video failed to preload: ' + err.message);
});
} else {
displayError('Ads not supported in this session');
}
}
//*-------- Show Rewarded --------*//
function ShowRewarded() {
preloadedRewardedVideo.showAsync()
.then(function () {
console.log('Rewarded Video ad finished successfully');
})
.catch(function (e) {
console.error(e.message);
});
}
//*=================================================*//
//*-------------------------------------------------*//
//*----------------- Facebook ----------------------*//
//*--------------- Instant Game --------------------*//
//*--------------- AdsController -------------------*//
//*-------------- By Mohammed Cha ------------------*//
//*-------------- Re-Skinning grp ------------------*//
//*-------------------------------------------------*//
//*=================================================*//