next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/left-side.component.html

61 lines
2.0 KiB
HTML
Raw Normal View History

2019-09-26 05:38:21 +00:00
<div class="container">
2019-10-21 04:20:14 +00:00
<!--<div>
LG ucap
<button mat-icon-button aria-label="New Chat" (click)="onClickNewChat()">
<mat-icon>chat</mat-icon>
</button>
2019-10-21 04:20:14 +00:00
</div>-->
2019-10-29 00:28:43 +00:00
<!-- <div class="logo">로고</div> -->
<mat-tab-group
mat-stretch-tabs
animationDuration="0ms"
(selectedTabChange)="onSelectedTabChange($event)"
class="global-menu"
>
<mat-tab [aria-label]="MainMenu.Group">
2019-09-26 05:38:21 +00:00
<ng-template mat-tab-label>
<mat-icon>group</mat-icon>
</ng-template>
2019-11-05 04:45:30 +00:00
<app-layout-chat-left-sidenav-group
class="left-group-side"
(newGroupAndMember)="onClickNewGroupAndMember($event)"
2019-11-05 04:45:30 +00:00
></app-layout-chat-left-sidenav-group>
2019-09-26 05:38:21 +00:00
</mat-tab>
<mat-tab [aria-label]="MainMenu.Chat">
2019-09-26 05:38:21 +00:00
<ng-template mat-tab-label>
2019-10-18 03:49:23 +00:00
<mat-icon
[matBadgeHidden]="(badgeChatUnReadCount$ | async) <= 0"
[matBadge]="badgeChatUnReadCount$ | async"
matBadgeDescription="확인하지 않은 메시지가 있습니다."
matBadgeColor="accent"
matBadgePosition="above after"
>chat</mat-icon
>
2019-09-26 05:38:21 +00:00
</ng-template>
2019-10-16 06:06:22 +00:00
<app-layout-chat-left-sidenav-chat></app-layout-chat-left-sidenav-chat>
2019-09-26 05:38:21 +00:00
</mat-tab>
<mat-tab [aria-label]="MainMenu.Organization">
2019-09-26 05:38:21 +00:00
<ng-template mat-tab-label>
<mat-icon>device_hub</mat-icon>
</ng-template>
<app-layout-chat-left-sidenav-organization
[selectedUserList]="selectedUserList"
(checkAllUser)="onCheckAllUser($event)"
(checkUser)="onCheckUser($event)"
2019-10-29 10:06:25 +00:00
class="organization-side"
></app-layout-chat-left-sidenav-organization>
2019-09-26 05:38:21 +00:00
</mat-tab>
<mat-tab [aria-label]="MainMenu.Call">
2019-09-26 05:38:21 +00:00
<ng-template mat-tab-label>
<mat-icon>phone</mat-icon>
</ng-template>
2019-10-16 06:06:22 +00:00
<app-layout-chat-left-sidenav-call></app-layout-chat-left-sidenav-call>
2019-09-26 05:38:21 +00:00
</mat-tab>
</mat-tab-group>
2019-11-05 04:45:30 +00:00
<ucap-float-action-button
*ngIf="fabButtonShow"
2019-10-30 09:18:35 +00:00
[fabButtons]="fabButtons"
(buttonClick)="onClickFab($event)"
2019-11-05 04:45:30 +00:00
></ucap-float-action-button>
2019-09-26 05:38:21 +00:00
</div>