1
0
Fork 0

Add next video button to the player

This commit is contained in:
Rigel Kent 2019-12-19 21:34:45 +01:00
parent c5c09c1e50
commit 1dc240a948
No known key found for this signature in database
GPG Key ID: 5E53E96A494E452F
5 changed files with 92 additions and 15 deletions

View File

@ -642,6 +642,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
const options: PeertubePlayerManagerOptions = {
common: {
autoplay: this.isAutoplay(),
nextVideo: () => this.zone.run(() => this.autoplayNext()),
playerElement: this.playerElement,
onPlayerElementChange: (element: HTMLVideoElement) => this.playerElement = element,

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="24px" height="24px" viewBox="0 0 36 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path fill="white" d="M 12,24 20.5,18 12,12 V 24 z M 22,12 v 12 h 2 V 12 h -2 z"></path>
</svg>

After

Width:  |  Height:  |  Size: 283 B

View File

@ -8,6 +8,7 @@ import 'videojs-contrib-quality-levels'
import './upnext/upnext-plugin'
import './bezels/bezels-plugin'
import './peertube-plugin'
import './videojs-components/next-video-button'
import './videojs-components/peertube-link-button'
import './videojs-components/resolution-menu-button'
import './videojs-components/settings-menu-button'
@ -62,6 +63,7 @@ export interface CommonOptions extends CustomizationOptions {
onPlayerElementChange: (element: HTMLVideoElement) => void
autoplay: boolean
nextVideo?: Function
videoDuration: number
enableHotkeys: boolean
inactivityTimeout: number
@ -233,7 +235,8 @@ export class PeertubePlayerManager {
children: this.getControlBarChildren(mode, {
captions: commonOptions.captions,
peertubeLink: commonOptions.peertubeLink,
theaterButton: commonOptions.theaterButton
theaterButton: commonOptions.theaterButton,
nextVideo: commonOptions.nextVideo
})
}
}
@ -329,7 +332,8 @@ export class PeertubePlayerManager {
private static getControlBarChildren (mode: PlayerMode, options: {
peertubeLink: boolean
theaterButton: boolean,
captions: boolean
captions: boolean,
nextVideo?: Function
}) {
const settingEntries = []
const loadProgressBar = mode === 'webtorrent' ? 'peerTubeLoadProgressBar' : 'loadProgressBar'
@ -340,7 +344,18 @@ export class PeertubePlayerManager {
settingEntries.push('resolutionMenuButton')
const children = {
'playToggle': {},
'playToggle': {}
}
if (options.nextVideo) {
Object.assign(children, {
'nextVideoButton': {
handler: options.nextVideo
}
})
}
Object.assign(children, {
'currentTimeDisplay': {},
'timeDivider': {},
'durationDisplay': {},
@ -370,7 +385,7 @@ export class PeertubePlayerManager {
},
entries: settingEntries
}
}
})
if (options.peertubeLink === true) {
Object.assign(children, {

View File

@ -0,0 +1,36 @@
import { VideoJSComponentInterface, videojsUntyped } from '../peertube-videojs-typings'
// FIXME: something weird with our path definition in tsconfig and typings
// @ts-ignore
import { Player } from 'video.js'
const Button: VideoJSComponentInterface = videojsUntyped.getComponent('Button')
class NextVideoButton extends Button {
constructor (player: Player, options: any) {
super(player, options)
}
createEl () {
const button = videojsUntyped.dom.createEl('button', {
className: 'vjs-next-video'
})
const nextIcon = videojsUntyped.dom.createEl('span', {
className: 'icon icon-next'
})
button.appendChild(nextIcon)
button.title = this.player_.localize('Next video')
return button
}
handleClick () {
this.options_.handler()
}
}
NextVideoButton.prototype.controlText_ = 'Next video'
NextVideoButton.registerComponent('NextVideoButton', NextVideoButton)

View File

@ -223,7 +223,8 @@ body {
cursor: pointer;
font-size: $font-size;
margin-right: 5px;
margin-left: 1em;
width: 3em;
}
.vjs-time-control {
@ -233,6 +234,7 @@ body {
font-size: $font-size;
display: inline-block;
padding: 0;
margin-left: .5em;
.vjs-current-time-display {
line-height: calc(#{$control-bar-height} + 1px);
@ -262,6 +264,7 @@ body {
width: 100%;
line-height: $control-bar-height;
text-align: right;
margin-right: 6px;
.vjs-peertube-displayed {
display: block;
@ -280,16 +283,6 @@ body {
}
.icon {
display: inline-block;
width: 15px;
height: 15px;
background-size: contain;
vertical-align: middle;
background-repeat: no-repeat;
margin-right: 6px;
position: relative;
top: -1px;
&.icon-download {
background-image: url('#{$assets-path}/player/images/arrow-down.svg');
}
@ -300,6 +293,34 @@ body {
}
}
.vjs-next-video {
line-height: $control-bar-height;
text-align: right;
.icon {
&.icon-next {
mask-image: url('#{$assets-path}/player/images/next.svg');
background-color: white;
mask-size: cover;
transform: scale(2.2);
}
}
}
.vjs-peertube,
.vjs-next-video {
.icon {
display: inline-block;
width: 15px;
height: 15px;
background-size: contain;
vertical-align: middle;
background-repeat: no-repeat;
position: relative;
top: -1px;
}
}
.vjs-playback-rate {
font-size: 10px;
width: 37px !important;