mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
feat: add resume content callback
This commit is contained in:
parent
67194eec64
commit
4b220e44ce
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "xgplayer-ads",
|
||||
"version": "3.0.21-rc.7",
|
||||
"version": "3.0.20-alpha.9",
|
||||
"main": "dist/index.min.js",
|
||||
"module": "es/index.js",
|
||||
"typings": "es/index.d.ts",
|
||||
@ -15,7 +15,7 @@
|
||||
"publishConfig": {
|
||||
"registry": "https://registry.npmjs.org/",
|
||||
"access": "public",
|
||||
"tag": "rc"
|
||||
"tag": "alpha"
|
||||
},
|
||||
"license": "MIT",
|
||||
"unpkgFiles": [
|
||||
|
@ -45,6 +45,7 @@ export class ImaAdManager extends BaseAdManager {
|
||||
this.displayContainer = null
|
||||
this.adsLoader = null
|
||||
this.adsManager = null
|
||||
this._resumeCallback = null
|
||||
}
|
||||
|
||||
async init () {
|
||||
@ -70,12 +71,16 @@ export class ImaAdManager extends BaseAdManager {
|
||||
|
||||
destroy () {
|
||||
super.destroy()
|
||||
|
||||
this.reset()
|
||||
this.displayContainer.destroy()
|
||||
this._removeMediaEvents()
|
||||
this._destroyLoader()
|
||||
}
|
||||
|
||||
set resumeCallback (resumeCallbackFunc) {
|
||||
this._resumeCallback = resumeCallbackFunc
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
@ -468,6 +473,12 @@ export class ImaAdManager extends BaseAdManager {
|
||||
// Fires when media content should be resumed.
|
||||
// This usually happens when an ad finishes or collapses.
|
||||
case google.ima.AdEvent.Type.CONTENT_RESUME_REQUESTED: {
|
||||
if (this._resumeCallback) {
|
||||
const { canResume } = this._resumeCallback()
|
||||
if (!canResume) {
|
||||
break
|
||||
}
|
||||
}
|
||||
this._resumeContent()
|
||||
this.emit(ADEvents.IMA_CONTENT_RESUME_REQUESTED, {
|
||||
ad
|
||||
|
@ -93,7 +93,7 @@ export class AdsPlugin extends Plugin {
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_initImaAd () {
|
||||
async _initImaAd () {
|
||||
this.csManager = new ImaAdManager({
|
||||
plugin: this,
|
||||
config: this.config.ima,
|
||||
@ -121,7 +121,8 @@ export class AdsPlugin extends Plugin {
|
||||
this.uiManager.hideAdUI()
|
||||
})
|
||||
|
||||
this.csManager.init()
|
||||
await this.csManager.init()
|
||||
return this.csManager
|
||||
}
|
||||
|
||||
requestAds () {
|
||||
|
Loading…
x
Reference in New Issue
Block a user