2019-11-19 04:13:08 +00:00
|
|
|
<div class="rightDrawer-title">
|
2020-01-15 05:23:55 +00:00
|
|
|
<h3>{{ getTitle() }}</h3>
|
2019-11-13 02:06:13 +00:00
|
|
|
<span>
|
|
|
|
<button
|
|
|
|
mat-button
|
|
|
|
matSuffix
|
|
|
|
mat-icon-button
|
|
|
|
aria-label="Close"
|
|
|
|
(click)="onClickClose()"
|
|
|
|
>
|
|
|
|
<mat-icon>close</mat-icon>
|
|
|
|
</button>
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-11-11 05:31:26 +00:00
|
|
|
<ng-container *ngIf="selectedRightDrawer" [ngSwitch]="selectedRightDrawer">
|
2019-11-13 06:42:30 +00:00
|
|
|
<!-- [S] About Chat room -->
|
2019-11-11 05:31:26 +00:00
|
|
|
<app-layout-chat-right-drawer-file-box *ngSwitchCase="RightDrawer.FileBox">
|
|
|
|
</app-layout-chat-right-drawer-file-box>
|
|
|
|
|
|
|
|
<app-layout-chat-right-drawer-album-box *ngSwitchCase="RightDrawer.AlbumBox">
|
|
|
|
</app-layout-chat-right-drawer-album-box>
|
2019-11-12 09:10:38 +00:00
|
|
|
|
|
|
|
<app-layout-chat-right-drawer-room-user-list
|
|
|
|
*ngSwitchCase="RightDrawer.RoomUser"
|
|
|
|
(openProfile)="onClickOpenProfile($event)"
|
|
|
|
>
|
|
|
|
</app-layout-chat-right-drawer-room-user-list>
|
2019-11-13 06:42:30 +00:00
|
|
|
<!-- [E] About Chat room -->
|
|
|
|
|
|
|
|
<!-- [S] About Common -->
|
2019-12-03 05:32:50 +00:00
|
|
|
<app-layout-chat-right-drawer-notice *ngSwitchCase="RightDrawer.Notice">
|
|
|
|
</app-layout-chat-right-drawer-notice>
|
2019-11-13 06:42:30 +00:00
|
|
|
<!-- [E] About Common -->
|
2019-11-11 05:31:26 +00:00
|
|
|
</ng-container>
|