@chat21/chat21-ionic 3.0.60-rc8 → 3.0.61-rc11
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 +83 -1
- package/LICENSE +661 -21
- package/README.md +2 -0
- package/angular.json +3 -0
- package/config.xml +5 -5
- package/deploy_pre.sh +10 -10
- package/deploy_prod.sh +5 -1
- package/env.sample +3 -1
- package/package.json +12 -7
- package/resources/{Android → android}/icon/drawable-hdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-ldpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-mdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xxhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon/drawable-xxxhdpi-icon.png +0 -0
- package/resources/{Android → android}/icon.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/{Android → android}/splash.png +0 -0
- package/src/app/app-routing.module.ts +10 -0
- package/src/app/app.component.html +14 -4
- package/src/app/app.component.scss +18 -1
- package/src/app/app.component.ts +56 -22
- package/src/app/app.module.ts +7 -1
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +7 -2
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +103 -12
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +39 -36
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +5 -1
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +147 -65
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +3 -3
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +12 -2
- package/src/app/components/ddp-header/ddp-header.component.html +20 -6
- package/src/app/components/ddp-header/ddp-header.component.scss +4 -0
- package/src/app/components/ddp-header/ddp-header.component.ts +104 -10
- package/src/app/components/project-item/project-item.component.html +8 -7
- package/src/app/components/project-item/project-item.component.scss +35 -15
- package/src/app/components/project-item/project-item.component.ts +15 -2
- package/src/app/components/sidebar/sidebar.component.html +274 -0
- package/src/app/components/sidebar/sidebar.component.scss +79 -0
- package/src/app/components/sidebar/sidebar.component.spec.ts +24 -0
- package/src/app/components/sidebar/sidebar.component.ts +493 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +110 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +318 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts +24 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +486 -0
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +2 -1
- package/src/app/pages/conversation-detail/conversation-detail.page.html +40 -50
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +1302 -774
- package/src/app/pages/conversations-list/conversations-list.module.ts +2 -1
- package/src/app/pages/conversations-list/conversations-list.page.html +18 -11
- package/src/app/pages/conversations-list/conversations-list.page.scss +9 -1
- package/src/app/pages/conversations-list/conversations-list.page.ts +753 -428
- package/src/app/pages/create-requester/create-requester-routing.module.ts +17 -0
- package/src/app/pages/create-requester/create-requester.module.ts +28 -0
- package/src/app/pages/create-requester/create-requester.page.html +67 -0
- package/src/app/pages/create-requester/create-requester.page.scss +30 -0
- package/src/app/pages/create-requester/create-requester.page.spec.ts +24 -0
- package/src/app/pages/create-requester/create-requester.page.ts +137 -0
- package/src/app/pages/create-ticket/create-ticket-routing.module.ts +17 -0
- package/src/app/pages/create-ticket/create-ticket.module.ts +28 -0
- package/src/app/pages/create-ticket/create-ticket.page.html +171 -0
- package/src/app/pages/create-ticket/create-ticket.page.scss +52 -0
- package/src/app/pages/create-ticket/create-ticket.page.spec.ts +24 -0
- package/src/app/pages/create-ticket/create-ticket.page.ts +423 -0
- package/src/app/pages/loader-preview/loader-preview.page.ts +226 -166
- package/src/app/pages/profile-info/profile-info.page.html +2 -2
- package/src/app/pages/profile-info/profile-info.page.scss +1 -1
- package/src/app/pages/profile-info/profile-info.page.ts +23 -21
- package/src/app/services/tiledesk/tiledesk.service.ts +181 -0
- package/src/app/shared/shared.module.ts +13 -0
- package/src/app/utils/scrollbar-theme.directive.ts +58 -24
- package/src/assets/i18n/de.json +56 -13
- package/src/assets/i18n/en.json +49 -6
- package/src/assets/i18n/es.json +48 -5
- package/src/assets/i18n/fr.json +51 -8
- package/src/assets/i18n/it.json +48 -5
- package/src/assets/i18n/pt.json +49 -6
- package/src/assets/i18n/ru.json +50 -7
- package/src/assets/i18n/sr.json +251 -0
- package/src/assets/i18n/tr.json +48 -5
- package/src/assets/images/default-avatar-x-select.png +0 -0
- package/src/assets/images/language_flag/ar.png +0 -0
- package/src/assets/images/language_flag/bg.png +0 -0
- package/src/assets/images/language_flag/ca.png +0 -0
- package/src/assets/images/language_flag/cs.png +0 -0
- package/src/assets/images/language_flag/da.png +0 -0
- package/src/assets/images/language_flag/de.png +0 -0
- package/src/assets/images/language_flag/el.png +0 -0
- package/src/assets/images/language_flag/en.png +0 -0
- package/src/assets/images/language_flag/es.png +0 -0
- package/src/assets/images/language_flag/fa.png +0 -0
- package/src/assets/images/language_flag/fi.png +0 -0
- package/src/assets/images/language_flag/fr.png +0 -0
- package/src/assets/images/language_flag/he.png +0 -0
- package/src/assets/images/language_flag/hi.png +0 -0
- package/src/assets/images/language_flag/hr.png +0 -0
- package/src/assets/images/language_flag/hu.png +0 -0
- package/src/assets/images/language_flag/id.png +0 -0
- package/src/assets/images/language_flag/it.png +0 -0
- package/src/assets/images/language_flag/ja.png +0 -0
- package/src/assets/images/language_flag/ko.png +0 -0
- package/src/assets/images/language_flag/ml-IN.png +0 -0
- package/src/assets/images/language_flag/ne-NP.png +0 -0
- package/src/assets/images/language_flag/nl.png +0 -0
- package/src/assets/images/language_flag/no.png +0 -0
- package/src/assets/images/language_flag/pl.png +0 -0
- package/src/assets/images/language_flag/pt-BR.png +0 -0
- package/src/assets/images/language_flag/pt.png +0 -0
- package/src/assets/images/language_flag/ro.png +0 -0
- package/src/assets/images/language_flag/ru.png +0 -0
- package/src/assets/images/language_flag/sk.png +0 -0
- package/src/assets/images/language_flag/sl.png +0 -0
- package/src/assets/images/language_flag/sr.png +0 -0
- package/src/assets/images/language_flag/sv-SE.png +0 -0
- package/src/assets/images/language_flag/ta.png +0 -0
- package/src/assets/images/language_flag/th.png +0 -0
- package/src/assets/images/language_flag/tr.png +0 -0
- package/src/assets/images/language_flag/uk.png +0 -0
- package/src/assets/images/language_flag/vi.png +0 -0
- package/src/assets/images/language_flag/zh-CN.png +0 -0
- package/src/assets/images/language_flag/zh-TW.png +0 -0
- package/src/assets/images/no_image_user.png +0 -0
- package/src/assets/images/priority_icons/high.svg +3 -0
- package/src/assets/images/priority_icons/high_v2.svg +14 -0
- package/src/assets/images/priority_icons/low.svg +10 -0
- package/src/assets/images/priority_icons/low_v2.svg +14 -0
- package/src/assets/images/priority_icons/medium.svg +16 -0
- package/src/assets/images/priority_icons/medium_v2.svg +11 -0
- package/src/assets/images/priority_icons/urgent.svg +4 -0
- package/src/assets/images/priority_icons/urgent_v2.svg +16 -0
- package/src/assets/tiledesk-solo-logo.png +0 -0
- package/src/chat-config-pre-test.json +3 -1
- package/src/chat-config-template.json +3 -1
- package/src/chat-config.json +4 -2
- package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +1 -1
- package/src/chat21-core/utils/constants.ts +6 -1
- package/src/global.scss +397 -3
- package/src/index.html +7 -0
- package/publish_pre.sh +0 -33
- package/publish_prod.sh +0 -33
package/src/assets/i18n/tr.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"LABEL_TU": "sen: ",
|
|
3
3
|
"LABEL_MSG_PUSH_START_CHAT": "Henüz görüşme yok",
|
|
4
4
|
"LABEL_MSG_START_CHAT": "Sohbeti başlat",
|
|
5
|
-
"LABEL_ACTIVE_NOW": "
|
|
5
|
+
"LABEL_ACTIVE_NOW": "mevcut",
|
|
6
6
|
"LABEL_AVAILABLE": "mevcut",
|
|
7
7
|
"LABEL_NOT_AVAILABLE": "müsait değil",
|
|
8
8
|
"LABEL_NO_MSG_HERE": "Hala mesaj yok...",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"LABEL_VIDEO_CHAT": "Görüntülü arama",
|
|
45
45
|
"LABEL_LEAVE_GROUP": "Gruptan ayrıl",
|
|
46
46
|
"LABEL_CLOSE_GROUP": "Kapat",
|
|
47
|
-
"ALERT_TITLE": "
|
|
47
|
+
"ALERT_TITLE": "Dikkat!",
|
|
48
48
|
"CLOSE_ALERT_CONFIRM_LABEL": "Tamam",
|
|
49
49
|
"CLOSE_ALERT_CANCEL_LABEL": "İPTAL ET",
|
|
50
50
|
"LEAVE_ALERT_MSG": "Gruptan ayrılmak mı?",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"LABEL_INFO_USER": "Kullanıcısı bilgi",
|
|
109
109
|
"LABEL_IS_WRITING": "yazıyor",
|
|
110
110
|
"LABEL_VERSION": "versiyon",
|
|
111
|
-
"LABEL_CONTACTS": "
|
|
111
|
+
"LABEL_CONTACTS": "Kişiler",
|
|
112
112
|
"LABEL_PLACEHOLDER": "mesajını yaz..",
|
|
113
113
|
"LABEL_START_NW_CONV": "Yeni görüşme",
|
|
114
114
|
"LABEL_FIRST_MSG": "Sorununuzu kısaca açıklayın, bir temsilci sizinle iletişime geçecektir.",
|
|
@@ -203,6 +203,49 @@
|
|
|
203
203
|
"PINNED_PROJECT": "Sabitlenmiş proje",
|
|
204
204
|
"CHANGE_PINNED_PROJECT": "Sabitlenmiş projeyi değiştir",
|
|
205
205
|
"CHANGE_TO_AVAILABLE_UNAVAILABLE": "mevcut/kullanılamaz olarak değiştirin",
|
|
206
|
-
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "
|
|
207
|
-
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "
|
|
206
|
+
"CHANGE_TO_YOUR_STATUS_TO_AVAILABLE": "Durumunuzu müsait olarak değiştirin",
|
|
207
|
+
"CHANGE_TO_YOUR_STATUS_TO_UNAVAILABLE": "Durumunuzu kullanılamaz olarak değiştirin",
|
|
208
|
+
"ALL_CONVS_SERVED": "Tüm konuşmalar servis edildi mi? İyi iş!",
|
|
209
|
+
"PaydPlanName": "{{projectprofile}} Planı",
|
|
210
|
+
"PaydPlanNamePro": "Pro Planı",
|
|
211
|
+
"PaydPlanNameEnterprise": "Enteprise Planı",
|
|
212
|
+
"ProPlanTrial": "Pro Plan (deneme)",
|
|
213
|
+
"FreePlan":"Ücretsiz Plan",
|
|
214
|
+
"SubscriptionPaymentProblem": "Abonelik ödeme sorunu",
|
|
215
|
+
"ThePlanHasExpired": "Planın süresi doldu",
|
|
216
|
+
"owner": "Sahip",
|
|
217
|
+
"admin": "Yönetici",
|
|
218
|
+
"agent": "Ajan",
|
|
219
|
+
"Conversations": "Konuşmalar",
|
|
220
|
+
"Apps":"Uygulamalar",
|
|
221
|
+
"Analytics":"Analitik",
|
|
222
|
+
"Activities": "Faaliyetler",
|
|
223
|
+
"History": "Tarih",
|
|
224
|
+
"Settings": "Ayarlar",
|
|
225
|
+
"Resolve": "Çözmek",
|
|
226
|
+
"Archive": "Arşivle",
|
|
227
|
+
"ActionNotAllowed":"İşleme izin verilmiyor",
|
|
228
|
+
"YouAreNoLongerAmongTheTeammatesManagingThisConversation":"Artık bu konuşmayı yöneten takım arkadaşları arasında değilsiniz",
|
|
229
|
+
"TicketSuccessfullyCreated":"Bilet başarıyla oluşturuldu",
|
|
230
|
+
"Continue":"Devam",
|
|
231
|
+
"ViewArchivedConversations":"Arşivlenmiş konuşmaları görüntüle",
|
|
232
|
+
"ViewContactsList":"Kişi listesini görüntüle",
|
|
233
|
+
"Already_present_in_the_dashboard_json":"........",
|
|
234
|
+
"CreateTicket": "Bilet oluştur",
|
|
235
|
+
"Requester": "istekte bulunan",
|
|
236
|
+
"ViewRequesterDetails": "İstek sahibi ayrıntılarını görüntüle",
|
|
237
|
+
"Priority": "Öncelik",
|
|
238
|
+
"urgent": "Acil",
|
|
239
|
+
"high": "Yüksek",
|
|
240
|
+
"medium": "Orta",
|
|
241
|
+
"low": "Düşük",
|
|
242
|
+
"SelectRequester": "Talep edeni seçin",
|
|
243
|
+
"AddRequester": "Ekle istekte bulunan",
|
|
244
|
+
"Subject": "Ders",
|
|
245
|
+
"SelectAssignee": "Atanan seçin",
|
|
246
|
+
"Message": "İleti",
|
|
247
|
+
"CreateNewRequester": "Yeni istek sahibi oluştur",
|
|
248
|
+
"Name": "İsim",
|
|
249
|
+
"NameIsRequired": "İsim gerekli",
|
|
250
|
+
"EnterValidEmail": "Geçerli bir e-posta adresi girin"
|
|
208
251
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#B30013;}
|
|
7
|
+
</style>
|
|
8
|
+
<g>
|
|
9
|
+
<path class="st0" d="M3.5,5.7C3,6,2.4,5.8,2.1,5.3S2,4.3,2.5,4l5-3c0.3-0.2,0.7-0.2,1,0l5,3c0.5,0.3,0.6,0.9,0.3,1.4
|
|
10
|
+
C13.6,5.8,13,6,12.5,5.7L8,3L3.5,5.7z"/>
|
|
11
|
+
<path class="st0" d="M8.1,15.2H7.9c-0.5,0-0.9-0.7-0.9-1.5v-7c0-0.8,0.4-1.5,0.9-1.5h0.2C8.6,5,9,5.7,9,6.5v7
|
|
12
|
+
C9,14.5,8.6,15.2,8.1,15.2z"/>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#3C8562;}
|
|
7
|
+
</style>
|
|
8
|
+
<path class="st0" d="M12.5,6.1C13,5.8,13.6,6,13.9,6.5C14.2,7,14,7.6,13.6,7.8l-5,3c-0.3,0.2-0.7,0.2-1,0l-5-3
|
|
9
|
+
C2,7.6,1.9,6.9,2.2,6.5C2.4,6,3.1,5.8,3.5,6.1L8,8.8C8,8.8,12.5,6.1,12.5,6.1z"/>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#3C8562;}
|
|
7
|
+
</style>
|
|
8
|
+
<g>
|
|
9
|
+
<path class="st0" d="M8,13.1l4.5-2.7c0.5-0.3,1.1-0.1,1.3,0.3c0.3,0.5,0.2,1.1-0.3,1.4l-5,3c-0.3,0.2-0.7,0.2-1,0l-5-3
|
|
10
|
+
c-0.5-0.3-0.7-0.8-0.4-1.3s0.9-0.7,1.4-0.4L8,13.1z"/>
|
|
11
|
+
<path class="st0" d="M9,2.6v7c0,0.8-0.4,1.5-0.9,1.3H7.9C7.4,10.9,7,10.2,7,9.4v-7c0-0.8,0.4-1.5,0.9-1.5h0.2C8.6,0.9,9,1.6,9,2.6z
|
|
12
|
+
"/>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Warstwa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#FFAB00;}
|
|
7
|
+
</style>
|
|
8
|
+
<title>icon/16px/medium-priority</title>
|
|
9
|
+
<desc>Created with Sketch.</desc>
|
|
10
|
+
<g id="icon_x2F_16px_x2F_medium-priority-">
|
|
11
|
+
<g>
|
|
12
|
+
<path class="st0" d="M3,4h10c0.6,0,1,0.4,1,1s-0.4,1-1,1H3C2.4,6,2,5.6,2,5S2.4,4,3,4z M3,10h10c0.6,0,1,0.4,1,1s-0.4,1-1,1H3
|
|
13
|
+
c-0.6,0-1-0.4-1-1S2.4,10,3,10z"/>
|
|
14
|
+
</g>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 15.9 15.9" style="enable-background:new 0 0 15.9 15.9;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:none;}
|
|
7
|
+
.st1{fill:#616E7D;}
|
|
8
|
+
</style>
|
|
9
|
+
<path class="st0" d="M1,0.9h14v14h-14C0.9,14.9,0.9,0.9,1,0.9z"/>
|
|
10
|
+
<path class="st1" d="M7.9,3.7c-2.3,0-4.3,1.9-4.3,4.3s1.9,4.3,4.3,4.3s4.3-1.9,4.3-4.3S10.4,3.7,7.9,3.7z"/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
2
|
+
<path d="M3.47876 7.9c-.5.3-1.1.1-1.4-.4s-.1-1 .4-1.3l5-3c.3-.2.7-.2 1 0l5 3c.5.3.6.9.3 1.4-.2.4-.8.6-1.3.3l-4.5-2.7-4.5 2.7z" fill="#ff5630"/>
|
|
3
|
+
<path d="M3.47876 12.2c-.5.3-1.1.2-1.4-.3s-.1-1.1.4-1.4l5-3c.3-.2.7-.2 1 0l5 3c.5.3.6.9.3 1.4-.3.5-.9.6-1.4.3l-4.4-2.7-4.5 2.7z" fill="#ff7452"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Livello_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#B30013;}
|
|
7
|
+
</style>
|
|
8
|
+
<g>
|
|
9
|
+
<path class="st0" d="M3.5,5.7C3,6,2.4,5.8,2.1,5.3S2,4.3,2.5,4l5-3c0.3-0.2,0.7-0.2,1,0l5,3c0.5,0.3,0.6,0.9,0.3,1.4
|
|
10
|
+
C13.6,5.8,13,6,12.5,5.7L8,3L3.5,5.7z"/>
|
|
11
|
+
<path class="st0" d="M3.5,10C3,10.3,2.4,10.2,2.1,9.7S2,8.6,2.5,8.3l5-3c0.3-0.2,0.7-0.2,1,0l5,3c0.5,0.3,0.6,0.9,0.3,1.4
|
|
12
|
+
s-0.9,0.6-1.4,0.3L8,7.3L3.5,10z"/>
|
|
13
|
+
<path class="st0" d="M8.1,15.2H7.9c-0.5,0-0.9-0.4-0.9-0.9V10c0-0.5,0.4-0.9,0.9-0.9h0.2C8.6,9.1,9,9.5,9,10v4.2
|
|
14
|
+
C9,14.8,8.6,15.2,8.1,15.2z"/>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"t2y12PruGU9wUtEGzBJfolMIgK": "CAR:T",
|
|
2
|
+
"t2y12PruGU9wUtEGzBJfolMIgK": "CAR:T-PAY:T-ANA:T-ACT:T-APP:T",
|
|
3
3
|
"chatEngine": "firebase",
|
|
4
4
|
"uploadEngine": "firebase",
|
|
5
5
|
"pushEngine": "firebase",
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
"fileUploadAccept":"*/*",
|
|
8
8
|
"authPersistence": "LOCAL",
|
|
9
9
|
"supportMode": true,
|
|
10
|
+
"writeToButton": true,
|
|
11
|
+
"archivedButton": true,
|
|
10
12
|
"firebaseConfig": {
|
|
11
13
|
"tenant": "tilechat",
|
|
12
14
|
"apiKey": "AIzaSyCoWXHNvP1-qOllCpTshhC6VjPXeRTK0T4",
|
|
@@ -27,5 +27,7 @@
|
|
|
27
27
|
"dashboardUrl": "${DASHBOARD_URL}",
|
|
28
28
|
"wsUrl": "${WS_URL}",
|
|
29
29
|
"wsUrlRel": "${WS_URL_RELATIVE}",
|
|
30
|
-
"supportMode": "${SUPPORT_MODE}"
|
|
30
|
+
"supportMode": "${SUPPORT_MODE}",
|
|
31
|
+
"writeToButton": "${WRITE_TO_BUTTON}",
|
|
32
|
+
"archivedButton": "${ARCHIVED_BUTTON}"
|
|
31
33
|
}
|
package/src/chat-config.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"t2y12PruGU9wUtEGzBJfolMIgK":
|
|
2
|
+
"t2y12PruGU9wUtEGzBJfolMIgK":"${FEATURES_TOKEN}",
|
|
3
3
|
"chatEngine": "mqtt",
|
|
4
4
|
"updloaEngine": "native",
|
|
5
5
|
"pushEngine":"none",
|
|
@@ -27,5 +27,7 @@
|
|
|
27
27
|
"dashboardUrl": "https://support-pre.tiledesk.com/dashboard/",
|
|
28
28
|
"wsUrl": "ws://localhost:3000/",
|
|
29
29
|
"wsUrlRel": "${WS_URL_RELATIVE}",
|
|
30
|
-
"supportMode": false
|
|
30
|
+
"supportMode": false,
|
|
31
|
+
"writeToButton": false,
|
|
32
|
+
"archivedButton": false
|
|
31
33
|
}
|
|
@@ -510,7 +510,7 @@ export class FirebaseConversationsHandler extends ConversationsHandlerService {
|
|
|
510
510
|
if ((conv.attributes && conv.attributes.messagelabel && conv.attributes.messagelabel.key === TOUCHING_OPERATOR) && conv.sender === "system") {
|
|
511
511
|
// console.log('FIREBASEConversationsHandlerSERVICE last_message_text', conv.last_message_text)
|
|
512
512
|
const textAfterColon = conv.last_message_text.split(":")[1]
|
|
513
|
-
console.log('FIREBASEConversationsHandlerSERVICE last_message_text - textAfterColon', textAfterColon)
|
|
513
|
+
// console.log('FIREBASEConversationsHandlerSERVICE last_message_text - textAfterColon', textAfterColon)
|
|
514
514
|
// message.text = INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU + ' ' + textAfterColon;
|
|
515
515
|
if (textAfterColon !== undefined) {
|
|
516
516
|
conv.last_message_text = INFO_A_NEW_SUPPORT_REQUEST_HAS_BEEN_ASSIGNED_TO_YOU + ': ' + textAfterColon;
|