]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+video-channels/video-channels.component.ts
add like, dislike and subscribe button hotkeys
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channels.component.ts
CommitLineData
20d21199 1import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core'
170726f5
C
2import { ActivatedRoute } from '@angular/router'
3import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
4import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
a51bad1a 5import { RestExtractor } from '@app/shared'
4d089429
C
6import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators'
7import { Subscription } from 'rxjs'
2d3741d6 8import { AuthService } from '@app/core'
20d21199
RK
9import { Hotkey, HotkeysService } from 'angular2-hotkeys'
10import { SubscribeButtonComponent } from '@app/shared/user-subscription/subscribe-button.component'
170726f5
C
11
12@Component({
13 templateUrl: './video-channels.component.html',
14 styleUrls: [ './video-channels.component.scss' ]
15})
734a5ceb 16export class VideoChannelsComponent implements OnInit, OnDestroy {
20d21199
RK
17 @ViewChild('subscribeButton') subscribeButton: SubscribeButtonComponent
18
170726f5 19 videoChannel: VideoChannel
20d21199 20 hotkeys: Hotkey[]
170726f5 21
734a5ceb
C
22 private routeSub: Subscription
23
170726f5
C
24 constructor (
25 private route: ActivatedRoute,
2d3741d6 26 private authService: AuthService,
a51bad1a 27 private videoChannelService: VideoChannelService,
20d21199
RK
28 private restExtractor: RestExtractor,
29 private hotkeysService: HotkeysService
734a5ceb 30 ) { }
170726f5
C
31
32 ngOnInit () {
734a5ceb
C
33 this.routeSub = this.route.params
34 .pipe(
35 map(params => params[ 'videoChannelId' ]),
36 distinctUntilChanged(),
37 switchMap(videoChannelId => this.videoChannelService.getVideoChannel(videoChannelId)),
38 catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 404 ]))
39 )
40 .subscribe(videoChannel => this.videoChannel = videoChannel)
41
20d21199
RK
42 this.hotkeys = [
43 new Hotkey('S', (event: KeyboardEvent): boolean => {
44 this.subscribeButton.subscribed ?
45 this.subscribeButton.unsubscribe() :
46 this.subscribeButton.subscribe()
47 return false
48 }, undefined, 'Subscribe to the account')
49 ]
50 if (this.isUserLoggedIn()) this.hotkeysService.add(this.hotkeys)
734a5ceb 51 }
170726f5 52
734a5ceb
C
53 ngOnDestroy () {
54 if (this.routeSub) this.routeSub.unsubscribe()
20d21199
RK
55
56 // Unbind hotkeys
57 if (this.isUserLoggedIn()) this.hotkeysService.remove(this.hotkeys)
170726f5 58 }
2d3741d6
C
59
60 isUserLoggedIn () {
61 return this.authService.isLoggedIn()
62 }
170726f5 63}