chore: (xgplayer-flv.js) open eslint

This commit is contained in:
王伟 2024-03-18 16:53:56 +08:00 committed by xiyuyizhi
parent da7de82517
commit f43b9fbccb
2 changed files with 11 additions and 13 deletions

View File

@ -9,8 +9,6 @@ examples/*
jest.config.js jest.config.js
jest.setup.js jest.setup.js
babel.config.js babel.config.js
packages/xgplayer-flv.js/*
packages/xgplayer-hls.js/*
packages/xgplayer-shaka/* packages/xgplayer-shaka/*
packages/xgplayer-helper-transmuxers/* packages/xgplayer-helper-transmuxers/*
packages/xgplayer-helper-utils/* packages/xgplayer-helper-utils/*

View File

@ -6,28 +6,28 @@ try {
} catch (e) {} } catch (e) {}
class FlvJsPlugin extends BasePlugin { class FlvJsPlugin extends BasePlugin {
static get isSupported() { static get isSupported () {
return Flv.isSupported return Flv.isSupported
} }
static get pluginName() { static get pluginName () {
return 'FlvJsPlugin' return 'FlvJsPlugin'
} }
static get defaultConfig() { static get defaultConfig () {
return { return {
mediaDataSource: { type: 'flv' }, mediaDataSource: { type: 'flv' },
flvConfig: {} flvConfig: {}
} }
} }
beforePlayerInit() { beforePlayerInit () {
if (this.playerConfig.url) { if (this.playerConfig.url) {
this.flvLoad(this.playerConfig.url) this.flvLoad(this.playerConfig.url)
} }
} }
afterCreate() { afterCreate () {
const { player } = this const { player } = this
this.flv = null this.flv = null
player.video.addEventListener('contextmenu', function (e) { player.video.addEventListener('contextmenu', function (e) {
@ -62,7 +62,7 @@ class FlvJsPlugin extends BasePlugin {
} }
} }
destroy() { destroy () {
const { player } = this const { player } = this
this.destroyInstance() this.destroyInstance()
BasePlugin.defineGetterOrSetter(player, { BasePlugin.defineGetterOrSetter(player, {
@ -79,7 +79,7 @@ class FlvJsPlugin extends BasePlugin {
}) })
} }
destroyInstance() { destroyInstance () {
if (!this.flv) { if (!this.flv) {
return return
} }
@ -91,7 +91,7 @@ class FlvJsPlugin extends BasePlugin {
this.flv = null this.flv = null
} }
createInstance(flv) { createInstance (flv) {
const { player } = this const { player } = this
if (!flv) { if (!flv) {
return return
@ -123,7 +123,7 @@ class FlvJsPlugin extends BasePlugin {
}) })
} }
flvLoad(newUrl) { flvLoad (newUrl) {
const mediaDataSource = this.config.mediaDataSource const mediaDataSource = this.config.mediaDataSource
mediaDataSource.segments = [ mediaDataSource.segments = [
{ {
@ -145,7 +145,7 @@ class FlvJsPlugin extends BasePlugin {
this.flvLoadMds(mediaDataSource) this.flvLoadMds(mediaDataSource)
} }
flvLoadMds(mediaDataSource) { flvLoadMds (mediaDataSource) {
const { player } = this const { player } = this
if (typeof this.flv !== 'undefined') { if (typeof this.flv !== 'undefined') {
this.destroyInstance() this.destroyInstance()
@ -156,7 +156,7 @@ class FlvJsPlugin extends BasePlugin {
this.flv.load() this.flv.load()
} }
switchURL(url) { switchURL (url) {
const { player, playerConfig } = this const { player, playerConfig } = this
let curTime = 0 let curTime = 0
if (!playerConfig.isLive) { if (!playerConfig.isLive) {