mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-03 15:11:37 +00:00
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
import { ChangeDetectionStrategy, Component, Input, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core';
|
|
import { MatDrawer } from '@angular/material/sidenav';
|
|
import { Subject, takeUntil } from 'rxjs';
|
|
import { Profile } from 'app/modules/admin/apps/chat/chat.types';
|
|
import { ChatService } from 'app/modules/admin/apps/chat/chat.service';
|
|
|
|
@Component({
|
|
selector : 'chat-profile',
|
|
templateUrl : './profile.component.html',
|
|
encapsulation : ViewEncapsulation.None,
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class ProfileComponent implements OnInit, OnDestroy
|
|
{
|
|
@Input() drawer: MatDrawer;
|
|
profile: Profile;
|
|
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor(private _chatService: ChatService)
|
|
{
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------
|
|
// @ Lifecycle hooks
|
|
// -----------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* On init
|
|
*/
|
|
ngOnInit(): void
|
|
{
|
|
// Profile
|
|
this._chatService.profile$
|
|
.pipe(takeUntil(this._unsubscribeAll))
|
|
.subscribe((profile: Profile) => {
|
|
this.profile = profile;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* On destroy
|
|
*/
|
|
ngOnDestroy(): void
|
|
{
|
|
// Unsubscribe from all subscriptions
|
|
this._unsubscribeAll.next(null);
|
|
this._unsubscribeAll.complete();
|
|
}
|
|
}
|