mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 04:25:08 +00:00
(Chat Panel) Style and logic tweaks
This commit is contained in:
parent
b6ebd2b839
commit
ffbd000fe2
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
<ng-container *ngIf="selectedContact === null">
|
<ng-container *ngIf="selectedContact === null">
|
||||||
|
|
||||||
<div class="title ml-16" fxLayout="row" fxLayoutAlign="start center">
|
<div class="title ml-16" fxLayout="row" fxLayoutAlign="start center"
|
||||||
|
(click)="unfoldSidebarTemporarily()">
|
||||||
<mat-icon class="s-32 white-fg">chat</mat-icon>
|
<mat-icon class="s-32 white-fg">chat</mat-icon>
|
||||||
<h3 class="ml-12">Team Chat</h3>
|
<h3 class="ml-12">Team Chat</h3>
|
||||||
</div>
|
</div>
|
||||||
|
@ -18,12 +19,14 @@
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<button mat-icon-button class="toggle-sidebar-folded mr-8" (click)="foldSidebarTemporarily()" fxHide fxShow.gt-md>
|
<button mat-icon-button class="toggle-sidebar-folded mr-8" (click)="foldSidebarTemporarily();resetChat();"
|
||||||
<mat-icon class="secondary-text s-20">arrow_forward</mat-icon>
|
fxHide fxShow.gt-md>
|
||||||
|
<mat-icon class="secondary-text s-20">close</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button mat-icon-button class="toggle-sidebar-open mr-8" (click)="toggleSidebarOpen()" fxHide.gt-md>
|
<button mat-icon-button class="toggle-sidebar-open mr-8" (click)="toggleSidebarOpen();resetChat();"
|
||||||
<mat-icon class="secondary-text">arrow_forward</mat-icon>
|
fxHide.gt-md>
|
||||||
|
<mat-icon class="secondary-text">close</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -37,7 +40,7 @@
|
||||||
class="contacts-list-item"
|
class="contacts-list-item"
|
||||||
[ngClass]="contact.status"
|
[ngClass]="contact.status"
|
||||||
[class.active]="contact.id === selectedContact?.id"
|
[class.active]="contact.id === selectedContact?.id"
|
||||||
(click)="goToChat(contact)">
|
(click)="toggleChat(contact)">
|
||||||
|
|
||||||
<img class="avatar" [src]="contact.avatar"
|
<img class="avatar" [src]="contact.avatar"
|
||||||
[matTooltip]="contact.name"
|
[matTooltip]="contact.name"
|
||||||
|
@ -78,7 +81,7 @@
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
<ng-container *ngIf="chat && chat.dialog && chat.dialog.length === 0">
|
<ng-container *ngIf="selectedContact && chat && chat.dialog && chat.dialog.length === 0">
|
||||||
|
|
||||||
<div class="no-messages-icon">
|
<div class="no-messages-icon">
|
||||||
<mat-icon class="s-128">chat</mat-icon>
|
<mat-icon class="s-128">chat</mat-icon>
|
||||||
|
@ -87,11 +90,29 @@
|
||||||
<div class="no-messages secondary-text">
|
<div class="no-messages secondary-text">
|
||||||
Start a conversation by typing your message below.
|
Start a conversation by typing your message below.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</ng-container>
|
||||||
|
|
||||||
|
<ng-container *ngIf="!selectedContact">
|
||||||
|
|
||||||
|
<div class="no-contact-selected">
|
||||||
|
|
||||||
|
<div class="no-contact-icon">
|
||||||
|
<mat-icon class="s-128">chat</mat-icon>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="no-contact secondary-text">
|
||||||
|
Select a contact to start a conversation.
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="reply-form" fxFlex="0 0 auto" fxLayout="row" fxLayoutAlign="center center">
|
<div class="reply-form" fxFlex="0 0 auto" fxLayout="row" fxLayoutAlign="center center"
|
||||||
|
*ngIf="selectedContact">
|
||||||
|
|
||||||
<form #replyForm="ngForm"
|
<form #replyForm="ngForm"
|
||||||
(ngSubmit)="reply($event)"
|
(ngSubmit)="reply($event)"
|
||||||
|
|
|
@ -16,11 +16,14 @@ chat-panel {
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
|
position: relative;
|
||||||
height: 64px;
|
height: 64px;
|
||||||
max-height: 64px;
|
max-height: 64px;
|
||||||
min-height: 64px;
|
min-height: 64px;
|
||||||
|
z-index: 10;
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
mat-icon {
|
mat-icon {
|
||||||
margin-left: 4px;
|
margin-left: 4px;
|
||||||
|
@ -40,11 +43,14 @@ chat-panel {
|
||||||
}
|
}
|
||||||
|
|
||||||
#contacts-list {
|
#contacts-list {
|
||||||
padding: 8px 0;
|
position: relative;
|
||||||
|
z-index: 5;
|
||||||
|
padding: 16px 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
width: 72px;
|
width: 72px;
|
||||||
min-width: 72px;
|
min-width: 72px;
|
||||||
max-width: 72px;
|
max-width: 72px;
|
||||||
|
background-color: #F9F9F9;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
|
|
||||||
// Perfect scrollbar
|
// Perfect scrollbar
|
||||||
|
@ -66,8 +72,24 @@ chat-panel {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
background-color: mat-color(mat-palette($mat-grey, 300));
|
position: relative;
|
||||||
@include mat-elevation(2);
|
background-color: mat-color(mat-palette($mat-indigo, 50));
|
||||||
|
|
||||||
|
.status-icon {
|
||||||
|
border-color: mat-color(mat-palette($mat-indigo, 50));
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
position: absolute;
|
||||||
|
top: 8px;
|
||||||
|
right: 0;
|
||||||
|
bottom: 8px;
|
||||||
|
content: "";
|
||||||
|
width: 4px;
|
||||||
|
border-top-left-radius: 4px;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
background-color: mat-color(mat-palette($mat-indigo));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.offline {
|
&.offline {
|
||||||
|
@ -87,14 +109,17 @@ chat-panel {
|
||||||
|
|
||||||
.avatar {
|
.avatar {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
min-width: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.unread-count {
|
.unread-count {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
min-width: 18px;
|
min-width: 18px;
|
||||||
height: 18px;
|
height: 18px;
|
||||||
top: 4px;
|
top: 8px;
|
||||||
left: 10px;
|
left: 12px;
|
||||||
border-radius: 9px;
|
border-radius: 9px;
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
@ -111,9 +136,9 @@ chat-panel {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
bottom: 3px;
|
bottom: 10px;
|
||||||
left: 44px;
|
left: 44px;
|
||||||
border: 2px solid white;
|
border: 2px solid #F9F9F9;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
|
||||||
&.online {
|
&.online {
|
||||||
|
@ -136,7 +161,11 @@ chat-panel {
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat {
|
#chat {
|
||||||
background-color: mat-color(mat-palette($mat-grey, 300));
|
position: relative;
|
||||||
|
z-index: 7;
|
||||||
|
flex: 1 1 100%;
|
||||||
|
background-color: white;
|
||||||
|
box-shadow: -1px 0 2px 0 rgba(0, 0, 0, 0.25);
|
||||||
|
|
||||||
.messages {
|
.messages {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -177,6 +206,7 @@ chat-panel {
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
top: 100%;
|
top: 100%;
|
||||||
|
left: 0;
|
||||||
color: $black-87-opacity;
|
color: $black-87-opacity;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
@ -224,7 +254,7 @@ chat-panel {
|
||||||
|
|
||||||
.bubble {
|
.bubble {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
background-color: #FFFFFF;
|
background-color: #E0E0E0;
|
||||||
color: $black-87-opacity;
|
color: $black-87-opacity;
|
||||||
|
|
||||||
border-top-left-radius: 20px;
|
border-top-left-radius: 20px;
|
||||||
|
@ -304,12 +334,34 @@ chat-panel {
|
||||||
padding: 0 16px 24px 16px;
|
padding: 0 16px 24px 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.no-contact-selected {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
padding: 0 24px;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.no-contact-icon {
|
||||||
|
|
||||||
|
mat-icon {
|
||||||
|
color: rgba(0, 0, 0, 0.06);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-contact {
|
||||||
|
margin-top: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.reply-form {
|
.reply-form {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.message-text {
|
.message-text {
|
||||||
|
background-color: #E0E0E0;
|
||||||
padding: 16px 8px;
|
padding: 16px 8px;
|
||||||
|
|
||||||
.mat-form-field-wrapper {
|
.mat-form-field-wrapper {
|
||||||
|
|
|
@ -206,27 +206,52 @@ export class ChatPanelComponent implements OnInit, AfterViewInit, OnDestroy
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Go to chat with the contact
|
* Toggle chat with the contact
|
||||||
*
|
*
|
||||||
* @param contact
|
* @param contact
|
||||||
*/
|
*/
|
||||||
goToChat(contact): void
|
toggleChat(contact): void
|
||||||
{
|
{
|
||||||
// Unfold the sidebar temporarily
|
// If the contact equals to the selectedContact,
|
||||||
this.unfoldSidebarTemporarily();
|
// that means we will deselect the contact and
|
||||||
|
// unload the chat
|
||||||
|
if ( this.selectedContact && contact.id === this.selectedContact.id )
|
||||||
|
{
|
||||||
|
// Reset
|
||||||
|
this.resetChat();
|
||||||
|
}
|
||||||
|
// Otherwise, we will select the contact, open
|
||||||
|
// the sidebar and start the chat
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Unfold the sidebar temporarily
|
||||||
|
this.unfoldSidebarTemporarily();
|
||||||
|
|
||||||
// Set the selected contact
|
// Set the selected contact
|
||||||
this.selectedContact = contact;
|
this.selectedContact = contact;
|
||||||
|
|
||||||
// Load the chat
|
// Load the chat
|
||||||
this._chatPanelService.getChat(contact.id).then((chat) => {
|
this._chatPanelService.getChat(contact.id).then((chat) => {
|
||||||
|
|
||||||
// Set the chat
|
// Set the chat
|
||||||
this.chat = chat;
|
this.chat = chat;
|
||||||
|
|
||||||
// Prepare the chat for the replies
|
// Prepare the chat for the replies
|
||||||
this._prepareChatForReplies();
|
this._prepareChatForReplies();
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove the selected contact and unload the chat
|
||||||
|
*/
|
||||||
|
resetChat(): void
|
||||||
|
{
|
||||||
|
// Set the selected contact as null
|
||||||
|
this.selectedContact = null;
|
||||||
|
|
||||||
|
// Set the chat as null
|
||||||
|
this.chat = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue
Block a user