테마, 컴포넌트 분리
This commit is contained in:
parent
69ab6e5d3b
commit
a341f6df73
|
@ -43,6 +43,7 @@ body.theme-default {
|
|||
|
||||
// Apply the theme to the user components
|
||||
@include components-theme($theme);
|
||||
@include ucap-material-theme($theme);
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------
|
||||
|
|
|
@ -1,21 +1,20 @@
|
|||
.current-head{
|
||||
display:flex;
|
||||
@charset 'utf-8';
|
||||
.current-head {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding:0 10px;
|
||||
height:60px;
|
||||
h3{
|
||||
display:inline-flex;
|
||||
padding-left:10px;
|
||||
padding: 0 10px;
|
||||
height: 60px;
|
||||
h3 {
|
||||
display: inline-flex;
|
||||
padding-left: 10px;
|
||||
align-items: center;
|
||||
}
|
||||
.btn-box{
|
||||
.btn-box {
|
||||
height: 100%;
|
||||
margin-left:auto;
|
||||
display:inline-flex;
|
||||
margin-left: auto;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
.mat-icon-button{
|
||||
|
||||
.mat-icon-button {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -30,13 +30,16 @@
|
|||
</div>
|
||||
</div>
|
||||
<div *ngIf="!isUserSelect" class="btn-box">
|
||||
<button mat-stroked-button (click)="onClickShowSelectedUserList()">
|
||||
<!--선택된 후에는 disabled="true" 빼주세요. -->
|
||||
<button mat-stroked-button class="mat-primary" (click)="onClickShowSelectedUserList()">
|
||||
선택<span *ngIf="selectedUserList.length > 0"
|
||||
>({{ selectedUserList.length }})</span
|
||||
>
|
||||
</button>
|
||||
<button mat-stroked-button (click)="onClickAddGroup()">그룹에 추가</button>
|
||||
<button mat-stroked-button (click)="onClickChatOpen()">대화</button>
|
||||
<button mat-stroked-button (click)="onClickConference()">화상회의</button>
|
||||
<ul>
|
||||
<li><button mat-flat-button (click)="onClickAddGroup()" class="mat-primary">그룹에 추가</button></li>
|
||||
<li><button mat-flat-button (click)="onClickChatOpen()" class="mat-primary">대화</button></li>
|
||||
<li><button mat-flat-button (click)="onClickConference()" class="mat-primary">화상회의</button></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,28 +1,76 @@
|
|||
@charset 'utf-8';
|
||||
|
||||
@mixin ellipsis($row) {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
@if $row == 1 {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
} @else if $row >= 2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: $row;
|
||||
-webkit-box-orient: vertical;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
|
||||
.oraganization-tab {
|
||||
height: 100%;
|
||||
|
||||
.oraganization-tab-tree {
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
.btn-box {
|
||||
height: 80px;
|
||||
.btn-box{
|
||||
height:100px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
border-top: 1px solid #ddd;
|
||||
bottom:0;
|
||||
border-top:1px solid #ddd;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
background-color: #ffffff;
|
||||
width:100%;
|
||||
background-color:#ffffff;
|
||||
}
|
||||
.select-dept {
|
||||
border-top: 1px solid #dddddd;
|
||||
height: 40px;
|
||||
width: 100%;
|
||||
display: inline-flex;
|
||||
.select-dept{
|
||||
border-top:1px solid #dddddd;
|
||||
height:40px;
|
||||
width:100%;
|
||||
display:inline-flex;
|
||||
align-items: center;
|
||||
padding: 0 10px;
|
||||
padding:0 10px;
|
||||
}
|
||||
.select-list {
|
||||
.search-list{
|
||||
height: calc(100% - 120px);
|
||||
overflow: auto;
|
||||
.list-item{
|
||||
height:70px;
|
||||
}
|
||||
}
|
||||
.btn-box{
|
||||
padding:10px;
|
||||
button{
|
||||
width:100%;
|
||||
@include ellipsis(1);
|
||||
}
|
||||
ul{
|
||||
display:flex;
|
||||
flex-flow: row;
|
||||
align-content: space-between;
|
||||
margin-top:4px;
|
||||
li{
|
||||
display:inline-flex;
|
||||
align-items: center;
|
||||
flex-grow: 1;
|
||||
width:33%;
|
||||
margin-right: 4px;
|
||||
&:last-child{
|
||||
margin-right: 0;
|
||||
}
|
||||
button{
|
||||
text-align:center;
|
||||
width:100%;
|
||||
height:100%;
|
||||
padding: 0 6px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,5 +1,19 @@
|
|||
@charset 'utf-8';
|
||||
@import '../../../../assets/scss/global/common';
|
||||
$line-basic:1px solid #dddddd;
|
||||
@mixin ellipsis($row) {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
@if $row == 1 {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
} @else if $row >= 2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: $row;
|
||||
-webkit-box-orient: vertical;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
:host {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
</ucap-account-login>
|
||||
</div>
|
||||
|
||||
<button
|
||||
<!--<button
|
||||
mat-raised-button
|
||||
color="accent"
|
||||
class="submit-button"
|
||||
|
@ -15,5 +15,5 @@
|
|||
(click)="onClickTemplate()"
|
||||
>
|
||||
Template
|
||||
</button>
|
||||
</button>-->
|
||||
</div>
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
.login {
|
||||
width: 100%;
|
||||
background-size: cover;
|
||||
height: 100%;
|
||||
background: #eaeff1;
|
||||
background: -webkit-linear-gradient(to top, #93a3af, #eaeff1);
|
||||
background: linear-gradient(to top, #93a3af, #eaeff1);
|
||||
|
||||
.login-wrapper {
|
||||
flex: 1 0 auto;
|
||||
padding: 32px;
|
||||
background: url(/assets/images/bg_login.png)no-repeat 50% bottom;
|
||||
background-size: 100% auto;
|
||||
}
|
||||
}
|
||||
|
|
BIN
projects/ucap-webmessenger-app/src/assets/images/bg_login.png
Normal file
BIN
projects/ucap-webmessenger-app/src/assets/images/bg_login.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 272 KiB |
|
@ -1,52 +0,0 @@
|
|||
@charset 'utf-8';
|
||||
|
||||
$listH-row3: 120px;
|
||||
$listH-row2: 90px;
|
||||
$listH-row2-s: 70px;
|
||||
$checkbox-size: 16px;
|
||||
$presence-size: 8px;
|
||||
$thumbnail-msize: 40px;
|
||||
$bg-list-hover: #efefef;
|
||||
$bg-list-item-msg: #f0f4f6;
|
||||
|
||||
$font-dark: #212121;
|
||||
$font-mid: #666666;
|
||||
$font-light: #848d95;
|
||||
$font-white: #ffffff;
|
||||
|
||||
$line-basic: 1px solid #dddddd;
|
||||
$color-main: #ee278b;
|
||||
|
||||
@mixin ellipsis($row) {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
@if $row == 1 {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
} @else if $row >= 2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: $row;
|
||||
-webkit-box-orient: vertical;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
@mixin border-radius($radius) {
|
||||
border-radius: $radius;
|
||||
-webkit-border-radius: $radius;
|
||||
-moz-border-radius: $radius;
|
||||
}
|
||||
@mixin visible($sh) {
|
||||
display: $sh;
|
||||
}
|
||||
@mixin presence-status($status) {
|
||||
@if $status == pcOn {
|
||||
background-color: #28ad66;
|
||||
} @else if $status == pcOut {
|
||||
background-color: #f35b5b;
|
||||
} @else if $status == pcOff {
|
||||
background-color: #a29f9f;
|
||||
} @else if $status == pcOther {
|
||||
background-color: #f0c10a;
|
||||
}
|
||||
}
|
|
@ -45,3 +45,36 @@ ul,
|
|||
ol {
|
||||
list-style: none;
|
||||
}
|
||||
@mixin ucap-material-theme($theme) {
|
||||
@include ucap-core-theme($theme);
|
||||
}
|
||||
|
||||
|
||||
@mixin ucap-core-theme($theme) {
|
||||
$accent: map-get($theme, accent);
|
||||
$warn: map-get($theme, warn);
|
||||
$primary: map-get($theme, primary);
|
||||
$background: map-get($theme, background);
|
||||
$foreground: map-get($theme, foreground);
|
||||
|
||||
.bg-primary-color {
|
||||
background: mat-color($primary);
|
||||
color: mat-color($primary, default-contrast);
|
||||
}
|
||||
.bg-accent-color{
|
||||
background: mat-color($accent);
|
||||
color: mat-color($accent, default-contrast);
|
||||
}
|
||||
.text-primary-color{
|
||||
color: mat-color($primary);
|
||||
}
|
||||
.text-accent-color{
|
||||
color: mat-color($accent);
|
||||
}
|
||||
.border-primary-color{
|
||||
border:1px solid mat-color($primary);
|
||||
}
|
||||
.border-accent-color{
|
||||
border:1px solid mat-color($accent);
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
<div class="login-form">
|
||||
<div class="title">LOGIN TO YOUR ACCOUNT</div>
|
||||
<div class="mat-title">LOGIN TO YOUR ACCOUNT</div>
|
||||
|
||||
<form name="loginForm" [formGroup]="loginForm" novalidate>
|
||||
<mat-form-field appearance="outline">
|
||||
<mat-form-field >
|
||||
<mat-label>Company</mat-label>
|
||||
<mat-select formControlName="companyCode" required>
|
||||
<mat-option
|
||||
|
@ -16,7 +16,7 @@
|
|||
</mat-error>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field appearance="outline">
|
||||
<mat-form-field>
|
||||
<mat-label>Login ID</mat-label>
|
||||
<input matInput formControlName="loginId" />
|
||||
<mat-error *ngIf="loginForm.get('loginId').hasError('required')">
|
||||
|
@ -27,7 +27,7 @@
|
|||
</mat-error>
|
||||
</mat-form-field>
|
||||
|
||||
<mat-form-field appearance="outline">
|
||||
<mat-form-field >
|
||||
<mat-label>Password</mat-label>
|
||||
<input matInput type="password" formControlName="loginPw" #loginPw />
|
||||
<mat-error>
|
||||
|
@ -61,4 +61,5 @@
|
|||
<span class="text">Don't have an account?</span>
|
||||
<a class="link">Create an account</a>
|
||||
</div>
|
||||
<div class="policy"><a class="link">개인정보 처리방침</a></div>
|
||||
</div>
|
||||
|
|
|
@ -1,11 +1,15 @@
|
|||
|
||||
.login-form {
|
||||
position: relative;
|
||||
width: 384px;
|
||||
max-width: 384px;
|
||||
padding: 32px;
|
||||
padding: 50px;
|
||||
text-align: center;
|
||||
background-color: rgba( 255, 255, 255, 0.8 );
|
||||
border-radius: 0px;
|
||||
box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
|
||||
|
||||
.title {
|
||||
font-size: 20px;
|
||||
.mat-title {
|
||||
margin: 16px 0 32px 0;
|
||||
}
|
||||
|
||||
|
@ -37,8 +41,8 @@
|
|||
}
|
||||
|
||||
.submit-button {
|
||||
width: 220px;
|
||||
margin: 16px auto;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
@ -85,6 +89,15 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
.policy{
|
||||
position: absolute;
|
||||
bottom:0;
|
||||
width:100%;
|
||||
padding:10px;
|
||||
left:0;
|
||||
background-color: #4f586b;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
button {
|
||||
&.google,
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
type="submit"
|
||||
aria-label="Send message"
|
||||
>
|
||||
<i class="material-icons">
|
||||
<i class="material-icons bg-primary-color">
|
||||
send
|
||||
</i>
|
||||
</button>
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
@charset 'utf-8';
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
@ -28,8 +30,7 @@
|
|||
}
|
||||
.send-message-button {
|
||||
margin-left: 20px;
|
||||
i {
|
||||
background-color: #ff3399;
|
||||
i{
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
|
@ -38,7 +39,7 @@
|
|||
font-size: 20px;
|
||||
color: #ffffff;
|
||||
&:hover{
|
||||
background-color: #333333;
|
||||
opacity: 0.8;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,6 +85,7 @@
|
|||
width: 100%;
|
||||
li {
|
||||
width: 50%;
|
||||
height: 100%;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
|
@ -96,6 +97,7 @@
|
|||
.mat-button {
|
||||
width: 100%;
|
||||
display: block;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,6 +13,6 @@
|
|||
width: 160px;
|
||||
font-size: 13px;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,20 @@
|
|||
@charset 'utf-8';
|
||||
@import '../../../../ucap-webmessenger-app/src/assets/scss/global/common.scss';
|
||||
|
||||
@mixin ellipsis($row) {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
@if $row == 1 {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
} @else if $row >= 2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: $row;
|
||||
-webkit-box-orient: vertical;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
|
||||
.bubble-main {
|
||||
padding: 14px;
|
||||
text-align: left;
|
||||
|
|
|
@ -3,5 +3,3 @@
|
|||
{{ message.sentMessage }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
width: 100%;
|
||||
li {
|
||||
width: 50%;
|
||||
height:100%;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
|
@ -54,6 +55,7 @@
|
|||
}
|
||||
.mat-button {
|
||||
width: 100%;
|
||||
height:100%;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,130 +8,132 @@
|
|||
contact: message.senderSeq !== loginRes.userSeq
|
||||
}"
|
||||
>
|
||||
<div>
|
||||
<ucap-chat-message-box-date-splitter
|
||||
*ngIf="getDateSplitter(i)"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-date-splitter>
|
||||
</div>
|
||||
|
||||
<div
|
||||
*ngIf="getIsInformation(message); then information; else contents"
|
||||
></div>
|
||||
<ng-template #information>
|
||||
<ng-container
|
||||
class="bubble"
|
||||
*ngIf="message.type !== EventType.NotificationForTimerRoom"
|
||||
[ngSwitch]="message.type"
|
||||
>
|
||||
<ucap-chat-message-box-information
|
||||
*ngSwitchCase="EventType.Join"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-information>
|
||||
<ucap-chat-message-box-information
|
||||
*ngSwitchCase="EventType.Exit"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-information>
|
||||
<ucap-chat-message-box-information
|
||||
*ngSwitchCase="EventType.RenameRoom"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-information>
|
||||
<ucap-chat-message-box-information
|
||||
*ngSwitchCase="EventType.GuideForRoomTimerChanged"
|
||||
[message]="message"
|
||||
[senderName]="getUserName(message.senderSeq)"
|
||||
>
|
||||
</ucap-chat-message-box-information>
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
<ng-template #contents>
|
||||
<div *ngIf="getUserProfile(message.senderSeq) != ''" class="profile-img">
|
||||
<!-- <img
|
||||
class="avatar"
|
||||
style="width: 50px; height: 50px;"
|
||||
[src]="
|
||||
profileImageRoot
|
||||
| ucapUiImaage
|
||||
: {
|
||||
path: getUserProfile(message.senderSeq),
|
||||
default: 'assets/images/img_nophoto_50.png'
|
||||
}
|
||||
| async
|
||||
"
|
||||
/> -->
|
||||
<ucap-ui-imaage
|
||||
[style]="'width: 50px; height: 50px;'"
|
||||
[imageClass]="'avatar'"
|
||||
[base]="profileImageRoot"
|
||||
[path]="getUserProfile(message.senderSeq)"
|
||||
[default]="'assets/images/img_nophoto_50.png'"
|
||||
></ucap-ui-imaage>
|
||||
</div>
|
||||
<ucap-chat-message-box-date-splitter
|
||||
*ngIf="getDateSplitter(i)"
|
||||
class="date-splitter"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-date-splitter>
|
||||
|
||||
<div class="message-main">
|
||||
<div class="chat-name">
|
||||
{{ getUserName(message.senderSeq) }}
|
||||
</div>
|
||||
|
||||
<div class="bubble">
|
||||
<ng-container
|
||||
class="bubble"
|
||||
*ngIf="message.type !== EventType.NotificationForTimerRoom"
|
||||
[ngSwitch]="message.type"
|
||||
<div class="chat-row">
|
||||
<div
|
||||
*ngIf="getIsInformation(message); then information; else contents"
|
||||
></div>
|
||||
<ng-template #information>
|
||||
<ng-container
|
||||
class="bubble"
|
||||
*ngIf="message.type !== EventType.NotificationForTimerRoom"
|
||||
[ngSwitch]="message.type"
|
||||
>
|
||||
<ucap-chat-message-box-information
|
||||
*ngSwitchCase="EventType.Join"
|
||||
[message]="message"
|
||||
>
|
||||
<ucap-chat-message-box-mass
|
||||
*ngSwitchCase="EventType.MassText"
|
||||
[message]="message"
|
||||
(massDetail)="onMassDetail($event)"
|
||||
>
|
||||
</ucap-chat-message-box-mass>
|
||||
<ucap-chat-message-box-file
|
||||
*ngSwitchCase="EventType.File"
|
||||
[message]="message"
|
||||
(save)="onSave($event)"
|
||||
(imageViewer)="onImageViewer($event)"
|
||||
>
|
||||
</ucap-chat-message-box-file>
|
||||
<ucap-chat-message-box-sticker
|
||||
*ngSwitchCase="EventType.Sticker"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-sticker>
|
||||
<ucap-chat-message-box-recall
|
||||
*ngSwitchCase="EventType.RecalledMessage"
|
||||
></ucap-chat-message-box-recall>
|
||||
<ucap-chat-message-box-text
|
||||
*ngSwitchCase="EventType.Character"
|
||||
[message]="message"
|
||||
(contextmenu)="onContextMenuMessage($event, message)"
|
||||
>
|
||||
</ucap-chat-message-box-text>
|
||||
<div *ngSwitchDefault>
|
||||
mass-translation
|
||||
<ucap-chat-message-box-mass-translation></ucap-chat-message-box-mass-translation>
|
||||
notice
|
||||
<ucap-chat-message-box-notice></ucap-chat-message-box-notice>
|
||||
<ucap-chat-message-box-schedule></ucap-chat-message-box-schedule>
|
||||
translation
|
||||
<ucap-chat-message-box-translation></ucap-chat-message-box-translation>
|
||||
video-conference
|
||||
<ucap-chat-message-box-video-conference></ucap-chat-message-box-video-conference>
|
||||
|
||||
<div class="message">
|
||||
{{ message.sentMessage }}
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
</ucap-chat-message-box-information>
|
||||
<ucap-chat-message-box-information
|
||||
*ngSwitchCase="EventType.Exit"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-information>
|
||||
<ucap-chat-message-box-information
|
||||
*ngSwitchCase="EventType.RenameRoom"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-information>
|
||||
<ucap-chat-message-box-information
|
||||
*ngSwitchCase="EventType.GuideForRoomTimerChanged"
|
||||
[message]="message"
|
||||
[senderName]="getUserName(message.senderSeq)"
|
||||
>
|
||||
</ucap-chat-message-box-information>
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
<ng-template #contents>
|
||||
<div *ngIf="getUserProfile(message.senderSeq) != ''" class="profile-img">
|
||||
<!-- <img
|
||||
class="avatar"
|
||||
style="width: 50px; height: 50px;"
|
||||
[src]="
|
||||
profileImageRoot
|
||||
| ucapUiImaage
|
||||
: {
|
||||
path: getUserProfile(message.senderSeq),
|
||||
default: 'assets/images/img_nophoto_50.png'
|
||||
}
|
||||
| async
|
||||
"
|
||||
/> -->
|
||||
<ucap-ui-imaage
|
||||
[style]="'width: 50px; height: 50px;'"
|
||||
[imageClass]="'avatar'"
|
||||
[base]="profileImageRoot"
|
||||
[path]="getUserProfile(message.senderSeq)"
|
||||
[default]="'assets/images/img_nophoto_50.png'"
|
||||
></ucap-ui-imaage>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="time secondary-text">
|
||||
{{ message.sendDate | date: 'a hh:mm' }}
|
||||
</div>
|
||||
</ng-template>
|
||||
<div class="message-main">
|
||||
<div class="chat-name">
|
||||
{{ getUserName(message.senderSeq) }}
|
||||
</div>
|
||||
|
||||
<div class="bubble">
|
||||
<ng-container
|
||||
class="bubble"
|
||||
*ngIf="message.type !== EventType.NotificationForTimerRoom"
|
||||
[ngSwitch]="message.type"
|
||||
>
|
||||
<ucap-chat-message-box-mass
|
||||
*ngSwitchCase="EventType.MassText"
|
||||
[message]="message"
|
||||
(massDetail)="onMassDetail($event)"
|
||||
>
|
||||
</ucap-chat-message-box-mass>
|
||||
<ucap-chat-message-box-file
|
||||
*ngSwitchCase="EventType.File"
|
||||
[message]="message"
|
||||
(save)="onSave($event)"
|
||||
(imageViewer)="onImageViewer($event)"
|
||||
>
|
||||
</ucap-chat-message-box-file>
|
||||
<ucap-chat-message-box-sticker
|
||||
*ngSwitchCase="EventType.Sticker"
|
||||
[message]="message"
|
||||
>
|
||||
</ucap-chat-message-box-sticker>
|
||||
<ucap-chat-message-box-recall
|
||||
*ngSwitchCase="EventType.RecalledMessage"
|
||||
></ucap-chat-message-box-recall>
|
||||
<ucap-chat-message-box-text
|
||||
*ngSwitchCase="EventType.Character"
|
||||
[message]="message"
|
||||
(contextmenu)="onContextMenuMessage($event, message)"
|
||||
>
|
||||
</ucap-chat-message-box-text>
|
||||
<div *ngSwitchDefault>
|
||||
mass-translation
|
||||
<ucap-chat-message-box-mass-translation></ucap-chat-message-box-mass-translation>
|
||||
notice
|
||||
<ucap-chat-message-box-notice></ucap-chat-message-box-notice>
|
||||
<ucap-chat-message-box-schedule></ucap-chat-message-box-schedule>
|
||||
translation
|
||||
<ucap-chat-message-box-translation></ucap-chat-message-box-translation>
|
||||
video-conference
|
||||
<ucap-chat-message-box-video-conference></ucap-chat-message-box-video-conference>
|
||||
|
||||
<div class="message">
|
||||
{{ message.sentMessage }}
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="time secondary-text">
|
||||
{{ message.sendDate | date: 'a hh:mm' }}
|
||||
</div>
|
||||
</ng-template>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -139,26 +139,34 @@ $meBox-bg: #ffffff;
|
|||
padding: 30px 40px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.message-row {
|
||||
}
|
||||
|
||||
.message-row {
|
||||
margin-bottom: 30px;
|
||||
.date-splitter{
|
||||
display:block;
|
||||
width:100%;
|
||||
margin-bottom:10px;
|
||||
}
|
||||
.chat-row{
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
&.me {
|
||||
.profile-img {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
}
|
||||
&.me {
|
||||
.chat-row{
|
||||
flex-direction: row-reverse;
|
||||
.profile-info {
|
||||
flex-direction: row-reverse;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.message-row {
|
||||
margin-bottom: 30px;
|
||||
.profile-img {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
.message-main {
|
||||
margin-left: 20px;
|
||||
margin-right: 10px;
|
||||
|
@ -203,6 +211,7 @@ $meBox-bg: #ffffff;
|
|||
.secondary-text {
|
||||
align-self: flex-end;
|
||||
font-size: 11px;
|
||||
color:#666666;
|
||||
word-wrap: break-word;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
@charset 'utf-8';
|
||||
:host {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
|
@ -7,25 +8,23 @@
|
|||
flex: 1 1 auto;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
::ng-deep .groupExpansionPanel .mat-expansion-panel-body {
|
||||
padding: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.mat-expansion-panel-header{
|
||||
height:40px ! important;
|
||||
.mat-expansion-panel-header {
|
||||
height: 40px !important;
|
||||
padding: 0 20px;
|
||||
.mat-expansion-panel-header-title {
|
||||
align-items: center;
|
||||
font-size: 13px;
|
||||
.mat-expansion-panel-header-title {
|
||||
align-items: center;
|
||||
font-size: 13px;
|
||||
}
|
||||
.mat-expansion-panel-header-description{
|
||||
margin-right:0;
|
||||
.mat-expansion-panel-header-description {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.mat-icon-button {
|
||||
margin-right: 0;
|
||||
width: inherit;
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
@charset 'utf-8';
|
||||
.organization-tree {
|
||||
padding:10px;
|
||||
ul,
|
||||
|
@ -46,8 +47,6 @@
|
|||
line-height: 20px;
|
||||
margin-right:10px;
|
||||
.mat-icon-rtl-mirror{
|
||||
line-height: 14px;
|
||||
font-size: 14px;
|
||||
border: 1px solid #dddddd;
|
||||
padding: 2px;
|
||||
font-size: 14px;
|
||||
|
|
|
@ -1,6 +1,30 @@
|
|||
@charset 'utf-8';
|
||||
@import '../../../../ucap-webmessenger-app/src/assets/scss/global/common';
|
||||
|
||||
$font-dark: #212121;
|
||||
$font-mid: #666666;
|
||||
$font-light: #848d95;
|
||||
$font-white: #ffffff;
|
||||
$line-basic:1px solid #dddddd;
|
||||
$bg-list-item-msg: #f0f4f6;
|
||||
$bg-list-hover: #efefef;
|
||||
$listH-row2: 80px;
|
||||
$presence-size: 8px;
|
||||
$thumbnail-msize: 40px;
|
||||
|
||||
@mixin ellipsis($row) {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
@if $row == 1 {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
} @else if $row >= 2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: $row;
|
||||
-webkit-box-orient: vertical;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
|
||||
%list-item {
|
||||
position: relative;
|
||||
|
@ -11,16 +35,7 @@
|
|||
border-bottom: $line-basic;
|
||||
padding: 20px;
|
||||
}
|
||||
%presence {
|
||||
display: inline-block;
|
||||
width: $presence-size;
|
||||
height: $presence-size;
|
||||
align-self: flex-start;
|
||||
align-items: center;
|
||||
text-indent: -10000000px;
|
||||
margin-right: 4px;
|
||||
border-radius: 100px;
|
||||
}
|
||||
|
||||
%msg-status {
|
||||
display: inline-block;
|
||||
height: 40px;
|
||||
|
@ -30,7 +45,7 @@
|
|||
vertical-align: middle;
|
||||
align-items: center;
|
||||
@include ellipsis(2);
|
||||
@include border-radius(4px);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.list-item {
|
||||
|
@ -38,21 +53,6 @@
|
|||
&:hover {
|
||||
background-color: $bg-list-hover;
|
||||
}
|
||||
.presence {
|
||||
@extend %presence;
|
||||
&.pcOn {
|
||||
@include presence-status(pcOn);
|
||||
}
|
||||
&.pcOut {
|
||||
@include presence-status(pcOut);
|
||||
}
|
||||
&.pcOff {
|
||||
@include presence-status(pcOff);
|
||||
}
|
||||
&.pcOther {
|
||||
@include presence-status(pcOther);
|
||||
}
|
||||
}
|
||||
.mat-checkbox {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
@ -67,7 +67,7 @@
|
|||
width: $thumbnail-msize;
|
||||
height: $thumbnail-msize;
|
||||
margin-right: 16px;
|
||||
@include border-radius(50%);
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -122,9 +122,15 @@
|
|||
width: 100%;
|
||||
}
|
||||
.msg-status {
|
||||
@include visible(none);
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.org{
|
||||
.list-item{
|
||||
height:70px;
|
||||
}
|
||||
}
|
|
@ -1,5 +1,30 @@
|
|||
@charset 'utf-8';
|
||||
@import '../../../../ucap-webmessenger-app/src/assets/scss/global/common.scss';
|
||||
$font-dark: #212121;
|
||||
$font-mid: #666666;
|
||||
$font-light: #848d95;
|
||||
$font-white: #ffffff;
|
||||
$line-basic:1px solid #dddddd;
|
||||
$bg-list-hover: #efefef;
|
||||
$color-main:#e53096;
|
||||
$listH-row2: 80px;
|
||||
$presence-size: 8px;
|
||||
$thumbnail-msize: 40px;
|
||||
|
||||
@mixin ellipsis($row) {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
@if $row == 1 {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
} @else if $row >= 2 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: $row;
|
||||
-webkit-box-orient: vertical;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
|
||||
.profile {
|
||||
white-space: normal;
|
||||
text-align: left;
|
||||
|
@ -9,7 +34,6 @@
|
|||
padding: 16px;
|
||||
font-weight: 400;
|
||||
border-radius: 0;
|
||||
|
||||
.avatar-wrapper {
|
||||
.avatar {
|
||||
margin-right: 16px;
|
||||
|
@ -28,7 +52,6 @@
|
|||
|
||||
.profile-last-message-time {
|
||||
font-size: 12px;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.profile-mood {
|
||||
|
@ -61,7 +84,7 @@
|
|||
width: $thumbnail-msize;
|
||||
height: $thumbnail-msize;
|
||||
margin-right: 16px;
|
||||
@include border-radius(100px);
|
||||
border-radius:50%;
|
||||
}
|
||||
.info {
|
||||
position: relative;
|
||||
|
@ -92,7 +115,6 @@
|
|||
.room-msg {
|
||||
font-size: 12px;
|
||||
color: $font-mid;
|
||||
margin-top: 4px;
|
||||
@include ellipsis(1);
|
||||
}
|
||||
}
|
||||
|
@ -125,7 +147,7 @@
|
|||
color: #ffffff;
|
||||
background-color: $color-main;
|
||||
@include ellipsis(1);
|
||||
@include border-radius(100px);
|
||||
border-radius:50%;
|
||||
}
|
||||
|
||||
.notiBadge {
|
||||
|
|
|
@ -12,3 +12,5 @@
|
|||
@import 'partials/icons';
|
||||
@import 'partials/normalize';
|
||||
@import 'partials/scrollbars';
|
||||
@import 'partials/presence.scss';
|
||||
@import 'partials/list-item';
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
@charset 'utf-8';
|
||||
|
||||
.ellipsis{
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
}
|
||||
.ellipsis2{
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
word-wrap: break-word;
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
%presence {
|
||||
display: inline-block;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
align-self: flex-start;
|
||||
align-items: center;
|
||||
text-indent: -10000000px;
|
||||
margin-right: 4px;
|
||||
border-radius: 100px;
|
||||
}
|
||||
.presence{
|
||||
@extend %presence;
|
||||
&.pcOn {
|
||||
background-color: #28ad66;
|
||||
}
|
||||
&.pcOut {
|
||||
background-color: #f35b5b;
|
||||
}
|
||||
& .pcOff {
|
||||
background-color: #a29f9f;
|
||||
}
|
||||
&.pcOther {
|
||||
background-color: #f0c10a;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user