aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/assets/player/stats/stats-plugin.ts
blob: 8aad80e8aa6e49385a01a0234abf41aeb6b5c54c (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                          
                                                                   














                                                   

                         




                                                    
import videojs from 'video.js'
import { StatsCard, StatsCardOptions } from './stats-card'

const Plugin = videojs.getPlugin('plugin')

class StatsForNerdsPlugin extends Plugin {
  private statsCard: StatsCard

  constructor (player: videojs.Player, options: StatsCardOptions) {
    const settings = {
      ...options
    }

    super(player)

    this.player.ready(() => {
      player.addClass('vjs-stats-for-nerds')
    })

    this.statsCard = new StatsCard(player, options)

    player.addChild(this.statsCard, settings)
  }

  show () {
    this.statsCard.show()
  }
}

videojs.registerPlugin('stats', StatsForNerdsPlugin)
export { StatsForNerdsPlugin }