2018-10-05 09:56:14 -05:00
|
|
|
import { Component, OnDestroy, OnInit } 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-10-05 09:56:14 -05:00
|
|
|
import { RestExtractor, UserService } from '@app/shared'
|
|
|
|
import { catchError, distinctUntilChanged, map, switchMap, tap } from 'rxjs/operators'
|
2018-06-07 04:19:26 -05:00
|
|
|
import { Subscription } from 'rxjs'
|
2018-12-19 09:04:34 -06:00
|
|
|
import { AuthService, Notifier, RedirectService } from '@app/core'
|
2018-10-05 09:56:14 -05:00
|
|
|
import { User, UserRight } from '../../../../shared'
|
2019-06-19 08:14:13 -05:00
|
|
|
import { I18n } from '@ngx-translate/i18n-polyfill'
|
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
|
|
|
})
|
2018-06-07 07:58:41 -05:00
|
|
|
export class AccountsComponent implements OnInit, OnDestroy {
|
2018-04-25 03:21:38 -05:00
|
|
|
account: Account
|
2018-10-05 09:56:14 -05:00
|
|
|
user: User
|
2018-04-24 08:10:54 -05:00
|
|
|
|
2018-06-07 04:19:26 -05:00
|
|
|
private routeSub: Subscription
|
|
|
|
|
2018-04-24 08:10:54 -05:00
|
|
|
constructor (
|
|
|
|
private route: ActivatedRoute,
|
2018-10-05 09:56:14 -05:00
|
|
|
private userService: UserService,
|
2018-05-31 04:35:01 -05:00
|
|
|
private accountService: AccountService,
|
2018-12-19 09:04:34 -06:00
|
|
|
private notifier: Notifier,
|
2018-10-05 09:56:14 -05:00
|
|
|
private restExtractor: RestExtractor,
|
|
|
|
private redirectService: RedirectService,
|
2019-06-19 08:14:13 -05:00
|
|
|
private authService: AuthService,
|
|
|
|
private i18n: I18n
|
2018-04-24 08:10:54 -05:00
|
|
|
) {}
|
|
|
|
|
|
|
|
ngOnInit () {
|
2018-06-07 04:19:26 -05:00
|
|
|
this.routeSub = this.route.params
|
|
|
|
.pipe(
|
|
|
|
map(params => params[ 'accountId' ]),
|
|
|
|
distinctUntilChanged(),
|
|
|
|
switchMap(accountId => this.accountService.getAccount(accountId)),
|
2018-10-05 09:56:14 -05:00
|
|
|
tap(account => this.getUserIfNeeded(account)),
|
2018-06-07 04:19:26 -05:00
|
|
|
catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 404 ]))
|
|
|
|
)
|
2018-10-05 09:56:14 -05:00
|
|
|
.subscribe(
|
|
|
|
account => this.account = account,
|
|
|
|
|
2018-12-19 09:04:34 -06:00
|
|
|
err => this.notifier.error(err.message)
|
2018-10-05 09:56:14 -05:00
|
|
|
)
|
2018-06-07 04:19:26 -05:00
|
|
|
}
|
2018-04-24 08:10:54 -05:00
|
|
|
|
2018-06-07 04:19:26 -05:00
|
|
|
ngOnDestroy () {
|
|
|
|
if (this.routeSub) this.routeSub.unsubscribe()
|
2018-04-24 08:10:54 -05:00
|
|
|
}
|
2018-10-05 09:56:14 -05:00
|
|
|
|
|
|
|
onUserChanged () {
|
|
|
|
this.getUserIfNeeded(this.account)
|
|
|
|
}
|
|
|
|
|
|
|
|
onUserDeleted () {
|
|
|
|
this.redirectService.redirectToHomepage()
|
|
|
|
}
|
|
|
|
|
2019-06-19 08:14:13 -05:00
|
|
|
activateCopiedMessage () {
|
|
|
|
this.notifier.success(this.i18n('Username copied'))
|
|
|
|
}
|
|
|
|
|
2018-10-05 09:56:14 -05:00
|
|
|
private getUserIfNeeded (account: Account) {
|
|
|
|
if (!account.userId) return
|
|
|
|
if (!this.authService.isLoggedIn()) return
|
|
|
|
|
|
|
|
const user = this.authService.getUser()
|
|
|
|
if (user.hasRight(UserRight.MANAGE_USERS)) {
|
|
|
|
this.userService.getUser(account.userId)
|
|
|
|
.subscribe(
|
|
|
|
user => this.user = user,
|
|
|
|
|
2018-12-19 09:04:34 -06:00
|
|
|
err => this.notifier.error(err.message)
|
2018-10-05 09:56:14 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2018-04-24 08:10:54 -05:00
|
|
|
}
|