64 lines
1.6 KiB
HTML
64 lines
1.6 KiB
HTML
|
<!-- CHAT -->
|
||
|
<div class="chat" fxFlex fxLayout="column">
|
||
|
<!-- CHAT TOOLBAR -->
|
||
|
<mat-toolbar class="chat-toolbar">
|
||
|
<div fxFlex fxLayout="row" fxLayoutAlign="space-between center">
|
||
|
<div fxLayout="row" fxLayoutAlign="start center">
|
||
|
<!-- RESPONSIVE CHATS BUTTON-->
|
||
|
<button
|
||
|
mat-icon-button
|
||
|
fxHide.gt-md
|
||
|
class="responsive-chats-button mr-16"
|
||
|
fuseMatSidenavToggler="chat-left-sidenav"
|
||
|
aria-label="chats button"
|
||
|
>
|
||
|
<mat-icon>chat</mat-icon>
|
||
|
</button>
|
||
|
<!-- / RESPONSIVE CHATS BUTTON-->
|
||
|
|
||
|
<!-- CHAT CONTACT-->
|
||
|
|
||
|
<!-- / CHAT CONTACT-->
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
<button
|
||
|
mat-icon-button
|
||
|
[matMenuTriggerFor]="contactMenu"
|
||
|
aria-label="more"
|
||
|
>
|
||
|
<mat-icon>more_vert</mat-icon>
|
||
|
</button>
|
||
|
|
||
|
<mat-menu #contactMenu="matMenu">
|
||
|
<button
|
||
|
mat-menu-item
|
||
|
fuseMatSidenavToggler="chat-right-sidenav"
|
||
|
(click)="selectContact()"
|
||
|
>
|
||
|
Contact Info
|
||
|
</button>
|
||
|
</mat-menu>
|
||
|
</div>
|
||
|
</div>
|
||
|
</mat-toolbar>
|
||
|
<!-- / CHAT TOOLBAR -->
|
||
|
|
||
|
<!-- CHAT CONTENT -->
|
||
|
<div id="chat-content" fxFlex="1 1 auto" fusePerfectScrollbar>
|
||
|
<!-- CHAT MESSAGES -->
|
||
|
<ucap-chat-messages></ucap-chat-messages>
|
||
|
<!-- CHAT MESSAGES -->
|
||
|
</div>
|
||
|
<!-- / CHAT CONTENT -->
|
||
|
|
||
|
<!-- CHAT FOOTER -->
|
||
|
<div class="chat-footer" fxFlex="0 0 auto" fxLayout="column">
|
||
|
<!-- REPLY FORM -->
|
||
|
<ucap-chat-form></ucap-chat-form>
|
||
|
<!-- / REPLY FORM -->
|
||
|
</div>
|
||
|
<!-- / CHAT FOOTER-->
|
||
|
</div>
|
||
|
<!-- / CHAT -->
|