blob: 54d802732573d0fdde2a17f9ad99facd2b4472c4 (
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
41
42
43
|
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) {
if (window.location.search) href += '&start=' + time
else href += '?start=' + time
}
return href
}
}
Button.registerComponent('PeerTubeLinkButton', PeerTubeLinkButton)
|