mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-14 12:25:14 +00:00
34 lines
876 B
TypeScript
34 lines
876 B
TypeScript
import { Component, OnDestroy, ViewEncapsulation } from '@angular/core';
|
|
import { Subject } from 'rxjs';
|
|
|
|
@Component({
|
|
selector : 'empty-layout',
|
|
templateUrl : './empty.component.html',
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class EmptyLayoutComponent implements OnDestroy
|
|
{
|
|
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Lifecycle hooks
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* On destroy
|
|
*/
|
|
ngOnDestroy(): void
|
|
{
|
|
// Unsubscribe from all subscriptions
|
|
this._unsubscribeAll.next(null);
|
|
this._unsubscribeAll.complete();
|
|
}
|
|
}
|