X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Baccounts%2Faccounts.component.ts;h=3d486f084e5ccf02a073d313c7dc98c264a30945;hb=9b82d49da868536701d80ef1071df0e7cd301b7a;hp=e8339b78bd76d80a95a16de0d4607a6d751b18b1;hpb=88108880bbdba473cfe36ecbebc1c3c4f972e102;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+accounts/accounts.component.ts b/client/src/app/+accounts/accounts.component.ts index e8339b78b..3d486f084 100644 --- a/client/src/app/+accounts/accounts.component.ts +++ b/client/src/app/+accounts/accounts.component.ts @@ -8,6 +8,8 @@ import { Subscription } from 'rxjs' import { AuthService, Notifier, RedirectService } from '@app/core' import { User, UserRight } from '../../../../shared' import { I18n } from '@ngx-translate/i18n-polyfill' +import { VideoChannelService } from '@app/shared/video-channel/video-channel.service' +import { VideoChannel } from '@app/shared/video-channel/video-channel.model' @Component({ templateUrl: './accounts.component.html', @@ -16,6 +18,7 @@ import { I18n } from '@ngx-translate/i18n-polyfill' export class AccountsComponent implements OnInit, OnDestroy { account: Account user: User + videoChannels: VideoChannel[] = [] private routeSub: Subscription @@ -23,10 +26,12 @@ export class AccountsComponent implements OnInit, OnDestroy { private route: ActivatedRoute, private userService: UserService, private accountService: AccountService, + private videoChannelService: VideoChannelService, private notifier: Notifier, private restExtractor: RestExtractor, private redirectService: RedirectService, - private authService: AuthService + private authService: AuthService, + private i18n: I18n ) {} ngOnInit () { @@ -35,11 +40,15 @@ export class AccountsComponent implements OnInit, OnDestroy { map(params => params[ 'accountId' ]), distinctUntilChanged(), switchMap(accountId => this.accountService.getAccount(accountId)), - tap(account => this.getUserIfNeeded(account)), + tap(account => { + this.account = account + this.getUserIfNeeded(account) + }), + switchMap(account => this.videoChannelService.listAccountVideoChannels(account)), catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 404 ])) ) .subscribe( - account => this.account = account, + videoChannels => this.videoChannels = videoChannels.data, err => this.notifier.error(err.message) ) @@ -49,6 +58,18 @@ export class AccountsComponent implements OnInit, OnDestroy { if (this.routeSub) this.routeSub.unsubscribe() } + get naiveAggregatedSubscribers () { + return this.videoChannels.reduce( + (acc, val) => acc + val.followersCount, + this.account.followersCount // accumulator starts with the base number of subscribers the account has + ) + } + + get isManageable () { + if (!this.authService.isLoggedIn()) return false + return this.user.id === this.authService.getUser().id + } + onUserChanged () { this.getUserIfNeeded(this.account) } @@ -57,6 +78,14 @@ export class AccountsComponent implements OnInit, OnDestroy { this.redirectService.redirectToHomepage() } + activateCopiedMessage () { + this.notifier.success(this.i18n('Username copied')) + } + + subscribersDisplayFor (count: number) { + return this.i18n(`{count, plural, =1 {1 subscriber} other {${count} subscribers}}`, { count }) + } + private getUserIfNeeded (account: Account) { if (!account.userId) return if (!this.authService.isLoggedIn()) return