2020-01-22 10:36:14 +09:00
|
|
|
<div class="container">
|
2020-01-21 15:08:15 +09:00
|
|
|
<div fxFlexFill class="left-side-tabs-body">
|
2019-11-18 09:22:36 +09:00
|
|
|
<div
|
|
|
|
#tabs
|
|
|
|
class="left-side-tabs-contents"
|
2020-01-21 13:32:10 +09:00
|
|
|
[style.display]="MainMenu.Group === currentTabLable ? 'block' : 'none'"
|
2019-11-18 09:22:36 +09:00
|
|
|
>
|
2019-11-15 13:20:01 +09:00
|
|
|
<app-layout-chat-left-sidenav-group
|
|
|
|
class="left-group-side"
|
|
|
|
(newGroupAndMember)="onClickNewGroupAndMember()"
|
|
|
|
(openProfile)="onClickOpenProfile($event)"
|
|
|
|
></app-layout-chat-left-sidenav-group>
|
|
|
|
</div>
|
2019-11-18 09:22:36 +09:00
|
|
|
<div
|
|
|
|
#tabs
|
|
|
|
class="left-side-tabs-contents"
|
2020-01-21 13:32:10 +09:00
|
|
|
[style.display]="MainMenu.Chat === currentTabLable ? 'block' : 'none'"
|
2019-11-18 09:22:36 +09:00
|
|
|
>
|
2020-02-12 16:27:12 +09:00
|
|
|
<app-layout-chat-left-sidenav-chat
|
|
|
|
[isVisible]="currentTabLable === MainMenu.Chat"
|
|
|
|
></app-layout-chat-left-sidenav-chat>
|
2019-11-15 13:20:01 +09:00
|
|
|
</div>
|
2019-11-18 09:22:36 +09:00
|
|
|
<div
|
|
|
|
#tabs
|
|
|
|
class="left-side-tabs-contents"
|
2020-01-21 13:32:10 +09:00
|
|
|
[style.display]="
|
|
|
|
MainMenu.Organization === currentTabLable ? 'block' : 'none'
|
|
|
|
"
|
2019-11-18 09:22:36 +09:00
|
|
|
>
|
2019-11-15 13:20:01 +09:00
|
|
|
<app-layout-chat-left-sidenav-organization
|
|
|
|
[selectedUserList]="selectedUserList"
|
2019-11-22 16:15:11 +09:00
|
|
|
[isVisible]="currentTabLable === MainMenu.Organization"
|
2019-11-15 13:20:01 +09:00
|
|
|
(checkAllUser)="onCheckAllUser($event)"
|
|
|
|
(checkUser)="onCheckUser($event)"
|
2019-11-21 14:10:15 +09:00
|
|
|
(openProfile)="onClickOpenProfile($event)"
|
2019-12-16 17:42:49 +09:00
|
|
|
(sendCall)="onClickSendClickToCall($event)"
|
2019-12-18 09:56:00 +09:00
|
|
|
(sendSms)="onClickSendSms($event)"
|
2020-02-24 12:35:56 +09:00
|
|
|
(createConference)="onClickConferenceCreate()"
|
2019-11-19 13:14:38 +09:00
|
|
|
(toggleUser)="onToggleUser($event)"
|
2020-01-06 16:18:03 +09:00
|
|
|
(resetSelectedUserList)="onResetSelectedUserList($event)"
|
2019-11-15 13:20:01 +09:00
|
|
|
class="organization-side"
|
|
|
|
></app-layout-chat-left-sidenav-organization>
|
|
|
|
</div>
|
2019-11-18 09:22:36 +09:00
|
|
|
<div
|
|
|
|
#tabs
|
|
|
|
class="left-side-tabs-contents"
|
2020-01-21 13:32:10 +09:00
|
|
|
[style.display]="MainMenu.Message === currentTabLable ? 'block' : 'none'"
|
2019-11-22 15:49:39 +09:00
|
|
|
>
|
2019-11-22 17:25:51 +09:00
|
|
|
<app-layout-chat-left-sidenav-message
|
2019-12-12 15:11:49 +09:00
|
|
|
#messageBoxComponent
|
2019-11-22 17:25:51 +09:00
|
|
|
[isVisible]="currentTabLable === MainMenu.Message"
|
2019-11-26 17:54:37 +09:00
|
|
|
(doRefreshUnReadCount)="getMessageUnreadCount()"
|
2019-11-22 17:25:51 +09:00
|
|
|
></app-layout-chat-left-sidenav-message>
|
2019-11-22 15:49:39 +09:00
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
#tabs
|
|
|
|
class="left-side-tabs-contents"
|
2020-01-21 13:32:10 +09:00
|
|
|
[style.display]="MainMenu.Call === currentTabLable ? 'block' : 'none'"
|
2019-11-18 09:22:36 +09:00
|
|
|
>
|
2019-11-15 13:20:01 +09:00
|
|
|
<app-layout-chat-left-sidenav-call></app-layout-chat-left-sidenav-call>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-11-05 13:45:30 +09:00
|
|
|
<ucap-float-action-button
|
2019-11-04 17:52:47 +09:00
|
|
|
*ngIf="fabButtonShow"
|
2019-10-30 18:18:35 +09:00
|
|
|
[fabButtons]="fabButtons"
|
|
|
|
(buttonClick)="onClickFab($event)"
|
2019-11-05 13:45:30 +09:00
|
|
|
></ucap-float-action-button>
|
2019-09-26 14:38:21 +09:00
|
|
|
</div>
|