feat: add resume content callback

This commit is contained in:
陈泳瑾 2024-11-25 17:38:17 +08:00
parent 67194eec64
commit 4b220e44ce
3 changed files with 17 additions and 5 deletions

View File

@ -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": [

View File

@ -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

View File

@ -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 () {