@chat21/chat21-ionic 2.0.13 → 3.0.5-9.2

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 (716) hide show
  1. package/.github/workflows/docker-community-push-latest.yml +22 -0
  2. package/.github/workflows/docker-image-tag-community-tag-push.yml +21 -0
  3. package/CHANGELOG.md +637 -212
  4. package/Dockerfile +1 -2
  5. package/LICENSE +21 -661
  6. package/README.md +40 -9
  7. package/angular.json +230 -0
  8. package/browserslist +12 -0
  9. package/config.xml +60 -47
  10. package/deploy_pre.sh +14 -12
  11. package/deploy_prod.sh +26 -6
  12. package/env.sample +28 -9
  13. package/ionic.config.json +2 -2
  14. package/karma.conf.js +31 -0
  15. package/nginx.conf +1 -1
  16. package/package.json +91 -105
  17. package/publish_pre.sh +33 -0
  18. package/publish_prod.sh +33 -0
  19. package/resources/Android/icon/drawable-hdpi-icon.png +0 -0
  20. package/resources/Android/icon/drawable-ldpi-icon.png +0 -0
  21. package/resources/Android/icon/drawable-mdpi-icon.png +0 -0
  22. package/resources/Android/icon/drawable-xhdpi-icon.png +0 -0
  23. package/resources/Android/icon/drawable-xxhdpi-icon.png +0 -0
  24. package/resources/Android/icon/drawable-xxxhdpi-icon.png +0 -0
  25. package/resources/Android/icon.png +0 -0
  26. package/resources/Android/splash/drawable-land-hdpi-screen.png +0 -0
  27. package/resources/Android/splash/drawable-land-ldpi-screen.png +0 -0
  28. package/resources/Android/splash/drawable-land-mdpi-screen.png +0 -0
  29. package/resources/Android/splash/drawable-land-xhdpi-screen.png +0 -0
  30. package/resources/Android/splash/drawable-land-xxhdpi-screen.png +0 -0
  31. package/resources/Android/splash/drawable-land-xxxhdpi-screen.png +0 -0
  32. package/resources/Android/splash/drawable-port-hdpi-screen.png +0 -0
  33. package/resources/Android/splash/drawable-port-ldpi-screen.png +0 -0
  34. package/resources/Android/splash/drawable-port-mdpi-screen.png +0 -0
  35. package/resources/Android/splash/drawable-port-xhdpi-screen.png +0 -0
  36. package/resources/Android/splash/drawable-port-xxhdpi-screen.png +0 -0
  37. package/resources/Android/splash/drawable-port-xxxhdpi-screen.png +0 -0
  38. package/resources/Android/splash.png +0 -0
  39. package/src/app/app-routing.module.ts +90 -0
  40. package/src/app/app.component.html +26 -0
  41. package/src/app/app.component.scss +11 -0
  42. package/src/app/app.component.spec.ts +47 -0
  43. package/src/app/app.component.ts +1154 -128
  44. package/src/app/app.module.ts +314 -135
  45. package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.html +143 -0
  46. package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.scss +335 -0
  47. package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.spec.ts +179 -0
  48. package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.ts +303 -0
  49. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +149 -0
  50. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +199 -0
  51. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.spec.ts +24 -0
  52. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +97 -0
  53. package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.html +17 -0
  54. package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.scss +83 -0
  55. package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.spec.ts +27 -0
  56. package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.ts +43 -0
  57. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +76 -0
  58. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +51 -0
  59. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.spec.ts +84 -0
  60. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +215 -0
  61. package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.html +3 -0
  62. package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.scss +83 -0
  63. package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.spec.ts +25 -0
  64. package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.ts +37 -0
  65. package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.html +24 -0
  66. package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.scss +61 -0
  67. package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.spec.ts +25 -0
  68. package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.ts +30 -0
  69. package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.html +3 -0
  70. package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.scss +47 -0
  71. package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.spec.ts +25 -0
  72. package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.ts +29 -0
  73. package/src/app/chatlib/conversation-detail/message/frame/frame.component.html +3 -0
  74. package/{bin/chat21-ionic → src/app/chatlib/conversation-detail/message/frame/frame.component.scss} +0 -0
  75. package/src/app/chatlib/conversation-detail/message/frame/frame.component.spec.ts +25 -0
  76. package/src/app/chatlib/conversation-detail/message/frame/frame.component.ts +33 -0
  77. package/src/app/chatlib/conversation-detail/message/image/image.component.html +10 -0
  78. package/src/app/chatlib/conversation-detail/message/image/image.component.scss +34 -0
  79. package/src/app/chatlib/conversation-detail/message/image/image.component.spec.ts +35 -0
  80. package/src/app/chatlib/conversation-detail/message/image/image.component.ts +78 -0
  81. package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.html +2 -0
  82. package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.scss +15 -0
  83. package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.spec.ts +27 -0
  84. package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.ts +35 -0
  85. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.html +56 -0
  86. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +169 -0
  87. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.spec.ts +33 -0
  88. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.ts +80 -0
  89. package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.html +18 -0
  90. package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.scss +27 -0
  91. package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.spec.ts +25 -0
  92. package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.ts +24 -0
  93. package/src/app/chatlib/conversation-detail/message/text/text.component.html +5 -0
  94. package/src/app/chatlib/conversation-detail/message/text/text.component.scss +26 -0
  95. package/src/app/chatlib/conversation-detail/message/text/text.component.spec.ts +33 -0
  96. package/src/app/chatlib/conversation-detail/message/text/text.component.ts +56 -0
  97. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +154 -0
  98. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss +222 -0
  99. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.spec.ts +24 -0
  100. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +113 -0
  101. package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.html +46 -0
  102. package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.scss +200 -0
  103. package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.spec.ts +27 -0
  104. package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts +135 -0
  105. package/src/app/components/authentication/login/login.component.html +65 -0
  106. package/src/app/components/authentication/login/login.component.scss +85 -0
  107. package/src/app/components/authentication/login/login.component.spec.ts +24 -0
  108. package/src/app/components/authentication/login/login.component.ts +174 -0
  109. package/src/app/components/contacts-directory/contacts-directory.component.html +22 -0
  110. package/src/app/components/contacts-directory/contacts-directory.component.scss +123 -0
  111. package/src/app/components/contacts-directory/contacts-directory.component.spec.ts +24 -0
  112. package/src/app/components/contacts-directory/contacts-directory.component.ts +109 -0
  113. package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.html +3 -0
  114. package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.scss +21 -0
  115. package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.spec.ts +24 -0
  116. package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.ts +14 -0
  117. package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html +54 -0
  118. package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss +98 -0
  119. package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.spec.ts +24 -0
  120. package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts +84 -0
  121. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html +30 -0
  122. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss +83 -0
  123. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.spec.ts +24 -0
  124. package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts +68 -0
  125. package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.html +3 -0
  126. package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.scss +10 -0
  127. package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.spec.ts +24 -0
  128. package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.ts +14 -0
  129. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +71 -0
  130. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +161 -0
  131. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.spec.ts +24 -0
  132. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +133 -0
  133. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +64 -0
  134. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +124 -0
  135. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.spec.ts +25 -0
  136. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +685 -0
  137. package/src/app/components/conversation-detail/option-header/option-header.component.html +13 -0
  138. package/src/app/components/conversation-detail/option-header/option-header.component.scss +0 -0
  139. package/src/app/components/conversation-detail/option-header/option-header.component.spec.ts +24 -0
  140. package/src/app/components/conversation-detail/option-header/option-header.component.ts +24 -0
  141. package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.html +64 -0
  142. package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.scss +135 -0
  143. package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.spec.ts +24 -0
  144. package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.ts +53 -0
  145. package/src/app/components/conversation-info/conversation-info.module.ts +13 -0
  146. package/src/app/components/conversation-info/info-content/info-content.component.html +18 -0
  147. package/src/app/components/conversation-info/info-content/info-content.component.scss +5 -0
  148. package/src/app/components/conversation-info/info-content/info-content.component.spec.ts +24 -0
  149. package/src/app/components/conversation-info/info-content/info-content.component.ts +395 -0
  150. package/src/app/components/conversation-info/info-direct/info-direct.component.html +57 -0
  151. package/src/app/components/conversation-info/info-direct/info-direct.component.scss +62 -0
  152. package/src/app/components/conversation-info/info-direct/info-direct.component.spec.ts +24 -0
  153. package/src/app/components/conversation-info/info-direct/info-direct.component.ts +67 -0
  154. package/src/app/components/conversation-info/info-group/info-group.component.html +115 -0
  155. package/src/app/components/conversation-info/info-group/info-group.component.scss +80 -0
  156. package/src/app/components/conversation-info/info-group/info-group.component.spec.ts +24 -0
  157. package/src/app/components/conversation-info/info-group/info-group.component.ts +218 -0
  158. package/src/app/components/conversation-info/info-support-group/info-support-group.component.html +6 -0
  159. package/src/app/components/conversation-info/info-support-group/info-support-group.component.scss +0 -0
  160. package/src/app/components/conversation-info/info-support-group/info-support-group.component.spec.ts +24 -0
  161. package/src/app/components/conversation-info/info-support-group/info-support-group.component.ts +29 -0
  162. package/src/app/components/ddp-header/ddp-header.component.html +31 -0
  163. package/src/app/components/ddp-header/ddp-header.component.scss +26 -0
  164. package/src/app/components/ddp-header/ddp-header.component.spec.ts +24 -0
  165. package/src/app/components/ddp-header/ddp-header.component.ts +33 -0
  166. package/src/app/components/image-viewer/image-viewer.component.html +23 -0
  167. package/src/app/components/image-viewer/image-viewer.component.scss +107 -0
  168. package/src/app/components/image-viewer/image-viewer.component.spec.ts +24 -0
  169. package/src/app/components/image-viewer/image-viewer.component.ts +38 -0
  170. package/src/app/components/project-item/project-item.component.html +147 -0
  171. package/src/app/components/project-item/project-item.component.scss +669 -0
  172. package/src/app/components/project-item/project-item.component.spec.ts +24 -0
  173. package/src/app/components/project-item/project-item.component.ts +350 -0
  174. package/src/app/components/utils/avatar-profile/avatar-profile.component.html +12 -0
  175. package/src/app/components/utils/avatar-profile/avatar-profile.component.scss +29 -0
  176. package/src/app/components/utils/avatar-profile/avatar-profile.component.spec.ts +24 -0
  177. package/src/app/components/utils/avatar-profile/avatar-profile.component.ts +41 -0
  178. package/src/app/components/utils/user-presence/user-presence.component.html +2 -0
  179. package/src/app/components/utils/user-presence/user-presence.component.scss +24 -0
  180. package/src/app/components/utils/user-presence/user-presence.component.spec.ts +24 -0
  181. package/src/app/components/utils/user-presence/user-presence.component.ts +159 -0
  182. package/src/app/directives/autofocus.directive.ts +41 -0
  183. package/src/app/directives/html-entities-encode.pipe.spec.ts +8 -0
  184. package/src/app/directives/html-entities-encode.pipe.ts +17 -0
  185. package/src/app/directives/marked.pipe.spec.ts +8 -0
  186. package/src/app/directives/marked.pipe.ts +27 -0
  187. package/src/app/directives/safe-html.pipe.ts +16 -0
  188. package/src/app/pages/authentication/login/login-routing.module.ts +17 -0
  189. package/src/app/pages/authentication/login/login.module.ts +39 -0
  190. package/src/app/pages/authentication/login/login.page.html +7 -0
  191. package/src/app/pages/authentication/login/login.page.scss +5 -0
  192. package/src/app/pages/authentication/login/login.page.spec.ts +24 -0
  193. package/src/app/pages/authentication/login/login.page.ts +187 -0
  194. package/src/app/pages/contacts-directory/contacts-directory-routing.module.ts +17 -0
  195. package/src/app/pages/contacts-directory/contacts-directory.module.ts +42 -0
  196. package/src/app/pages/contacts-directory/contacts-directory.page.html +19 -0
  197. package/src/app/pages/contacts-directory/contacts-directory.page.scss +0 -0
  198. package/src/app/pages/contacts-directory/contacts-directory.page.spec.ts +24 -0
  199. package/src/app/pages/contacts-directory/contacts-directory.page.ts +125 -0
  200. package/src/app/pages/conversation-detail/conversation-detail-routing.module.ts +17 -0
  201. package/src/app/pages/conversation-detail/conversation-detail.module.ts +69 -0
  202. package/src/app/pages/conversation-detail/conversation-detail.page.html +191 -0
  203. package/src/app/pages/conversation-detail/conversation-detail.page.scss +492 -0
  204. package/src/app/pages/conversation-detail/conversation-detail.page.spec.ts +24 -0
  205. package/src/app/pages/conversation-detail/conversation-detail.page.ts +1525 -0
  206. package/src/app/pages/conversations-list/conversations-list-routing.module.ts +17 -0
  207. package/src/app/pages/conversations-list/conversations-list.module.ts +43 -0
  208. package/src/app/pages/conversations-list/conversations-list.page.html +112 -0
  209. package/src/app/pages/conversations-list/conversations-list.page.scss +302 -0
  210. package/src/app/pages/conversations-list/conversations-list.page.spec.ts +24 -0
  211. package/src/app/pages/conversations-list/conversations-list.page.ts +1032 -0
  212. package/src/app/pages/details/details-routing.module.ts +17 -0
  213. package/src/app/pages/details/details.module.ts +21 -0
  214. package/src/app/pages/details/details.page.html +28 -0
  215. package/src/app/pages/details/details.page.scss +23 -0
  216. package/src/app/pages/details/details.page.spec.ts +24 -0
  217. package/src/app/pages/details/details.page.ts +65 -0
  218. package/src/app/pages/loader-preview/loader-preview-routing.module.ts +17 -0
  219. package/src/app/pages/loader-preview/loader-preview.module.ts +29 -0
  220. package/src/app/pages/loader-preview/loader-preview.page.html +62 -0
  221. package/src/app/pages/loader-preview/loader-preview.page.scss +117 -0
  222. package/src/app/pages/loader-preview/loader-preview.page.spec.ts +24 -0
  223. package/src/app/pages/loader-preview/loader-preview.page.ts +353 -0
  224. package/src/app/pages/profile-info/profile-info-routing.module.ts +17 -0
  225. package/src/app/pages/profile-info/profile-info.module.ts +41 -0
  226. package/src/app/pages/profile-info/profile-info.page.html +86 -0
  227. package/src/app/pages/profile-info/profile-info.page.scss +264 -0
  228. package/src/app/pages/profile-info/profile-info.page.spec.ts +24 -0
  229. package/src/app/pages/profile-info/profile-info.page.ts +223 -0
  230. package/src/app/pages/unassigned-conversations/unassigned-conversations-routing.module.ts +17 -0
  231. package/src/app/pages/unassigned-conversations/unassigned-conversations.module.ts +22 -0
  232. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +22 -0
  233. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +79 -0
  234. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.spec.ts +24 -0
  235. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +116 -0
  236. package/src/app/services/app-config.ts +107 -0
  237. package/src/app/services/canned-responses/canned-responses.service.spec.ts +12 -0
  238. package/src/app/services/canned-responses/canned-responses.service.ts +49 -0
  239. package/src/app/services/contacts/contacts.service.spec.ts +12 -0
  240. package/src/app/services/contacts/contacts.service.ts +172 -0
  241. package/src/app/services/events-service.ts +79 -0
  242. package/src/app/services/nav-proxy.service.spec.ts +12 -0
  243. package/src/app/services/nav-proxy.service.ts +80 -0
  244. package/src/app/services/network-service/network.service.spec.ts +12 -0
  245. package/src/app/services/network-service/network.service.ts +46 -0
  246. package/src/app/services/tiledesk/tiledesk.service.spec.ts +12 -0
  247. package/src/app/services/tiledesk/tiledesk.service.ts +99 -0
  248. package/src/app/services/websocket/websocket-js.ts +560 -0
  249. package/src/app/services/websocket/websocket.service.spec.ts +12 -0
  250. package/src/app/services/websocket/websocket.service.ts +292 -0
  251. package/src/app/shared/shared-conversation-info.module.ts +33 -0
  252. package/src/app/shared/shared.module.ts +130 -0
  253. package/src/{utils → app/utils}/constants.ts-e +0 -0
  254. package/src/app/utils/scrollbar-theme.directive.ts +63 -0
  255. package/src/assets/i18n/en.json +122 -38
  256. package/src/assets/i18n/it.json +101 -10
  257. package/src/assets/icon/favicon.ico +0 -0
  258. package/src/assets/icon/ionic_favicon.png +0 -0
  259. package/src/assets/images/f21ico-done.svg +1 -0
  260. package/src/assets/images/f21ico-done_all.svg +1 -0
  261. package/src/assets/images/f21ico-schedule.svg +1 -0
  262. package/src/assets/images/file-alt-solid.png +0 -0
  263. package/src/assets/images/no_conversation.jpg +0 -0
  264. package/src/assets/{img → images}/no_image.png +0 -0
  265. package/src/assets/js/chat21client.js +1027 -0
  266. package/src/assets/js/mqtt/4.1.0/mqtt.min.js +1 -0
  267. package/src/assets/js/mqtt/4.2.6/mqtt.min.js +1 -0
  268. package/src/assets/js/mqtt/4.2.8/mqtt.min.js +1 -0
  269. package/src/assets/logo.png +0 -0
  270. package/src/assets/shapes.svg +1 -0
  271. package/src/assets/sounds/pling.mp3 +0 -0
  272. package/src/assets/transparent.png +0 -0
  273. package/src/chat-config-mqtt-ver-uploaded.json +22 -0
  274. package/src/chat-config-mqtt.json +26 -0
  275. package/src/chat-config-pre-test.json +32 -0
  276. package/src/chat-config-pre.json +23 -0
  277. package/src/chat-config-template.json +20 -6
  278. package/src/chat-config.json +30 -0
  279. package/src/{models → chat21-core/models}/conversation.ts +6 -2
  280. package/src/{models → chat21-core/models}/group.ts +7 -5
  281. package/src/{models → chat21-core/models}/message.ts +8 -8
  282. package/src/{models → chat21-core/models}/upload.ts +5 -5
  283. package/src/{models → chat21-core/models}/user.ts +2 -1
  284. package/src/chat21-core/providers/abstract/app-storage.service.spec.ts +15 -0
  285. package/src/chat21-core/providers/abstract/app-storage.service.ts +17 -0
  286. package/src/chat21-core/providers/abstract/archivedconversations-handler.service.spec.ts +13 -0
  287. package/src/chat21-core/providers/abstract/archivedconversations-handler.service.ts +34 -0
  288. package/src/chat21-core/providers/abstract/conversation-handler-builder.service.spec.ts +12 -0
  289. package/src/chat21-core/providers/abstract/conversation-handler-builder.service.ts +11 -0
  290. package/src/chat21-core/providers/abstract/conversation-handler.service.spec.ts +12 -0
  291. package/src/chat21-core/providers/abstract/conversation-handler.service.ts +43 -0
  292. package/src/chat21-core/providers/abstract/conversations-handler.service.spec.ts +12 -0
  293. package/src/chat21-core/providers/abstract/conversations-handler.service.ts +42 -0
  294. package/src/chat21-core/providers/abstract/groups-handler.service.spec.ts +12 -0
  295. package/src/chat21-core/providers/abstract/groups-handler.service.ts +28 -0
  296. package/src/chat21-core/providers/abstract/image-repo.service.spec.ts +12 -0
  297. package/src/chat21-core/providers/abstract/image-repo.service.ts +26 -0
  298. package/src/chat21-core/providers/abstract/logger.service.spec.ts +12 -0
  299. package/src/chat21-core/providers/abstract/logger.service.ts +16 -0
  300. package/src/chat21-core/providers/abstract/messagingAuth.service.spec.ts +12 -0
  301. package/src/chat21-core/providers/abstract/messagingAuth.service.ts +54 -0
  302. package/src/chat21-core/providers/abstract/notifications.service.spec.ts +12 -0
  303. package/src/chat21-core/providers/abstract/notifications.service.ts +31 -0
  304. package/src/chat21-core/providers/abstract/presence.service.spec.ts +12 -0
  305. package/src/chat21-core/providers/abstract/presence.service.ts +34 -0
  306. package/src/chat21-core/providers/abstract/typing.service.spec.ts +12 -0
  307. package/src/chat21-core/providers/abstract/typing.service.ts +31 -0
  308. package/src/chat21-core/providers/abstract/upload.service.spec.ts +12 -0
  309. package/src/chat21-core/providers/abstract/upload.service.ts +39 -0
  310. package/src/chat21-core/providers/chat-manager.ts +282 -0
  311. package/src/chat21-core/providers/custom-translate.service.spec.ts +12 -0
  312. package/src/chat21-core/providers/custom-translate.service.ts +42 -0
  313. package/src/chat21-core/providers/firebase/firebase-archivedconversations-handler.ts +476 -0
  314. package/src/chat21-core/providers/firebase/firebase-auth-service.ts +376 -0
  315. package/src/chat21-core/providers/firebase/firebase-conversation-handler-builder.service.ts +19 -0
  316. package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +416 -0
  317. package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +570 -0
  318. package/src/chat21-core/providers/firebase/firebase-groups-handler.ts +303 -0
  319. package/src/chat21-core/providers/firebase/firebase-image-repo.ts +40 -0
  320. package/src/chat21-core/providers/firebase/firebase-init-service.ts +31 -0
  321. package/src/chat21-core/providers/firebase/firebase-notifications.ts +246 -0
  322. package/src/chat21-core/providers/firebase/firebase-presence.service.ts +190 -0
  323. package/src/chat21-core/providers/firebase/firebase-typing.service.ts +93 -0
  324. package/src/chat21-core/providers/firebase/firebase-upload.service.ts +106 -0
  325. package/src/chat21-core/providers/localSessionStorage.ts +215 -0
  326. package/src/chat21-core/providers/logger/customLogger.ts +70 -0
  327. package/src/chat21-core/providers/logger/loggerInstance.ts +20 -0
  328. package/src/chat21-core/providers/mqtt/chat-service.ts +44 -0
  329. package/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts +707 -0
  330. package/src/chat21-core/providers/mqtt/mqtt-auth-service.ts +313 -0
  331. package/src/chat21-core/providers/mqtt/mqtt-conversation-handler-builder.service.ts +25 -0
  332. package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +446 -0
  333. package/src/chat21-core/providers/mqtt/mqtt-conversations-handler.ts +601 -0
  334. package/src/chat21-core/providers/mqtt/mqtt-groups-handler.ts +139 -0
  335. package/src/chat21-core/providers/mqtt/mqtt-notifications.ts +122 -0
  336. package/src/chat21-core/providers/mqtt/mqtt-presence.service.ts +229 -0
  337. package/src/chat21-core/providers/mqtt/mqtt-typing.service.ts +93 -0
  338. package/src/chat21-core/providers/native/native-image-repo.ts +30 -0
  339. package/src/chat21-core/providers/native/native-upload-service.ts +85 -0
  340. package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.spec.ts +12 -0
  341. package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts +211 -0
  342. package/src/chat21-core/utils/constants.ts +109 -0
  343. package/src/chat21-core/utils/user-typing/user-typing.component.html +6 -0
  344. package/src/chat21-core/utils/user-typing/user-typing.component.scss +62 -0
  345. package/src/chat21-core/utils/user-typing/user-typing.component.spec.ts +24 -0
  346. package/src/chat21-core/utils/user-typing/user-typing.component.ts +114 -0
  347. package/src/chat21-core/utils/utils-message.ts +117 -0
  348. package/src/chat21-core/utils/utils-user.ts +46 -0
  349. package/src/chat21-core/utils/utils.ts +893 -0
  350. package/src/firebase-messaging-sw-template.js +1 -1
  351. package/src/global.scss +585 -0
  352. package/src/index.html +71 -42
  353. package/src/main.ts +12 -0
  354. package/src/manifest.json +0 -11
  355. package/src/models/department.ts +12 -0
  356. package/src/polyfills.ts +73 -0
  357. package/src/test.ts +21 -0
  358. package/src/theme/variables.scss +236 -93
  359. package/src/variables.scss +30 -0
  360. package/src/zone-flags.ts +5 -0
  361. package/tsconfig.app.json +14 -0
  362. package/tsconfig.json +23 -18
  363. package/tsconfig.spec.json +19 -0
  364. package/tslint.json +84 -7
  365. package/app.json +0 -7
  366. package/curl +0 -1
  367. package/deploy_dev.sh +0 -28
  368. package/docs/changelog.html +0 -227
  369. package/docs/classes/ConversationModel.html +0 -1022
  370. package/docs/classes/GroupModel.html +0 -527
  371. package/docs/classes/MessageModel.html +0 -843
  372. package/docs/classes/UploadModel.html +0 -417
  373. package/docs/classes/UserModel.html +0 -728
  374. package/docs/classes/_DetailPage.html +0 -144
  375. package/docs/classes/_MasterPage.html +0 -144
  376. package/docs/components/ArchivedConversationsPage.html +0 -1024
  377. package/docs/components/ChatBubble.html +0 -327
  378. package/docs/components/DettaglioConversazionePage.html +0 -6060
  379. package/docs/components/ElasticTextarea.html +0 -619
  380. package/docs/components/InfoAdvancedPage.html +0 -656
  381. package/docs/components/InfoConversationPage.html +0 -5681
  382. package/docs/components/InfoMessagePage.html +0 -993
  383. package/docs/components/InfoUserPage.html +0 -1420
  384. package/docs/components/ListaConversazioniPage.html +0 -3576
  385. package/docs/components/LoginPage.html +0 -1457
  386. package/docs/components/MyApp.html +0 -1388
  387. package/docs/components/PlaceholderPage.html +0 -397
  388. package/docs/components/PopoverPage.html +0 -986
  389. package/docs/components/PopoverProfilePage.html +0 -639
  390. package/docs/components/ProfilePage.html +0 -1187
  391. package/docs/components/RegisterPage.html +0 -1271
  392. package/docs/components/ResetpwdPage.html +0 -1039
  393. package/docs/components/UpdateImageProfilePage.html +0 -997
  394. package/docs/components/UsersPage.html +0 -1297
  395. package/docs/coverage.html +0 -1421
  396. package/docs/dependencies.html +0 -210
  397. package/docs/directives/AutosizeDirective.html +0 -556
  398. package/docs/fonts/FontAwesome.otf +0 -0
  399. package/docs/fonts/fontawesome-webfont.eot +0 -0
  400. package/docs/fonts/fontawesome-webfont.svg +0 -685
  401. package/docs/fonts/fontawesome-webfont.ttf +0 -0
  402. package/docs/fonts/fontawesome-webfont.woff +0 -0
  403. package/docs/fonts/fontawesome-webfont.woff2 +0 -0
  404. package/docs/fonts/ionicons.eot +0 -0
  405. package/docs/fonts/ionicons.svg +0 -2090
  406. package/docs/fonts/ionicons.ttf +0 -0
  407. package/docs/fonts/ionicons.woff +0 -0
  408. package/docs/fonts/ionicons.woff2 +0 -0
  409. package/docs/fonts/roboto-v15-latin-300.eot +0 -0
  410. package/docs/fonts/roboto-v15-latin-300.svg +0 -314
  411. package/docs/fonts/roboto-v15-latin-300.ttf +0 -0
  412. package/docs/fonts/roboto-v15-latin-300.woff +0 -0
  413. package/docs/fonts/roboto-v15-latin-300.woff2 +0 -0
  414. package/docs/fonts/roboto-v15-latin-700.eot +0 -0
  415. package/docs/fonts/roboto-v15-latin-700.svg +0 -310
  416. package/docs/fonts/roboto-v15-latin-700.ttf +0 -0
  417. package/docs/fonts/roboto-v15-latin-700.woff +0 -0
  418. package/docs/fonts/roboto-v15-latin-700.woff2 +0 -0
  419. package/docs/fonts/roboto-v15-latin-italic.eot +0 -0
  420. package/docs/fonts/roboto-v15-latin-italic.svg +0 -323
  421. package/docs/fonts/roboto-v15-latin-italic.ttf +0 -0
  422. package/docs/fonts/roboto-v15-latin-italic.woff +0 -0
  423. package/docs/fonts/roboto-v15-latin-italic.woff2 +0 -0
  424. package/docs/fonts/roboto-v15-latin-regular.eot +0 -0
  425. package/docs/fonts/roboto-v15-latin-regular.svg +0 -308
  426. package/docs/fonts/roboto-v15-latin-regular.ttf +0 -0
  427. package/docs/fonts/roboto-v15-latin-regular.woff +0 -0
  428. package/docs/fonts/roboto-v15-latin-regular.woff2 +0 -0
  429. package/docs/graph/dependencies.svg +0 -870
  430. package/docs/images/compodoc-vectorise-inverted.png +0 -0
  431. package/docs/images/compodoc-vectorise-inverted.svg +0 -201
  432. package/docs/images/compodoc-vectorise.png +0 -0
  433. package/docs/images/compodoc-vectorise.svg +0 -201
  434. package/docs/images/coverage-badge-documentation.svg +0 -9
  435. package/docs/images/coverage-badge.svg +0 -9
  436. package/docs/images/favicon.ico +0 -0
  437. package/docs/index.html +0 -233
  438. package/docs/injectables/AppConfigProvider.html +0 -411
  439. package/docs/injectables/AuthService.html +0 -1016
  440. package/docs/injectables/ChatArchivedConversationsHandler.html +0 -1832
  441. package/docs/injectables/ChatContactsSynchronizer.html +0 -841
  442. package/docs/injectables/ChatConversationHandler.html +0 -1960
  443. package/docs/injectables/ChatConversationsHandler.html +0 -2584
  444. package/docs/injectables/ChatManager.html +0 -1779
  445. package/docs/injectables/ChatPresenceHandler.html +0 -1187
  446. package/docs/injectables/CustomTranslateService.html +0 -496
  447. package/docs/injectables/DatabaseProvider.html +0 -1444
  448. package/docs/injectables/GroupService.html +0 -1458
  449. package/docs/injectables/MessagingService.html +0 -1165
  450. package/docs/injectables/NavProxyService.html +0 -1028
  451. package/docs/injectables/TiledeskConversationProvider.html +0 -945
  452. package/docs/injectables/UploadService.html +0 -791
  453. package/docs/injectables/UserService.html +0 -1612
  454. package/docs/js/compodoc.js +0 -14
  455. package/docs/js/lazy-load-graphs.js +0 -44
  456. package/docs/js/libs/EventDispatcher.js +0 -5
  457. package/docs/js/libs/bootstrap-native.js +0 -2
  458. package/docs/js/libs/clipboard.min.js +0 -7
  459. package/docs/js/libs/custom-elements-es5-adapter.js +0 -15
  460. package/docs/js/libs/custom-elements.min.js +0 -38
  461. package/docs/js/libs/d3.v3.min.js +0 -2
  462. package/docs/js/libs/deep-iterator.js +0 -2
  463. package/docs/js/libs/es6-shim.min.js +0 -11
  464. package/docs/js/libs/htmlparser.js +0 -23
  465. package/docs/js/libs/innersvg.js +0 -9
  466. package/docs/js/libs/lit-html.js +0 -1
  467. package/docs/js/libs/prism.js +0 -14
  468. package/docs/js/libs/promise.min.js +0 -6
  469. package/docs/js/libs/svg-pan-zoom.min.js +0 -3
  470. package/docs/js/libs/tablesort.min.js +0 -6
  471. package/docs/js/libs/tablesort.number.min.js +0 -6
  472. package/docs/js/libs/vis.min.js +0 -46
  473. package/docs/js/libs/zepto.min.js +0 -2
  474. package/docs/js/menu-wc.js +0 -594
  475. package/docs/js/menu.js +0 -261
  476. package/docs/js/routes.js +0 -280
  477. package/docs/js/search/lunr.min.js +0 -6
  478. package/docs/js/search/search-lunr.js +0 -67
  479. package/docs/js/search/search.js +0 -268
  480. package/docs/js/search/search_index.js +0 -4
  481. package/docs/js/sourceCode.js +0 -58
  482. package/docs/js/svg-pan-zoom.controls.js +0 -53
  483. package/docs/js/tabs.js +0 -21
  484. package/docs/js/tree.js +0 -147
  485. package/docs/license.html +0 -664
  486. package/docs/miscellaneous/functions.html +0 -2417
  487. package/docs/miscellaneous/variables.html +0 -994
  488. package/docs/modules/AppModule/dependencies.svg +0 -454
  489. package/docs/modules/AppModule.html +0 -967
  490. package/docs/modules/ArchivedConversationsPageModule/dependencies.svg +0 -50
  491. package/docs/modules/ArchivedConversationsPageModule.html +0 -225
  492. package/docs/modules/DettaglioConversazionePageModule/dependencies.svg +0 -66
  493. package/docs/modules/DettaglioConversazionePageModule.html +0 -256
  494. package/docs/modules/InfoAdvancedPageModule/dependencies.svg +0 -50
  495. package/docs/modules/InfoAdvancedPageModule.html +0 -225
  496. package/docs/modules/InfoConversationPageModule/dependencies.svg +0 -50
  497. package/docs/modules/InfoConversationPageModule.html +0 -227
  498. package/docs/modules/InfoUserPageModule/dependencies.svg +0 -50
  499. package/docs/modules/InfoUserPageModule.html +0 -225
  500. package/docs/modules/ListaConversazioniPageModule/dependencies.svg +0 -66
  501. package/docs/modules/ListaConversazioniPageModule.html +0 -255
  502. package/docs/modules/LoginModule/dependencies.svg +0 -66
  503. package/docs/modules/LoginModule.html +0 -253
  504. package/docs/modules/PlaceholderPageModule/dependencies.svg +0 -66
  505. package/docs/modules/PlaceholderPageModule.html +0 -253
  506. package/docs/modules/PopoverPageModule/dependencies.svg +0 -66
  507. package/docs/modules/PopoverPageModule.html +0 -253
  508. package/docs/modules/PopoverProfilePageModule/dependencies.svg +0 -66
  509. package/docs/modules/PopoverProfilePageModule.html +0 -253
  510. package/docs/modules/ProfilePageModule/dependencies.svg +0 -66
  511. package/docs/modules/ProfilePageModule.html +0 -253
  512. package/docs/modules/RegisterModule/dependencies.svg +0 -66
  513. package/docs/modules/RegisterModule.html +0 -253
  514. package/docs/modules/ResetpwdModule/dependencies.svg +0 -66
  515. package/docs/modules/ResetpwdModule.html +0 -253
  516. package/docs/modules/UpdateImageProfilePageModule/dependencies.svg +0 -66
  517. package/docs/modules/UpdateImageProfilePageModule.html +0 -253
  518. package/docs/modules/UsersModule/dependencies.svg +0 -66
  519. package/docs/modules/UsersModule.html +0 -253
  520. package/docs/modules.html +0 -379
  521. package/docs/overview.html +0 -1033
  522. package/docs/styles/bootstrap-card.css +0 -219
  523. package/docs/styles/bootstrap.min.css +0 -5
  524. package/docs/styles/compodoc.css +0 -996
  525. package/docs/styles/font-awesome.min.css +0 -4
  526. package/docs/styles/ionicons.min.css +0 -11
  527. package/docs/styles/laravel.css +0 -69
  528. package/docs/styles/material.css +0 -109
  529. package/docs/styles/original.css +0 -47
  530. package/docs/styles/postmark.css +0 -224
  531. package/docs/styles/prism.css +0 -267
  532. package/docs/styles/readthedocs.css +0 -108
  533. package/docs/styles/reset.css +0 -48
  534. package/docs/styles/stripe.css +0 -65
  535. package/docs/styles/style.css +0 -7
  536. package/docs/styles/tablesort.css +0 -33
  537. package/docs/styles/vagrant.css +0 -96
  538. package/firebase-functions/.firebaserc +0 -5
  539. package/firebase-functions/firebase.json +0 -1
  540. package/firebase-functions/functions/index.js +0 -208
  541. package/firebase-functions/functions/package.json +0 -9
  542. package/google-services.json +0 -42
  543. package/hooks/README.md +0 -196
  544. package/resources/android/icon/drawable-hdpi-icon.png +0 -0
  545. package/resources/android/icon/drawable-ldpi-icon.png +0 -0
  546. package/resources/android/icon/drawable-mdpi-icon.png +0 -0
  547. package/resources/android/icon/drawable-xhdpi-icon.png +0 -0
  548. package/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
  549. package/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
  550. package/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
  551. package/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
  552. package/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
  553. package/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
  554. package/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
  555. package/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
  556. package/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
  557. package/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
  558. package/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
  559. package/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
  560. package/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
  561. package/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
  562. package/resources/icon.png +0 -0
  563. package/resources/icon.png.md5 +0 -1
  564. package/resources/ios/icon/icon-1024.png +0 -0
  565. package/resources/ios/icon/icon-40.png +0 -0
  566. package/resources/ios/icon/icon-40@2x.png +0 -0
  567. package/resources/ios/icon/icon-40@3x.png +0 -0
  568. package/resources/ios/icon/icon-50.png +0 -0
  569. package/resources/ios/icon/icon-50@2x.png +0 -0
  570. package/resources/ios/icon/icon-60.png +0 -0
  571. package/resources/ios/icon/icon-60@2x.png +0 -0
  572. package/resources/ios/icon/icon-60@3x.png +0 -0
  573. package/resources/ios/icon/icon-72.png +0 -0
  574. package/resources/ios/icon/icon-72@2x.png +0 -0
  575. package/resources/ios/icon/icon-76.png +0 -0
  576. package/resources/ios/icon/icon-76@2x.png +0 -0
  577. package/resources/ios/icon/icon-83.5@2x.png +0 -0
  578. package/resources/ios/icon/icon-small.png +0 -0
  579. package/resources/ios/icon/icon-small@2x.png +0 -0
  580. package/resources/ios/icon/icon-small@3x.png +0 -0
  581. package/resources/ios/icon/icon.png +0 -0
  582. package/resources/ios/icon/icon@2x.png +0 -0
  583. package/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
  584. package/resources/ios/splash/Default-667h.png +0 -0
  585. package/resources/ios/splash/Default-736h.png +0 -0
  586. package/resources/ios/splash/Default-Landscape-736h.png +0 -0
  587. package/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
  588. package/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
  589. package/resources/ios/splash/Default-Landscape~ipad.png +0 -0
  590. package/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
  591. package/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
  592. package/resources/ios/splash/Default-Portrait~ipad.png +0 -0
  593. package/resources/ios/splash/Default@2x~iphone.png +0 -0
  594. package/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
  595. package/resources/ios/splash/Default~iphone.png +0 -0
  596. package/resources/splash.png +0 -0
  597. package/resources/splash.png.md5 +0 -1
  598. package/server.js +0 -7
  599. package/src/app/app.html +0 -56
  600. package/src/app/app.scss +0 -236
  601. package/src/app/main.ts +0 -9
  602. package/src/assets/chat-background.jpg +0 -0
  603. package/src/assets/chat21-ionic-pattern-2.svg +0 -5110
  604. package/src/assets/chat21-ionic-pattern.png +0 -0
  605. package/src/assets/chat21-ionic-pattern.svg +0 -1
  606. package/src/assets/download.svg +0 -1
  607. package/src/assets/dummyDump.sql +0 -1
  608. package/src/assets/icon/favicon_old.ico +0 -0
  609. package/src/assets/img/c21-down-gray.svg +0 -1
  610. package/src/assets/img/chat21-icon.png +0 -0
  611. package/src/assets/img/f21ico-attached.svg +0 -1
  612. package/src/assets/img/f21ico-close.svg +0 -1
  613. package/src/assets/img/f21ico-photo.svg +0 -1
  614. package/src/assets/img/ic_keyboard_arrow_down_black_24px.svg +0 -4
  615. package/src/assets/img/ic_keyboard_arrow_down_white_24px.svg +0 -4
  616. package/src/assets/img/icon.png +0 -0
  617. package/src/assets/message-mine.png +0 -0
  618. package/src/assets/message-other.png +0 -0
  619. package/src/assets/pling.mp3 +0 -0
  620. package/src/assets/splash.png +0 -0
  621. package/src/declarations.d.ts +0 -14
  622. package/src/directives/autosize/autosize.ts +0 -82
  623. package/src/environments/environment.pre.ts +0 -22
  624. package/src/environments/environment.prod.ts +0 -22
  625. package/src/environments/environment.ts +0 -21
  626. package/src/pages/_DetailPage.ts +0 -1
  627. package/src/pages/_MasterPage.ts +0 -1
  628. package/src/pages/archived-conversations/archived-conversations.html +0 -32
  629. package/src/pages/archived-conversations/archived-conversations.module.ts +0 -13
  630. package/src/pages/archived-conversations/archived-conversations.scss +0 -153
  631. package/src/pages/archived-conversations/archived-conversations.ts +0 -121
  632. package/src/pages/authentication/login/login.html +0 -58
  633. package/src/pages/authentication/login/login.module.ts +0 -16
  634. package/src/pages/authentication/login/login.scss +0 -121
  635. package/src/pages/authentication/login/login.ts +0 -221
  636. package/src/pages/authentication/register/register.html +0 -88
  637. package/src/pages/authentication/register/register.module.ts +0 -16
  638. package/src/pages/authentication/register/register.scss +0 -95
  639. package/src/pages/authentication/register/register.ts +0 -122
  640. package/src/pages/authentication/resetpwd/resetpwd.html +0 -40
  641. package/src/pages/authentication/resetpwd/resetpwd.module.ts +0 -16
  642. package/src/pages/authentication/resetpwd/resetpwd.scss +0 -102
  643. package/src/pages/authentication/resetpwd/resetpwd.ts +0 -93
  644. package/src/pages/components/chatBubble_old/chatBubble.scss +0 -83
  645. package/src/pages/components/chatBubble_old/chatBubble.ts +0 -30
  646. package/src/pages/components/elasticTextarea_old.ts +0 -46
  647. package/src/pages/dettaglio-conversazione/dettaglio-conversazione.html +0 -261
  648. package/src/pages/dettaglio-conversazione/dettaglio-conversazione.module.ts +0 -19
  649. package/src/pages/dettaglio-conversazione/dettaglio-conversazione.scss +0 -701
  650. package/src/pages/dettaglio-conversazione/dettaglio-conversazione.ts +0 -1395
  651. package/src/pages/index.ts +0 -5
  652. package/src/pages/info-advanced/info-advanced.html +0 -90
  653. package/src/pages/info-advanced/info-advanced.module.ts +0 -13
  654. package/src/pages/info-advanced/info-advanced.scss +0 -196
  655. package/src/pages/info-advanced/info-advanced.ts +0 -44
  656. package/src/pages/info-conversation/info-conversation.html +0 -225
  657. package/src/pages/info-conversation/info-conversation.module.ts +0 -15
  658. package/src/pages/info-conversation/info-conversation.scss +0 -444
  659. package/src/pages/info-conversation/info-conversation.ts +0 -1233
  660. package/src/pages/info-message/info-message.html +0 -74
  661. package/src/pages/info-message/info-message.module.ts +0 -13
  662. package/src/pages/info-message/info-message.scss +0 -216
  663. package/src/pages/info-message/info-message.ts +0 -89
  664. package/src/pages/info-user/info-user.html +0 -89
  665. package/src/pages/info-user/info-user.module.ts +0 -13
  666. package/src/pages/info-user/info-user.scss +0 -187
  667. package/src/pages/info-user/info-user.ts +0 -177
  668. package/src/pages/lista-conversazioni/lista-conversazioni.html +0 -88
  669. package/src/pages/lista-conversazioni/lista-conversazioni.module.ts +0 -18
  670. package/src/pages/lista-conversazioni/lista-conversazioni.scss +0 -245
  671. package/src/pages/lista-conversazioni/lista-conversazioni.ts +0 -736
  672. package/src/pages/placeholder/placeholder.html +0 -3
  673. package/src/pages/placeholder/placeholder.module.ts +0 -16
  674. package/src/pages/placeholder/placeholder.scss +0 -23
  675. package/src/pages/placeholder/placeholder.ts +0 -18
  676. package/src/pages/popover/popover.html +0 -27
  677. package/src/pages/popover/popover.module.ts +0 -16
  678. package/src/pages/popover/popover.scss +0 -23
  679. package/src/pages/popover/popover.ts +0 -95
  680. package/src/pages/popover-profile/popover-profile.html +0 -20
  681. package/src/pages/popover-profile/popover-profile.module.ts +0 -16
  682. package/src/pages/popover-profile/popover-profile.scss +0 -10
  683. package/src/pages/popover-profile/popover-profile.ts +0 -40
  684. package/src/pages/profile/profile.html +0 -54
  685. package/src/pages/profile/profile.module.ts +0 -16
  686. package/src/pages/profile/profile.scss +0 -45
  687. package/src/pages/profile/profile.ts +0 -108
  688. package/src/pages/update-image-profile/update-image-profile.html +0 -39
  689. package/src/pages/update-image-profile/update-image-profile.module.ts +0 -16
  690. package/src/pages/update-image-profile/update-image-profile.scss +0 -50
  691. package/src/pages/update-image-profile/update-image-profile.ts +0 -111
  692. package/src/pages/users/users.html +0 -55
  693. package/src/pages/users/users.module.ts +0 -16
  694. package/src/pages/users/users.scss +0 -10
  695. package/src/pages/users/users.ts +0 -222
  696. package/src/providers/app-config/app-config.ts +0 -33
  697. package/src/providers/auth-service.ts +0 -140
  698. package/src/providers/canned-responses-service/canned-responses-service.ts +0 -57
  699. package/src/providers/chat-archived-conversations-handler.ts +0 -283
  700. package/src/providers/chat-contacts-synchronizer.ts +0 -179
  701. package/src/providers/chat-conversation-handler.ts +0 -547
  702. package/src/providers/chat-conversations-handler.ts +0 -519
  703. package/src/providers/chat-manager/chat-manager.ts +0 -246
  704. package/src/providers/chat-presence-handler.ts +0 -188
  705. package/src/providers/database/database.ts +0 -214
  706. package/src/providers/group/group.ts +0 -243
  707. package/src/providers/messaging-service.ts +0 -267
  708. package/src/providers/nav-proxy.ts +0 -104
  709. package/src/providers/tiledesk-conversation/tiledesk-conversation.ts +0 -134
  710. package/src/providers/translate-service.ts +0 -61
  711. package/src/providers/upload-service/upload-service.ts +0 -117
  712. package/src/providers/user/user.ts +0 -320
  713. package/src/service-worker.js +0 -30
  714. package/src/utils/constants.ts +0 -73
  715. package/src/utils/utils.ts +0 -548
  716. package/src/videochat.php +0 -20
package/CHANGELOG.md CHANGED
@@ -1,213 +1,638 @@
1
- # ChangeLog
2
-
3
- ### 2.0.13-beta.1 (branch v2)
4
- - Print firebase info and version
5
-
6
- ### 2.0.13-beta.0 (branch v2)
7
- - Updated Firebase dependency to 7.24.0
8
- - Added "esnext.asynciterable" to tsconfig.json
9
-
10
- ### 2.0.12 -> Cloud Production
11
- - bug-fix: typing not work
12
-
13
- ### 2.0.11
14
- - bug fix: added appId in "firebaseConfig"
15
-
16
- ### 2.0.10
17
- - bug fix: added remoteContactsUrl in "chat-config-template.json"
18
-
19
- ### 2.0.8B
20
- - bug fix: TypeError: Cannot read property 'uid' of undefined
21
- at DatabaseProvider.webpackJsonp.57.DatabaseProvider.initialize (database.ts:35)
22
-
23
- ### 2.0.8A
24
- - bug fix: remove pushDetail PlaceholderPage on new conversation
25
-
26
- ### 2.0.8
27
- - new: added remoteContactsUrl in environment
28
-
29
- ### 2.0.7
30
- - bug fix: disable textarea when currentUser is not member
31
-
32
- ### 2.0.6
33
- - bug fix: close conversatione
34
-
35
- ### 2.0.5
36
- - bug fix: show error in catch
37
-
38
- ### 2.0.4
39
- - bug fix: deploy_.sh
40
-
41
- ### 2.0.3
42
- - bug fix: typing in/out conversation
43
-
44
- ### 2.0.2
45
- - bug fix: show fullname typing in support conversation
46
- - bug fix: enabled typing for system
47
- - bug fix: duplicate subscription in conversations
48
-
49
- ### 2.0.1
50
- - bug fix: typing conversation with widget
51
-
52
- ### 2.0.0
53
- - stable version
54
-
55
- ### 1.0.21.beta.13 branch - sidebar
56
- - bug fix: start with support-group open iframe in sidebar
57
-
58
- ### 1.0.21.beta.12 branch - sidebar
59
- - bug-fix: content sidebar and auto open
60
-
61
- ### 1.0.21.beta.11 branch - sidebar
62
- - bug-fix: sound message only one on changed
63
-
64
- ### 1.0.21.beta.10 branch - sidebar
65
- - bug fix: typing in direct conversation
66
-
67
- ### 1.0.21.beta.9 branch - sidebar
68
- - bug fix: change urlNodeTypings in direct conversation
69
-
70
- ### 1.0.21.beta.8 branch - sidebar
71
- - bug fix: new convrsation
72
-
73
- ### 1.0.21.beta.7 branch - sidebar
74
- - bug fix: translate typing
75
-
76
- ### 1.0.21.beta.6 branch - sidebar
77
- - bug fix: typing me
78
-
79
- ### 1.0.21.beta.5 branch - sidebar
80
- - new - typings
81
- - disabled list projects in info conversation
82
-
83
- ### 1.0.21.beta.4 branch - sidebar
84
- - bug fix: detail archived conversations
85
-
86
- ### 1.0.21.beta.3 branch - sidebar
87
- - bug fix: preload list conversation
88
-
89
- ### 1.0.21.beta.2 branch - sidebar
90
- - bug fix: load canned
91
-
92
- ### 1.0.21.beta.1 branch - sidebar
93
- - bug fix: projectID get on group attributes
94
-
95
- ### 1.0.21 branch - sidebar
96
- - add iframe sidebar info conversation
97
- - canned loaded on /
98
-
99
- ### 1.0.20-beta.13
100
- - bug fix tooltip
101
-
102
- ### 1.0.20-beta.12
103
- - add SERVER_BASE_URL in config
104
- - add canned
105
-
106
- ### 1.0.20
107
- - minor improvements
108
-
109
- ### 1.0.19
110
- - moves urls in environment
111
-
112
- ### 1.0.18B
113
- - load firebase-config in assets
114
-
115
- ### 1.0.18
116
- - change BASE_URL (get it from remote)
117
- - add chat21ApiUrl in firebaseConfig
118
-
119
- ### 1.0.17
120
- - new - change font size .messageFirst from 1.4em to 1.2em
121
- - new - change font size .content_message_wellcome from 1.4em to 1.2em
122
- - new - open detail conversation from url parameters 'recipient' and 'recipientFullname'
123
- - new - manage photo disabled on support.tiledesk.com
124
-
125
- ### 1.0.16
126
- - fixes bug contacts in chat-manager
127
- - fixes bug new user registration
128
-
129
-
130
- ### 1.0.15
131
- - change css modal PopoverPage
132
- - fixes bug splash-screen on browser platform
133
-
134
- ### 1.0.14
135
- - change css footer conversation detail
136
- - change css ballons conversation detail
137
- - change css info conversation
138
- - enabled send message with html tags
139
- - enabled send all image type
140
- - enabled send files pdf, zip
141
- - fixes bug send second image
142
- - open detail image in new tab browser
143
- - disabled cache conversations
144
- - fixes bug send image
145
- - hidden users list on "tiledesk" domain
146
- - disabled sync users on "tiledesk" domain
147
-
148
- ### 1.0.13
149
- - add tab info advanced
150
- - add angular-linky
151
- - fixes bug status online/offline
152
-
153
- ### 1.0.11
154
- - enables authentication outside of tiledesk domains
155
-
156
- ### 1.0.8
157
- - fixes bug on new conversation (detail conversation hidden)
158
-
159
- ### 1.0.7
160
- - fixes bug on change user (logout/login)
161
- - fixes bug on change conversation selected and conversation archived selected
162
-
163
- ### 1.0.6
164
- - fixes bug leave group and close group
165
-
166
- ### 1.0.5
167
- - add button login on tiledesk (if hostname is tiledesk)
168
-
169
- ### 1.0.3
170
- - change color css conversation selected
171
- - change position blue point on new message
172
- - fixes bug css archived conversations (image, point, header, icon)
173
- - fixes bug link in message
174
- - fixes bug button 'Request detail' only support-group
175
- - fixes bug truncate message in list conversations
176
- - load image profile from firestore url in conv. list, info conv., Participants
177
- - fixes bug user info: load image profilo
178
- - fixes bug info conversation on first load
179
- - change get 'date last access' for id in support-group (sostituito senderAuthInfo.authVar.uid con requester_id)
180
- - fixes bug conversation selected for first open (blank page)
181
- - fixes bug open page 'message info' (message selected = null)
182
-
183
-
184
- ### 1.0.2
185
- - added timestamp = firebase.database.ServerValue.TIMESTAMP in send message
186
- - fixes bug spinner il list conversations
187
- - fixes bug load image profile
188
- - deleted IonicImageLoader
189
- - fixes bug info conversation (load image) in archived conversations
190
- - change css in the header of list conversation
191
- - added number of conversations with new messages
192
- - fixes bug image conversation in info conversation
193
- - change css in the conversation list (new message, close message)
194
- - fixes bug load image on firebase storage
195
- - added IonicImageLoader for load and cache images
196
- - fixes bug cache for user (conversation list, contacts and settings)
197
- - add IonicStorageModule
198
- - add popup on videochat
199
- - fixes bug format date last access
200
- - fixed bug local time in send
201
- - add num version in package
202
- - add npm publish
203
-
204
- ### 0.934
205
- - link projectId open in _blank
206
- - change the color of the text message to in the selected conversation
207
- - fixes bug on metadata conversation
208
- - fixes bug multiple sound on changed / added message
209
-
210
- ### 0.933
211
- - add user status in header detail conversation
212
- - modified css detail conversation
1
+ # chat21-ionic ver 3.0
2
+
3
+ ### 3.0.59.2
4
+ - 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
5
+
6
+ ### 3.0.59.1
7
+ - Fixes the bug: "Unable to read uid of undefined" error occurs when agent logs out
8
+ - Fixes the bug: When the agent logs into the chat and the chat is in mobile mode, no conversations are displayed
9
+ - Fixes the bug: the websocket is initialized even if the supportMode property is set to false
10
+ - 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
11
+
12
+ ### 3.0.59
13
+ - Deploys in production
14
+
15
+ ### 3.0.59-rc23
16
+ - Fixes the bug: the badge indicating the number of unassigned conversations does not update correctly when the project is changed
17
+ - Changes the code that prevent the chat from opening in a new browser tab if the chat tab is already open
18
+ - Publish conversations returned by subscription to websocket conversations > "on data" callback
19
+
20
+ ### 3.0.59-rc22
21
+ - Minor improvements
22
+
23
+ ### 3.0.59-rc21
24
+ - chat21client.js -> v0.1.9
25
+
26
+ ### 3.0.59-rc20
27
+ - Improves the transition from "mobile" to "desktop" mode and vice versa by not reloading the app
28
+
29
+ ### 3.0.59-rc19
30
+ - 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
31
+ - 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
32
+
33
+ ### 3.0.59-rc18
34
+ - Improves the "app-config" service
35
+
36
+ ### 3.0.59-rc16
37
+ - Changes in config.xml the value of the "SplashScreen"
38
+ - 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
39
+ - Modifies the "app-config" service by adding the ability to pass relative URLs to the websocket
40
+ - Adds "wsUrlRel" property to env.sample, chat-config-template.json and chat-config.json
41
+ - 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"
42
+
43
+ ### 3.0.59-rc15
44
+ - Implements a method in app.components that counts and stores the number of open Chat tabs
45
+ - 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
46
+
47
+ ### 3.0.59-rc14
48
+ - Fixes the bug: the sound that warns that a new conversation has been received does not work
49
+
50
+ ### 3.0.59-rc12
51
+ - Fixes the bug: Cannot read properties of undefined (reading 'get') when "translationMap" in not yet defined
52
+ - 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
53
+
54
+ ### 3.0.59-rc11
55
+ - Fixed bug: the item in the left side panel showing the number of new conversations is not displayed if there are no conversations
56
+ - Removes the "last_project" object and the "contacts" object on logout from local storage
57
+
58
+ ### 3.0.59-rc10
59
+ - Changes in config.xml the site URL of the author
60
+ - Changes the splash screen images
61
+ - Adds the "browser" platform configuration in config.xml
62
+ - Initialize in app.module.ts firebase to handle push notifications if chatEngine is "mqtt"
63
+
64
+ ### 3.0.59-rc9
65
+ - Changes in the archived conversations the date format if the browser language is English
66
+ - 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
67
+ - 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
68
+ - Adds "supportMode" property to env.sample, chat-config-template.json and chat-config.json
69
+
70
+ ### 3.0.59-rc8
71
+ - Changes the title of the modal window showing unassigned conversations from "Unassigned Conversations" to "New Conversations"
72
+ - 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
73
+ - Fixed the value of the configuration property "dashboardUrl"
74
+
75
+ ### 3.0.59-rc7
76
+ - Fixes the bug "Cannot read properties of undefined (reading 'get')" in component template showing the number of new conversations
77
+ - Fixes the bug: the value of the "supportMode" property is passed hard-coded
78
+
79
+ ### 3.0.59-rc6
80
+ - Outsources the websocket URL to environments
81
+ - Improves the graphic of the element, positioned at the top of the conversation list, which displays the number of new conversations
82
+ - Adds "wsUrl" property to env.sample, chat-config-template.json and chat-config.json
83
+ - Updates environments with "wsUrl" property
84
+
85
+ ### 3.0.59-rc5
86
+ - Display a "toast message" of success after that the agent has joined to an unassigned conversation and other minor improvements
87
+
88
+ ### 3.0.59-rc4
89
+ - Adds an item to the top of the conversation list that shows the number of unassigned conversations for a selected project
90
+ - 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
91
+
92
+ ### 3.0.59-rc3
93
+ - Improves the method that allows to chain multiple canned responses
94
+
95
+ ### 3.0.59-rc2
96
+ - Fixes the bug: on small windows, images and iframes are not the same size as the bubble message that contains them
97
+ - Adds in the "bubble-message" component a check if the metadata is an object before calling the getMetadataSize() method
98
+ - Hides the "canned responses" if there are whitespace after the forward slash "/" or if there are no whitespace before the forward slash "/"
99
+ - Fixes the bug: if the "canned responses" are selected with the mouse, the "send message" text area does not have focus
100
+ - Adds the image viewer and the ability to download an image from it
101
+ - Fixes the position of the "archive" button when the app runs on mobile devices
102
+ - Updates Android splash screen .png image
103
+
104
+ ### 3.0.59-rc1
105
+ - Fixes the bug: the "send message" button remains in the "disabled" state even if it is active
106
+ - Changes the format of the date displayed in the message tooltips
107
+ - Fixes the bug: the sender's avatar is not always displayed in the messages header
108
+ - Fixes the bug: the sender's name is not always displayed in the messages header
109
+ - Fixes the bug: in the avatar-profile component the properties 'avatarUrl', 'color' and 'avatar' are private and accessible only within the class
110
+ - Fixes the bug: on ios platforms the back button in the conversation details header overlaps the avatar
111
+
112
+ ### 3.0.58
113
+ - Changes the logic with which the 'online' / 'offline' event is published (done before by the onAuthStateChanged() method)
114
+ - Removes the setTimeout set for displaying the login window
115
+ - Executes the "goOffline" method without checking whether the token exists in memory or not
116
+
117
+ ### 3.0.57
118
+ - Review of the "login" code
119
+
120
+ ### 3.0.56
121
+ - Improves the auto-login method
122
+
123
+ ### 3.0.55
124
+ - Distributed release in production
125
+
126
+ ### 3.0.55-rc26
127
+ - Fixes the bug: the iframe is not displayed
128
+ - Fits the image caption to the width of the image
129
+
130
+ ### 3.0.55-rc25
131
+ - Changes the method to get the JWT from the URL query string and the way to run the auto login
132
+
133
+ ### 3.0.55-rc24
134
+ - Improves the auto-login method
135
+
136
+ ### 3.0.55-RC23
137
+ - Fixes the bug: missing contact information in the header when selecting a "Direct" conversation
138
+ - Fixes the bug: by clicking on an archived chat the avatar displayed in the header does not correspond to the one displayed in the conversation list and in the right side panel "conversation info"
139
+ - Fixes the bug: sometimes auto login with JWT passed in URL as query string doesn't work
140
+ - Improves the "send message" textarea graphics
141
+ - Adds the ability to insert a new line after the current position in the message text area by pressing the key combinations "ALT + ENTER", "CTRL + ENTER", "CMD + ENTER"
142
+
143
+ ### 3.0.55-RC22
144
+ - Fixes the bug: if the chat is open in multiple browser tabs when the user log in the 'goOnline' method is activated several times
145
+ - Manages the message displayed in the conversation list when the sender sends a file (replace the markdown string with the string "sent an attachment")
146
+ - Fixes the bug: if the chat is open in multiple browser tabs when the user logs out, the conversation list remains visible
147
+ - Displays the "loading bubble" while uploading an image
148
+
149
+ ### 3.0.55-RC21
150
+ - Fixes the bug: if the chat is open in more than one browser tab, not all of them reconnect when the user accesses one of them
151
+
152
+ ### 3.0.55-RC20
153
+ - Improve the method that solves the bug: if the chat is open on more than one tab, the previous ones disconnect
154
+ - Displays the message "sent an image" when the sender sends an image
155
+ - Removes the "setTimeout" set on the onStorageChanged event
156
+
157
+ ### 3.0.55-RC19
158
+ - Fixes the bug: opening the "conversations info" side panel for support type conversations causes the chat to log out
159
+
160
+ ### 3.0.55-RC18
161
+ - Fixes the bug: if the chat is open on more than one tab, the previous ones logging out
162
+
163
+ ### 3.0.55-RC16
164
+ - Removes the image name displayed at the bottom of the image
165
+ - Removes the adaptation of the image caption width to the image size
166
+
167
+ ### 3.0.55-RC15
168
+ - Fixes the bug: "ion-spinner" throws an error when the chat is offline
169
+ - Fixes the bug: in the component "info-group-component" if groupDetail is not defined throws the error "Cannot read hasOwnProperty of undefined"
170
+ - Fixes the bug: in the "advanced-info-accordion" component if translationMap is not defined throws the error "Cannot read properties of undefined (reading 'get')"
171
+ - Fixes the bug: in the component "user-presence.component" if translationMap is not defined throws the error "Cannot read properties of undefined (reading 'get')"
172
+ - Fixes the bug: if the image name is longer than the image width when uploading, it is displayed on the right side of the image
173
+ - Fixes the bug: if the user logs out of the dashboard and then logs in, the user in the chat is not logged in again
174
+ - Fixes the bug: if the file upload preview window is closed without sending the file, the windows does not reopen if the same file is selected
175
+ - Adds autofocus in the "caption" text area in the file upload preview window
176
+
177
+ ### 3.0.55-RC14
178
+ - Implements Network service
179
+ - Displays, when the chat loses connection, the message "Waiting for network" at the top of the conversation list
180
+ - Displays, when the chat loses connection, the message "Internet is slow or not working" on the conversation details page
181
+ - Set the "user" variable to null when the user logs out of chat
182
+
183
+ ### 3.0.55-RC12
184
+ - Fixes the bug: when a file is uploaded via drag & drop, the message "Failed to upload: the format is not supported" is displayed even if fileUploadAccept is set to "* / *" (accept all)
185
+ - Fixes the bug: the left side panel "conversation list" is not displayed on Safari
186
+ - Fixes the bug: on Safari, clicking a button causes the app to reload or crash
187
+ - Adds a gradient background to the avatars
188
+
189
+ ### 3.0.55-RC11
190
+ - Replaces the message "No internet connection" displayed when Internet is slow or not working with the message "Internet is slow or not working."
191
+
192
+ ### 3.0.55-RC10
193
+ - Fixes the bug: Safari doesn't support the API's required to use FCM
194
+ - Fixes the bug: the drag and drop does not take into account the accepted files set in the "fileUploadAccept" environments property
195
+ - Fixes the bug: on Safari in the login modal the email and psw entered are not displayed
196
+
197
+ ### 3.0.55-RC9
198
+ - Adds the left panel "projects"
199
+
200
+ ### 3.0.55-RC8
201
+ - Improves backward compatibility for old conversations of the "archive", "predefined replies" features and for displaying the right "Conversation Info" panel
202
+ - Bug fixing
203
+
204
+ ### 3.0.55-RC7
205
+ - Adds the message "No Internet Connection" when the chat tab is a blank page
206
+ - Adds a "toast" indicating when the chat has lost connection
207
+ - Adds action button component
208
+ - Fixes the bug: when accessing the chat without internet connection, the chat does not restart when the connection is restored
209
+ - Fixes the bug: old conversations are not archived (implemented backwards compatibility)
210
+
211
+ ### 3.0.55-RC6
212
+ - Fixes the bug: when the pc starts up, if the connection is missing, the chat tab is a blank page and remains so even after the connection
213
+
214
+ ### 3.0.55-RC5
215
+ - Removes the changes in version 3.0.55-RC4
216
+ - Updates the method of "app.component.ts" watchToConnectionStatus()
217
+
218
+ ### 3.0.55-RC4
219
+ - Set "Auth.Persistence" to "firebase.auth().signInWithCustomToken" method
220
+ - Hardcoded the authPersistence value to 'LOCAL' in the 'localSessionStorage' service
221
+
222
+ ### 3.0.55-RC3
223
+ - Fixes the bug with another solution: the sender name in the conversation list does not match the sender name in the conversation details header
224
+ - Adds Android resources
225
+ - Set the "auth Persistence" environment variable to NONE
226
+
227
+ ### 3.0.55-RC2
228
+ - Adds style rules to fit the image name to its width
229
+ - Improves the method of getting Project ID from Conversation ID
230
+
231
+ ### 3.0.54-RC2
232
+ - Fixes the bug: canned responses are not loaded
233
+ - Adds backward compatibility: loading of canned responses for old projects
234
+
235
+ ### 3.0.54-RC1
236
+ - Moves FCM property "VAPID" to environments
237
+ - Adds FCM "VAPID" property to env.sample, chat-config.json and chat-config-template.json files
238
+ - Enhances the firebase-messaging-sw.js
239
+
240
+ ### 3.0.53-RC6
241
+ - Adds "VAPID" in the getToken() method of the "firebase-notification.service"
242
+ - Adds log in the "firebase-notification.service"
243
+
244
+ ### 3.0.53-RC5
245
+ - Push notification debug
246
+
247
+ ### 3.0.53-RC4
248
+ - Enhances the service worker postMessage method
249
+
250
+ ### 3.0.53-RC3
251
+ - Enhances listenToNotificationCLick() method and rename it to listenToSwPostMessage()
252
+
253
+ ### 3.0.53-RC2
254
+ - Commented the method listenToNotificationCLick()
255
+
256
+ ### 3.0.53-RC1
257
+ - Fixes the bug: sometimes the message sender name displayed in the header is different from the one displayed in the conversation list
258
+ - Fixes the bug: duplicate push notifications
259
+ - Increase the height of the selectable message in the conversation list to prevent the 'Archive' icon and the sender name text from overlapping the string indicating the message arrival time
260
+ - Updates the avatars background colors
261
+ - Fixes the bug: 404 error when trying to view the profile picture of "support-group" conversations requesters
262
+ - Adds the date the message was sent to the list of archived conversations
263
+ - Translates the date "how long ago" the message was sent in the conversation list
264
+
265
+
266
+ ### 3.0.52-beta
267
+ - Replaces the label "conversation ID" with "user ID" in the accordion available in the panel "conversation info" of direct conversations
268
+ - Adds the ability to change the log level via the query-string parameter "logLevel"
269
+ - Fixes the bug: clicking on a push notification, if it is a "direct" conversation, the correct conversation is not selected after redirection
270
+
271
+ ### 3.0.51-beta
272
+ - Enhances the style of the search bar in the contact list
273
+ - Adds the ability to upload a file by dragging it to the chat area
274
+ - Fixes the bug: Chat scrolls up when file preview page opens after dragging the file or image
275
+ - Fixes the bug: the 'loading bubble' is not displayed if the last message is at the bottom of the chat area
276
+ - Fixes the bug: in the "upload preview page" the file icon in the footer is not displayed correctly if the file name is on two lines
277
+ - Adds backward compatibility for viewing conversation details for "support group" type conversations in the "Conversation Information" panel
278
+ - Displays the text "No information available" in the right side panel "Conversation Information" when no information on the selected conversation is found
279
+
280
+ ### 3.0.50-beta
281
+ - Fixes the bug: in the right side panel 'info group' the loading of members fires twice
282
+ - Fixes the bug: autofocus doesn't always work
283
+ - Fixes the bug: browser tab title sounds and blinks even if the message is sent by the logged in user
284
+ - Fixes the bug: browser tab title sounds and blinks if the user change tab during page refresh
285
+ - Fixes the bug: browser tab title sounds and blinks if the user change tab during page refresh
286
+ - Fixes the bug: after uploading the image via drag-and-drop, if the user opens or closes the right side panel or opens another conversation, the image upload preview modal window reopens
287
+ - In the package.json: changes the name of the author + updates version + adds "cordova-android-support-gradle-release" + downgrade "cordova-android" from the version 9.0.0 to 6.2.3
288
+ - Replaces, in conversation list, when the logged user send an image the markdown with the string "You sent an image" and when send a file with the string "You sent an attachment"
289
+ - Displays the attach icon in the conversation list if the conversation type is "file"
290
+ - Fixes the bug: if an image without text is sent as the first message, the conversation does not appear in the conversation list
291
+
292
+ ### 3.0.49-beta
293
+ - Replaces in "chat-config-template.json" the value "${TENANT}" of the property "tenant" in "${FIREBASE TENANT}"
294
+
295
+ ### 3.0.48-beta
296
+ - Update environments by moving the "tenant" environment variable to the "firebaseConfig" object
297
+
298
+ ### 3.0.47-beta
299
+ - Changes the obtaining of the "tenant" environment variable moved inside the "firebaseConfig" configuration
300
+ - Removes unused services "chat-contacts-synchronizer.ts" (class "ChatContactsSynchronizer") and "database.ts" (class DatabaseProvider)
301
+ - Moves the environment variable 'tenant' in the object "firebaseConfig" of the files chat-config.json, chat-config-template.json; updated README.md
302
+ - Fixes the bug: after logging out the list of conversations is still visible
303
+ - Fixes the bug: modal "login" is sometimes loaded twice after logout
304
+ - Downgrades the mqtt library from version 4.2.8 to 4.1.0
305
+ - Check if the serviceWorker exists before to append 'addEventListener' (fixes the bug addEventListener of undefined)
306
+
307
+ ### 3.0.46-beta
308
+ - Modifies the "logger service" to accept only values of string type from the "logLevel" environments property (Error < Warn < Info < Debug)
309
+ - Updates the README.md
310
+ - Replaces the value of the "logLevel" property of numeric type with the corresponding value of type string in the env.sample and chat-config.json files
311
+ - Adds unit tests
312
+
313
+ ### 3.0.45-beta
314
+ - Adds the ability to display the canned responses by pressing '/' anywhere in the message
315
+ - Fixes the bug: in group side panel are not displayed the members
316
+
317
+ ### 3.0.44-beta
318
+ - Fixes the bug: When a canned response is selected from the keyboard and enter is pressed, the slash character "/" is sent as a message
319
+ - Fixes the bug: default log level is undefined if it is not setted in the eviroment.*
320
+
321
+ ### 3.0.43-beta
322
+ - Fixes the bug: logger of undefined in firebase-notifications and in app.component
323
+ - Fixes the bug: "el" of undefined in "conversation-detail.page"
324
+ - Fixes the bug: Canned responses are not displayed
325
+
326
+ ### 3.0.42-beta.1.19
327
+ - Fixes the bug: uploading images by dragging to the "conversation detail" area does not work if the image is dragged to an area without messages
328
+
329
+ ### 3.0.42-beta.1.18
330
+ - Improves logger service
331
+ - Fixes the bug: with MQTT enviroment it is not possible to know changes in the conversation
332
+
333
+ ### 3.0.42-beta.1.17
334
+ - Note: this version has been published under the subfolder "chat5"
335
+ - Adds the right side panel that allows the selection of projects to which the current user belongs and the display of unassigned conversations
336
+ - Fixes the bug: Property 'addUploadingBubbleEvent' does not exist on type 'ConversationDetailPage'.
337
+
338
+ ### 3.0.42-beta.1.16
339
+ - Bug fixed: the selected image preview popup window opens twice if after selecting the image dragging it in the chat area, the image is selected pasting it in the 'send message' texarea,
340
+ - Prevents the user from pasting non-image files into the 'send message' textarea
341
+ - Displays an error message when files that are not of type image are pasted in the "send message" text area
342
+ - Displays an error message when files that are not of type image are dragged into the chat area
343
+
344
+ ### 3.0.42-beta.1.15
345
+ - Adds the ability to select an image to upload by drag it in the chat area
346
+ - Adds the ability to upload an image or file by pressing the "Enter" keyboard key
347
+ - Fixes the bug: the placeholder in the textarea 'send message' isn't responsive and when it is on two lines of text it overlaps the chat content
348
+ - Fixes the bug: if the canned responses are called on group type or direct type conversations, an error is thrown as the project id is not available
349
+
350
+ ### 3.0.42-beta.1.14
351
+ - Minor improvements
352
+
353
+ ### 3.0.42-beta.1.13
354
+ - Fixes the bug: if the message inserted in the textarea has more lines of text, that textarea overlaps the chat content
355
+ - Adds the ability to select an image to upload by paste it in the 'send message' textarea
356
+ - Fixes the bug: the placeholder in the textarea 'send message' isn't responsive and when it is on two lines of text it overlaps the chat content
357
+
358
+ ### 3.0.42-beta.1.12
359
+ - Renames the 'temp' folder in 'chatib'
360
+ - Improves the button to attach files / images
361
+ - Changes the endpoint where images and files are saved in the 'firebase-upload' service
362
+ - Adds the ability to upload any file type
363
+ - Adds the extension and name of the file that will be uploaded into the popup modal preview
364
+ - Displays an error message if the file upload failed
365
+ - Fixes the bug: if the uploaded file has a size of 0 bytes, the "bubble spinner" is displayed twice and the second remains visible
366
+ - Fixes the bug: the user ID and uiid are added to the downloaded file name
367
+ - Adds in the environments the 'fileUploadAccept' key set by default to accept the upload of any type of file and binds the value in message-text-area
368
+ - Changes the Log Level number values
369
+ - Decreases the display delay of the message tooltips (from 1500ms to 500ms)
370
+ - Adds in chat-config-template.json, chat-config.json and env.sample the keys "fileUploadAccept" and "logLevel"
371
+ - Changes in the environments the default value of the log level to 1
372
+ - Updates the mqtt library to the latest version (4.2.8)
373
+
374
+ ### 3.0.42-beta.1.11
375
+ - Improves the "push notifications service worker" and in conversations-list-page the method listenToNotificationCLick()
376
+ - Changes in the "precence.service" and "typing.service" the occurrences where the "tenant" property is obtained from the environment rather than from 'appConfig'
377
+
378
+ ### 3.0.42-beta.1.10
379
+ - Improves the "push notifications service worker"
380
+
381
+ ### 3.0.42-beta.1.9
382
+ - Adds logs in "firebase-messaging-sw.js" and in "conversations-list.page.ts" for push notification test
383
+
384
+ ### 3.0.42-beta.1.8
385
+ - Handles the responses of the 'signInWithEmailAndPassword' method: displays a toast in case of error and a spinner waiting for the response
386
+ - Adds in the "login component" the links to the dashboard's pages "reset password" and "signup"
387
+ - Adds in the "login component" the display of validation errors of the authentication form
388
+ - Adds the preview of the selected SVG image in image/file preview popup
389
+ - Fixes the bug: "fileSelected of undefined" when the image/file preview popup is closed without any image or file being selected
390
+ - Adds the check of the pushEngine key set to "none" in the "notificationsServiceFactory" function of app.module
391
+ - Changes occurrences where "tenant" is obtained from "environment" by getting it from "appConfig" (app.component.ts, info.content.component.ts, conversation-detail.page, conversation-list.page)
392
+ - Adds in info-message.component.html the pipe htmlEntiesEncode
393
+ - Updates in the firebase-messaging-sw.js the version of Firebase SDK imported and replaces the deprecated method "setBackgroundMessageHandler()" with the new onBackgroundMessage()
394
+ - Removes the dependecies of the "appConfig" from the "notifications classes"
395
+ - Removes imageUrl from setConversationAvatar utils function
396
+ - Fixed the bug: if pushEngine is setted to none are called the method getNotificationPermissionAndSaveToken()
397
+ - Adds the "tenant" property in chat-config and chat-config-template
398
+ - Fixed the bug: the logger is not displayed
399
+ - Adds the ability by clicking on a push notification to open the chat, that is in background or that is closed, directly to the conversation to which the push notification refers
400
+ - Renames FirebaseGroupHandler in FirebaseGroupsHandler,
401
+ - Removes unused components (conversation-archived-list and current-user-service)
402
+
403
+ ### 3.0.42-beta.1.7
404
+ - Adds the Html entities encode pipe and removes the entities encode from the sendMessage method
405
+ - Adds the abstract class "notification.service" and the classes "firebase-notifications" and "mqtt-notifications"
406
+
407
+ ### 3.0.42-beta.1.6
408
+ - Disables the dark mode
409
+ - Fixed the bug: in pre environment the the uploadEngine key is set to 'native'
410
+
411
+ ### 3.0.42-beta.1.5
412
+ - Sets in pre: the value of the key chatEngine to 'firebase', the value of the key uploadEngine to 'firebase' and the value of the key pushEngine to 'firebase'
413
+
414
+ ### 3.0.42-beta.1.4
415
+ - Updated in pre environment the endpoints of "dashboardUrl" to the Dashboard latest versions (2.1.70-beta.1.6)
416
+
417
+ ### 3.0.42-beta.1.3
418
+ - Fixes the bug: if the uploadEngine key is set to native images and files are not upload
419
+ - Sets in pre: the value of the key chatEngine to 'mqtt', the value of the key uploadEngine to 'native' and the value of the key pushEngine to 'none'
420
+
421
+ ### 3.0.42-beta.1.2
422
+ - Adds push notifications
423
+ - Updates firebase SDK to the 8.6.7 version
424
+ - Changes the import of firebase 'import * as firebase from "firebase/app"' with 'import firebase from "firebase/app"'
425
+
426
+ ### 3.0.42-beta.1.1
427
+ - Fixes the bug: if the uploadEngine key is set to native the svg images are not uploaded
428
+ - Fixes the bug: "logger.printLog" is not a function in "conversation-content-component"
429
+ - Fixes the bug: with native uploadEgine uploading files or images whose names contain spaces return broken URLs
430
+ - Fixes the bug: when switching from mobile to desktop mode, if a conversation is selected in the conversation details, the list of conversations is displayed
431
+ - Fixes the bug: when switching from desktop mode to mobile mode, if no conversation is selected, the conversation list is not displayed
432
+ - Fixes the bug: remove the dependency of the "LoggerService" from the 'ion-conversation-detail' component constructor
433
+
434
+ ### 3.0.42-beta.1.0
435
+ - Minor improvements
436
+
437
+ ### 3.0.42
438
+ - Fixes the bug: in mobile mode in the right side panel "Conversation info" the textarea 'send message' is displayed
439
+ - Fixes the bug: the button open/close the right side panel 'Info conversation' does not work correctly
440
+ - Hides the 'Conversation Info' right side panel when the window width is less than 991px
441
+
442
+ ### 3.0.41
443
+ - Sets in pre environment the key "uploadEngine" to "firebase"
444
+ - Fixes the bug: when is pressed enter in the textarea "send message" is added a new line
445
+ - Fixes the bug: the text of the message is always written on a single line, ignoring line breaks
446
+ - Adds a bubble with an upload spinner to the in-conversation-detail page when uploading a file using uploadEngine = 'firebase'
447
+ - Displays in the loader-preview page a placeholder image when a file is selected to be loaded
448
+ - Removes from the services "firebase-conversation-handler", "firebase-conversations-handler", "firebase-archivedconversations-handler" and mqtt-conversation-handler the HTML entities encode
449
+ - Improves the "htmlEntities" function and adds the "replaceEndOfLine" function
450
+
451
+ ### 3.0.40
452
+ - Improves the methods implemented for the correct display of messages in the conversation list when a snippet of code is pasted
453
+
454
+ ### 3.0.39
455
+ - Fixes the bug: if a snippet of code is pasted and sent it is not displayed correctly in the chat
456
+ - Fixes the bug: if a snippet of code is pasted and sent it is not displayed correctly in the convesations list
457
+
458
+ ### 3.0.38
459
+ - Conditions the display of the splash screen only on platforms other than "desktop" (on the desktop platforms the splash screen is not supported)
460
+ - Fixes the bug: signin button is not disable when the form is invalid
461
+ - Fixes the bug: markdown doen't work when the page is refreshed
462
+ - Adds the encode of the HTML entities
463
+
464
+ ### 3.0.37
465
+ - Fixes the bug: the skeleton placeholder remains active after logout
466
+
467
+ ### 3.0.36
468
+ - Fixes the bug: in the list of conversations user last messsagge is showed more times
469
+ - Adds in the list of conversations (active and archived) the placeholder 'No conversation yet' displayed when there aren't conversation
470
+ - Manages the title on the browser tab when new messages are received: indication of the number of new messages that are received when the tab is not active
471
+ - Fixes the bug: canned responses are called even if the slash ('/') is not at the beginning of the sentence
472
+ - Conditions the canned responses call to the existence of the project id
473
+ - Centers the placeholder message "Still no message here..."
474
+
475
+ ### 3.0.35
476
+ - Adds a tooltip in the logged user profile panel that displays the user's id and the ability to copy it by clicking on the avatar
477
+ - Replaces in the list of conversations (active and archived) the text 'loading' with a skeleton placeholder
478
+ - Replaces in the detail of the conversation the image and the text "text new conversation + button" with the text "Please select a chat to start messaging"
479
+ - Fixes the bug: in the list of conversations user last messsagge is showed more times
480
+
481
+ ### 3.0.34
482
+ - Fixes the bug: in the right side panel of "direct" conversations the "Advanced" accordion opens only once
483
+ - Fixes the bug: in the conversation list message text goes on a new line when there is the image icon
484
+ - Fixes the bug: in the list of conversations the 'archive conversation' button is displayed fixed on the right and not on mouseover
485
+
486
+ ### 3.0.33
487
+ - Changes dashboard url
488
+
489
+ ### 3.0.32
490
+ - Changes dashboard url
491
+
492
+ ### 3.0.31
493
+ - test Native uploadEngine
494
+
495
+ ### 3.0.30
496
+ - Added image skeleton while load image
497
+ - Improved uploaded images styles
498
+ - Added Native-Image-repo service
499
+
500
+ ### 3.0.29
501
+ - Fixes the bug: "Cannot read property 'forEach' of undefined" when subscriptions are undefined
502
+ - Fixes the bug: user's profile photo is not displayed in the right side panel of "direct" type conversations
503
+ - Fixes the bug: user's profile photo is not displayed in the conversation header
504
+ - Fixes the bug: users' profile pictures are not displayed in the left panel "write to"
505
+ - Fixes the bug: the same image cannot be loaded twice
506
+
507
+ ### 3.0.28
508
+ - Minor improvements
509
+
510
+ ### 3.0.27
511
+ - Fixes the bug: the call to get the contact details is not made on mqtt environment
512
+
513
+ ### 3.0.26
514
+ - Minor improvements
515
+
516
+ ### 3.0.25
517
+ - Bug fixing
518
+
519
+ ### 3.0.24
520
+ - Adds in "group" conversations the display of members belonging to the group type (avatar, name and online / offline status)
521
+ - Fixes the bug: in the setInfoSupportGroup method the project ID is taken from the detail attributes of the group which may not be available (now it is taken from 'conversatioWith')
522
+ - Adds autofocus in the "send message" text area
523
+ - Fixes the bug: files in the mqtt environment are not loaded
524
+
525
+ ### 3.0.23
526
+ - Fixes the bug: the avatar image of the logged in user is not displayed in the left menu "profile-info"
527
+ - Fixes the bug: the group names are incorrect (for active and archived conversations)
528
+ - Adds the component "advanced-info-accordion"
529
+ - Adds the "closeSupportGroup" method to archive support group conversations
530
+ - Modify the "deleteConversation" method to archive conversations of type "direct" and "group" (deleted the query string "forall = true")
531
+ - Adds the "generateGroupAvatar" method in the conversation-detail.page
532
+ - Adds the input "groupDetails" to the "app-info-content" component
533
+ - Displays an image icon in the conversation list if the conversation type is image
534
+ - Enhances right sidebar for "direct" conversations
535
+ - Implements the right sidebar for group type conversations (in progerss)
536
+ - Improves "actionScrollBottom" method
537
+ - Fixes the bug: "startsWith" of undefined in the method "isGroup"
538
+
539
+ ### 3.0.22
540
+ - Fixes the bug: the modal login window opens even if the user is logged in
541
+ - Fixes the bug: contact avatar is not displayed in the contact list (write to)
542
+ - Manages scroll position in concversation detail page as widget behaviour
543
+ - Bug fixed onInit selected conversation in ion-list-conversations.component
544
+ - Improves the conversation list graphics in the left side panel
545
+ - Implemented the method for archiving conversations
546
+ - Fixes the bug: clicking on an archived conversation does not update the 'read conversation' badge
547
+ - Fixes the bug: the messages in the conversation detail are all aligned to the left
548
+ - Fixes the bug: the selected active conversation is no longer selected when the user returns to active conversations from archived conversations
549
+ - Deletes the persistence of the last open conversation from the local storage
550
+ - Restores the button 'open conversation detail'
551
+ - Changes the mqtt library (v4.2.6) loading: from external loaded in index.html to local loaded in angular.json
552
+ - Adds checking for user existence before running "setPresence" in the goOnLine method of app.component
553
+ - Adds a path to "Conversation-detail" with only the conversation ID parameter
554
+ - Renames (and improves) the method connect in subscribeToConversations and removes the subscriptions to the conversation detail
555
+ - Modifies the "getConversationDetail" method to return a callback and moves the subscription to the method from the "conversation details" page to the "information-content" component
556
+ - Changes the "setConversationRead" method to accept the conversation ID as parameter and no longer the selected conversation
557
+ - Closes the contacts modal window when a contact is selected
558
+ - Moves conversations subscription in "app.component" from "conversation-list-page"
559
+ - Fixes the bug: the "loadContactsFromUrl" service does not work if the chatEngine is "mqtt"
560
+ - Fixes the bug: when the user logs out, the "removePresence" method throws errors because it is executed after the "signOut" method of Firebase
561
+ - Renamed "pushUploadMessage" in upload-service with "upload()"
562
+ - Implemented new NATIVE-UPLOAD-SERVICE and added in mqtt app.module uploadFactory section (not active yet)
563
+ - Handled promise of upload in message-text-area while upload a file/image
564
+ - Fixes the bug: the images are not loaded in the current conversation
565
+ - Fixes the bug: the right panel does not display information relating to the type of conversation selected
566
+ - Fixes the bug: the 'channelType' in messages is incorrect
567
+ - Fixes the bug: the link of the downloaded file is not displayed
568
+ - Fixes the bug: the right side panel does not show the content related to the selected conversation type
569
+ - Handled archivedconversations service in dispose method of chat-manager
570
+ - Bug fixed on logout
571
+ - Bug fixed chat21client undefined in MqttArchivedConversationsHandlerService
572
+ - Renamed group-service with groups-handler.service
573
+ - Added MQTTArchivedConversationsHandler in the archivedConversationsHandlerFactory
574
+ - Adds the ability to manage responses with the project's 'canned responses' and select them with the keyboard's up and down arrows
575
+
576
+ ### 3.0.21
577
+ - Fixes the bug: on the browser the archived conversation window is opened multiple times by clicking on the 'Archived' button
578
+ - Fixes the bug: on mobile the archived conversations window is no longer displayed if it has been opened once
579
+ - Highlights the archived conversation with a background color
580
+ - Fixes the bug: the detail of the selected conversation does not open on mobile
581
+
582
+
583
+ ### 3.0.20
584
+ - Adds the ability to display the archived conversations
585
+
586
+ ### 3.0.17
587
+ - bug fix: changed abstract classes in app module
588
+ - changed: class presence
589
+ - changed: class typing
590
+
591
+ ### 3.0.16
592
+
593
+
594
+ ### 3.0.15
595
+ - bug-fix: changed routing removing url parameters
596
+ - bug-fix: create new conversation
597
+ - changed: create abstract classes for services
598
+ - bug-fix: scroll-page
599
+ - changed: replaced Observable with BehaviourSubject
600
+
601
+ ### 3.0.14
602
+ - new: create new conversation
603
+ - new: added conversations cache
604
+
605
+ ### 3.0.13
606
+ - bug-fix: open/close modal login
607
+ - new: added alert on error login
608
+ - bug-fix: auth with JWT token from url queryParams
609
+ - bug-fix: routing list detail
610
+ - new: added BehaviourSubject on authChange
611
+ - new: load chat components after login
612
+ - bug-fix: contact list: load contacts
613
+
614
+
615
+ ### 3.0.11
616
+ - new: set persistence firebase from environment
617
+ - new: get JWT token from url queryParams and signin with token
618
+ - new: save token in localstorage
619
+
620
+ ### 3.0.10
621
+ - bug-fix: url navigation
622
+ - bug-fix: CONTACTS_URL from environment
623
+
624
+ ### 3.0.9
625
+ - bug-fix: info conversation right sidebar
626
+
627
+ ### 3.0.8
628
+ - new: added Scrivi a...
629
+
630
+ ### 3.0.7
631
+ - bug fix: navigation and routing
632
+
633
+ ### 3.0.6
634
+ - test build platforms browser, ios, android --prod
635
+
636
+ ### 3.0.1
637
+ - add scrollBarButton
213
638
  - adds CHANGELOG.md