PeerTube/client/src/app/+accounts/accounts.component.ts

115 lines
4.1 KiB
TypeScript
Raw Normal View History

import { Component, OnDestroy, OnInit } from '@angular/core'
2018-04-24 15:10:54 +02:00
import { ActivatedRoute } from '@angular/router'
import { AccountService } from '@app/shared/account/account.service'
import { Account } from '@app/shared/account/account.model'
import { RestExtractor, UserService } from '@app/shared'
2020-01-22 14:02:36 +01:00
import { catchError, distinctUntilChanged, first, map, switchMap, tap } from 'rxjs/operators'
import { forkJoin, Subscription } from 'rxjs'
import { AuthService, Notifier, RedirectService } from '@app/core'
import { User, UserRight } from '../../../../shared'
2019-06-19 15:14:13 +02:00
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'
2018-04-24 15:10:54 +02:00
@Component({
2018-04-25 16:56:13 +02:00
templateUrl: './accounts.component.html',
styleUrls: [ './accounts.component.scss' ]
2018-04-24 15:10:54 +02:00
})
export class AccountsComponent implements OnInit, OnDestroy {
2018-04-25 10:21:38 +02:00
account: Account
2020-01-22 14:02:36 +01:00
accountUser: User
videoChannels: VideoChannel[] = []
2018-04-24 15:10:54 +02:00
2020-01-22 14:02:36 +01:00
isAccountManageable = false
accountFollowerTitle = ''
private routeSub: Subscription
2018-04-24 15:10:54 +02:00
constructor (
private route: ActivatedRoute,
private userService: UserService,
2018-05-31 11:35:01 +02:00
private accountService: AccountService,
private videoChannelService: VideoChannelService,
private notifier: Notifier,
private restExtractor: RestExtractor,
private redirectService: RedirectService,
2019-06-19 15:14:13 +02:00
private authService: AuthService,
private i18n: I18n
2020-01-22 15:01:38 +01:00
) {
}
2018-04-24 15:10:54 +02:00
ngOnInit () {
this.routeSub = this.route.params
2020-01-22 15:01:38 +01:00
.pipe(
map(params => params[ 'accountId' ]),
distinctUntilChanged(),
switchMap(accountId => this.accountService.getAccount(accountId)),
tap(account => {
this.account = account
if (this.authService.isLoggedIn()) {
this.authService.userInformationLoaded.subscribe(
() => {
this.isAccountManageable = this.account.userId && this.account.userId === this.authService.getUser().id
this.accountFollowerTitle = this.i18n(
'{{followers}} direct account followers',
{ followers: this.subscribersDisplayFor(account.followersCount) }
)
}
)
}
this.getUserIfNeeded(account)
}),
switchMap(account => this.videoChannelService.listAccountVideoChannels(account)),
catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 404 ]))
)
.subscribe(
videoChannels => this.videoChannels = videoChannels.data,
err => this.notifier.error(err.message)
)
}
2018-04-24 15:10:54 +02:00
ngOnDestroy () {
if (this.routeSub) this.routeSub.unsubscribe()
2018-04-24 15:10:54 +02:00
}
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
)
}
onUserChanged () {
this.getUserIfNeeded(this.account)
}
onUserDeleted () {
this.redirectService.redirectToHomepage()
}
2019-06-19 15:14:13 +02:00
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) {
2020-01-22 14:02:36 +01:00
if (!account.userId || !this.authService.isLoggedIn()) return
const user = this.authService.getUser()
if (user.hasRight(UserRight.MANAGE_USERS)) {
2020-01-22 15:01:38 +01:00
this.userService.getUser(account.userId).subscribe(
accountUser => this.accountUser = accountUser,
2020-01-22 14:02:36 +01:00
err => this.notifier.error(err.message)
)
}
}
2018-04-24 15:10:54 +02:00
}