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

144 lines
4.5 KiB
TypeScript
Raw Normal View History

2020-06-23 07:10:17 -05:00
import { Subscription } from 'rxjs'
import { catchError, distinctUntilChanged, map, switchMap, tap } from 'rxjs/operators'
2020-07-09 08:54:24 -05:00
import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core'
2018-04-24 08:10:54 -05:00
import { ActivatedRoute } from '@angular/router'
2020-06-23 07:10:17 -05:00
import { AuthService, Notifier, RedirectService, RestExtractor, ScreenService, UserService } from '@app/core'
2020-07-09 08:54:24 -05:00
import { Account, AccountService, DropdownAction, ListOverflowItem, VideoChannel, VideoChannelService } from '@app/shared/shared-main'
import { AccountReportComponent } from '@app/shared/shared-moderation'
2020-06-23 07:10:17 -05:00
import { User, UserRight } from '@shared/models'
2018-04-24 08:10:54 -05:00
@Component({
2018-04-25 09:56:13 -05:00
templateUrl: './accounts.component.html',
styleUrls: [ './accounts.component.scss' ]
2018-04-24 08:10:54 -05:00
})
export class AccountsComponent implements OnInit, OnDestroy {
2020-07-09 08:54:24 -05:00
@ViewChild('accountReportModal') accountReportModal: AccountReportComponent
2018-04-25 03:21:38 -05:00
account: Account
2020-01-22 07:02:36 -06:00
accountUser: User
videoChannels: VideoChannel[] = []
links: ListOverflowItem[] = []
2018-04-24 08:10:54 -05:00
2020-01-22 07:02:36 -06:00
isAccountManageable = false
accountFollowerTitle = ''
2020-07-09 08:54:24 -05:00
prependModerationActions: DropdownAction<any>[]
private routeSub: Subscription
2018-04-24 08:10:54 -05:00
constructor (
private route: ActivatedRoute,
private userService: UserService,
2018-05-31 04:35:01 -05:00
private accountService: AccountService,
private videoChannelService: VideoChannelService,
private notifier: Notifier,
private restExtractor: RestExtractor,
private redirectService: RedirectService,
2019-06-19 08:14:13 -05:00
private authService: AuthService,
private screenService: ScreenService
2020-01-22 08:01:38 -06:00
) {
}
2018-04-24 08:10:54 -05:00
ngOnInit () {
this.routeSub = this.route.params
2020-01-22 08:01:38 -06:00
.pipe(
map(params => params[ 'accountId' ]),
distinctUntilChanged(),
switchMap(accountId => this.accountService.getAccount(accountId)),
2020-07-09 08:54:24 -05:00
tap(account => this.onAccount(account)),
2020-01-22 08:01:38 -06:00
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)
)
this.links = [
{ label: $localize`VIDEO CHANNELS`, routerLink: 'video-channels' },
{ label: $localize`VIDEOS`, routerLink: 'videos' },
{ label: $localize`ABOUT`, routerLink: 'about' }
]
}
2018-04-24 08:10:54 -05:00
ngOnDestroy () {
if (this.routeSub) this.routeSub.unsubscribe()
2018-04-24 08:10:54 -05: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
)
}
get isInSmallView () {
return this.screenService.isInSmallView()
}
onUserChanged () {
this.getUserIfNeeded(this.account)
}
onUserDeleted () {
this.redirectService.redirectToHomepage()
}
2019-06-19 08:14:13 -05:00
activateCopiedMessage () {
this.notifier.success($localize`Username copied`)
2019-06-19 08:14:13 -05:00
}
subscribersDisplayFor (count: number) {
if (count === 1) return $localize`1 subscriber`
return $localize`${count} subscribers`
}
2020-07-09 08:54:24 -05:00
private onAccount (account: Account) {
this.prependModerationActions = undefined
this.account = account
if (this.authService.isLoggedIn()) {
this.authService.userInformationLoaded.subscribe(
() => {
this.isAccountManageable = this.account.userId && this.account.userId === this.authService.getUser().id
const followers = this.subscribersDisplayFor(account.followersCount)
this.accountFollowerTitle = $localize`${followers} direct account followers`
2020-07-09 08:54:24 -05:00
// It's not our account, we can report it
if (!this.isAccountManageable) {
this.prependModerationActions = [
{
2020-09-03 09:09:22 -05:00
label: $localize`Report this account`,
2020-07-09 08:54:24 -05:00
handler: () => this.showReportModal()
}
]
}
}
)
}
this.getUserIfNeeded(account)
}
private showReportModal () {
this.accountReportModal.show()
}
private getUserIfNeeded (account: Account) {
2020-01-22 07:02:36 -06:00
if (!account.userId || !this.authService.isLoggedIn()) return
const user = this.authService.getUser()
if (user.hasRight(UserRight.MANAGE_USERS)) {
2020-01-22 08:01:38 -06:00
this.userService.getUser(account.userId).subscribe(
accountUser => this.accountUser = accountUser,
2020-01-22 07:02:36 -06:00
err => this.notifier.error(err.message)
)
}
}
2018-04-24 08:10:54 -05:00
}