]>
Commit | Line | Data |
---|---|---|
0626e7af C |
1 | import { Component, OnDestroy, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | |
3 | import { Location } from '@angular/common' | |
4 | import { immutableAssign } from '@app/shared/misc/utils' | |
5 | import { NotificationsService } from 'angular2-notifications' | |
0626e7af C |
6 | import { AuthService } from '../../core/auth' |
7 | import { ConfirmService } from '../../core/confirm' | |
8 | import { AbstractVideoList } from '../../shared/video/abstract-video-list' | |
9 | import { VideoService } from '../../shared/video/video.service' | |
10 | import { Account } from '@app/shared/account/account.model' | |
11 | import { AccountService } from '@app/shared/account/account.service' | |
0bf1f265 | 12 | import { tap } from 'rxjs/operators' |
b1d40cff | 13 | import { I18n } from '@ngx-translate/i18n-polyfill' |
734a5ceb | 14 | import { Subscription } from 'rxjs' |
bbe0f064 | 15 | import { ScreenService } from '@app/shared/misc/screen.service' |
0626e7af C |
16 | |
17 | @Component({ | |
18 | selector: 'my-account-videos', | |
19 | templateUrl: '../../shared/video/abstract-video-list.html', | |
20 | styleUrls: [ | |
21 | '../../shared/video/abstract-video-list.scss', | |
22 | './account-videos.component.scss' | |
23 | ] | |
24 | }) | |
25 | export class AccountVideosComponent extends AbstractVideoList implements OnInit, OnDestroy { | |
b1d40cff | 26 | titlePage: string |
0626e7af | 27 | marginContent = false // Disable margin |
c7b51415 | 28 | currentRoute = '/accounts/videos' |
0626e7af C |
29 | loadOnInit = false |
30 | ||
31 | private account: Account | |
734a5ceb | 32 | private accountSub: Subscription |
0626e7af C |
33 | |
34 | constructor ( | |
35 | protected router: Router, | |
36 | protected route: ActivatedRoute, | |
37 | protected authService: AuthService, | |
38 | protected notificationsService: NotificationsService, | |
39 | protected confirmService: ConfirmService, | |
40 | protected location: Location, | |
bbe0f064 | 41 | protected screenService: ScreenService, |
b1d40cff | 42 | protected i18n: I18n, |
0626e7af C |
43 | private accountService: AccountService, |
44 | private videoService: VideoService | |
45 | ) { | |
46 | super() | |
b1d40cff C |
47 | |
48 | this.titlePage = this.i18n('Published videos') | |
0626e7af C |
49 | } |
50 | ||
51 | ngOnInit () { | |
52 | super.ngOnInit() | |
53 | ||
54 | // Parent get the account for us | |
734a5ceb | 55 | this.accountSub = this.accountService.accountLoaded |
0626e7af C |
56 | .subscribe(account => { |
57 | this.account = account | |
c7b51415 | 58 | this.currentRoute = '/accounts/' + this.account.nameWithHost + '/videos' |
0626e7af | 59 | |
734a5ceb | 60 | this.reloadVideos() |
0626e7af C |
61 | this.generateSyndicationList() |
62 | }) | |
63 | } | |
64 | ||
65 | ngOnDestroy () { | |
734a5ceb C |
66 | if (this.accountSub) this.accountSub.unsubscribe() |
67 | ||
0626e7af C |
68 | super.ngOnDestroy() |
69 | } | |
70 | ||
71 | getVideosObservable (page: number) { | |
72 | const newPagination = immutableAssign(this.pagination, { currentPage: page }) | |
73 | ||
0bf1f265 C |
74 | return this.videoService |
75 | .getAccountVideos(this.account, newPagination, this.sort) | |
b1d40cff C |
76 | .pipe( |
77 | tap(({ totalVideos }) => { | |
25acef90 | 78 | this.titlePage = this.i18n('Published {{totalVideos}} videos', { totalVideos }) |
b1d40cff C |
79 | }) |
80 | ) | |
0626e7af C |
81 | } |
82 | ||
83 | generateSyndicationList () { | |
84 | this.syndicationItems = this.videoService.getAccountFeedUrls(this.account.id) | |
85 | } | |
86 | } |