aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/assets/player/peertube-link-button.ts
blob: a47adc2dba5e928fcbeabe1a84515c3221eac2ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { VideoJSComponentInterface, videojsUntyped } from './peertube-videojs-typings'

const Button: VideoJSComponentInterface = videojsUntyped.getComponent('Button')
class PeerTubeLinkButton extends Button {

  createEl () {
    return this.buildElement()
  }

  updateHref () {
    const currentTime = Math.floor(this.player().currentTime())
    this.el().setAttribute('href', this.buildHref(currentTime))
  }

  handleClick () {
    this.player_.pause()
  }

  private buildElement () {
    const el = videojsUntyped.dom.createEl('a', {
      href: this.buildHref(),
      innerHTML: 'PeerTube',
      title: 'Go to the video page',
      className: 'vjs-peertube-link',
      target: '_blank'
    })

    el.addEventListener('mouseenter', () => this.updateHref())

    return el
  }

  private buildHref (time?: number) {
    let href = window.location.href.replace('embed', 'watch')
    if (time) href += '?start=' + time

    return href
  }
}
Button.registerComponent('PeerTubeLinkButton', PeerTubeLinkButton)