diff options
author | Chocobozzz <me@florianbigard.com> | 2018-03-30 17:40:00 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-04-03 14:02:10 +0200 |
commit | c6352f2c64f3c1ad54f8500f493587cdce3d33c9 (patch) | |
tree | 642a5b29b4d68ed8915e5e800232eab069303f79 /client/src/assets/player/resolution-menu-button.ts | |
parent | 6b9af1293621a81564296ead6f12f5e70eafbca2 (diff) | |
download | PeerTube-c6352f2c64f3c1ad54f8500f493587cdce3d33c9.tar.gz PeerTube-c6352f2c64f3c1ad54f8500f493587cdce3d33c9.tar.zst PeerTube-c6352f2c64f3c1ad54f8500f493587cdce3d33c9.zip |
Improve player
Add a settings dialog based on the work of Yanko Shterev (@yshterev):
https://github.com/yshterev/videojs-settings-menu. Thanks!
Diffstat (limited to 'client/src/assets/player/resolution-menu-button.ts')
-rw-r--r-- | client/src/assets/player/resolution-menu-button.ts | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/client/src/assets/player/resolution-menu-button.ts b/client/src/assets/player/resolution-menu-button.ts new file mode 100644 index 000000000..c927b084d --- /dev/null +++ b/client/src/assets/player/resolution-menu-button.ts | |||
@@ -0,0 +1,68 @@ | |||
1 | import * as videojs from 'video.js' | ||
2 | import { VideoJSComponentInterface, videojsUntyped } from './peertube-videojs-typings' | ||
3 | import { ResolutionMenuItem } from './resolution-menu-item' | ||
4 | |||
5 | const Menu: VideoJSComponentInterface = videojsUntyped.getComponent('Menu') | ||
6 | const MenuButton: VideoJSComponentInterface = videojsUntyped.getComponent('MenuButton') | ||
7 | class ResolutionMenuButton extends MenuButton { | ||
8 | label: HTMLElement | ||
9 | |||
10 | constructor (player: videojs.Player, options) { | ||
11 | options.label = 'Quality' | ||
12 | super(player, options) | ||
13 | |||
14 | this.controlText_ = 'Quality' | ||
15 | this.player = player | ||
16 | |||
17 | player.peertube().on('videoFileUpdate', () => this.updateLabel()) | ||
18 | } | ||
19 | |||
20 | createEl () { | ||
21 | const el = super.createEl() | ||
22 | |||
23 | this.labelEl_ = videojsUntyped.dom.createEl('div', { | ||
24 | className: 'vjs-resolution-value', | ||
25 | innerHTML: this.player_.peertube().getCurrentResolutionLabel() | ||
26 | }) | ||
27 | |||
28 | el.appendChild(this.labelEl_) | ||
29 | |||
30 | return el | ||
31 | } | ||
32 | |||
33 | updateARIAAttributes () { | ||
34 | this.el().setAttribute('aria-label', 'Quality') | ||
35 | } | ||
36 | |||
37 | createMenu () { | ||
38 | const menu = new Menu(this.player()) | ||
39 | |||
40 | for (const videoFile of this.player_.peertube().videoFiles) { | ||
41 | menu.addChild(new ResolutionMenuItem( | ||
42 | this.player_, | ||
43 | { | ||
44 | id: videoFile.resolution.id, | ||
45 | label: videoFile.resolution.label, | ||
46 | src: videoFile.magnetUri | ||
47 | }) | ||
48 | ) | ||
49 | } | ||
50 | |||
51 | return menu | ||
52 | } | ||
53 | |||
54 | updateLabel () { | ||
55 | if (!this.labelEl_) return | ||
56 | |||
57 | this.labelEl_.innerHTML = this.player_.peertube().getCurrentResolutionLabel() | ||
58 | } | ||
59 | |||
60 | buildCSSClass () { | ||
61 | return super.buildCSSClass() + ' vjs-resolution-button' | ||
62 | } | ||
63 | |||
64 | buildWrapperCSSClass () { | ||
65 | return 'vjs-resolution-control ' + super.buildWrapperCSSClass() | ||
66 | } | ||
67 | } | ||
68 | MenuButton.registerComponent('ResolutionMenuButton', ResolutionMenuButton) | ||