2020-03-03 17:44:02 +09:00
|
|
|
<app-layout-messenger-intro
|
|
|
|
*ngIf="
|
|
|
|
!this.selectedChat && (this.gnbMenuIndex$ | async) !== MainMenu.Organization
|
|
|
|
"
|
|
|
|
></app-layout-messenger-intro>
|
|
|
|
|
|
|
|
<app-layout-messenger-messages
|
|
|
|
*ngIf="
|
|
|
|
!!this.selectedChat &&
|
|
|
|
(this.gnbMenuIndex$ | async) !== MainMenu.Organization
|
|
|
|
"
|
|
|
|
(openProfile)="onClickOpenProfile($event)"
|
|
|
|
(closeRightDrawer)="onCloseRightDrawer()"
|
|
|
|
></app-layout-messenger-messages>
|
|
|
|
|
|
|
|
<app-layout-messenger-organization
|
2020-03-05 11:10:33 +09:00
|
|
|
(openProfile)="onClickOpenProfile($event)"
|
2020-03-05 14:53:42 +09:00
|
|
|
(createConference)="onClickConferenceCreate($event)"
|
2020-03-09 13:27:15 +09:00
|
|
|
(gotoDeptTree)="onClickGotoDeptTree($event)"
|
2020-03-03 17:44:02 +09:00
|
|
|
[style.display]="
|
|
|
|
MainMenu.Organization === (this.gnbMenuIndex$ | async) ? 'block' : 'none'
|
|
|
|
"
|
|
|
|
>
|
|
|
|
</app-layout-messenger-organization>
|