diff options
author | Chocobozzz <me@florianbigard.com> | 2020-08-05 11:02:14 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-08-07 08:58:29 +0200 |
commit | a950e4c82bd458e924b00698a77c06275a64a46c (patch) | |
tree | 11bdeecb8950e6854eee79205823bcbb1e5a437c /client/src/assets/player/videojs-components | |
parent | 4572c3d0d92f5b1b79b34dbe2c7b6557a8a5b7e4 (diff) | |
download | PeerTube-a950e4c82bd458e924b00698a77c06275a64a46c.tar.gz PeerTube-a950e4c82bd458e924b00698a77c06275a64a46c.tar.zst PeerTube-a950e4c82bd458e924b00698a77c06275a64a46c.zip |
Add previous button
Diffstat (limited to 'client/src/assets/player/videojs-components')
-rw-r--r-- | client/src/assets/player/videojs-components/next-previous-video-button.ts | 50 | ||||
-rw-r--r-- | client/src/assets/player/videojs-components/next-video-button.ts | 37 |
2 files changed, 50 insertions, 37 deletions
diff --git a/client/src/assets/player/videojs-components/next-previous-video-button.ts b/client/src/assets/player/videojs-components/next-previous-video-button.ts new file mode 100644 index 000000000..fe17ce2ce --- /dev/null +++ b/client/src/assets/player/videojs-components/next-previous-video-button.ts | |||
@@ -0,0 +1,50 @@ | |||
1 | import videojs from 'video.js' | ||
2 | import { NextPreviousVideoButtonOptions } from '../peertube-videojs-typings' | ||
3 | |||
4 | const Button = videojs.getComponent('Button') | ||
5 | |||
6 | class NextPreviousVideoButton extends Button { | ||
7 | private readonly nextPreviousVideoButtonOptions: NextPreviousVideoButtonOptions | ||
8 | |||
9 | constructor (player: videojs.Player, options?: NextPreviousVideoButtonOptions) { | ||
10 | super(player, options as any) | ||
11 | |||
12 | this.nextPreviousVideoButtonOptions = options | ||
13 | |||
14 | this.update() | ||
15 | } | ||
16 | |||
17 | createEl () { | ||
18 | const type = (this.options_ as NextPreviousVideoButtonOptions).type | ||
19 | |||
20 | const button = videojs.dom.createEl('button', { | ||
21 | className: 'vjs-' + type + '-video' | ||
22 | }) as HTMLButtonElement | ||
23 | const nextIcon = videojs.dom.createEl('span', { | ||
24 | className: 'icon icon-' + type | ||
25 | }) | ||
26 | button.appendChild(nextIcon) | ||
27 | |||
28 | if (type === 'next') { | ||
29 | button.title = this.player_.localize('Next video') | ||
30 | } else { | ||
31 | button.title = this.player_.localize('Previous video') | ||
32 | } | ||
33 | |||
34 | return button | ||
35 | } | ||
36 | |||
37 | handleClick () { | ||
38 | this.nextPreviousVideoButtonOptions.handler() | ||
39 | } | ||
40 | |||
41 | update () { | ||
42 | const disabled = this.nextPreviousVideoButtonOptions.isDisabled() | ||
43 | |||
44 | if (disabled) this.addClass('vjs-disabled') | ||
45 | else this.removeClass('vjs-disabled') | ||
46 | } | ||
47 | } | ||
48 | |||
49 | videojs.registerComponent('NextVideoButton', NextPreviousVideoButton) | ||
50 | videojs.registerComponent('PreviousVideoButton', NextPreviousVideoButton) | ||
diff --git a/client/src/assets/player/videojs-components/next-video-button.ts b/client/src/assets/player/videojs-components/next-video-button.ts deleted file mode 100644 index 22b32f06b..000000000 --- a/client/src/assets/player/videojs-components/next-video-button.ts +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | import videojs from 'video.js' | ||
2 | |||
3 | const Button = videojs.getComponent('Button') | ||
4 | |||
5 | export interface NextVideoButtonOptions extends videojs.ComponentOptions { | ||
6 | handler: Function | ||
7 | } | ||
8 | |||
9 | class NextVideoButton extends Button { | ||
10 | private readonly nextVideoButtonOptions: NextVideoButtonOptions | ||
11 | |||
12 | constructor (player: videojs.Player, options?: NextVideoButtonOptions) { | ||
13 | super(player, options) | ||
14 | |||
15 | this.nextVideoButtonOptions = options | ||
16 | } | ||
17 | |||
18 | createEl () { | ||
19 | const button = videojs.dom.createEl('button', { | ||
20 | className: 'vjs-next-video' | ||
21 | }) as HTMLButtonElement | ||
22 | const nextIcon = videojs.dom.createEl('span', { | ||
23 | className: 'icon icon-next' | ||
24 | }) | ||
25 | button.appendChild(nextIcon) | ||
26 | |||
27 | button.title = this.player_.localize('Next video') | ||
28 | |||
29 | return button | ||
30 | } | ||
31 | |||
32 | handleClick () { | ||
33 | this.nextVideoButtonOptions.handler() | ||
34 | } | ||
35 | } | ||
36 | |||
37 | videojs.registerComponent('NextVideoButton', NextVideoButton) | ||