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

39 lines
1.2 KiB
TypeScript
Raw Normal View History

import { Component, OnInit, OnDestroy } from '@angular/core'
2018-04-24 08:10:54 -05:00
import { ActivatedRoute } from '@angular/router'
import { AccountService } from '@app/shared/account/account.service'
import { Account } from '@app/shared/account/account.model'
2018-05-31 04:35:01 -05:00
import { RestExtractor } from '@app/shared'
import { catchError, switchMap, distinctUntilChanged, map } from 'rxjs/operators'
import { Subscription } from 'rxjs'
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 {
2018-04-25 03:21:38 -05:00
account: Account
2018-04-24 08:10:54 -05:00
private routeSub: Subscription
2018-04-24 08:10:54 -05:00
constructor (
private route: ActivatedRoute,
2018-05-31 04:35:01 -05:00
private accountService: AccountService,
private restExtractor: RestExtractor
2018-04-24 08:10:54 -05:00
) {}
ngOnInit () {
this.routeSub = this.route.params
.pipe(
map(params => params[ 'accountId' ]),
distinctUntilChanged(),
switchMap(accountId => this.accountService.getAccount(accountId)),
catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 404 ]))
)
.subscribe(account => this.account = account)
}
2018-04-24 08:10:54 -05:00
ngOnDestroy () {
if (this.routeSub) this.routeSub.unsubscribe()
2018-04-24 08:10:54 -05:00
}
}