aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/account-videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-30 17:36:26 +0200
committerChocobozzz <me@florianbigard.com>2018-05-30 17:37:49 +0200
commit0bf1f2652382089c06434a7d297b638aad778b52 (patch)
treedb507913b7c05c61d6514d16897713010250b7e6 /client/src/app/+accounts/account-videos
parent960a11e89da4e4a6ad6fbad61c71625f89e267b6 (diff)
downloadPeerTube-0bf1f2652382089c06434a7d297b638aad778b52.tar.gz
PeerTube-0bf1f2652382089c06434a7d297b638aad778b52.tar.zst
PeerTube-0bf1f2652382089c06434a7d297b638aad778b52.zip
Add number of videos published by an account/video channel
Diffstat (limited to 'client/src/app/+accounts/account-videos')
-rw-r--r--client/src/app/+accounts/account-videos/account-videos.component.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/+accounts/account-videos/account-videos.component.ts b/client/src/app/+accounts/account-videos/account-videos.component.ts
index 1b0590f73..eca9fb6b7 100644
--- a/client/src/app/+accounts/account-videos/account-videos.component.ts
+++ b/client/src/app/+accounts/account-videos/account-videos.component.ts
@@ -9,6 +9,7 @@ import { AbstractVideoList } from '../../shared/video/abstract-video-list'
9import { VideoService } from '../../shared/video/video.service' 9import { VideoService } from '../../shared/video/video.service'
10import { Account } from '@app/shared/account/account.model' 10import { Account } from '@app/shared/account/account.model'
11import { AccountService } from '@app/shared/account/account.service' 11import { AccountService } from '@app/shared/account/account.service'
12import { tap } from 'rxjs/operators'
12 13
13@Component({ 14@Component({
14 selector: 'my-account-videos', 15 selector: 'my-account-videos',
@@ -60,7 +61,9 @@ export class AccountVideosComponent extends AbstractVideoList implements OnInit,
60 getVideosObservable (page: number) { 61 getVideosObservable (page: number) {
61 const newPagination = immutableAssign(this.pagination, { currentPage: page }) 62 const newPagination = immutableAssign(this.pagination, { currentPage: page })
62 63
63 return this.videoService.getAccountVideos(this.account, newPagination, this.sort) 64 return this.videoService
65 .getAccountVideos(this.account, newPagination, this.sort)
66 .pipe(tap(({ totalVideos }) => this.titlePage = `Published ${totalVideos} videos`))
64 } 67 }
65 68
66 generateSyndicationList () { 69 generateSyndicationList () {