]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+accounts/account-videos/account-videos.component.ts
Fix bad date display for jobs
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / account-videos / account-videos.component.ts
index 7b7629480226c63975500516e12ff9b3e6541863..13d1f857d84df7f9a0751af5b5fd3ad1b31d18c4 100644 (file)
@@ -1,80 +1,69 @@
+import { Subscription } from 'rxjs'
+import { first } from 'rxjs/operators'
 import { Component, OnDestroy, OnInit } from '@angular/core'
-import { ActivatedRoute, Router } from '@angular/router'
-import { Location } from '@angular/common'
-import { immutableAssign } from '@app/shared/misc/utils'
-import { NotificationsService } from 'angular2-notifications'
-import { AuthService } from '../../core/auth'
-import { ConfirmService } from '../../core/confirm'
-import { AbstractVideoList } from '../../shared/video/abstract-video-list'
-import { VideoService } from '../../shared/video/video.service'
-import { Account } from '@app/shared/account/account.model'
-import { AccountService } from '@app/shared/account/account.service'
-import { tap } from 'rxjs/operators'
-import { I18n } from '@ngx-translate/i18n-polyfill'
+import { ComponentPaginationLight, DisableForReuseHook, ScreenService } from '@app/core'
+import { Account, AccountService, VideoService } from '@app/shared/shared-main'
+import { VideoFilters } from '@app/shared/shared-video-miniature'
+import { VideoSortField } from '@shared/models'
 
 @Component({
   selector: 'my-account-videos',
-  templateUrl: '../../shared/video/abstract-video-list.html',
-  styleUrls: [
-    '../../shared/video/abstract-video-list.scss',
-    './account-videos.component.scss'
-  ]
+  templateUrl: './account-videos.component.html'
 })
-export class AccountVideosComponent extends AbstractVideoList implements OnInit, OnDestroy {
-  titlePage: string
-  marginContent = false // Disable margin
-  currentRoute = '/account/videos'
-  loadOnInit = false
+export class AccountVideosComponent implements OnInit, OnDestroy, DisableForReuseHook {
+  getVideosObservableFunction = this.getVideosObservable.bind(this)
+  getSyndicationItemsFunction = this.getSyndicationItems.bind(this)
 
-  private account: Account
+  title = $localize`Videos`
+  defaultSort = '-publishedAt' as VideoSortField
+
+  account: Account
+  disabled = false
+
+  private accountSub: Subscription
 
   constructor (
-    protected router: Router,
-    protected route: ActivatedRoute,
-    protected authService: AuthService,
-    protected notificationsService: NotificationsService,
-    protected confirmService: ConfirmService,
-    protected location: Location,
-    protected i18n: I18n,
+    private screenService: ScreenService,
     private accountService: AccountService,
     private videoService: VideoService
   ) {
-    super()
-
-    this.titlePage = this.i18n('Published videos')
   }
 
   ngOnInit () {
-    super.ngOnInit()
-
     // Parent get the account for us
-    this.accountService.accountLoaded
-      .subscribe(account => {
-        this.account = account
-        this.currentRoute = '/account/' + this.account.id + '/videos'
-
-        this.loadMoreVideos(this.pagination.currentPage)
-        this.generateSyndicationList()
-      })
+    this.accountService.accountLoaded.pipe(first())
+      .subscribe(account => this.account = account)
   }
 
   ngOnDestroy () {
-    super.ngOnDestroy()
+    if (this.accountSub) this.accountSub.unsubscribe()
+  }
+
+  getVideosObservable (pagination: ComponentPaginationLight, filters: VideoFilters) {
+    const options = {
+      ...filters.toVideosAPIObject(),
+
+      videoPagination: pagination,
+      account: this.account,
+      skipCount: true
+    }
+
+    return this.videoService.getAccountVideos(options)
   }
 
-  getVideosObservable (page: number) {
-    const newPagination = immutableAssign(this.pagination, { currentPage: page })
+  getSyndicationItems () {
+    return this.videoService.getAccountFeedUrls(this.account.id)
+  }
+
+  displayAsRow () {
+    return this.screenService.isInMobileView()
+  }
 
-    return this.videoService
-               .getAccountVideos(this.account, newPagination, this.sort)
-               .pipe(
-                 tap(({ totalVideos }) => {
-                   this.titlePage = this.i18n('Published {{ totalVideos }} videos', { totalVideos })
-                 })
-               )
+  disableForReuse () {
+    this.disabled = true
   }
 
-  generateSyndicationList () {
-    this.syndicationItems = this.videoService.getAccountFeedUrls(this.account.id)
+  enabledForReuse () {
+    this.disabled = false
   }
 }