mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-04 10:32:43 +08:00
chore: (xgplayer-flv.js) open eslint
This commit is contained in:
parent
da7de82517
commit
f43b9fbccb
@ -9,8 +9,6 @@ examples/*
|
||||
jest.config.js
|
||||
jest.setup.js
|
||||
babel.config.js
|
||||
packages/xgplayer-flv.js/*
|
||||
packages/xgplayer-hls.js/*
|
||||
packages/xgplayer-shaka/*
|
||||
packages/xgplayer-helper-transmuxers/*
|
||||
packages/xgplayer-helper-utils/*
|
||||
|
@ -6,28 +6,28 @@ try {
|
||||
} catch (e) {}
|
||||
|
||||
class FlvJsPlugin extends BasePlugin {
|
||||
static get isSupported() {
|
||||
static get isSupported () {
|
||||
return Flv.isSupported
|
||||
}
|
||||
|
||||
static get pluginName() {
|
||||
static get pluginName () {
|
||||
return 'FlvJsPlugin'
|
||||
}
|
||||
|
||||
static get defaultConfig() {
|
||||
static get defaultConfig () {
|
||||
return {
|
||||
mediaDataSource: { type: 'flv' },
|
||||
flvConfig: {}
|
||||
}
|
||||
}
|
||||
|
||||
beforePlayerInit() {
|
||||
beforePlayerInit () {
|
||||
if (this.playerConfig.url) {
|
||||
this.flvLoad(this.playerConfig.url)
|
||||
}
|
||||
}
|
||||
|
||||
afterCreate() {
|
||||
afterCreate () {
|
||||
const { player } = this
|
||||
this.flv = null
|
||||
player.video.addEventListener('contextmenu', function (e) {
|
||||
@ -62,7 +62,7 @@ class FlvJsPlugin extends BasePlugin {
|
||||
}
|
||||
}
|
||||
|
||||
destroy() {
|
||||
destroy () {
|
||||
const { player } = this
|
||||
this.destroyInstance()
|
||||
BasePlugin.defineGetterOrSetter(player, {
|
||||
@ -79,7 +79,7 @@ class FlvJsPlugin extends BasePlugin {
|
||||
})
|
||||
}
|
||||
|
||||
destroyInstance() {
|
||||
destroyInstance () {
|
||||
if (!this.flv) {
|
||||
return
|
||||
}
|
||||
@ -91,7 +91,7 @@ class FlvJsPlugin extends BasePlugin {
|
||||
this.flv = null
|
||||
}
|
||||
|
||||
createInstance(flv) {
|
||||
createInstance (flv) {
|
||||
const { player } = this
|
||||
if (!flv) {
|
||||
return
|
||||
@ -123,7 +123,7 @@ class FlvJsPlugin extends BasePlugin {
|
||||
})
|
||||
}
|
||||
|
||||
flvLoad(newUrl) {
|
||||
flvLoad (newUrl) {
|
||||
const mediaDataSource = this.config.mediaDataSource
|
||||
mediaDataSource.segments = [
|
||||
{
|
||||
@ -145,7 +145,7 @@ class FlvJsPlugin extends BasePlugin {
|
||||
this.flvLoadMds(mediaDataSource)
|
||||
}
|
||||
|
||||
flvLoadMds(mediaDataSource) {
|
||||
flvLoadMds (mediaDataSource) {
|
||||
const { player } = this
|
||||
if (typeof this.flv !== 'undefined') {
|
||||
this.destroyInstance()
|
||||
@ -156,7 +156,7 @@ class FlvJsPlugin extends BasePlugin {
|
||||
this.flv.load()
|
||||
}
|
||||
|
||||
switchURL(url) {
|
||||
switchURL (url) {
|
||||
const { player, playerConfig } = this
|
||||
let curTime = 0
|
||||
if (!playerConfig.isLive) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user