@chat21/chat21-ionic 3.0.5-8.1 → 3.0.6-2.1

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.
Files changed (229) hide show
  1. package/CHANGELOG.md +300 -0
  2. package/LICENSE +661 -21
  3. package/README.md +21 -0
  4. package/angular.json +4 -0
  5. package/config.xml +6 -7
  6. package/deploy_pre.sh +44 -5
  7. package/deploy_prod.sh +36 -7
  8. package/env.sample +7 -3
  9. package/package.json +12 -8
  10. package/resources/{Android → android}/icon/drawable-hdpi-icon.png +0 -0
  11. package/resources/{Android → android}/icon/drawable-ldpi-icon.png +0 -0
  12. package/resources/{Android → android}/icon/drawable-mdpi-icon.png +0 -0
  13. package/resources/{Android → android}/icon/drawable-xhdpi-icon.png +0 -0
  14. package/resources/{Android → android}/icon/drawable-xxhdpi-icon.png +0 -0
  15. package/resources/{Android → android}/icon/drawable-xxxhdpi-icon.png +0 -0
  16. package/resources/{Android → android}/icon.png +0 -0
  17. package/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
  18. package/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
  19. package/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
  20. package/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
  21. package/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
  22. package/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
  23. package/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
  24. package/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
  25. package/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
  26. package/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
  27. package/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
  28. package/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
  29. package/resources/android/splash.png +0 -0
  30. package/src/app/app-routing.module.ts +36 -17
  31. package/src/app/app.component.html +18 -5
  32. package/src/app/app.component.scss +27 -5
  33. package/src/app/app.component.ts +526 -175
  34. package/src/app/app.module.ts +29 -12
  35. package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.html +1 -1
  36. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +35 -24
  37. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +166 -50
  38. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +113 -18
  39. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +23 -33
  40. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +19 -7
  41. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +73 -7
  42. package/src/app/chatlib/conversation-detail/message/image/image.component.html +7 -6
  43. package/src/app/chatlib/conversation-detail/message/image/image.component.ts +20 -1
  44. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +1 -1
  45. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +46 -11
  46. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss +8 -144
  47. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +149 -32
  48. package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.html +1 -1
  49. package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts +13 -10
  50. package/src/app/components/authentication/login/login.component.html +10 -10
  51. package/src/app/components/authentication/login/login.component.ts +2 -1
  52. package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts +1 -1
  53. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts +1 -1
  54. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +45 -39
  55. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +19 -1
  56. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +160 -54
  57. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +101 -38
  58. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +95 -19
  59. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +209 -98
  60. package/src/app/components/ddp-header/ddp-header.component.html +20 -6
  61. package/src/app/components/ddp-header/ddp-header.component.scss +4 -0
  62. package/src/app/components/ddp-header/ddp-header.component.ts +107 -11
  63. package/src/app/components/image-viewer/image-viewer.component.html +23 -0
  64. package/src/app/components/image-viewer/image-viewer.component.scss +107 -0
  65. package/src/app/components/image-viewer/image-viewer.component.spec.ts +24 -0
  66. package/src/app/components/image-viewer/image-viewer.component.ts +38 -0
  67. package/src/app/components/project-item/project-item.component.html +170 -0
  68. package/src/app/components/project-item/project-item.component.scss +751 -0
  69. package/src/app/components/project-item/project-item.component.spec.ts +24 -0
  70. package/src/app/components/project-item/project-item.component.ts +384 -0
  71. package/src/app/components/sidebar/sidebar.component.html +275 -0
  72. package/src/app/components/sidebar/sidebar.component.scss +79 -0
  73. package/src/app/components/sidebar/sidebar.component.spec.ts +24 -0
  74. package/src/app/components/sidebar/sidebar.component.ts +541 -0
  75. package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +121 -0
  76. package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +343 -0
  77. package/src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts +24 -0
  78. package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +502 -0
  79. package/src/app/components/utils/avatar-profile/avatar-profile.component.html +7 -0
  80. package/src/app/components/utils/avatar-profile/avatar-profile.component.ts +22 -5
  81. package/src/app/pages/authentication/login/login.page.html +1 -2
  82. package/src/app/pages/authentication/login/login.page.ts +1 -1
  83. package/src/app/pages/conversation-detail/conversation-detail.module.ts +9 -2
  84. package/src/app/pages/conversation-detail/conversation-detail.page.html +55 -49
  85. package/src/app/pages/conversation-detail/conversation-detail.page.scss +28 -0
  86. package/src/app/pages/conversation-detail/conversation-detail.page.ts +1285 -688
  87. package/src/app/pages/conversations-list/conversations-list.module.ts +2 -1
  88. package/src/app/pages/conversations-list/conversations-list.page.html +55 -21
  89. package/src/app/pages/conversations-list/conversations-list.page.scss +309 -127
  90. package/src/app/pages/conversations-list/conversations-list.page.ts +833 -358
  91. package/src/app/pages/create-canned-response/create-canned-response-routing.module.ts +17 -0
  92. package/src/app/pages/create-canned-response/create-canned-response.module.ts +30 -0
  93. package/src/app/pages/create-canned-response/create-canned-response.page.html +150 -0
  94. package/src/app/pages/create-canned-response/create-canned-response.page.scss +55 -0
  95. package/src/app/pages/create-canned-response/create-canned-response.page.spec.ts +24 -0
  96. package/src/app/pages/create-canned-response/create-canned-response.page.ts +319 -0
  97. package/src/app/pages/create-requester/create-requester-routing.module.ts +17 -0
  98. package/src/app/pages/create-requester/create-requester.module.ts +28 -0
  99. package/src/app/pages/create-requester/create-requester.page.html +67 -0
  100. package/src/app/pages/create-requester/create-requester.page.scss +30 -0
  101. package/src/app/pages/create-requester/create-requester.page.spec.ts +24 -0
  102. package/src/app/pages/create-requester/create-requester.page.ts +138 -0
  103. package/src/app/pages/create-ticket/create-ticket-routing.module.ts +17 -0
  104. package/src/app/pages/create-ticket/create-ticket.module.ts +28 -0
  105. package/src/app/pages/create-ticket/create-ticket.page.html +171 -0
  106. package/src/app/pages/create-ticket/create-ticket.page.scss +52 -0
  107. package/src/app/pages/create-ticket/create-ticket.page.spec.ts +24 -0
  108. package/src/app/pages/create-ticket/create-ticket.page.ts +432 -0
  109. package/src/app/pages/loader-preview/loader-preview.page.ts +226 -166
  110. package/src/app/pages/profile-info/profile-info.page.html +4 -4
  111. package/src/app/pages/profile-info/profile-info.page.scss +13 -2
  112. package/src/app/pages/profile-info/profile-info.page.ts +23 -21
  113. package/src/app/pages/unassigned-conversations/unassigned-conversations-routing.module.ts +17 -0
  114. package/src/app/pages/unassigned-conversations/unassigned-conversations.module.ts +22 -0
  115. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +27 -0
  116. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +173 -0
  117. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.spec.ts +24 -0
  118. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +151 -0
  119. package/src/app/services/app-config.ts +77 -5
  120. package/src/app/services/nav-proxy.service.ts +1 -1
  121. package/src/app/services/tiledesk/tiledesk.service.ts +231 -1
  122. package/src/app/services/websocket/websocket-js.ts +560 -0
  123. package/src/app/services/websocket/websocket.service.spec.ts +12 -0
  124. package/src/app/services/websocket/websocket.service.ts +292 -0
  125. package/src/app/shared/shared.module.ts +28 -8
  126. package/src/app/utils/scrollbar-theme.directive.ts +58 -24
  127. package/src/assets/i18n/de.json +265 -0
  128. package/src/assets/i18n/en.json +89 -7
  129. package/src/assets/i18n/es.json +265 -0
  130. package/src/assets/i18n/fr.json +265 -0
  131. package/src/assets/i18n/it.json +108 -34
  132. package/src/assets/i18n/pt.json +265 -0
  133. package/src/assets/i18n/ru.json +265 -0
  134. package/src/assets/i18n/sr.json +265 -0
  135. package/src/assets/i18n/tr.json +265 -0
  136. package/src/assets/images/default-avatar-x-select.png +0 -0
  137. package/src/assets/images/language_flag/ar.png +0 -0
  138. package/src/assets/images/language_flag/bg.png +0 -0
  139. package/src/assets/images/language_flag/ca.png +0 -0
  140. package/src/assets/images/language_flag/cs.png +0 -0
  141. package/src/assets/images/language_flag/da.png +0 -0
  142. package/src/assets/images/language_flag/de.png +0 -0
  143. package/src/assets/images/language_flag/el.png +0 -0
  144. package/src/assets/images/language_flag/en.png +0 -0
  145. package/src/assets/images/language_flag/es.png +0 -0
  146. package/src/assets/images/language_flag/fa.png +0 -0
  147. package/src/assets/images/language_flag/fi.png +0 -0
  148. package/src/assets/images/language_flag/fr.png +0 -0
  149. package/src/assets/images/language_flag/he.png +0 -0
  150. package/src/assets/images/language_flag/hi.png +0 -0
  151. package/src/assets/images/language_flag/hr.png +0 -0
  152. package/src/assets/images/language_flag/hu.png +0 -0
  153. package/src/assets/images/language_flag/id.png +0 -0
  154. package/src/assets/images/language_flag/it.png +0 -0
  155. package/src/assets/images/language_flag/ja.png +0 -0
  156. package/src/assets/images/language_flag/ko.png +0 -0
  157. package/src/assets/images/language_flag/ml-IN.png +0 -0
  158. package/src/assets/images/language_flag/ne-NP.png +0 -0
  159. package/src/assets/images/language_flag/nl.png +0 -0
  160. package/src/assets/images/language_flag/no.png +0 -0
  161. package/src/assets/images/language_flag/pl.png +0 -0
  162. package/src/assets/images/language_flag/pt-BR.png +0 -0
  163. package/src/assets/images/language_flag/pt.png +0 -0
  164. package/src/assets/images/language_flag/ro.png +0 -0
  165. package/src/assets/images/language_flag/ru.png +0 -0
  166. package/src/assets/images/language_flag/sk.png +0 -0
  167. package/src/assets/images/language_flag/sl.png +0 -0
  168. package/src/assets/images/language_flag/sr.png +0 -0
  169. package/src/assets/images/language_flag/sv-SE.png +0 -0
  170. package/src/assets/images/language_flag/ta.png +0 -0
  171. package/src/assets/images/language_flag/th.png +0 -0
  172. package/src/assets/images/language_flag/tr.png +0 -0
  173. package/src/assets/images/language_flag/uk.png +0 -0
  174. package/src/assets/images/language_flag/vi.png +0 -0
  175. package/src/assets/images/language_flag/zh-CN.png +0 -0
  176. package/src/assets/images/language_flag/zh-TW.png +0 -0
  177. package/src/assets/images/no_image_user.png +0 -0
  178. package/src/assets/images/priority_icons/high.svg +3 -0
  179. package/src/assets/images/priority_icons/high_v2.svg +14 -0
  180. package/src/assets/images/priority_icons/low.svg +10 -0
  181. package/src/assets/images/priority_icons/low_v2.svg +14 -0
  182. package/src/assets/images/priority_icons/medium.svg +16 -0
  183. package/src/assets/images/priority_icons/medium_v2.svg +11 -0
  184. package/src/assets/images/priority_icons/urgent.svg +4 -0
  185. package/src/assets/images/priority_icons/urgent_v2.svg +16 -0
  186. package/src/assets/js/chat21client.js +159 -84
  187. package/src/assets/logo.png +0 -0
  188. package/src/assets/tiledesk-solo-logo.png +0 -0
  189. package/src/assets/transparent.png +0 -0
  190. package/src/chat-config-mqtt.json +27 -17
  191. package/src/chat-config-pre-test.json +6 -2
  192. package/src/chat-config-template.json +8 -1
  193. package/src/chat-config.json +8 -1
  194. package/src/chat21-core/providers/chat-manager.ts +3 -3
  195. package/src/chat21-core/providers/firebase/firebase-archivedconversations-handler.ts +2 -2
  196. package/src/chat21-core/providers/firebase/firebase-auth-service.ts +6 -6
  197. package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +61 -45
  198. package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +24 -1
  199. package/src/chat21-core/providers/firebase/firebase-notifications.ts +32 -24
  200. package/src/chat21-core/providers/firebase/firebase-presence.service.ts +2 -2
  201. package/src/chat21-core/providers/firebase/firebase-typing.service.ts +1 -1
  202. package/src/chat21-core/providers/firebase/firebase-upload.service.ts +1 -1
  203. package/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts +1 -1
  204. package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +3 -5
  205. package/src/chat21-core/providers/mqtt/mqtt-conversations-handler.ts +13 -5
  206. package/src/chat21-core/providers/mqtt/mqtt-notifications.ts +101 -11
  207. package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts +13 -4
  208. package/src/chat21-core/utils/constants.ts +8 -1
  209. package/src/chat21-core/utils/utils-message.ts +21 -2
  210. package/src/chat21-core/utils/utils.ts +13 -2
  211. package/src/firebase-messaging-sw-template.js +1 -1
  212. package/src/global.scss +408 -2
  213. package/src/index.html +7 -0
  214. package/publish_pre.sh +0 -33
  215. package/publish_prod.sh +0 -33
  216. package/resources/Android/splash/drawable-land-hdpi-screen.png +0 -0
  217. package/resources/Android/splash/drawable-land-ldpi-screen.png +0 -0
  218. package/resources/Android/splash/drawable-land-mdpi-screen.png +0 -0
  219. package/resources/Android/splash/drawable-land-xhdpi-screen.png +0 -0
  220. package/resources/Android/splash/drawable-land-xxhdpi-screen.png +0 -0
  221. package/resources/Android/splash/drawable-land-xxxhdpi-screen.png +0 -0
  222. package/resources/Android/splash/drawable-port-hdpi-screen.png +0 -0
  223. package/resources/Android/splash/drawable-port-ldpi-screen.png +0 -0
  224. package/resources/Android/splash/drawable-port-mdpi-screen.png +0 -0
  225. package/resources/Android/splash/drawable-port-xhdpi-screen.png +0 -0
  226. package/resources/Android/splash/drawable-port-xxhdpi-screen.png +0 -0
  227. package/resources/Android/splash/drawable-port-xxxhdpi-screen.png +0 -0
  228. package/resources/Android/splash.png +0 -0
  229. package/src/assets/images/tiledesk_logo_50x50.png +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,305 @@
1
1
  # chat21-ionic ver 3.0
2
2
 
3
+ ### 3.0.62.1
4
+ - Allows agents to use the "Monitor" page
5
+
6
+ ### 3.0.62
7
+ - Deploys in production
8
+
9
+ ### 3.0.62-rc2
10
+ - Fixed bug: in the teammate drawer if the full name is too long it overlaps the email
11
+ - Fixed bug: in the teammate drawer if the email is too long it exceeds the width of the drawer
12
+
13
+ ### 3.0.62-rc1
14
+ - Change the URL of the environment variable "dashboardUrl" from absolute to relative
15
+
16
+ ### 3.0.61
17
+ - Deploys in production
18
+
19
+ ### 3.0.61-rc26
20
+ - Fixes the bug: the conversation detail is not opened if the URL contains round brackets
21
+
22
+ ### 3.0.61-rc25
23
+ - Handles the case that in the storage the value of the "last_project" key is undefined
24
+
25
+ ### 3.0.61-rc24
26
+ - Handles the "writeToButton" and the 'archivedButton' environment variables if are returned as a string
27
+ - Adds the "authPersistence" key in the chat-config-template.json, chat-config.json and env.sample files
28
+
29
+ ### 3.0.61-rc23
30
+ - Handles the "supportMode" environment variable if returned as a string (fixes the Docker image bugs: part of the conversation details go under the sidebar in mobile mode, the "add message as canned response" button is not displayed)
31
+ - Fixes the position of the emoji selection window pop up when the canned responses button is not visible
32
+
33
+ ### 3.0.61-rc22
34
+ - Minor improvements
35
+
36
+ ### 3.0.61-rc21
37
+ - Removes cordova-plugin-device
38
+
39
+ ### 3.0.61-rc20
40
+ - Updates dependencies
41
+
42
+ ### 3.0.61-rc19
43
+ - Merge branch 'features/new-sidebar'
44
+
45
+ ### 3.0.61-rc18
46
+ - Fix bugs: in the teammate settings drawer the logout button area is too large
47
+ - Fixed the bug: in the detail of the conversation the button messages are not aligned with the other messages
48
+
49
+ ### 3.0.61-rc16
50
+ - Does not allow teammates with agent role to access the "settings sidebar"
51
+
52
+ ### 3.0.61-rc15
53
+ - Increase the size of the emoji and remove the background color when it is sent or received without text
54
+ - Adds the ability to open sidebar menu items in a new tab by combining left mouse button + CMD keyboard key
55
+
56
+ ### 3.0.61-rc14
57
+ - Fixes the bug: the page to which the sidebar Settings menu item redirects is not correct for team members with agent role
58
+ - Fixes the bug: right clicking on the sidebar menu items doesn't show the context menu
59
+
60
+ ### 3.0.61-rc12
61
+ - Improves the alignment of left sidebar menu item icons
62
+ - Adds the ability to add a message as a canned response
63
+ - Hides the "Open canned responses" button if the "supportMode" environment variable is set to false
64
+ - Fixes the bug: "Settings" menu item in the left sidebar redirects to the "Canned responses" page instead of the "Widget" page
65
+ - Adds the ability to add a new canned response
66
+ - Fixes the bug: "Resolve conversation" from conversation detail header doesn't work on mobile
67
+ - Adds the ability to insert emoji in the message text
68
+ - Fixes the bug: on iOS mobile devices in the conversation detail the requester's avatar is not vertically aligned
69
+ - Fixes the bug: on mobile devices in the "info profile" modal window the version number is not visible because it is on a white background
70
+ - Fixes the bug: in the "Create canned response" modal window the "Add personalisation" menu does not always work
71
+ - Adds the chat version number to the teammate details drawer
72
+ - Makes the right sidebar "Settings" menu item visible to teammates with agent role
73
+
74
+ ### 3.0.61-rc11
75
+ - Fixed the bug: the "Resolve" button is displayed in the header of the details of the archived conversations
76
+ - Fixed the bug: in the header of the conversation detail the "Resolve" button remains active even after resolving the conversation
77
+ - Adds the ability to create a ticket
78
+ - Adds tooltips to the buttons available in the header of the conversation list
79
+ - Change the text of the "Conversations" menu item in the left sidebar to "Monitor"
80
+
81
+ ### 3.0.61-rc10
82
+ - Fixes the bug: the Analytics icon of the left sidebar is not displayed
83
+
84
+ ### 3.0.61-rc9
85
+ - Fixes the bug: the Apps icon of the left sidebar is not displayed
86
+
87
+ ### 3.0.61-rc8
88
+ - Changes the icon of the "Conversations" menu item to the left sidebar
89
+ - Adds Serbian language
90
+
91
+ ### 3.0.61-rc7
92
+ - Fixes the bug: while loading the app, the conversation list changes size and becomes wider
93
+ - Changes the style of the left sidebar
94
+ - Display in the "user data drawer" an avatar constructed with the initials of the logged in teammate if his profile picture is not available
95
+
96
+ ### 3.0.61-rc6
97
+ - Enhances the style of the sidebar tooltips
98
+ - Fixed bug: for direct conversations opening the "info sidebar" by clicking on the teammate avatar available in the conversation detail header does not work correctly
99
+ - Fixes the bug: not all chat strings are translated into the browser language or into the selected language
100
+ - Fixes the bug: Email is broken on dashes in user details sidebar
101
+ - Displays an alert when a teammate archives a conversation from a project they are no longer a part of
102
+ - Disable the "send message" textarea when a teammate replies to a support conversation of a project he is no longer a part of
103
+ - Adds, when an image is pasted in the "send message" text area, the text of the text area as a caption of the image preview modal window
104
+ - Adds, when an image is uploaded, the text of the "send message" text area as a caption of the image preview modal window
105
+
106
+ ### 3.0.61-rc5
107
+ - Fixes the bug: on mobile devices the chat content is shifted to the right
108
+ - Adds the ability to open and close the "user detail sidebar" by clicking on the avatar of the logged teammate present on the sidebar
109
+ - Fixes the bug: canned responses remain visible even if, after making a filter, the backslash is deleted
110
+ - Prevents the "open canned responses" button from inserting a backslash if another one exists before
111
+ - Hides the badge that displays the number of unassigned conversations if there are none
112
+ - Improves custom scrollbar displayed in the sidebar and in user detail sidebar
113
+ - Adds custom scrollbars to the conversation list and to the conversation detail
114
+
115
+ ### 3.0.61-rc4
116
+ - Hides the item showing unassigned conversations in the list of archived conversations
117
+ - Adds in the list of conversations to the "archive" button the tooltip "Resolve" if the conversation is of type "support" and the tooltip "Archive" if the conversation is of type "direct" or "group"
118
+ - Changes all occurrences of the "teammatesButton" environment variable to "writeToButton"
119
+ - Fixes the bug: if the sidebar is visible and the window width is less than 768px, the content of the conversation detail is not completely visible
120
+ - Moves for conversations of type "support" the "Resolve conversation" button from the dropdown menu to the header of the conversation detail
121
+
122
+ ### 3.0.61-rc3
123
+ - Replaces console.log with custom loggers
124
+ - Fixes the bug: the info support sidebar is no more displayed
125
+
126
+ ### 3.0.61-rc2
127
+ - Fixes the bug: Profile picture in the sidebar does not update when logged in with another user after logging out
128
+ - Bug Fix: in the "info-profile" page avoid the "uid of undefined" error
129
+ - Adds the "user details" sidebar
130
+ - Adds the languages flags images
131
+ - Allows to close the "user details" sidebar by clicking outside it
132
+ - Adds the tooltips to the links of the sidebar
133
+ - Hides the sidebar when the teammate logs out, if the app is on a mobile device and if the environment variable "supportMode" is set to false
134
+ - Hides in the item showing unassigned conversations the button to pin a project if the app is not on a mobile device
135
+ - Gets in the sidebar the feature tokens from the environment variables
136
+ - Install the "Roboto" font
137
+ - Changes font priority in global.scss: replace "Helvetica Neue" font with "Roboto" font
138
+ - Imports the "Poppins" font family into index.html
139
+ - Adds the "Resolve" tooltip to the "archive" button available in the conversation list
140
+ - Displays the "Resolved Conversations" button and the "Teammates" button in the header of the conversation list based on how the "teammatesButton" and "archivedButton" environment variables are set
141
+ - Adds "teammatesButton" and "archivedButton" variables to the environments
142
+ - Adds the "TEAMMATES_BUTTON" and the "ARCHIVED_BUTTON" variables to the env.sample file
143
+ - Adds the "teammatesButton" and the "archivedButton" variables to the "chat-config-template.json" file and to "the chat-config.json" file
144
+ - Updates the section "Configuration" of the "README.md" file with the new variables "teammatesButton" and the "archivedButton"
145
+
146
+ ### 3.0.61-rc1
147
+ - Adds a sidebar that allows navigation to the dashboard
148
+
149
+ ### 3.0.60
150
+ - Deploys in production
151
+
152
+ ### 3.0.60-rc9
153
+ - Adds the message "All conversations served" in the conversation details section that appears when there are no active conversations
154
+ - Fixes the bug: in the item that displays the number of unassigned conversations the button "fix a project" does not go to the right in mobile mode
155
+
156
+ ### 3.0.60-rc8
157
+ - Fixes the bug: "info" messages sent by "SYSTEM" are not translated
158
+ - Adds the Portuguese language
159
+ - Adds the French language
160
+ - Adds the Russian language
161
+ - Adds the Turkish language
162
+
163
+ ### 3.0.60-rc7
164
+ - Adds German language
165
+ - Adds a method that translates chat texts based on the language of the browser settings if no preferred language is selected in the dashboard or based on the preferred language (ignoring the browser language)
166
+ - Manages the language used for translations from the "moment" library based on the language of the browser settings if no preferred language has been selected in the dashboard or on the preferred language selected (ignoring the browser language)
167
+ - Adds the ability to manage the visibility of canned responses in env.sample, chat-config-tempalte.json and chat-config.json
168
+ - Fixes the bug: in the 'item' that displays the pinned project and the number of the not assigned conversions the tooltip is not correctly displayed
169
+
170
+ ### 3.0.60-rc6
171
+ - Fixes the bug: push notifications are initialized even if the "pushEngine" configuration variable is set to "none"
172
+ - Adds spanish language
173
+
174
+ ### 3.0.60-rc5
175
+ - Change the icon and link of the "pin button" in the item at the top of the conversation list (now opens the list of projects and not the list of new conversations)
176
+ - Add a tooltip on the switch button to change the available/unavailable status
177
+ - Adds a link to the to the new conversations at the icon that display the number of new conversations
178
+
179
+ ### 3.0.60-rc4
180
+ - Translates the canned response displayed when there are not canned responses
181
+
182
+ ### 3.0.60-rc3
183
+ - Enhances the item at the top of the conversation list that displays the number of new conversations of a selected project
184
+ - Fixes the bug: the loading spinner is sometimes not displayed when loading the list of unassigned conversations
185
+ - Displays as canned response "Test" when no canned responses are available
186
+ - Adds the cursor to the "Send message" textarea after the "Canned responses" button has been clicked
187
+
188
+ ### 3.0.60-rc2
189
+ - Fixes the bug: in AppConfigProvider the "wsUrl" is incorrect (window.location.port is missing)
190
+
191
+ ### 3.0.60-rc1
192
+ - Adds the ability to view canned responses by clicking on the button with the "flash" icon located to the left of the "Enter a message" text area
193
+
194
+ ### 3.0.59.2
195
+ - Fixes the bug: when the agent refreshes the chat page and the chat is in mobile mode, the badge with the number of unassigned conversations does not work
196
+
197
+ ### 3.0.59.1
198
+ - Fixes the bug: "Unable to read uid of undefined" error occurs when agent logs out
199
+ - Fixes the bug: When the agent logs into the chat and the chat is in mobile mode, no conversations are displayed
200
+ - Fixes the bug: the websocket is initialized even if the supportMode property is set to false
201
+ - Fixes the bug: when the agent refreshes the chat page and the chat is in mobile mode, the badge with the number of unassigned conversations does not work
202
+
203
+ ### 3.0.59
204
+ - Deploys in production
205
+
206
+ ### 3.0.59-rc23
207
+ - Fixes the bug: the badge indicating the number of unassigned conversations does not update correctly when the project is changed
208
+ - Changes the code that prevent the chat from opening in a new browser tab if the chat tab is already open
209
+ - Publish conversations returned by subscription to websocket conversations > "on data" callback
210
+
211
+ ### 3.0.59-rc22
212
+ - Minor improvements
213
+
214
+ ### 3.0.59-rc21
215
+ - chat21client.js -> v0.1.9
216
+
217
+ ### 3.0.59-rc20
218
+ - Improves the transition from "mobile" to "desktop" mode and vice versa by not reloading the app
219
+
220
+ ### 3.0.59-rc19
221
+ - Fixes the bug: when the chat is in "mobile" mode and from the dashboard the agent clicks on "Open chat" for a specific conversation the "back" button of the chat does not return to the list of conversations
222
+ - Fixes the bug: when the chat is in "mobile" mode and from the dashboard the agent clicks on "Open chat" for a specific conversation the chat does not display the details of the conversation
223
+
224
+ ### 3.0.59-rc18
225
+ - Improves the "app-config" service
226
+
227
+ ### 3.0.59-rc16
228
+ - Changes in config.xml the value of the "SplashScreen"
229
+ - Improves the method to avoid page reloading when an agent clicks the "Open Chat" button of the dashboard on the realtime and non-real time conversation list page and on the conversation detail page
230
+ - Modifies the "app-config" service by adding the ability to pass relative URLs to the websocket
231
+ - Adds "wsUrlRel" property to env.sample, chat-config-template.json and chat-config.json
232
+ - Adds a check in the "websocket-js.ts" service on the existence of the "ws" property of the "WebSocketJs" class before accessing the property "readyState"
233
+
234
+ ### 3.0.59-rc15
235
+ - Implements a method in app.components that counts and stores the number of open Chat tabs
236
+ - Implements a method on the conversation list page that prevents a new chat tab from opening when the agent clicks "Open Chat" from the dashboard
237
+
238
+ ### 3.0.59-rc14
239
+ - Fixes the bug: the sound that warns that a new conversation has been received does not work
240
+
241
+ ### 3.0.59-rc12
242
+ - Fixes the bug: Cannot read properties of undefined (reading 'get') when "translationMap" in not yet defined
243
+ - Fixes the bug: when the log out is performed, the item with the number of new conversations remains visible in the left side panel of the conversations list
244
+
245
+ ### 3.0.59-rc11
246
+ - Fixed bug: the item in the left side panel showing the number of new conversations is not displayed if there are no conversations
247
+ - Removes the "last_project" object and the "contacts" object on logout from local storage
248
+
249
+ ### 3.0.59-rc10
250
+ - Changes in config.xml the site URL of the author
251
+ - Changes the splash screen images
252
+ - Adds the "browser" platform configuration in config.xml
253
+ - Initialize in app.module.ts firebase to handle push notifications if chatEngine is "mqtt"
254
+
255
+ ### 3.0.59-rc9
256
+ - Changes in the archived conversations the date format if the browser language is English
257
+ - Displays the button to open the contact list for direct conversations and the entry at the top of the conversation list showing the number of unassigned conversations for a selected project if the "supportMode" configuration property is set to true
258
+ - Adds a style rule on the unassigned conversations page that changes the background of the "ion-content" if the project list is displayed in the iframe
259
+ - Adds "supportMode" property to env.sample, chat-config-template.json and chat-config.json
260
+
261
+ ### 3.0.59-rc8
262
+ - Changes the title of the modal window showing unassigned conversations from "Unassigned Conversations" to "New Conversations"
263
+ - Fixes the bug: if the "chatEngine" property value is set to "mqtt" the login modal window does not disappear even if the agent is logged in
264
+ - Fixed the value of the configuration property "dashboardUrl"
265
+
266
+ ### 3.0.59-rc7
267
+ - Fixes the bug "Cannot read properties of undefined (reading 'get')" in component template showing the number of new conversations
268
+ - Fixes the bug: the value of the "supportMode" property is passed hard-coded
269
+
270
+ ### 3.0.59-rc6
271
+ - Outsources the websocket URL to environments
272
+ - Improves the graphic of the element, positioned at the top of the conversation list, which displays the number of new conversations
273
+ - Adds "wsUrl" property to env.sample, chat-config-template.json and chat-config.json
274
+ - Updates environments with "wsUrl" property
275
+
276
+ ### 3.0.59-rc5
277
+ - Display a "toast message" of success after that the agent has joined to an unassigned conversation and other minor improvements
278
+
279
+ ### 3.0.59-rc4
280
+ - Adds an item to the top of the conversation list that shows the number of unassigned conversations for a selected project
281
+ - Adds the ability, by clicking on the element that displays the number of unassigned conversations, to view the unassigned conversations and to join to them or archive them
282
+
283
+ ### 3.0.59-rc3
284
+ - Improves the method that allows to chain multiple canned responses
285
+
286
+ ### 3.0.59-rc2
287
+ - Fixes the bug: on small windows, images and iframes are not the same size as the bubble message that contains them
288
+ - Adds in the "bubble-message" component a check if the metadata is an object before calling the getMetadataSize() method
289
+ - Hides the "canned responses" if there are whitespace after the forward slash "/" or if there are no whitespace before the forward slash "/"
290
+ - Fixes the bug: if the "canned responses" are selected with the mouse, the "send message" text area does not have focus
291
+ - Adds the image viewer and the ability to download an image from it
292
+ - Fixes the position of the "archive" button when the app runs on mobile devices
293
+ - Updates Android splash screen .png image
294
+
295
+ ### 3.0.59-rc1
296
+ - Fixes the bug: the "send message" button remains in the "disabled" state even if it is active
297
+ - Changes the format of the date displayed in the message tooltips
298
+ - Fixes the bug: the sender's avatar is not always displayed in the messages header
299
+ - Fixes the bug: the sender's name is not always displayed in the messages header
300
+ - Fixes the bug: in the avatar-profile component the properties 'avatarUrl', 'color' and 'avatar' are private and accessible only within the class
301
+ - Fixes the bug: on ios platforms the back button in the conversation details header overlaps the avatar
302
+
3
303
  ### 3.0.58.1
4
304
  - Fix the bug: if the "chatEngine" property value is set to "mqtt "the login modal window does not disappear even if the agent is logged in
5
305