]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+videos/video-list/video-local.component.ts
Migrate to $localize
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / video-list / video-local.component.ts
1 import { Component, OnDestroy, 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 { UserRight, VideoFilter, VideoSortField } from '@shared/models'
9
10 @Component({
11 selector: 'my-videos-local',
12 styleUrls: [ '../../shared/shared-video-miniature/abstract-video-list.scss' ],
13 templateUrl: '../../shared/shared-video-miniature/abstract-video-list.html'
14 })
15 export class VideoLocalComponent extends AbstractVideoList implements OnInit, OnDestroy {
16 titlePage: string
17 sort = '-publishedAt' as VideoSortField
18 filter: VideoFilter = 'local'
19
20 useUserVideoPreferences = true
21
22 constructor (
23 protected router: Router,
24 protected serverService: ServerService,
25 protected route: ActivatedRoute,
26 protected notifier: Notifier,
27 protected authService: AuthService,
28 protected userService: UserService,
29 protected screenService: ScreenService,
30 protected storageService: LocalStorageService,
31 private videoService: VideoService,
32 private hooks: HooksService
33 ) {
34 super()
35
36 this.titlePage = $localize`Local videos`
37 }
38
39 ngOnInit () {
40 super.ngOnInit()
41
42 if (this.authService.isLoggedIn()) {
43 const user = this.authService.getUser()
44 this.displayModerationBlock = user.hasRight(UserRight.SEE_ALL_VIDEOS)
45 }
46
47 this.generateSyndicationList()
48 }
49
50 ngOnDestroy () {
51 super.ngOnDestroy()
52 }
53
54 getVideosObservable (page: number) {
55 const newPagination = immutableAssign(this.pagination, { currentPage: page })
56 const params = {
57 videoPagination: newPagination,
58 sort: this.sort,
59 filter: this.filter,
60 categoryOneOf: this.categoryOneOf,
61 languageOneOf: this.languageOneOf,
62 nsfwPolicy: this.nsfwPolicy,
63 skipCount: true
64 }
65
66 return this.hooks.wrapObsFun(
67 this.videoService.getVideos.bind(this.videoService),
68 params,
69 'common',
70 'filter:api.local-videos.videos.list.params',
71 'filter:api.local-videos.videos.list.result'
72 )
73 }
74
75 generateSyndicationList () {
76 this.syndicationItems = this.videoService.getVideoFeedUrls(this.sort, this.filter, this.categoryOneOf)
77 }
78
79 toggleModerationDisplay () {
80 this.filter = this.filter === 'local' ? 'all-local' as 'all-local' : 'local' as 'local'
81
82 this.reloadVideos()
83 }
84 }