blob: ee8a6cd81c8697ca626ff73ae3aa7d2d6ec09db9 (
plain) (
tree)
|
|
import { VideoJSComponentInterface, videojsUntyped } from './peertube-videojs-typings'
const Component: VideoJSComponentInterface = videojsUntyped.getComponent('Component')
class PeerTubeLoadProgressBar extends Component {
constructor (player: any, options: any) {
super(player, options)
this.partEls_ = []
this.on(player, 'progress', this.update)
}
createEl () {
return super.createEl('div', {
className: 'vjs-load-progress',
innerHTML: `<span class="vjs-control-text"><span>${this.localize('Loaded')}</span>: 0%</span>`
})
}
dispose () {
this.partEls_ = null
super.dispose()
}
update () {
const torrent = this.player().peertube().getTorrent()
if (!torrent) return
this.el_.style.width = (torrent.progress * 100) + '%'
}
}
Component.registerComponent('PeerTubeLoadProgressBar', PeerTubeLoadProgressBar)
|