]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/video-watch.component.ts
add loop setting for playlists, and use sessionStorage
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / video-watch.component.ts
1 import { catchError } from 'rxjs/operators'
2 import { ChangeDetectorRef, Component, ElementRef, Inject, LOCALE_ID, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core'
3 import { ActivatedRoute, Router } from '@angular/router'
4 import { RedirectService } from '@app/core/routing/redirect.service'
5 import { peertubeLocalStorage, peertubeSessionStorage } from '@app/shared/misc/peertube-web-storage'
6 import { VideoSupportComponent } from '@app/videos/+video-watch/modal/video-support.component'
7 import { MetaService } from '@ngx-meta/core'
8 import { AuthUser, Notifier, ServerService } from '@app/core'
9 import { forkJoin, Observable, Subscription } from 'rxjs'
10 import { Hotkey, HotkeysService } from 'angular2-hotkeys'
11 import { UserVideoRateType, VideoCaption, VideoPrivacy, VideoState } from '../../../../../shared'
12 import { AuthService, ConfirmService } from '../../core'
13 import { RestExtractor, VideoBlacklistService } from '../../shared'
14 import { VideoDetails } from '../../shared/video/video-details.model'
15 import { VideoService } from '../../shared/video/video.service'
16 import { VideoShareComponent } from './modal/video-share.component'
17 import { SubscribeButtonComponent } from '@app/shared/user-subscription/subscribe-button.component'
18 import { I18n } from '@ngx-translate/i18n-polyfill'
19 import { environment } from '../../../environments/environment'
20 import { VideoCaptionService } from '@app/shared/video-caption'
21 import { MarkdownService } from '@app/shared/renderer'
22 import {
23 videojs,
24 CustomizationOptions,
25 P2PMediaLoaderOptions,
26 PeertubePlayerManager,
27 PeertubePlayerManagerOptions,
28 PlayerMode
29 } from '../../../assets/player/peertube-player-manager'
30 import { VideoPlaylist } from '@app/shared/video-playlist/video-playlist.model'
31 import { VideoPlaylistService } from '@app/shared/video-playlist/video-playlist.service'
32 import { Video } from '@app/shared/video/video.model'
33 import { isWebRTCDisabled, timeToInt } from '../../../assets/player/utils'
34 import { VideoWatchPlaylistComponent } from '@app/videos/+video-watch/video-watch-playlist.component'
35 import { getStoredTheater } from '../../../assets/player/peertube-player-local-storage'
36 import { PluginService } from '@app/core/plugins/plugin.service'
37 import { HooksService } from '@app/core/plugins/hooks.service'
38 import { PlatformLocation } from '@angular/common'
39 import { randomInt } from '@shared/core-utils/miscs/miscs'
40 import { RecommendedVideosComponent } from '../recommendations/recommended-videos.component'
41
42 @Component({
43 selector: 'my-video-watch',
44 templateUrl: './video-watch.component.html',
45 styleUrls: [ './video-watch.component.scss' ]
46 })
47 export class VideoWatchComponent implements OnInit, OnDestroy {
48 private static LOCAL_STORAGE_PRIVACY_CONCERN_KEY = 'video-watch-privacy-concern'
49
50 @ViewChild('videoWatchPlaylist', { static: true }) videoWatchPlaylist: VideoWatchPlaylistComponent
51 @ViewChild('videoShareModal', { static: false }) videoShareModal: VideoShareComponent
52 @ViewChild('videoSupportModal', { static: false }) videoSupportModal: VideoSupportComponent
53 @ViewChild('subscribeButton', { static: false }) subscribeButton: SubscribeButtonComponent
54
55 player: any
56 playerElement: HTMLVideoElement
57 theaterEnabled = false
58 userRating: UserVideoRateType = null
59 descriptionLoading = false
60
61 video: VideoDetails = null
62 videoCaptions: VideoCaption[] = []
63
64 playlist: VideoPlaylist = null
65
66 completeDescriptionShown = false
67 completeVideoDescription: string
68 shortVideoDescription: string
69 videoHTMLDescription = ''
70 likesBarTooltipText = ''
71 hasAlreadyAcceptedPrivacyConcern = false
72 remoteServerDown = false
73 hotkeys: Hotkey[] = []
74
75 private nextVideoUuid = ''
76 private currentTime: number
77 private paramsSub: Subscription
78 private queryParamsSub: Subscription
79 private configSub: Subscription
80
81 constructor (
82 private elementRef: ElementRef,
83 private changeDetector: ChangeDetectorRef,
84 private route: ActivatedRoute,
85 private router: Router,
86 private videoService: VideoService,
87 private playlistService: VideoPlaylistService,
88 private videoBlacklistService: VideoBlacklistService,
89 private confirmService: ConfirmService,
90 private metaService: MetaService,
91 private authService: AuthService,
92 private serverService: ServerService,
93 private restExtractor: RestExtractor,
94 private notifier: Notifier,
95 private pluginService: PluginService,
96 private markdownService: MarkdownService,
97 private zone: NgZone,
98 private redirectService: RedirectService,
99 private videoCaptionService: VideoCaptionService,
100 private i18n: I18n,
101 private hotkeysService: HotkeysService,
102 private hooks: HooksService,
103 private location: PlatformLocation,
104 @Inject(LOCALE_ID) private localeId: string
105 ) {}
106
107 get user () {
108 return this.authService.getUser()
109 }
110
111 async ngOnInit () {
112 this.configSub = this.serverService.configLoaded
113 .subscribe(() => {
114 if (
115 isWebRTCDisabled() ||
116 this.serverService.getConfig().tracker.enabled === false ||
117 peertubeLocalStorage.getItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY) === 'true'
118 ) {
119 this.hasAlreadyAcceptedPrivacyConcern = true
120 }
121 })
122
123 this.paramsSub = this.route.params.subscribe(routeParams => {
124 const videoId = routeParams[ 'videoId' ]
125 if (videoId) this.loadVideo(videoId)
126
127 const playlistId = routeParams[ 'playlistId' ]
128 if (playlistId) this.loadPlaylist(playlistId)
129 })
130
131 this.queryParamsSub = this.route.queryParams.subscribe(queryParams => {
132 const videoId = queryParams[ 'videoId' ]
133 if (videoId) this.loadVideo(videoId)
134 })
135
136 this.initHotkeys()
137
138 this.theaterEnabled = getStoredTheater()
139
140 this.hooks.runAction('action:video-watch.init', 'video-watch')
141 }
142
143 ngOnDestroy () {
144 this.flushPlayer()
145
146 // Unsubscribe subscriptions
147 if (this.paramsSub) this.paramsSub.unsubscribe()
148 if (this.queryParamsSub) this.queryParamsSub.unsubscribe()
149
150 // Unbind hotkeys
151 this.hotkeysService.remove(this.hotkeys)
152 }
153
154 setLike () {
155 if (this.isUserLoggedIn() === false) return
156
157 // Already liked this video
158 if (this.userRating === 'like') this.setRating('none')
159 else this.setRating('like')
160 }
161
162 setDislike () {
163 if (this.isUserLoggedIn() === false) return
164
165 // Already disliked this video
166 if (this.userRating === 'dislike') this.setRating('none')
167 else this.setRating('dislike')
168 }
169
170 getRatePopoverText () {
171 if (this.isUserLoggedIn()) return undefined
172
173 return this.i18n('You need to be connected to rate this content.')
174 }
175
176 showMoreDescription () {
177 if (this.completeVideoDescription === undefined) {
178 return this.loadCompleteDescription()
179 }
180
181 this.updateVideoDescription(this.completeVideoDescription)
182 this.completeDescriptionShown = true
183 }
184
185 showLessDescription () {
186 this.updateVideoDescription(this.shortVideoDescription)
187 this.completeDescriptionShown = false
188 }
189
190 loadCompleteDescription () {
191 this.descriptionLoading = true
192
193 this.videoService.loadCompleteDescription(this.video.descriptionPath)
194 .subscribe(
195 description => {
196 this.completeDescriptionShown = true
197 this.descriptionLoading = false
198
199 this.shortVideoDescription = this.video.description
200 this.completeVideoDescription = description
201
202 this.updateVideoDescription(this.completeVideoDescription)
203 },
204
205 error => {
206 this.descriptionLoading = false
207 this.notifier.error(error.message)
208 }
209 )
210 }
211
212 showSupportModal () {
213 this.pausePlayer()
214
215 this.videoSupportModal.show()
216 }
217
218 showShareModal () {
219 this.pausePlayer()
220
221 this.videoShareModal.show(this.currentTime)
222 }
223
224 isUserLoggedIn () {
225 return this.authService.isLoggedIn()
226 }
227
228 getVideoTags () {
229 if (!this.video || Array.isArray(this.video.tags) === false) return []
230
231 return this.video.tags
232 }
233
234 onRecommendations (videos: Video[]) {
235 if (videos.length > 0) {
236 // Pick a random video until the recommendations are improved
237 this.nextVideoUuid = videos[randomInt(0,videos.length - 1)].uuid
238 }
239 }
240
241 onModalOpened () {
242 this.pausePlayer()
243 }
244
245 onVideoRemoved () {
246 this.redirectService.redirectToHomepage()
247 }
248
249 acceptedPrivacyConcern () {
250 peertubeLocalStorage.setItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY, 'true')
251 this.hasAlreadyAcceptedPrivacyConcern = true
252 }
253
254 isVideoToTranscode () {
255 return this.video && this.video.state.id === VideoState.TO_TRANSCODE
256 }
257
258 isVideoToImport () {
259 return this.video && this.video.state.id === VideoState.TO_IMPORT
260 }
261
262 hasVideoScheduledPublication () {
263 return this.video && this.video.scheduledUpdate !== undefined
264 }
265
266 isVideoBlur (video: Video) {
267 return video.isVideoNSFWForUser(this.user, this.serverService.getConfig())
268 }
269
270 private loadVideo (videoId: string) {
271 // Video did not change
272 if (this.video && this.video.uuid === videoId) return
273
274 if (this.player) this.player.pause()
275
276 const videoObs = this.hooks.wrapObsFun(
277 this.videoService.getVideo.bind(this.videoService),
278 { videoId },
279 'video-watch',
280 'filter:api.video-watch.video.get.params',
281 'filter:api.video-watch.video.get.result'
282 )
283
284 // Video did change
285 forkJoin([
286 videoObs,
287 this.videoCaptionService.listCaptions(videoId)
288 ])
289 .pipe(
290 // If 401, the video is private or blacklisted so redirect to 404
291 catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 401, 403, 404 ]))
292 )
293 .subscribe(([ video, captionsResult ]) => {
294 const queryParams = this.route.snapshot.queryParams
295
296 const urlOptions = {
297 startTime: queryParams.start,
298 stopTime: queryParams.stop,
299
300 muted: queryParams.muted,
301 loop: queryParams.loop,
302 subtitle: queryParams.subtitle,
303
304 playerMode: queryParams.mode,
305 peertubeLink: false
306 }
307
308 this.onVideoFetched(video, captionsResult.data, urlOptions)
309 .catch(err => this.handleError(err))
310 })
311 }
312
313 private loadPlaylist (playlistId: string) {
314 // Playlist did not change
315 if (this.playlist && this.playlist.uuid === playlistId) return
316
317 this.playlistService.getVideoPlaylist(playlistId)
318 .pipe(
319 // If 401, the video is private or blacklisted so redirect to 404
320 catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 401, 403, 404 ]))
321 )
322 .subscribe(playlist => {
323 this.playlist = playlist
324
325 const videoId = this.route.snapshot.queryParams['videoId']
326 this.videoWatchPlaylist.loadPlaylistElements(playlist, !videoId)
327 })
328 }
329
330 private updateVideoDescription (description: string) {
331 this.video.description = description
332 this.setVideoDescriptionHTML()
333 .catch(err => console.error(err))
334 }
335
336 private async setVideoDescriptionHTML () {
337 this.videoHTMLDescription = await this.markdownService.textMarkdownToHTML(this.video.description)
338 }
339
340 private setVideoLikesBarTooltipText () {
341 this.likesBarTooltipText = this.i18n('{{likesNumber}} likes / {{dislikesNumber}} dislikes', {
342 likesNumber: this.video.likes,
343 dislikesNumber: this.video.dislikes
344 })
345 }
346
347 private handleError (err: any) {
348 const errorMessage: string = typeof err === 'string' ? err : err.message
349 if (!errorMessage) return
350
351 // Display a message in the video player instead of a notification
352 if (errorMessage.indexOf('from xs param') !== -1) {
353 this.flushPlayer()
354 this.remoteServerDown = true
355 this.changeDetector.detectChanges()
356
357 return
358 }
359
360 this.notifier.error(errorMessage)
361 }
362
363 private checkUserRating () {
364 // Unlogged users do not have ratings
365 if (this.isUserLoggedIn() === false) return
366
367 this.videoService.getUserVideoRating(this.video.id)
368 .subscribe(
369 ratingObject => {
370 if (ratingObject) {
371 this.userRating = ratingObject.rating
372 }
373 },
374
375 err => this.notifier.error(err.message)
376 )
377 }
378
379 private async onVideoFetched (
380 video: VideoDetails,
381 videoCaptions: VideoCaption[],
382 urlOptions: CustomizationOptions & { playerMode: PlayerMode }
383 ) {
384 this.video = video
385 this.videoCaptions = videoCaptions
386
387 // Re init attributes
388 this.descriptionLoading = false
389 this.completeDescriptionShown = false
390 this.remoteServerDown = false
391 this.currentTime = undefined
392
393 this.videoWatchPlaylist.updatePlaylistIndex(video)
394
395 if (this.isVideoBlur(this.video)) {
396 const res = await this.confirmService.confirm(
397 this.i18n('This video contains mature or explicit content. Are you sure you want to watch it?'),
398 this.i18n('Mature or explicit content')
399 )
400 if (res === false) return this.location.back()
401 }
402
403 // Flush old player if needed
404 this.flushPlayer()
405
406 // Build video element, because videojs removes it on dispose
407 const playerElementWrapper = this.elementRef.nativeElement.querySelector('#videojs-wrapper')
408 this.playerElement = document.createElement('video')
409 this.playerElement.className = 'video-js vjs-peertube-skin'
410 this.playerElement.setAttribute('playsinline', 'true')
411 playerElementWrapper.appendChild(this.playerElement)
412
413 const params = {
414 video: this.video,
415 videoCaptions,
416 urlOptions,
417 user: this.user
418 }
419 const { playerMode, playerOptions } = await this.hooks.wrapFun(
420 this.buildPlayerManagerOptions.bind(this),
421 params,
422 'video-watch',
423 'filter:internal.video-watch.player.build-options.params',
424 'filter:internal.video-watch.player.build-options.result'
425 )
426
427 this.zone.runOutsideAngular(async () => {
428 this.player = await PeertubePlayerManager.initialize(playerMode, playerOptions, player => this.player = player)
429 this.player.focus()
430
431 this.player.on('customError', ({ err }: { err: any }) => this.handleError(err))
432
433 this.player.on('timeupdate', () => {
434 this.currentTime = Math.floor(this.player.currentTime())
435 })
436
437 this.player.one('ended', () => {
438 if (this.playlist) {
439 if (
440 this.user && this.user.autoPlayNextVideoPlaylist ||
441 peertubeSessionStorage.getItem(VideoWatchPlaylistComponent.SESSION_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST) === 'true'
442 ) this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
443 } else if (
444 this.user && this.user.autoPlayNextVideo ||
445 peertubeSessionStorage.getItem(RecommendedVideosComponent.SESSION_STORAGE_AUTO_PLAY_NEXT_VIDEO) === 'true'
446 ) {
447 this.zone.run(() => this.autoplayNext())
448 }
449 })
450
451 this.player.one('stopped', () => {
452 if (this.playlist) {
453 if (
454 this.user && this.user.autoPlayNextVideoPlaylist ||
455 peertubeSessionStorage.getItem(VideoWatchPlaylistComponent.SESSION_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST) === 'true'
456 ) this.zone.run(() => this.videoWatchPlaylist.navigateToNextPlaylistVideo())
457 }
458 })
459
460 this.player.on('theaterChange', (_: any, enabled: boolean) => {
461 this.zone.run(() => this.theaterEnabled = enabled)
462 })
463
464 this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { player: this.player })
465 })
466
467 this.setVideoDescriptionHTML()
468 this.setVideoLikesBarTooltipText()
469
470 this.setOpenGraphTags()
471 this.checkUserRating()
472
473 this.hooks.runAction('action:video-watch.video.loaded', 'video-watch', { videojs })
474 }
475
476 private autoplayNext () {
477 if (this.nextVideoUuid) {
478 this.router.navigate([ '/videos/watch', this.nextVideoUuid ])
479 }
480 }
481
482 private setRating (nextRating: UserVideoRateType) {
483 const ratingMethods: { [id in UserVideoRateType]: (id: number) => Observable<any> } = {
484 like: this.videoService.setVideoLike,
485 dislike: this.videoService.setVideoDislike,
486 none: this.videoService.unsetVideoLike
487 }
488
489 ratingMethods[nextRating].call(this.videoService, this.video.id)
490 .subscribe(
491 () => {
492 // Update the video like attribute
493 this.updateVideoRating(this.userRating, nextRating)
494 this.userRating = nextRating
495 },
496
497 (err: { message: string }) => this.notifier.error(err.message)
498 )
499 }
500
501 private updateVideoRating (oldRating: UserVideoRateType, newRating: UserVideoRateType) {
502 let likesToIncrement = 0
503 let dislikesToIncrement = 0
504
505 if (oldRating) {
506 if (oldRating === 'like') likesToIncrement--
507 if (oldRating === 'dislike') dislikesToIncrement--
508 }
509
510 if (newRating === 'like') likesToIncrement++
511 if (newRating === 'dislike') dislikesToIncrement++
512
513 this.video.likes += likesToIncrement
514 this.video.dislikes += dislikesToIncrement
515
516 this.video.buildLikeAndDislikePercents()
517 this.setVideoLikesBarTooltipText()
518 }
519
520 private setOpenGraphTags () {
521 this.metaService.setTitle(this.video.name)
522
523 this.metaService.setTag('og:type', 'video')
524
525 this.metaService.setTag('og:title', this.video.name)
526 this.metaService.setTag('name', this.video.name)
527
528 this.metaService.setTag('og:description', this.video.description)
529 this.metaService.setTag('description', this.video.description)
530
531 this.metaService.setTag('og:image', this.video.previewPath)
532
533 this.metaService.setTag('og:duration', this.video.duration.toString())
534
535 this.metaService.setTag('og:site_name', 'PeerTube')
536
537 this.metaService.setTag('og:url', window.location.href)
538 this.metaService.setTag('url', window.location.href)
539 }
540
541 private isAutoplay () {
542 // We'll jump to the thread id, so do not play the video
543 if (this.route.snapshot.params['threadId']) return false
544
545 // Otherwise true by default
546 if (!this.user) return true
547
548 // Be sure the autoPlay is set to false
549 return this.user.autoPlayVideo !== false
550 }
551
552 private flushPlayer () {
553 // Remove player if it exists
554 if (this.player) {
555 try {
556 this.player.dispose()
557 this.player = undefined
558 } catch (err) {
559 console.error('Cannot dispose player.', err)
560 }
561 }
562 }
563
564 private buildPlayerManagerOptions (params: {
565 video: VideoDetails,
566 videoCaptions: VideoCaption[],
567 urlOptions: CustomizationOptions & { playerMode: PlayerMode },
568 user?: AuthUser
569 }) {
570 const { video, videoCaptions, urlOptions, user } = params
571
572 let startTime = timeToInt(urlOptions.startTime) || (video.userHistory && !this.playlist ? video.userHistory.currentTime : 0)
573 // If we are at the end of the video, reset the timer
574 if (video.duration - startTime <= 1) startTime = 0
575
576 const playerCaptions = videoCaptions.map(c => ({
577 label: c.language.label,
578 language: c.language.id,
579 src: environment.apiUrl + c.captionPath
580 }))
581
582 const options: PeertubePlayerManagerOptions = {
583 common: {
584 autoplay: this.isAutoplay(),
585
586 playerElement: this.playerElement,
587 onPlayerElementChange: (element: HTMLVideoElement) => this.playerElement = element,
588
589 videoDuration: video.duration,
590 enableHotkeys: true,
591 inactivityTimeout: 2500,
592 poster: video.previewUrl,
593
594 startTime,
595 stopTime: urlOptions.stopTime,
596 controls: urlOptions.controls,
597 muted: urlOptions.muted,
598 loop: urlOptions.loop,
599 subtitle: urlOptions.subtitle,
600
601 peertubeLink: urlOptions.peertubeLink,
602
603 theaterButton: true,
604 captions: videoCaptions.length !== 0,
605
606 videoViewUrl: video.privacy.id !== VideoPrivacy.PRIVATE
607 ? this.videoService.getVideoViewUrl(video.uuid)
608 : null,
609 embedUrl: video.embedUrl,
610
611 language: this.localeId,
612
613 userWatching: user && user.videosHistoryEnabled === true ? {
614 url: this.videoService.getUserWatchingVideoUrl(video.uuid),
615 authorizationHeader: this.authService.getRequestHeaderValue()
616 } : undefined,
617
618 serverUrl: environment.apiUrl,
619
620 videoCaptions: playerCaptions
621 },
622
623 webtorrent: {
624 videoFiles: video.files
625 }
626 }
627
628 let mode: PlayerMode
629
630 if (urlOptions.playerMode) {
631 if (urlOptions.playerMode === 'p2p-media-loader') mode = 'p2p-media-loader'
632 else mode = 'webtorrent'
633 } else {
634 if (video.hasHlsPlaylist()) mode = 'p2p-media-loader'
635 else mode = 'webtorrent'
636 }
637
638 if (mode === 'p2p-media-loader') {
639 const hlsPlaylist = video.getHlsPlaylist()
640
641 const p2pMediaLoader = {
642 playlistUrl: hlsPlaylist.playlistUrl,
643 segmentsSha256Url: hlsPlaylist.segmentsSha256Url,
644 redundancyBaseUrls: hlsPlaylist.redundancies.map(r => r.baseUrl),
645 trackerAnnounce: video.trackerUrls,
646 videoFiles: hlsPlaylist.files
647 } as P2PMediaLoaderOptions
648
649 Object.assign(options, { p2pMediaLoader })
650 }
651
652 return { playerMode: mode, playerOptions: options }
653 }
654
655 private pausePlayer () {
656 if (!this.player) return
657
658 this.player.pause()
659 }
660
661 private initHotkeys () {
662 this.hotkeys = [
663 // These hotkeys are managed by the player
664 new Hotkey('f', e => e, undefined, this.i18n('Enter/exit fullscreen (requires player focus)')),
665 new Hotkey('space', e => e, undefined, this.i18n('Play/Pause the video (requires player focus)')),
666 new Hotkey('m', e => e, undefined, this.i18n('Mute/unmute the video (requires player focus)')),
667
668 new Hotkey('0-9', e => e, undefined, this.i18n('Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)')),
669
670 new Hotkey('up', e => e, undefined, this.i18n('Increase the volume (requires player focus)')),
671 new Hotkey('down', e => e, undefined, this.i18n('Decrease the volume (requires player focus)')),
672
673 new Hotkey('right', e => e, undefined, this.i18n('Seek the video forward (requires player focus)')),
674 new Hotkey('left', e => e, undefined, this.i18n('Seek the video backward (requires player focus)')),
675
676 new Hotkey('>', e => e, undefined, this.i18n('Increase playback rate (requires player focus)')),
677 new Hotkey('<', e => e, undefined, this.i18n('Decrease playback rate (requires player focus)')),
678
679 new Hotkey('.', e => e, undefined, this.i18n('Navigate in the video frame by frame (requires player focus)'))
680 ]
681
682 if (this.isUserLoggedIn()) {
683 this.hotkeys = this.hotkeys.concat([
684 new Hotkey('shift+l', () => {
685 this.setLike()
686 return false
687 }, undefined, this.i18n('Like the video')),
688
689 new Hotkey('shift+d', () => {
690 this.setDislike()
691 return false
692 }, undefined, this.i18n('Dislike the video')),
693
694 new Hotkey('shift+s', () => {
695 this.subscribeButton.subscribed ? this.subscribeButton.unsubscribe() : this.subscribeButton.subscribe()
696 return false
697 }, undefined, this.i18n('Subscribe to the account'))
698 ])
699 }
700
701 this.hotkeysService.add(this.hotkeys)
702 }
703 }