]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/assets/player/peertube-player.ts
Remove bad import
[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'
960a11e8
C
5import 'videojs-contextmenu'
6import 'videojs-contextmenu-ui'
c6352f2c
C
7import './peertube-link-button'
8import './resolution-menu-button'
9import './settings-menu-button'
10import './webtorrent-info-button'
11import './peertube-videojs-plugin'
77728efa 12import './peertube-load-progress-bar'
c6352f2c 13import { videojsUntyped } from './peertube-videojs-typings'
960a11e8 14import { buildVideoEmbed, buildVideoLink, copyToClipboard } from './utils'
c6352f2c
C
15
16// Change 'Playback Rate' to 'Speed' (smaller for our settings menu)
17videojsUntyped.getComponent('PlaybackRateMenuButton').prototype.controlText_ = 'Speed'
18
19function getVideojsOptions (options: {
20 autoplay: boolean,
21 playerElement: HTMLVideoElement,
22 videoViewUrl: string,
960a11e8 23 videoEmbedUrl: string,
c6352f2c
C
24 videoDuration: number,
25 videoFiles: VideoFile[],
26 enableHotkeys: boolean,
27 inactivityTimeout: number,
33d78552 28 peertubeLink: boolean,
f37bad63
C
29 poster: string,
30 startTime: number
c6352f2c
C
31}) {
32 const videojsOptions = {
33 controls: true,
33d78552 34 poster: options.poster,
80109b2d 35 autoplay: false,
c6352f2c
C
36 inactivityTimeout: options.inactivityTimeout,
37 playbackRates: [ 0.5, 1, 1.5, 2 ],
38 plugins: {
39 peertube: {
80109b2d 40 autoplay: options.autoplay, // Use peertube plugin autoplay because we get the file by webtorrent
c6352f2c
C
41 videoFiles: options.videoFiles,
42 playerElement: options.playerElement,
43 videoViewUrl: options.videoViewUrl,
f37bad63
C
44 videoDuration: options.videoDuration,
45 startTime: options.startTime
960a11e8
C
46 },
47 contextmenuUI: {
48 content: [
49 {
50 label: 'Copy the video URL',
51 listener: function () {
52 copyToClipboard(buildVideoLink())
53 }
54 },
55 {
56 label: 'Copy the video URL at the current time',
57 listener: function () {
58 const player = this
59 copyToClipboard(buildVideoLink(player.currentTime()))
60 }
61 },
62 {
63 label: 'Copy embed code',
64 listener: () => {
65 copyToClipboard(buildVideoEmbed(options.videoEmbedUrl))
66 }
67 }
68 ]
c6352f2c
C
69 }
70 },
71 controlBar: {
72 children: getControlBarChildren(options)
73 }
74 }
75
76 if (options.enableHotkeys === true) {
77 Object.assign(videojsOptions.plugins, {
78 hotkeys: {
79 enableVolumeScroll: false
80 }
81 })
82 }
83
84 return videojsOptions
85}
86
87function getControlBarChildren (options: {
88 peertubeLink: boolean
89}) {
90 const children = {
91 'playToggle': {},
92 'currentTimeDisplay': {},
93 'timeDivider': {},
94 'durationDisplay': {},
95 'liveDisplay': {},
96
97 'flexibleWidthSpacer': {},
77728efa
C
98 'progressControl': {
99 children: {
100 'seekBar': {
101 children: {
102 'peerTubeLoadProgressBar': {},
103 'playProgressBar': {}
104 }
105 }
106 }
107 },
c6352f2c
C
108
109 'webTorrentButton': {},
110
111 'muteToggle': {},
112 'volumeControl': {},
113
114 'settingsButton': {
115 setup: {
116 maxHeightOffset: 40
117 },
118 entries: [
119 'resolutionMenuButton',
120 'playbackRateMenuButton'
121 ]
122 }
123 }
124
125 if (options.peertubeLink === true) {
126 Object.assign(children, {
127 'peerTubeLinkButton': {}
128 })
129 }
130
131 Object.assign(children, {
132 'fullscreenToggle': {}
133 })
134
135 return children
136}
137
138export { getVideojsOptions }