PeerTube/client/src/assets/player/shared/bezels/pause-bezel.ts

77 lines
2.1 KiB
TypeScript
Raw Normal View History

2020-04-21 11:02:28 +02:00
import videojs from 'video.js'
2022-03-14 14:28:20 +01:00
import { isMobile } from '@root-helpers/web-browser'
2020-01-28 17:29:50 +01:00
function getPauseBezel () {
return `
<div class="vjs-bezels-pause">
<div class="vjs-bezel" role="status" aria-label="Pause">
<div class="vjs-bezel-icon">
<svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%">
<use class="vjs-svg-shadow" xlink:href="#vjs-id-1"></use>
<path class="vjs-svg-fill" d="M 12,26 16,26 16,10 12,10 z M 21,26 25,26 25,10 21,10 z" id="vjs-id-1"></path>
</svg>
</div>
</div>
</div>
`
}
function getPlayBezel () {
return `
<div class="vjs-bezels-play">
<div class="vjs-bezel" role="status" aria-label="Play">
<div class="vjs-bezel-icon">
<svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%">
<use class="vjs-svg-shadow" xlink:href="#vjs-id-2"></use>
<path class="vjs-svg-fill" d="M 12,26 18.5,22 18.5,14 12,10 z M 18.5,22 25,18 25,18 18.5,14 z" id="ytp-id-2"></path>
</svg>
</div>
</div>
</div>
`
}
const Component = videojs.getComponent('Component')
class PauseBezel extends Component {
container: HTMLDivElement
2020-04-17 11:20:12 +02:00
constructor (player: videojs.Player, options?: videojs.ComponentOptions) {
2020-01-28 17:29:50 +01:00
super(player, options)
2022-01-11 11:26:35 +01:00
// Hide bezels on mobile since we already have our mobile overlay
if (isMobile()) return
2020-01-28 17:29:50 +01:00
player.on('pause', (_: any) => {
if (player.seeking() || player.ended()) return
this.container.innerHTML = getPauseBezel()
this.showBezel()
})
player.on('play', (_: any) => {
if (player.seeking()) return
this.container.innerHTML = getPlayBezel()
this.showBezel()
})
}
createEl () {
this.container = super.createEl('div', {
className: 'vjs-bezels-content'
}) as HTMLDivElement
this.container.style.display = 'none'
return this.container
}
showBezel () {
this.container.style.display = 'inherit'
setTimeout(() => {
this.container.style.display = 'none'
}, 500) // matching the animation duration
}
}
videojs.registerComponent('PauseBezel', PauseBezel)