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