@chat21/chat21-ionic 3.0.60-rc1 → 3.0.60-rc9

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 (47) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/LICENSE +661 -21
  3. package/deploy_pre.sh +45 -6
  4. package/deploy_prod.sh +34 -9
  5. package/env.sample +1 -1
  6. package/package.json +1 -1
  7. package/src/app/app.component.ts +45 -21
  8. package/src/app/app.module.ts +2 -2
  9. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +62 -36
  10. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +42 -13
  11. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +13 -6
  12. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +38 -3
  13. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +8 -6
  14. package/src/app/components/image-viewer/image-viewer.component.scss +2 -2
  15. package/src/app/components/project-item/project-item.component.html +140 -118
  16. package/src/app/components/project-item/project-item.component.scss +167 -90
  17. package/src/app/components/project-item/project-item.component.ts +41 -20
  18. package/src/app/pages/conversation-detail/conversation-detail.module.ts +2 -1
  19. package/src/app/pages/conversation-detail/conversation-detail.page.html +36 -43
  20. package/src/app/pages/conversation-detail/conversation-detail.page.ts +199 -110
  21. package/src/app/pages/conversations-list/conversations-list.page.html +9 -5
  22. package/src/app/pages/conversations-list/conversations-list.page.scss +12 -1
  23. package/src/app/pages/conversations-list/conversations-list.page.ts +24 -6
  24. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +16 -11
  25. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +157 -63
  26. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +51 -16
  27. package/src/app/services/app-config.ts +14 -14
  28. package/src/app/shared/shared.module.ts +6 -5
  29. package/src/assets/i18n/de.json +209 -0
  30. package/src/assets/i18n/en.json +24 -8
  31. package/src/assets/i18n/es.json +209 -0
  32. package/src/assets/i18n/fr.json +209 -0
  33. package/src/assets/i18n/it.json +42 -34
  34. package/src/assets/i18n/pt.json +209 -0
  35. package/src/assets/i18n/ru.json +209 -0
  36. package/src/assets/i18n/tr.json +209 -0
  37. package/src/assets/js/chat21client.js +16 -3
  38. package/src/chat-config-mqtt.json +2 -1
  39. package/src/chat-config-pre-test.json +2 -0
  40. package/src/chat-config-template.json +1 -0
  41. package/src/chat-config.json +1 -0
  42. package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +54 -43
  43. package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +23 -0
  44. package/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts +1 -1
  45. package/src/chat21-core/utils/constants.ts +2 -0
  46. package/src/chat21-core/utils/utils.ts +12 -1
  47. package/src/global.scss +4 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,44 @@
1
1
  # chat21-ionic ver 3.0
2
2
 
3
+ ### 3.0.60-rc9
4
+ - Adds the message "All conversations served" in the conversation details section that appears when there are no active conversations
5
+ - Fixes the bug: in the item that displays the number of unassigned conversations the button "fix a project" does not go to the right in mobile mode
6
+
7
+ ### 3.0.60-rc8
8
+ - Fixes the bug: "info" messages sent by "SYSTEM" are not translated
9
+ - Adds the Portuguese language
10
+ - Adds the French language
11
+ - Adds the Russian language
12
+ - Adds the Turkish language
13
+
14
+ ### 3.0.60-rc7
15
+ - Adds German language
16
+ - Adds a method that translates chat texts based on the language of the browser settings if no preferred language is selected in the dashboard or based on the preferred language (ignoring the browser language)
17
+ - Manages the language used for translations from the "moment" library based on the language of the browser settings if no preferred language has been selected in the dashboard or on the preferred language selected (ignoring the browser language)
18
+ - Adds the ability to manage the visibility of canned responses in env.sample, chat-config-tempalte.json and chat-config.json
19
+ - Fixes the bug: in the 'item' that displays the pinned project and the number of the not assigned conversions the tooltip is not correctly displayed
20
+
21
+ ### 3.0.60-rc6
22
+ - Fixes the bug: push notifications are initialized even if the "pushEngine" configuration variable is set to "none"
23
+ - Adds spanish language
24
+
25
+ ### 3.0.60-rc5
26
+ - Change the icon and link of the "pin button" in the item at the top of the conversation list (now opens the list of projects and not the list of new conversations)
27
+ - Add a tooltip on the switch button to change the available/unavailable status
28
+ - Adds a link to the to the new conversations at the icon that display the number of new conversations
29
+
30
+ ### 3.0.60-rc4
31
+ - Translates the canned response displayed when there are not canned responses
32
+
33
+ ### 3.0.60-rc3
34
+ - Enhances the item at the top of the conversation list that displays the number of new conversations of a selected project
35
+ - Fixes the bug: the loading spinner is sometimes not displayed when loading the list of unassigned conversations
36
+ - Displays as canned response "Test" when no canned responses are available
37
+ - Adds the cursor to the "Send message" textarea after the "Canned responses" button has been clicked
38
+
39
+ ### 3.0.60-rc2
40
+ - Fixes the bug: in AppConfigProvider the "wsUrl" is incorrect (window.location.port is missing)
41
+
3
42
  ### 3.0.60-rc1
4
43
  - Adds the ability to view canned responses by clicking on the button with the "flash" icon located to the left of the "Enter a message" text area
5
44