63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
|
import { Component, ViewChild, OnInit } from '@angular/core'
|
||
|
import { AuthService, AuthStatus } from '@app/core'
|
||
|
import { FormReactive, FormValidatorService, UserService, User } from '@app/shared'
|
||
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
||
|
import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref'
|
||
|
import { ReplaySubject } from 'rxjs'
|
||
|
import { LocalStorageService } from '@app/shared/misc/storage.service'
|
||
|
import { filter } from 'rxjs/operators'
|
||
|
|
||
|
@Component({
|
||
|
selector: 'my-quick-settings',
|
||
|
templateUrl: './quick-settings-modal.component.html',
|
||
|
styleUrls: [ './quick-settings-modal.component.scss' ]
|
||
|
})
|
||
|
export class QuickSettingsModalComponent extends FormReactive implements OnInit {
|
||
|
@ViewChild('modal', { static: true }) modal: NgbModal
|
||
|
|
||
|
user: User
|
||
|
userInformationLoaded = new ReplaySubject<boolean>(1)
|
||
|
|
||
|
private openedModal: NgbModalRef
|
||
|
|
||
|
constructor (
|
||
|
protected formValidatorService: FormValidatorService,
|
||
|
private modalService: NgbModal,
|
||
|
private userService: UserService,
|
||
|
private authService: AuthService,
|
||
|
private localStorageService: LocalStorageService
|
||
|
) {
|
||
|
super()
|
||
|
}
|
||
|
|
||
|
ngOnInit () {
|
||
|
this.user = this.userService.getAnonymousUser()
|
||
|
this.localStorageService.watch().subscribe(
|
||
|
() => this.user = this.userService.getAnonymousUser()
|
||
|
)
|
||
|
this.userInformationLoaded.next(true)
|
||
|
|
||
|
this.authService.loginChangedSource
|
||
|
.pipe(filter(status => status !== AuthStatus.LoggedIn))
|
||
|
.subscribe(
|
||
|
() => {
|
||
|
this.user = this.userService.getAnonymousUser()
|
||
|
this.userInformationLoaded.next(true)
|
||
|
}
|
||
|
)
|
||
|
}
|
||
|
|
||
|
isUserLoggedIn () {
|
||
|
return this.authService.isLoggedIn()
|
||
|
}
|
||
|
|
||
|
show () {
|
||
|
this.openedModal = this.modalService.open(this.modal, { centered: true })
|
||
|
}
|
||
|
|
||
|
hide () {
|
||
|
this.openedModal.close()
|
||
|
this.form.reset()
|
||
|
}
|
||
|
}
|