24 lines
575 B
TypeScript
24 lines
575 B
TypeScript
import { Directive, OnDestroy } from '@angular/core'
|
|
import { Subject } from 'rxjs'
|
|
import { ComponentWithPermissions } from '../with-permissions/with-permissions.component'
|
|
|
|
@Directive()
|
|
export abstract class LoadingComponentWithPermissions
|
|
extends ComponentWithPermissions
|
|
implements OnDestroy
|
|
{
|
|
public loading: boolean = true
|
|
public show: boolean = false
|
|
|
|
protected unsubscribeNotifier: Subject<any> = new Subject()
|
|
|
|
constructor() {
|
|
super()
|
|
}
|
|
|
|
ngOnDestroy(): void {
|
|
this.unsubscribeNotifier.next(this)
|
|
this.unsubscribeNotifier.complete()
|
|
}
|
|
}
|