@chat21/chat21-ionic 3.0.82-rc.7 → 3.0.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -99
- package/README.md +2 -2
- package/package.json +3 -4
- package/src/app/app.component.html +1 -7
- package/src/app/app.component.scss +2 -20
- package/src/app/app.component.ts +18 -129
- package/src/app/app.module.ts +1 -3
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.ts +1 -8
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +23 -77
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +88 -171
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +2 -40
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +24 -11
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +10 -6
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.spec.ts +2 -2
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +25 -16
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.html +1 -5
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.scss +15 -22
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.ts +5 -25
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.html +1 -2
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.scss +15 -14
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.ts +5 -24
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.html +1 -6
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.scss +13 -12
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.ts +5 -26
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.html +2 -8
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.scss +0 -36
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.ts +2 -2
- package/src/app/chatlib/conversation-detail/message/html/html.component.ts +1 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.html +2 -3
- package/src/app/chatlib/conversation-detail/message/image/image.component.scss +5 -17
- package/src/app/chatlib/conversation-detail/message/image/image.component.ts +1 -1
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.scss +2 -3
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.html +6 -16
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +3 -1
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.ts +0 -2
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +52 -78
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss +20 -63
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +10 -14
- package/src/app/components/canned-response/canned-response.component.html +9 -9
- package/src/app/components/canned-response/canned-response.component.scss +7 -14
- package/src/app/components/canned-response/canned-response.component.ts +1 -1
- package/src/app/components/contacts-directory/contacts-directory.component.html +26 -22
- package/src/app/components/contacts-directory/contacts-directory.component.scss +6 -8
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.html +3 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.scss +21 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.ts +14 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html +54 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss +98 -0
- package/src/app/components/{conversations-list/header-conversations-list/header-conversations-list.component.spec.ts → conversation-detail/bubble-my-message/bubble-my-message.component.spec.ts} +6 -6
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts +84 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html +30 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss +83 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts +68 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.html +3 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.scss +10 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.ts +14 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +42 -61
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +61 -98
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +25 -9
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +8 -17
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +4 -4
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +84 -24
- package/src/app/components/conversation-detail/option-header/option-header.component.html +13 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.scss +0 -0
- package/src/app/components/{conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.spec.ts → conversation-detail/option-header/option-header.component.spec.ts} +5 -5
- package/src/app/components/{conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.ts → conversation-detail/option-header/option-header.component.ts} +4 -5
- package/src/app/components/conversation-info/info-content/info-content.component.html +4 -8
- package/src/app/components/conversation-info/info-content/info-content.component.ts +6 -3
- package/src/app/components/conversation-info/info-direct/info-direct.component.html +13 -7
- package/src/app/components/conversation-info/info-direct/info-direct.component.scss +0 -23
- package/src/app/components/conversation-info/info-direct/info-direct.component.ts +6 -1
- package/src/app/components/conversation-info/info-group/info-group.component.html +108 -44
- package/src/app/components/conversation-info/info-group/info-group.component.scss +61 -101
- package/src/app/components/conversation-info/info-group/info-group.component.ts +0 -1
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.html +1 -2
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.ts +1 -0
- package/src/app/components/{conversations-list/header-conversations-list/header-conversations-list.component.html → ddp-header/ddp-header.component.html} +3 -3
- package/src/app/components/{conversations-list/header-conversations-list/header-conversations-list.component.scss → ddp-header/ddp-header.component.scss} +4 -16
- package/src/app/components/{navbar/navbar.component.spec.ts → ddp-header/ddp-header.component.spec.ts} +6 -6
- package/src/app/components/{conversations-list/header-conversations-list/header-conversations-list.component.ts → ddp-header/ddp-header.component.ts} +16 -7
- package/src/app/components/project-item/project-item.component.html +149 -98
- package/src/app/components/project-item/project-item.component.scss +35 -43
- package/src/app/components/project-item/project-item.component.ts +4 -16
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +5 -5
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +10 -23
- package/src/app/components/utils/user-presence/user-presence.component.html +2 -7
- package/src/app/components/utils/user-presence/user-presence.component.scss +18 -35
- package/src/app/components/utils/user-presence/user-presence.component.ts +10 -6
- package/src/app/pages/contacts-directory/contacts-directory.page.html +1 -1
- package/src/app/pages/contacts-directory/contacts-directory.page.scss +0 -47
- package/src/app/pages/contacts-directory/contacts-directory.page.ts +0 -2
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +8 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.html +23 -41
- package/src/app/pages/conversation-detail/conversation-detail.page.scss +250 -40
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +112 -186
- package/src/app/pages/conversations-list/conversations-list.page.html +8 -11
- package/src/app/pages/conversations-list/conversations-list.page.scss +2 -18
- package/src/app/pages/conversations-list/conversations-list.page.ts +22 -25
- package/src/app/pages/create-canned-response/create-canned-response.page.ts +13 -13
- package/src/app/pages/loader-preview/loader-preview.page.html +1 -1
- package/src/app/pages/loader-preview/loader-preview.page.scss +0 -4
- package/src/app/pages/loader-preview/loader-preview.page.ts +2 -1
- package/src/app/pages/profile-info/profile-info.page.html +4 -2
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +1 -1
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +0 -42
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +0 -1
- package/src/app/services/canned-responses/canned-responses.service.ts +0 -26
- package/src/app/services/tiledesk/tiledesk.service.ts +25 -1
- package/src/app/services/websocket/websocket.service.ts +1 -1
- package/src/app/shared/shared.module.ts +33 -24
- package/src/assets/i18n/ar.json +265 -278
- package/src/assets/i18n/az.json +1 -14
- package/src/assets/i18n/de.json +2 -15
- package/src/assets/i18n/en.json +2 -15
- package/src/assets/i18n/es.json +2 -15
- package/src/assets/i18n/fr.json +1 -14
- package/src/assets/i18n/it.json +1 -14
- package/src/assets/i18n/kk.json +2 -15
- package/src/assets/i18n/pt.json +2 -15
- package/src/assets/i18n/ru.json +1 -14
- package/src/assets/i18n/sr.json +264 -277
- package/src/assets/i18n/sv.json +2 -15
- package/src/assets/i18n/tr.json +2 -15
- package/src/assets/i18n/uk.json +2 -15
- package/src/assets/i18n/uz.json +1 -14
- package/src/assets/js/chat21client.js +148 -175
- package/src/chat-config-mqtt-localhost.json +2 -2
- package/src/chat-config-native-mqtt.json +0 -3
- package/src/chat21-core/models/conversation.ts +1 -0
- package/src/chat21-core/providers/firebase/firebase-typing.service.ts +9 -7
- package/src/chat21-core/providers/mqtt/mqtt-auth-service.ts +8 -7
- package/src/chat21-core/utils/constants.ts +1 -6
- package/src/chat21-core/utils/user-typing/user-typing.component.html +5 -8
- package/src/chat21-core/utils/user-typing/user-typing.component.scss +17 -87
- package/src/chat21-core/utils/user-typing/user-typing.component.ts +94 -12
- package/src/chat21-core/utils/utils.ts +10 -38
- package/src/global.scss +255 -52
- package/src/index.html +9 -0
- package/src/variables.scss +10 -30
- package/deploy_amazon_beta.sh +0 -29
- package/deploy_amazon_prod.sh +0 -30
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component_2.html +0 -116
- package/src/app/components/conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.html +0 -12
- package/src/app/components/conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.scss +0 -14
- package/src/app/components/navbar/navbar.component.html +0 -103
- package/src/app/components/navbar/navbar.component.scss +0 -249
- package/src/app/components/navbar/navbar.component.ts +0 -190
- package/src/app/services/projects/projects.service.spec.ts +0 -12
- package/src/app/services/projects/projects.service.ts +0 -43
- package/src/assets/sounds/interface-start.mp3 +0 -0
- package/src/assets/sounds/wheep-wheep.mp3 +0 -0
- package/src/chat21-core/models/projects.ts +0 -27
- package/src/chat21-core/utils/convertRequestToConversation.ts +0 -41
|
@@ -1,29 +1,23 @@
|
|
|
1
1
|
<span *ngIf="conversationWith && loggedUser; then showConversation else showPlaceholder"></span>
|
|
2
2
|
<ng-template #showPlaceholder>
|
|
3
|
-
|
|
4
|
-
<ion-header no-border class="ion-no-border" [class.mobile]="isMobile">
|
|
5
|
-
<ion-toolbar [class.mobile]="isMobile">
|
|
6
|
-
|
|
7
|
-
</ion-toolbar>
|
|
8
|
-
</ion-header>
|
|
9
3
|
<!-- class="splash-page" -->
|
|
10
|
-
<ion-content padding
|
|
4
|
+
<ion-content padding>
|
|
11
5
|
<!-- <div padding class="image-splash-page"></div>
|
|
12
6
|
<div padding class="title-splash-page">
|
|
13
7
|
text new conversation + button
|
|
14
8
|
</div> -->
|
|
15
|
-
|
|
16
9
|
|
|
17
|
-
<ion-grid
|
|
18
|
-
<ion-row class="
|
|
10
|
+
<ion-grid style="height: 100%;">
|
|
11
|
+
<ion-row class="ion-justify-content-center ion-align-items-center" style="height: 100%; flex-direction: column">
|
|
19
12
|
<span *ngIf="isOnline === true && !showSpinner"
|
|
20
|
-
style="color: #92949c; font-size: 16px;line-height: 18px;">
|
|
13
|
+
style="color: #92949c; font-size: 16px;line-height: 18px;margin-top: -160px;">
|
|
21
14
|
<span *ngIf="conversation_count > 0 ">
|
|
22
15
|
{{'PleaseSelectChatToStartMessaging' | translate }}
|
|
23
16
|
</span>
|
|
24
17
|
<span *ngIf="conversation_count === 0" style="line-height: 1.2;color: #4b5258;
|
|
25
18
|
font-weight: 500;">
|
|
26
19
|
{{'ALL_CONVS_SERVED' | translate}}
|
|
20
|
+
|
|
27
21
|
</span>
|
|
28
22
|
|
|
29
23
|
</span>
|
|
@@ -43,13 +37,15 @@
|
|
|
43
37
|
[idLoggedUser]="loggedUser.uid"
|
|
44
38
|
[conversationUid]="conversationWith"
|
|
45
39
|
[conversationAvatar]="conversationAvatar"
|
|
46
|
-
[
|
|
47
|
-
[
|
|
40
|
+
[translationMap]="translationMap"
|
|
41
|
+
[isOpenInfoConversation]="isOpenInfoConversation"
|
|
42
|
+
[conv_type]="conv_type"
|
|
43
|
+
(eventOpenCloseInfoConversation)="returnOpenCloseInfoConversation($event)">
|
|
48
44
|
</app-header-conversation-detail>
|
|
49
45
|
|
|
50
|
-
<ion-content id="conv-details"
|
|
51
|
-
<ion-grid class="grid_content"
|
|
52
|
-
<ion-row class="row_content"
|
|
46
|
+
<ion-content id="conv-details">
|
|
47
|
+
<ion-grid class="grid_content">
|
|
48
|
+
<ion-row class="row_content">
|
|
53
49
|
<ion-col id="chatArea" [class.mobile]="isMobile" [class.open]="openInfoConversation"
|
|
54
50
|
[ngClass]="{'chat-area-apps-sidebar-wide': appsidebarIsWide === true}">
|
|
55
51
|
|
|
@@ -102,15 +98,10 @@
|
|
|
102
98
|
</ng-template>
|
|
103
99
|
|
|
104
100
|
<ng-template #content_messages>
|
|
105
|
-
<ion-content #ionContentChatArea appScrollbarTheme class="ionContentChatArea"
|
|
106
|
-
(
|
|
107
|
-
(
|
|
108
|
-
(
|
|
109
|
-
[scrollEvents]="true"
|
|
110
|
-
(ionScrollStart)="logScrollStart($event)"
|
|
111
|
-
(ionScroll)="logScrolling($event)"
|
|
112
|
-
(ionScrollEnd)="logScrollEnd($event)"
|
|
113
|
-
[class.active]="true">
|
|
101
|
+
<ion-content #ionContentChatArea appScrollbarTheme class="ionContentChatArea" (drop)="drop($event)"
|
|
102
|
+
(dragover)="allowDrop($event)" (dragleave)="drag($event)" [scrollEvents]="true"
|
|
103
|
+
(ionScrollStart)="logScrollStart($event)" (ionScroll)="logScrolling($event)"
|
|
104
|
+
(ionScrollEnd)="logScrollEnd($event)" [class.active]="showIonContent">
|
|
114
105
|
|
|
115
106
|
<!-- ----------------------------------------------------------- -->
|
|
116
107
|
<!-- DROPZONE -->
|
|
@@ -134,13 +125,7 @@
|
|
|
134
125
|
[senderId]="loggedUser.uid"
|
|
135
126
|
[baseLocation]="window?.location?.origin"
|
|
136
127
|
[areVisibleCAR]="areVisibleCAR"
|
|
137
|
-
[supportMode]= "supportMode"
|
|
138
|
-
[isMobile]="isMobile"
|
|
139
|
-
[isTypings]="isTypings"
|
|
140
|
-
[openInfoConversation]="openInfoConversation"
|
|
141
|
-
[idUserTypingNow]="idUserTypingNow"
|
|
142
|
-
[nameUserTypingNow]="nameUserTypingNow"
|
|
143
|
-
[translationMap]="translationsContentMap"
|
|
128
|
+
[supportMode]= "supportMode"
|
|
144
129
|
[stylesMap]="styleMap"
|
|
145
130
|
(onBeforeMessageRender)="onBeforeMessageRenderFN($event)"
|
|
146
131
|
(onAfterMessageRender)="onAfterMessageRenderFN($event)"
|
|
@@ -148,8 +133,7 @@
|
|
|
148
133
|
(onScrollContent)="returnOnScrollContent($event)"
|
|
149
134
|
(onMenuOptionShow)="returnOnMenuOption($event)"
|
|
150
135
|
(onElementRendered)="onElementRenderedFN($event)"
|
|
151
|
-
(onAddUploadingBubble)="addUploadingBubbleEvent($event)"
|
|
152
|
-
(onOpenCloseInfoConversation)="onOpenCloseInfoConversation($event)">
|
|
136
|
+
(onAddUploadingBubble)="addUploadingBubbleEvent($event)">
|
|
153
137
|
</ion-conversation-detail>
|
|
154
138
|
|
|
155
139
|
</ion-content>
|
|
@@ -171,8 +155,7 @@
|
|
|
171
155
|
[conversationWith]="conversationWith"
|
|
172
156
|
[conversationWithFullname]="conversationWithFullname"
|
|
173
157
|
[currentString]="messageStr"
|
|
174
|
-
[
|
|
175
|
-
[translationMap]="translationsMap"
|
|
158
|
+
[translationMap]="translationMap"
|
|
176
159
|
(onLoadedCannedResponses)="onLoadedCannedResponses($event)"
|
|
177
160
|
(onClickCanned)="replaceTagInMessage($event)"
|
|
178
161
|
(onClickAddCannedResponse)="presentCreateCannedResponseModal()">
|
|
@@ -228,9 +211,9 @@
|
|
|
228
211
|
[loggedUser]="loggedUser"
|
|
229
212
|
[conversationWith]="conversationWith"
|
|
230
213
|
[tagsCannedFilter]="tagsCannedFilter"
|
|
231
|
-
[translationMap]="
|
|
214
|
+
[translationMap]="translationMap"
|
|
232
215
|
[fileUploadAccept]="appConfigProvider.getConfig().fileUploadAccept"
|
|
233
|
-
[isOpenInfoConversation]="
|
|
216
|
+
[isOpenInfoConversation]="isOpenInfoConversation"
|
|
234
217
|
[dropEvent]="dropEvent"
|
|
235
218
|
[disableTextarea]="disableTextarea"
|
|
236
219
|
(eventChangeTextArea)="returnChangeTextArea($event)"
|
|
@@ -247,11 +230,10 @@
|
|
|
247
230
|
[ngClass]="{'info-convs-apps-sidebar-wide': appsidebarIsWide === true}">
|
|
248
231
|
<app-info-content
|
|
249
232
|
[openInfoConversation]="openInfoConversation"
|
|
233
|
+
[translationMap]="translationMap"
|
|
250
234
|
[loggedUser]="loggedUser"
|
|
251
235
|
[tenant]="tenant"
|
|
252
|
-
[groupDetail]="groupDetail"
|
|
253
|
-
[isMobile]="isMobile"
|
|
254
|
-
[translationMap]="translationsMap">
|
|
236
|
+
[groupDetail]="groupDetail">
|
|
255
237
|
</app-info-content>
|
|
256
238
|
</ion-col>
|
|
257
239
|
|
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
font-size: 24px;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
|
|
29
|
+
|
|
28
30
|
#canned > ion-list > ion-item.canned-item.add-canned-response-wpr:hover > span {
|
|
29
31
|
color: #1877f2;
|
|
30
32
|
}
|
|
@@ -36,32 +38,259 @@
|
|
|
36
38
|
color: #1877f2;
|
|
37
39
|
}
|
|
38
40
|
|
|
41
|
+
// ion-back-button{
|
|
42
|
+
// display: none!important;
|
|
43
|
+
// }
|
|
44
|
+
// @media (max-width: 767px) {
|
|
45
|
+
// /* Styles */
|
|
46
|
+
// ion-back-button{
|
|
47
|
+
// display: block!important;
|
|
48
|
+
// }
|
|
49
|
+
// }
|
|
50
|
+
|
|
51
|
+
// .halfscreen {
|
|
52
|
+
// width: calc(100% - 320px);
|
|
53
|
+
// min-width: 50%;
|
|
54
|
+
// }
|
|
55
|
+
|
|
56
|
+
// ion-header {
|
|
57
|
+
// border-bottom-style: solid;
|
|
58
|
+
// border-color: var(--light-gray);
|
|
59
|
+
// border-bottom-width: thin;
|
|
60
|
+
// ion-title {
|
|
61
|
+
// text-align: left;
|
|
62
|
+
// }
|
|
63
|
+
// ion-avatar {
|
|
64
|
+
// position: relative;
|
|
65
|
+
// display: inline-block;
|
|
66
|
+
// margin: 0 12px 0 0;
|
|
67
|
+
// padding: 0;
|
|
68
|
+
// height: 40px;
|
|
69
|
+
// width: 40px;
|
|
70
|
+
// min-width: 40px;
|
|
71
|
+
// min-height: 40px;
|
|
72
|
+
// line-height: 40px;
|
|
73
|
+
// vertical-align: middle;
|
|
74
|
+
// color: var(--white);
|
|
75
|
+
// .avatar-placeholder {
|
|
76
|
+
// position: absolute;
|
|
77
|
+
// top:0;
|
|
78
|
+
// left:0;
|
|
79
|
+
// width: 100%;
|
|
80
|
+
// height: 100%;
|
|
81
|
+
// border-radius: 50%;
|
|
82
|
+
// text-align: center;
|
|
83
|
+
// font-size: 16px;
|
|
84
|
+
// color: var(--withe);
|
|
85
|
+
// font-weight: 500;
|
|
86
|
+
// }
|
|
87
|
+
// .avatar-profile {
|
|
88
|
+
// position: relative;
|
|
89
|
+
// display: inline-block;
|
|
90
|
+
// width: 100%;
|
|
91
|
+
// height: 100%;
|
|
92
|
+
// background-color: transparent;
|
|
93
|
+
// background-size: cover;
|
|
94
|
+
// background-position: top center;
|
|
95
|
+
// border-radius: 50%;
|
|
96
|
+
// border-color: var(--basic-gray);
|
|
97
|
+
// border-style: solid;
|
|
98
|
+
// border-width: 0px;
|
|
99
|
+
// }
|
|
100
|
+
// }
|
|
101
|
+
// .tile-info-with {
|
|
102
|
+
// position: relative;
|
|
103
|
+
// display: inline-block;
|
|
104
|
+
// vertical-align: middle;
|
|
105
|
+
// // &.info-open {
|
|
106
|
+
// // max-width: calc(100% - 300px);
|
|
107
|
+
// // }
|
|
108
|
+
// }
|
|
109
|
+
// .tile-point {
|
|
110
|
+
// width: 10px;
|
|
111
|
+
// height: 10px;
|
|
112
|
+
// border-radius: 50%;
|
|
113
|
+
// display: inline-block;
|
|
114
|
+
// line-height: 10px;
|
|
115
|
+
// margin-right: 5px;
|
|
116
|
+
// vertical-align: middle;
|
|
117
|
+
// }
|
|
118
|
+
// .tile-username {
|
|
119
|
+
// display: inline-block;
|
|
120
|
+
// font-size: 15px;
|
|
121
|
+
// font-weight: bold;
|
|
122
|
+
// color: var(--black);
|
|
123
|
+
// margin: 0;
|
|
124
|
+
// padding: 0;
|
|
125
|
+
|
|
126
|
+
// }
|
|
127
|
+
// .tile-last-activity {
|
|
128
|
+
// color: var(--light-gray);
|
|
129
|
+
// font-size: 12px;
|
|
130
|
+
// font-weight: normal;
|
|
131
|
+
// margin-top: 2px;
|
|
132
|
+
// vertical-align: middle;
|
|
133
|
+
// position: relative;
|
|
134
|
+
// .tile-typing-now {
|
|
135
|
+
// color: var(--basic-blue);
|
|
136
|
+
// }
|
|
137
|
+
// }
|
|
138
|
+
// #tile-spinner {
|
|
139
|
+
// position: relative;
|
|
140
|
+
// left: 0;
|
|
141
|
+
// top: 0;
|
|
142
|
+
// margin: 0;
|
|
143
|
+
// &.active {
|
|
144
|
+
// display: inline-block;
|
|
145
|
+
// width: 30px;
|
|
146
|
+
// }
|
|
147
|
+
// }
|
|
148
|
+
// #tile-spinner > div {
|
|
149
|
+
// width: 6px;
|
|
150
|
+
// height: 6px;
|
|
151
|
+
// background-color: var(--basic-blue);
|
|
152
|
+
// }
|
|
153
|
+
// ion-buttons {
|
|
154
|
+
// button {
|
|
155
|
+
// max-width: 30px;
|
|
156
|
+
// padding: 0;
|
|
157
|
+
// margin-right: 20px;
|
|
158
|
+
// }
|
|
159
|
+
// }
|
|
160
|
+
// }
|
|
161
|
+
|
|
162
|
+
// ion-content {
|
|
39
163
|
|
|
164
|
+
// .row-day {
|
|
165
|
+
// padding: 0 10px;
|
|
166
|
+
// text-align: center;
|
|
167
|
+
// width: 100%;
|
|
168
|
+
// margin-top: 15px;
|
|
169
|
+
// margin-bottom: 5px;
|
|
170
|
+
// }
|
|
171
|
+
// .header-day {
|
|
172
|
+
// background-color: var(--transparent);
|
|
173
|
+
// padding-top: 4px;
|
|
174
|
+
// padding-bottom: 4px;
|
|
175
|
+
// padding-left: 12px;
|
|
176
|
+
// padding-right: 12px;
|
|
177
|
+
// vertical-align: middle;
|
|
178
|
+
// border-radius: 13px;
|
|
179
|
+
// font-size: 14px;
|
|
180
|
+
// font-weight: bold;
|
|
181
|
+
// color: var(--basic-gray);
|
|
182
|
+
// display: inline-block;
|
|
183
|
+
// }
|
|
184
|
+
// .message {
|
|
185
|
+
// .bubble-message {
|
|
186
|
+
// position: relative;
|
|
187
|
+
// border-radius: 15px;
|
|
188
|
+
// font-size: 15px;
|
|
189
|
+
// padding: 5px 10px 10px 10px;
|
|
190
|
+
// display: block;
|
|
191
|
+
// width: auto;
|
|
192
|
+
// max-width: 80%;
|
|
193
|
+
// line-height: 1.34;
|
|
194
|
+
// direction: ltr;
|
|
195
|
+
// }
|
|
196
|
+
// .message-content:after {
|
|
197
|
+
// content: "\00a0\00a0\00a0\00a0\00a0\00a0";
|
|
198
|
+
// }
|
|
199
|
+
// .timestamp-message {
|
|
200
|
+
// font-size: 10px;
|
|
201
|
+
// padding: 0px;
|
|
202
|
+
// position: absolute;
|
|
203
|
+
// bottom: 0px;
|
|
204
|
+
// right: 6px;
|
|
205
|
+
// line-height: 15px;
|
|
206
|
+
// }
|
|
207
|
+
// &.message-other {
|
|
208
|
+
// width: 100%;
|
|
209
|
+
// margin-top: 4px;
|
|
210
|
+
// .bubble-message {
|
|
211
|
+
// background-color: var(--light-gray);
|
|
212
|
+
// color: var(--black);
|
|
213
|
+
// margin-left: 24px;
|
|
214
|
+
// float: left;
|
|
215
|
+
// border-top-left-radius: 6px;
|
|
216
|
+
// border-bottom-left-radius: 6px;
|
|
217
|
+
// }
|
|
218
|
+
// .message-sender-fullname {
|
|
219
|
+
// margin: 0;
|
|
220
|
+
// font-size: 15px;
|
|
221
|
+
// color: var(--basic-gray);
|
|
222
|
+
// font-weight: bold;
|
|
223
|
+
// display: none;
|
|
224
|
+
// }
|
|
225
|
+
// .timestamp-message {
|
|
226
|
+
// color: var(--basic-gray);
|
|
227
|
+
// bottom: 2px;
|
|
228
|
+
// right: 10px;
|
|
229
|
+
// }
|
|
230
|
+
// &.first-message {
|
|
231
|
+
// margin-top: 10px;
|
|
232
|
+
// .bubble-message {
|
|
233
|
+
// border-top-left-radius: 12px;
|
|
234
|
+
// border-bottom-left-radius: 0px;
|
|
235
|
+
// }
|
|
236
|
+
// .message-sender-fullname {
|
|
237
|
+
// display: block;
|
|
238
|
+
// }
|
|
239
|
+
// }
|
|
240
|
+
// }
|
|
241
|
+
// &.message-mine {
|
|
242
|
+
// width: 100%;
|
|
243
|
+
// margin-top: 4px;
|
|
244
|
+
// .bubble-message {
|
|
245
|
+
// background-color: var(--bubble-blue);
|
|
246
|
+
// color: white;
|
|
247
|
+
// margin-right: 24px;
|
|
248
|
+
// float: right;
|
|
249
|
+
// border-top-right-radius: 6px;
|
|
250
|
+
// border-bottom-right-radius: 6px;
|
|
251
|
+
// }
|
|
252
|
+
// &.first-message {
|
|
253
|
+
// margin-top: 10px;
|
|
254
|
+
// .bubble-message {
|
|
255
|
+
// border-top-right-radius: 12px;
|
|
256
|
+
// border-bottom-right-radius: 0px;
|
|
257
|
+
// }
|
|
258
|
+
// }
|
|
259
|
+
// .timestamp-message {
|
|
260
|
+
// color: var(--white);
|
|
261
|
+
// }
|
|
262
|
+
// .attribute-message {
|
|
263
|
+
// position: absolute;
|
|
264
|
+
// width: 100%;
|
|
265
|
+
// background-color: transparent;
|
|
266
|
+
// bottom: 0;
|
|
267
|
+
// right: 0;
|
|
268
|
+
// .status-message {
|
|
269
|
+
// position: absolute;
|
|
270
|
+
// top: 0;
|
|
271
|
+
// right: 0;
|
|
272
|
+
// width: 15px;
|
|
273
|
+
// .material-icons {
|
|
274
|
+
// font-size: 15px;
|
|
275
|
+
// color: var(--basic-blue);
|
|
276
|
+
// position: absolute;
|
|
277
|
+
// bottom: 4px;
|
|
278
|
+
// right: 2px;
|
|
279
|
+
// }
|
|
280
|
+
// }
|
|
281
|
+
// }
|
|
282
|
+
// }
|
|
283
|
+
// }
|
|
284
|
+
|
|
285
|
+
// }
|
|
40
286
|
|
|
41
287
|
ion-header {
|
|
42
|
-
border:
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
border-bottom-style: solid;
|
|
46
|
-
border-color: var(--light-gray);
|
|
47
|
-
border-bottom-width: thin;
|
|
48
|
-
}
|
|
49
|
-
ion-toolbar{
|
|
50
|
-
height: var(--header-height);
|
|
51
|
-
&:not(.mobile){
|
|
52
|
-
--background: var(--list-bkg-color);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
288
|
+
border-bottom-style: solid;
|
|
289
|
+
border-color: var(--light-gray);
|
|
290
|
+
border-bottom-width: thin;
|
|
55
291
|
}
|
|
56
292
|
|
|
57
293
|
ion-content {
|
|
58
|
-
|
|
59
|
-
&#contentPlaceholder:not(.mobile),
|
|
60
|
-
&#conv-details:not(.mobile){
|
|
61
|
-
--background: var(--list-bkg-color);
|
|
62
|
-
}
|
|
63
|
-
--background: white;
|
|
64
|
-
|
|
65
294
|
ion-item {
|
|
66
295
|
--padding-end: 0px;
|
|
67
296
|
--inner-padding-end: 0px;
|
|
@@ -73,10 +302,6 @@ ion-content {
|
|
|
73
302
|
padding: 0;
|
|
74
303
|
margin: 0;
|
|
75
304
|
overflow: hidden;
|
|
76
|
-
|
|
77
|
-
&:not(.mobile){
|
|
78
|
-
padding: var(--padding-conversation-detail);
|
|
79
|
-
}
|
|
80
305
|
}
|
|
81
306
|
.row_content {
|
|
82
307
|
width: 100%;
|
|
@@ -86,14 +311,6 @@ ion-content {
|
|
|
86
311
|
position: absolute;
|
|
87
312
|
top: 0;
|
|
88
313
|
overflow: hidden;
|
|
89
|
-
background-color: white;
|
|
90
|
-
|
|
91
|
-
&:not(.mobile){
|
|
92
|
-
border-radius: var(--border-radius-content);;
|
|
93
|
-
position: unset;
|
|
94
|
-
|
|
95
|
-
}
|
|
96
|
-
|
|
97
314
|
ion-col {
|
|
98
315
|
padding: 5px 0;
|
|
99
316
|
}
|
|
@@ -109,7 +326,7 @@ ion-content {
|
|
|
109
326
|
position: absolute;
|
|
110
327
|
bottom: 0;
|
|
111
328
|
width: calc(100% - 0px);
|
|
112
|
-
|
|
329
|
+
border-top: 1px solid #e2e2e2;
|
|
113
330
|
}
|
|
114
331
|
|
|
115
332
|
#chatArea {
|
|
@@ -171,12 +388,6 @@ ion-content {
|
|
|
171
388
|
min-width: calc(100% - 600px) !important;
|
|
172
389
|
}
|
|
173
390
|
|
|
174
|
-
:host #conv-details .chat-area-apps-sidebar-wide ion-conversation-detail ::ng-deep {
|
|
175
|
-
div.manage_conversation_info_container{
|
|
176
|
-
right: calc(300px + 300px + var(--padding-conversation-detail));
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
|
|
180
391
|
.info-convs-apps-sidebar-wide {
|
|
181
392
|
max-width: 600px !important;
|
|
182
393
|
min-width: 600px !important;
|
|
@@ -229,7 +440,6 @@ ion-content {
|
|
|
229
440
|
|
|
230
441
|
.ionContentChatArea {
|
|
231
442
|
opacity: 0;
|
|
232
|
-
--background: white;
|
|
233
443
|
&.active {
|
|
234
444
|
opacity: 1;
|
|
235
445
|
}
|