]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/video-list/video-most-liked.component.ts
Migrate to $localize
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / video-list / video-most-liked.component.ts
1 import { Component, OnInit } from '@angular/core'
2 import { ActivatedRoute, Router } from '@angular/router'
3 import { AuthService, LocalStorageService, Notifier, ScreenService, ServerService, UserService } from '@app/core'
4 import { HooksService } from '@app/core/plugins/hooks.service'
5 import { immutableAssign } from '@app/helpers'
6 import { VideoService } from '@app/shared/shared-main'
7 import { AbstractVideoList } from '@app/shared/shared-video-miniature'
8 import { VideoSortField } from '@shared/models'
9
10 @Component({
11 selector: 'my-videos-most-liked',
12 styleUrls: [ '../../shared/shared-video-miniature/abstract-video-list.scss' ],
13 templateUrl: '../../shared/shared-video-miniature/abstract-video-list.html'
14 })
15 export class VideoMostLikedComponent extends AbstractVideoList implements OnInit {
16 titlePage: string
17 defaultSort: VideoSortField = '-likes'
18
19 useUserVideoPreferences = true
20
21 constructor (
22 protected router: Router,
23 protected serverService: ServerService,
24 protected route: ActivatedRoute,
25 protected notifier: Notifier,
26 protected authService: AuthService,
27 protected userService: UserService,
28 protected screenService: ScreenService,
29 protected storageService: LocalStorageService,
30 private videoService: VideoService,
31 private hooks: HooksService
32 ) {
33 super()
34 }
35
36 ngOnInit () {
37 super.ngOnInit()
38
39 this.generateSyndicationList()
40
41 this.titlePage = $localize`Most liked videos`
42 this.titleTooltip = $localize`Videos that have the higher number of likes.`
43 }
44
45 getVideosObservable (page: number) {
46 const newPagination = immutableAssign(this.pagination, { currentPage: page })
47 const params = {
48 videoPagination: newPagination,
49 sort: this.sort,
50 categoryOneOf: this.categoryOneOf,
51 languageOneOf: this.languageOneOf,
52 nsfwPolicy: this.nsfwPolicy,
53 skipCount: true
54 }
55
56 return this.hooks.wrapObsFun(
57 this.videoService.getVideos.bind(this.videoService),
58 params,
59 'common',
60 'filter:api.most-liked-videos.videos.list.params',
61 'filter:api.most-liked-videos.videos.list.result'
62 )
63 }
64
65 generateSyndicationList () {
66 this.syndicationItems = this.videoService.getVideoFeedUrls(this.sort, undefined, this.categoryOneOf)
67 }
68 }