]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/peertube-player.ts
Fix resume video after peertube embed link click
[github/Chocobozzz/PeerTube.git] / client / src / assets / player / peertube-player.ts
CommitLineData
c6352f2c
C
1import { VideoFile } from '../../../../shared/models/videos'
2
3import 'videojs-hotkeys'
c7b0dacb 4import 'videojs-dock'
c6352f2c
C
5import './peertube-link-button'
6import './resolution-menu-button'
7import './settings-menu-button'
8import './webtorrent-info-button'
9import './peertube-videojs-plugin'
10import { videojsUntyped } from './peertube-videojs-typings'
11
12// Change 'Playback Rate' to 'Speed' (smaller for our settings menu)
13videojsUntyped.getComponent('PlaybackRateMenuButton').prototype.controlText_ = 'Speed'
14
15function getVideojsOptions (options: {
16 autoplay: boolean,
17 playerElement: HTMLVideoElement,
18 videoViewUrl: string,
19 videoDuration: number,
20 videoFiles: VideoFile[],
21 enableHotkeys: boolean,
22 inactivityTimeout: number,
33d78552 23 peertubeLink: boolean,
f37bad63
C
24 poster: string,
25 startTime: number
c6352f2c
C
26}) {
27 const videojsOptions = {
28 controls: true,
33d78552 29 poster: options.poster,
80109b2d 30 autoplay: false,
c6352f2c
C
31 inactivityTimeout: options.inactivityTimeout,
32 playbackRates: [ 0.5, 1, 1.5, 2 ],
33 plugins: {
34 peertube: {
80109b2d 35 autoplay: options.autoplay, // Use peertube plugin autoplay because we get the file by webtorrent
c6352f2c
C
36 videoFiles: options.videoFiles,
37 playerElement: options.playerElement,
38 videoViewUrl: options.videoViewUrl,
f37bad63
C
39 videoDuration: options.videoDuration,
40 startTime: options.startTime
c6352f2c
C
41 }
42 },
43 controlBar: {
44 children: getControlBarChildren(options)
45 }
46 }
47
48 if (options.enableHotkeys === true) {
49 Object.assign(videojsOptions.plugins, {
50 hotkeys: {
51 enableVolumeScroll: false
52 }
53 })
54 }
55
56 return videojsOptions
57}
58
59function getControlBarChildren (options: {
60 peertubeLink: boolean
61}) {
62 const children = {
63 'playToggle': {},
64 'currentTimeDisplay': {},
65 'timeDivider': {},
66 'durationDisplay': {},
67 'liveDisplay': {},
68
69 'flexibleWidthSpacer': {},
70 'progressControl': {},
71
72 'webTorrentButton': {},
73
74 'muteToggle': {},
75 'volumeControl': {},
76
77 'settingsButton': {
78 setup: {
79 maxHeightOffset: 40
80 },
81 entries: [
82 'resolutionMenuButton',
83 'playbackRateMenuButton'
84 ]
85 }
86 }
87
88 if (options.peertubeLink === true) {
89 Object.assign(children, {
90 'peerTubeLinkButton': {}
91 })
92 }
93
94 Object.assign(children, {
95 'fullscreenToggle': {}
96 })
97
98 return children
99}
100
101export { getVideojsOptions }