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'
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'
12 import { tap } from 'rxjs/operators'
13 import { I18n } from '@ngx-translate/i18n-polyfill'
14 import { Subscription } from 'rxjs'
15 import { ScreenService } from '@app/shared/misc/screen.service'
18 selector: 'my-account-videos',
19 templateUrl: '../../shared/video/abstract-video-list.html',
21 '../../shared/video/abstract-video-list.scss',
22 './account-videos.component.scss'
25 export class AccountVideosComponent extends AbstractVideoList implements OnInit, OnDestroy {
27 marginContent = false // Disable margin
28 currentRoute = '/accounts/videos'
31 private account: Account
32 private accountSub: Subscription
35 protected router: Router,
36 protected route: ActivatedRoute,
37 protected authService: AuthService,
38 protected notificationsService: NotificationsService,
39 protected confirmService: ConfirmService,
40 protected location: Location,
41 protected screenService: ScreenService,
43 private accountService: AccountService,
44 private videoService: VideoService
48 this.titlePage = this.i18n('Published videos')
54 // Parent get the account for us
55 this.accountSub = this.accountService.accountLoaded
56 .subscribe(account => {
57 this.account = account
58 this.currentRoute = '/accounts/' + this.account.nameWithHost + '/videos'
61 this.generateSyndicationList()
66 if (this.accountSub) this.accountSub.unsubscribe()
71 getVideosObservable (page: number) {
72 const newPagination = immutableAssign(this.pagination, { currentPage: page })
74 return this.videoService
75 .getAccountVideos(this.account, newPagination, this.sort)
77 tap(({ totalVideos }) => {
78 this.titlePage = this.i18n('Published {{totalVideos}} videos', { totalVideos })
83 generateSyndicationList () {
84 this.syndicationItems = this.videoService.getAccountFeedUrls(this.account.id)