@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.
- package/.github/workflows/docker-community-push-latest.yml +22 -0
- package/.github/workflows/docker-image-tag-community-tag-push.yml +21 -0
- package/CHANGELOG.md +637 -212
- package/Dockerfile +1 -2
- package/LICENSE +21 -661
- package/README.md +40 -9
- package/angular.json +230 -0
- package/browserslist +12 -0
- package/config.xml +60 -47
- package/deploy_pre.sh +14 -12
- package/deploy_prod.sh +26 -6
- package/env.sample +28 -9
- package/ionic.config.json +2 -2
- package/karma.conf.js +31 -0
- package/nginx.conf +1 -1
- package/package.json +91 -105
- package/publish_pre.sh +33 -0
- package/publish_prod.sh +33 -0
- package/resources/Android/icon/drawable-hdpi-icon.png +0 -0
- package/resources/Android/icon/drawable-ldpi-icon.png +0 -0
- package/resources/Android/icon/drawable-mdpi-icon.png +0 -0
- package/resources/Android/icon/drawable-xhdpi-icon.png +0 -0
- package/resources/Android/icon/drawable-xxhdpi-icon.png +0 -0
- package/resources/Android/icon/drawable-xxxhdpi-icon.png +0 -0
- package/resources/Android/icon.png +0 -0
- package/resources/Android/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/Android/splash.png +0 -0
- package/src/app/app-routing.module.ts +90 -0
- package/src/app/app.component.html +26 -0
- package/src/app/app.component.scss +11 -0
- package/src/app/app.component.spec.ts +47 -0
- package/src/app/app.component.ts +1154 -128
- package/src/app/app.module.ts +314 -135
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.html +143 -0
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.scss +335 -0
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.spec.ts +179 -0
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.ts +303 -0
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +149 -0
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +199 -0
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.spec.ts +24 -0
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +97 -0
- package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.html +17 -0
- package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.scss +83 -0
- package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.spec.ts +27 -0
- package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.ts +43 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +76 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +51 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.spec.ts +84 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +215 -0
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.html +3 -0
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.scss +83 -0
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.ts +37 -0
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.html +24 -0
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.scss +61 -0
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.ts +30 -0
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.html +3 -0
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.scss +47 -0
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.ts +29 -0
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.html +3 -0
- package/{bin/chat21-ionic → src/app/chatlib/conversation-detail/message/frame/frame.component.scss} +0 -0
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.ts +33 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.html +10 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.scss +34 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.spec.ts +35 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.ts +78 -0
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.html +2 -0
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.scss +15 -0
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.spec.ts +27 -0
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.ts +35 -0
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.html +56 -0
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +169 -0
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.spec.ts +33 -0
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.ts +80 -0
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.html +18 -0
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.scss +27 -0
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.ts +24 -0
- package/src/app/chatlib/conversation-detail/message/text/text.component.html +5 -0
- package/src/app/chatlib/conversation-detail/message/text/text.component.scss +26 -0
- package/src/app/chatlib/conversation-detail/message/text/text.component.spec.ts +33 -0
- package/src/app/chatlib/conversation-detail/message/text/text.component.ts +56 -0
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +154 -0
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss +222 -0
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.spec.ts +24 -0
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +113 -0
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.html +46 -0
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.scss +200 -0
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.spec.ts +27 -0
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts +135 -0
- package/src/app/components/authentication/login/login.component.html +65 -0
- package/src/app/components/authentication/login/login.component.scss +85 -0
- package/src/app/components/authentication/login/login.component.spec.ts +24 -0
- package/src/app/components/authentication/login/login.component.ts +174 -0
- package/src/app/components/contacts-directory/contacts-directory.component.html +22 -0
- package/src/app/components/contacts-directory/contacts-directory.component.scss +123 -0
- package/src/app/components/contacts-directory/contacts-directory.component.spec.ts +24 -0
- package/src/app/components/contacts-directory/contacts-directory.component.ts +109 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.html +3 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.scss +21 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.ts +14 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html +54 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss +98 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts +84 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html +30 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss +83 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts +68 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.html +3 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.scss +10 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.ts +14 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +71 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +161 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +133 -0
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +64 -0
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +124 -0
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.spec.ts +25 -0
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +685 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.html +13 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.scss +0 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.ts +24 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.html +64 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.scss +135 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.spec.ts +24 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.ts +53 -0
- package/src/app/components/conversation-info/conversation-info.module.ts +13 -0
- package/src/app/components/conversation-info/info-content/info-content.component.html +18 -0
- package/src/app/components/conversation-info/info-content/info-content.component.scss +5 -0
- package/src/app/components/conversation-info/info-content/info-content.component.spec.ts +24 -0
- package/src/app/components/conversation-info/info-content/info-content.component.ts +395 -0
- package/src/app/components/conversation-info/info-direct/info-direct.component.html +57 -0
- package/src/app/components/conversation-info/info-direct/info-direct.component.scss +62 -0
- package/src/app/components/conversation-info/info-direct/info-direct.component.spec.ts +24 -0
- package/src/app/components/conversation-info/info-direct/info-direct.component.ts +67 -0
- package/src/app/components/conversation-info/info-group/info-group.component.html +115 -0
- package/src/app/components/conversation-info/info-group/info-group.component.scss +80 -0
- package/src/app/components/conversation-info/info-group/info-group.component.spec.ts +24 -0
- package/src/app/components/conversation-info/info-group/info-group.component.ts +218 -0
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.html +6 -0
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.scss +0 -0
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.spec.ts +24 -0
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.ts +29 -0
- package/src/app/components/ddp-header/ddp-header.component.html +31 -0
- package/src/app/components/ddp-header/ddp-header.component.scss +26 -0
- package/src/app/components/ddp-header/ddp-header.component.spec.ts +24 -0
- package/src/app/components/ddp-header/ddp-header.component.ts +33 -0
- package/src/app/components/image-viewer/image-viewer.component.html +23 -0
- package/src/app/components/image-viewer/image-viewer.component.scss +107 -0
- package/src/app/components/image-viewer/image-viewer.component.spec.ts +24 -0
- package/src/app/components/image-viewer/image-viewer.component.ts +38 -0
- package/src/app/components/project-item/project-item.component.html +147 -0
- package/src/app/components/project-item/project-item.component.scss +669 -0
- package/src/app/components/project-item/project-item.component.spec.ts +24 -0
- package/src/app/components/project-item/project-item.component.ts +350 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.html +12 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.scss +29 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.spec.ts +24 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.ts +41 -0
- package/src/app/components/utils/user-presence/user-presence.component.html +2 -0
- package/src/app/components/utils/user-presence/user-presence.component.scss +24 -0
- package/src/app/components/utils/user-presence/user-presence.component.spec.ts +24 -0
- package/src/app/components/utils/user-presence/user-presence.component.ts +159 -0
- package/src/app/directives/autofocus.directive.ts +41 -0
- package/src/app/directives/html-entities-encode.pipe.spec.ts +8 -0
- package/src/app/directives/html-entities-encode.pipe.ts +17 -0
- package/src/app/directives/marked.pipe.spec.ts +8 -0
- package/src/app/directives/marked.pipe.ts +27 -0
- package/src/app/directives/safe-html.pipe.ts +16 -0
- package/src/app/pages/authentication/login/login-routing.module.ts +17 -0
- package/src/app/pages/authentication/login/login.module.ts +39 -0
- package/src/app/pages/authentication/login/login.page.html +7 -0
- package/src/app/pages/authentication/login/login.page.scss +5 -0
- package/src/app/pages/authentication/login/login.page.spec.ts +24 -0
- package/src/app/pages/authentication/login/login.page.ts +187 -0
- package/src/app/pages/contacts-directory/contacts-directory-routing.module.ts +17 -0
- package/src/app/pages/contacts-directory/contacts-directory.module.ts +42 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.html +19 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.scss +0 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.spec.ts +24 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.ts +125 -0
- package/src/app/pages/conversation-detail/conversation-detail-routing.module.ts +17 -0
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +69 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.html +191 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.scss +492 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.spec.ts +24 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +1525 -0
- package/src/app/pages/conversations-list/conversations-list-routing.module.ts +17 -0
- package/src/app/pages/conversations-list/conversations-list.module.ts +43 -0
- package/src/app/pages/conversations-list/conversations-list.page.html +112 -0
- package/src/app/pages/conversations-list/conversations-list.page.scss +302 -0
- package/src/app/pages/conversations-list/conversations-list.page.spec.ts +24 -0
- package/src/app/pages/conversations-list/conversations-list.page.ts +1032 -0
- package/src/app/pages/details/details-routing.module.ts +17 -0
- package/src/app/pages/details/details.module.ts +21 -0
- package/src/app/pages/details/details.page.html +28 -0
- package/src/app/pages/details/details.page.scss +23 -0
- package/src/app/pages/details/details.page.spec.ts +24 -0
- package/src/app/pages/details/details.page.ts +65 -0
- package/src/app/pages/loader-preview/loader-preview-routing.module.ts +17 -0
- package/src/app/pages/loader-preview/loader-preview.module.ts +29 -0
- package/src/app/pages/loader-preview/loader-preview.page.html +62 -0
- package/src/app/pages/loader-preview/loader-preview.page.scss +117 -0
- package/src/app/pages/loader-preview/loader-preview.page.spec.ts +24 -0
- package/src/app/pages/loader-preview/loader-preview.page.ts +353 -0
- package/src/app/pages/profile-info/profile-info-routing.module.ts +17 -0
- package/src/app/pages/profile-info/profile-info.module.ts +41 -0
- package/src/app/pages/profile-info/profile-info.page.html +86 -0
- package/src/app/pages/profile-info/profile-info.page.scss +264 -0
- package/src/app/pages/profile-info/profile-info.page.spec.ts +24 -0
- package/src/app/pages/profile-info/profile-info.page.ts +223 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations-routing.module.ts +17 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.module.ts +22 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +22 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +79 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.spec.ts +24 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +116 -0
- package/src/app/services/app-config.ts +107 -0
- package/src/app/services/canned-responses/canned-responses.service.spec.ts +12 -0
- package/src/app/services/canned-responses/canned-responses.service.ts +49 -0
- package/src/app/services/contacts/contacts.service.spec.ts +12 -0
- package/src/app/services/contacts/contacts.service.ts +172 -0
- package/src/app/services/events-service.ts +79 -0
- package/src/app/services/nav-proxy.service.spec.ts +12 -0
- package/src/app/services/nav-proxy.service.ts +80 -0
- package/src/app/services/network-service/network.service.spec.ts +12 -0
- package/src/app/services/network-service/network.service.ts +46 -0
- package/src/app/services/tiledesk/tiledesk.service.spec.ts +12 -0
- package/src/app/services/tiledesk/tiledesk.service.ts +99 -0
- package/src/app/services/websocket/websocket-js.ts +560 -0
- package/src/app/services/websocket/websocket.service.spec.ts +12 -0
- package/src/app/services/websocket/websocket.service.ts +292 -0
- package/src/app/shared/shared-conversation-info.module.ts +33 -0
- package/src/app/shared/shared.module.ts +130 -0
- package/src/{utils → app/utils}/constants.ts-e +0 -0
- package/src/app/utils/scrollbar-theme.directive.ts +63 -0
- package/src/assets/i18n/en.json +122 -38
- package/src/assets/i18n/it.json +101 -10
- package/src/assets/icon/favicon.ico +0 -0
- package/src/assets/icon/ionic_favicon.png +0 -0
- package/src/assets/images/f21ico-done.svg +1 -0
- package/src/assets/images/f21ico-done_all.svg +1 -0
- package/src/assets/images/f21ico-schedule.svg +1 -0
- package/src/assets/images/file-alt-solid.png +0 -0
- package/src/assets/images/no_conversation.jpg +0 -0
- package/src/assets/{img → images}/no_image.png +0 -0
- package/src/assets/js/chat21client.js +1027 -0
- package/src/assets/js/mqtt/4.1.0/mqtt.min.js +1 -0
- package/src/assets/js/mqtt/4.2.6/mqtt.min.js +1 -0
- package/src/assets/js/mqtt/4.2.8/mqtt.min.js +1 -0
- package/src/assets/logo.png +0 -0
- package/src/assets/shapes.svg +1 -0
- package/src/assets/sounds/pling.mp3 +0 -0
- package/src/assets/transparent.png +0 -0
- package/src/chat-config-mqtt-ver-uploaded.json +22 -0
- package/src/chat-config-mqtt.json +26 -0
- package/src/chat-config-pre-test.json +32 -0
- package/src/chat-config-pre.json +23 -0
- package/src/chat-config-template.json +20 -6
- package/src/chat-config.json +30 -0
- package/src/{models → chat21-core/models}/conversation.ts +6 -2
- package/src/{models → chat21-core/models}/group.ts +7 -5
- package/src/{models → chat21-core/models}/message.ts +8 -8
- package/src/{models → chat21-core/models}/upload.ts +5 -5
- package/src/{models → chat21-core/models}/user.ts +2 -1
- package/src/chat21-core/providers/abstract/app-storage.service.spec.ts +15 -0
- package/src/chat21-core/providers/abstract/app-storage.service.ts +17 -0
- package/src/chat21-core/providers/abstract/archivedconversations-handler.service.spec.ts +13 -0
- package/src/chat21-core/providers/abstract/archivedconversations-handler.service.ts +34 -0
- package/src/chat21-core/providers/abstract/conversation-handler-builder.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/conversation-handler-builder.service.ts +11 -0
- package/src/chat21-core/providers/abstract/conversation-handler.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/conversation-handler.service.ts +43 -0
- package/src/chat21-core/providers/abstract/conversations-handler.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/conversations-handler.service.ts +42 -0
- package/src/chat21-core/providers/abstract/groups-handler.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/groups-handler.service.ts +28 -0
- package/src/chat21-core/providers/abstract/image-repo.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/image-repo.service.ts +26 -0
- package/src/chat21-core/providers/abstract/logger.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/logger.service.ts +16 -0
- package/src/chat21-core/providers/abstract/messagingAuth.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/messagingAuth.service.ts +54 -0
- package/src/chat21-core/providers/abstract/notifications.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/notifications.service.ts +31 -0
- package/src/chat21-core/providers/abstract/presence.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/presence.service.ts +34 -0
- package/src/chat21-core/providers/abstract/typing.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/typing.service.ts +31 -0
- package/src/chat21-core/providers/abstract/upload.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/upload.service.ts +39 -0
- package/src/chat21-core/providers/chat-manager.ts +282 -0
- package/src/chat21-core/providers/custom-translate.service.spec.ts +12 -0
- package/src/chat21-core/providers/custom-translate.service.ts +42 -0
- package/src/chat21-core/providers/firebase/firebase-archivedconversations-handler.ts +476 -0
- package/src/chat21-core/providers/firebase/firebase-auth-service.ts +376 -0
- package/src/chat21-core/providers/firebase/firebase-conversation-handler-builder.service.ts +19 -0
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +416 -0
- package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +570 -0
- package/src/chat21-core/providers/firebase/firebase-groups-handler.ts +303 -0
- package/src/chat21-core/providers/firebase/firebase-image-repo.ts +40 -0
- package/src/chat21-core/providers/firebase/firebase-init-service.ts +31 -0
- package/src/chat21-core/providers/firebase/firebase-notifications.ts +246 -0
- package/src/chat21-core/providers/firebase/firebase-presence.service.ts +190 -0
- package/src/chat21-core/providers/firebase/firebase-typing.service.ts +93 -0
- package/src/chat21-core/providers/firebase/firebase-upload.service.ts +106 -0
- package/src/chat21-core/providers/localSessionStorage.ts +215 -0
- package/src/chat21-core/providers/logger/customLogger.ts +70 -0
- package/src/chat21-core/providers/logger/loggerInstance.ts +20 -0
- package/src/chat21-core/providers/mqtt/chat-service.ts +44 -0
- package/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts +707 -0
- package/src/chat21-core/providers/mqtt/mqtt-auth-service.ts +313 -0
- package/src/chat21-core/providers/mqtt/mqtt-conversation-handler-builder.service.ts +25 -0
- package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +446 -0
- package/src/chat21-core/providers/mqtt/mqtt-conversations-handler.ts +601 -0
- package/src/chat21-core/providers/mqtt/mqtt-groups-handler.ts +139 -0
- package/src/chat21-core/providers/mqtt/mqtt-notifications.ts +122 -0
- package/src/chat21-core/providers/mqtt/mqtt-presence.service.ts +229 -0
- package/src/chat21-core/providers/mqtt/mqtt-typing.service.ts +93 -0
- package/src/chat21-core/providers/native/native-image-repo.ts +30 -0
- package/src/chat21-core/providers/native/native-upload-service.ts +85 -0
- package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.spec.ts +12 -0
- package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts +211 -0
- package/src/chat21-core/utils/constants.ts +109 -0
- package/src/chat21-core/utils/user-typing/user-typing.component.html +6 -0
- package/src/chat21-core/utils/user-typing/user-typing.component.scss +62 -0
- package/src/chat21-core/utils/user-typing/user-typing.component.spec.ts +24 -0
- package/src/chat21-core/utils/user-typing/user-typing.component.ts +114 -0
- package/src/chat21-core/utils/utils-message.ts +117 -0
- package/src/chat21-core/utils/utils-user.ts +46 -0
- package/src/chat21-core/utils/utils.ts +893 -0
- package/src/firebase-messaging-sw-template.js +1 -1
- package/src/global.scss +585 -0
- package/src/index.html +71 -42
- package/src/main.ts +12 -0
- package/src/manifest.json +0 -11
- package/src/models/department.ts +12 -0
- package/src/polyfills.ts +73 -0
- package/src/test.ts +21 -0
- package/src/theme/variables.scss +236 -93
- package/src/variables.scss +30 -0
- package/src/zone-flags.ts +5 -0
- package/tsconfig.app.json +14 -0
- package/tsconfig.json +23 -18
- package/tsconfig.spec.json +19 -0
- package/tslint.json +84 -7
- package/app.json +0 -7
- package/curl +0 -1
- package/deploy_dev.sh +0 -28
- package/docs/changelog.html +0 -227
- package/docs/classes/ConversationModel.html +0 -1022
- package/docs/classes/GroupModel.html +0 -527
- package/docs/classes/MessageModel.html +0 -843
- package/docs/classes/UploadModel.html +0 -417
- package/docs/classes/UserModel.html +0 -728
- package/docs/classes/_DetailPage.html +0 -144
- package/docs/classes/_MasterPage.html +0 -144
- package/docs/components/ArchivedConversationsPage.html +0 -1024
- package/docs/components/ChatBubble.html +0 -327
- package/docs/components/DettaglioConversazionePage.html +0 -6060
- package/docs/components/ElasticTextarea.html +0 -619
- package/docs/components/InfoAdvancedPage.html +0 -656
- package/docs/components/InfoConversationPage.html +0 -5681
- package/docs/components/InfoMessagePage.html +0 -993
- package/docs/components/InfoUserPage.html +0 -1420
- package/docs/components/ListaConversazioniPage.html +0 -3576
- package/docs/components/LoginPage.html +0 -1457
- package/docs/components/MyApp.html +0 -1388
- package/docs/components/PlaceholderPage.html +0 -397
- package/docs/components/PopoverPage.html +0 -986
- package/docs/components/PopoverProfilePage.html +0 -639
- package/docs/components/ProfilePage.html +0 -1187
- package/docs/components/RegisterPage.html +0 -1271
- package/docs/components/ResetpwdPage.html +0 -1039
- package/docs/components/UpdateImageProfilePage.html +0 -997
- package/docs/components/UsersPage.html +0 -1297
- package/docs/coverage.html +0 -1421
- package/docs/dependencies.html +0 -210
- package/docs/directives/AutosizeDirective.html +0 -556
- package/docs/fonts/FontAwesome.otf +0 -0
- package/docs/fonts/fontawesome-webfont.eot +0 -0
- package/docs/fonts/fontawesome-webfont.svg +0 -685
- package/docs/fonts/fontawesome-webfont.ttf +0 -0
- package/docs/fonts/fontawesome-webfont.woff +0 -0
- package/docs/fonts/fontawesome-webfont.woff2 +0 -0
- package/docs/fonts/ionicons.eot +0 -0
- package/docs/fonts/ionicons.svg +0 -2090
- package/docs/fonts/ionicons.ttf +0 -0
- package/docs/fonts/ionicons.woff +0 -0
- package/docs/fonts/ionicons.woff2 +0 -0
- package/docs/fonts/roboto-v15-latin-300.eot +0 -0
- package/docs/fonts/roboto-v15-latin-300.svg +0 -314
- package/docs/fonts/roboto-v15-latin-300.ttf +0 -0
- package/docs/fonts/roboto-v15-latin-300.woff +0 -0
- package/docs/fonts/roboto-v15-latin-300.woff2 +0 -0
- package/docs/fonts/roboto-v15-latin-700.eot +0 -0
- package/docs/fonts/roboto-v15-latin-700.svg +0 -310
- package/docs/fonts/roboto-v15-latin-700.ttf +0 -0
- package/docs/fonts/roboto-v15-latin-700.woff +0 -0
- package/docs/fonts/roboto-v15-latin-700.woff2 +0 -0
- package/docs/fonts/roboto-v15-latin-italic.eot +0 -0
- package/docs/fonts/roboto-v15-latin-italic.svg +0 -323
- package/docs/fonts/roboto-v15-latin-italic.ttf +0 -0
- package/docs/fonts/roboto-v15-latin-italic.woff +0 -0
- package/docs/fonts/roboto-v15-latin-italic.woff2 +0 -0
- package/docs/fonts/roboto-v15-latin-regular.eot +0 -0
- package/docs/fonts/roboto-v15-latin-regular.svg +0 -308
- package/docs/fonts/roboto-v15-latin-regular.ttf +0 -0
- package/docs/fonts/roboto-v15-latin-regular.woff +0 -0
- package/docs/fonts/roboto-v15-latin-regular.woff2 +0 -0
- package/docs/graph/dependencies.svg +0 -870
- package/docs/images/compodoc-vectorise-inverted.png +0 -0
- package/docs/images/compodoc-vectorise-inverted.svg +0 -201
- package/docs/images/compodoc-vectorise.png +0 -0
- package/docs/images/compodoc-vectorise.svg +0 -201
- package/docs/images/coverage-badge-documentation.svg +0 -9
- package/docs/images/coverage-badge.svg +0 -9
- package/docs/images/favicon.ico +0 -0
- package/docs/index.html +0 -233
- package/docs/injectables/AppConfigProvider.html +0 -411
- package/docs/injectables/AuthService.html +0 -1016
- package/docs/injectables/ChatArchivedConversationsHandler.html +0 -1832
- package/docs/injectables/ChatContactsSynchronizer.html +0 -841
- package/docs/injectables/ChatConversationHandler.html +0 -1960
- package/docs/injectables/ChatConversationsHandler.html +0 -2584
- package/docs/injectables/ChatManager.html +0 -1779
- package/docs/injectables/ChatPresenceHandler.html +0 -1187
- package/docs/injectables/CustomTranslateService.html +0 -496
- package/docs/injectables/DatabaseProvider.html +0 -1444
- package/docs/injectables/GroupService.html +0 -1458
- package/docs/injectables/MessagingService.html +0 -1165
- package/docs/injectables/NavProxyService.html +0 -1028
- package/docs/injectables/TiledeskConversationProvider.html +0 -945
- package/docs/injectables/UploadService.html +0 -791
- package/docs/injectables/UserService.html +0 -1612
- package/docs/js/compodoc.js +0 -14
- package/docs/js/lazy-load-graphs.js +0 -44
- package/docs/js/libs/EventDispatcher.js +0 -5
- package/docs/js/libs/bootstrap-native.js +0 -2
- package/docs/js/libs/clipboard.min.js +0 -7
- package/docs/js/libs/custom-elements-es5-adapter.js +0 -15
- package/docs/js/libs/custom-elements.min.js +0 -38
- package/docs/js/libs/d3.v3.min.js +0 -2
- package/docs/js/libs/deep-iterator.js +0 -2
- package/docs/js/libs/es6-shim.min.js +0 -11
- package/docs/js/libs/htmlparser.js +0 -23
- package/docs/js/libs/innersvg.js +0 -9
- package/docs/js/libs/lit-html.js +0 -1
- package/docs/js/libs/prism.js +0 -14
- package/docs/js/libs/promise.min.js +0 -6
- package/docs/js/libs/svg-pan-zoom.min.js +0 -3
- package/docs/js/libs/tablesort.min.js +0 -6
- package/docs/js/libs/tablesort.number.min.js +0 -6
- package/docs/js/libs/vis.min.js +0 -46
- package/docs/js/libs/zepto.min.js +0 -2
- package/docs/js/menu-wc.js +0 -594
- package/docs/js/menu.js +0 -261
- package/docs/js/routes.js +0 -280
- package/docs/js/search/lunr.min.js +0 -6
- package/docs/js/search/search-lunr.js +0 -67
- package/docs/js/search/search.js +0 -268
- package/docs/js/search/search_index.js +0 -4
- package/docs/js/sourceCode.js +0 -58
- package/docs/js/svg-pan-zoom.controls.js +0 -53
- package/docs/js/tabs.js +0 -21
- package/docs/js/tree.js +0 -147
- package/docs/license.html +0 -664
- package/docs/miscellaneous/functions.html +0 -2417
- package/docs/miscellaneous/variables.html +0 -994
- package/docs/modules/AppModule/dependencies.svg +0 -454
- package/docs/modules/AppModule.html +0 -967
- package/docs/modules/ArchivedConversationsPageModule/dependencies.svg +0 -50
- package/docs/modules/ArchivedConversationsPageModule.html +0 -225
- package/docs/modules/DettaglioConversazionePageModule/dependencies.svg +0 -66
- package/docs/modules/DettaglioConversazionePageModule.html +0 -256
- package/docs/modules/InfoAdvancedPageModule/dependencies.svg +0 -50
- package/docs/modules/InfoAdvancedPageModule.html +0 -225
- package/docs/modules/InfoConversationPageModule/dependencies.svg +0 -50
- package/docs/modules/InfoConversationPageModule.html +0 -227
- package/docs/modules/InfoUserPageModule/dependencies.svg +0 -50
- package/docs/modules/InfoUserPageModule.html +0 -225
- package/docs/modules/ListaConversazioniPageModule/dependencies.svg +0 -66
- package/docs/modules/ListaConversazioniPageModule.html +0 -255
- package/docs/modules/LoginModule/dependencies.svg +0 -66
- package/docs/modules/LoginModule.html +0 -253
- package/docs/modules/PlaceholderPageModule/dependencies.svg +0 -66
- package/docs/modules/PlaceholderPageModule.html +0 -253
- package/docs/modules/PopoverPageModule/dependencies.svg +0 -66
- package/docs/modules/PopoverPageModule.html +0 -253
- package/docs/modules/PopoverProfilePageModule/dependencies.svg +0 -66
- package/docs/modules/PopoverProfilePageModule.html +0 -253
- package/docs/modules/ProfilePageModule/dependencies.svg +0 -66
- package/docs/modules/ProfilePageModule.html +0 -253
- package/docs/modules/RegisterModule/dependencies.svg +0 -66
- package/docs/modules/RegisterModule.html +0 -253
- package/docs/modules/ResetpwdModule/dependencies.svg +0 -66
- package/docs/modules/ResetpwdModule.html +0 -253
- package/docs/modules/UpdateImageProfilePageModule/dependencies.svg +0 -66
- package/docs/modules/UpdateImageProfilePageModule.html +0 -253
- package/docs/modules/UsersModule/dependencies.svg +0 -66
- package/docs/modules/UsersModule.html +0 -253
- package/docs/modules.html +0 -379
- package/docs/overview.html +0 -1033
- package/docs/styles/bootstrap-card.css +0 -219
- package/docs/styles/bootstrap.min.css +0 -5
- package/docs/styles/compodoc.css +0 -996
- package/docs/styles/font-awesome.min.css +0 -4
- package/docs/styles/ionicons.min.css +0 -11
- package/docs/styles/laravel.css +0 -69
- package/docs/styles/material.css +0 -109
- package/docs/styles/original.css +0 -47
- package/docs/styles/postmark.css +0 -224
- package/docs/styles/prism.css +0 -267
- package/docs/styles/readthedocs.css +0 -108
- package/docs/styles/reset.css +0 -48
- package/docs/styles/stripe.css +0 -65
- package/docs/styles/style.css +0 -7
- package/docs/styles/tablesort.css +0 -33
- package/docs/styles/vagrant.css +0 -96
- package/firebase-functions/.firebaserc +0 -5
- package/firebase-functions/firebase.json +0 -1
- package/firebase-functions/functions/index.js +0 -208
- package/firebase-functions/functions/package.json +0 -9
- package/google-services.json +0 -42
- package/hooks/README.md +0 -196
- package/resources/android/icon/drawable-hdpi-icon.png +0 -0
- package/resources/android/icon/drawable-ldpi-icon.png +0 -0
- package/resources/android/icon/drawable-mdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xhdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
- package/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/icon.png +0 -0
- package/resources/icon.png.md5 +0 -1
- package/resources/ios/icon/icon-1024.png +0 -0
- package/resources/ios/icon/icon-40.png +0 -0
- package/resources/ios/icon/icon-40@2x.png +0 -0
- package/resources/ios/icon/icon-40@3x.png +0 -0
- package/resources/ios/icon/icon-50.png +0 -0
- package/resources/ios/icon/icon-50@2x.png +0 -0
- package/resources/ios/icon/icon-60.png +0 -0
- package/resources/ios/icon/icon-60@2x.png +0 -0
- package/resources/ios/icon/icon-60@3x.png +0 -0
- package/resources/ios/icon/icon-72.png +0 -0
- package/resources/ios/icon/icon-72@2x.png +0 -0
- package/resources/ios/icon/icon-76.png +0 -0
- package/resources/ios/icon/icon-76@2x.png +0 -0
- package/resources/ios/icon/icon-83.5@2x.png +0 -0
- package/resources/ios/icon/icon-small.png +0 -0
- package/resources/ios/icon/icon-small@2x.png +0 -0
- package/resources/ios/icon/icon-small@3x.png +0 -0
- package/resources/ios/icon/icon.png +0 -0
- package/resources/ios/icon/icon@2x.png +0 -0
- package/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
- package/resources/ios/splash/Default-667h.png +0 -0
- package/resources/ios/splash/Default-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Landscape~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Portrait~ipad.png +0 -0
- package/resources/ios/splash/Default@2x~iphone.png +0 -0
- package/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
- package/resources/ios/splash/Default~iphone.png +0 -0
- package/resources/splash.png +0 -0
- package/resources/splash.png.md5 +0 -1
- package/server.js +0 -7
- package/src/app/app.html +0 -56
- package/src/app/app.scss +0 -236
- package/src/app/main.ts +0 -9
- package/src/assets/chat-background.jpg +0 -0
- package/src/assets/chat21-ionic-pattern-2.svg +0 -5110
- package/src/assets/chat21-ionic-pattern.png +0 -0
- package/src/assets/chat21-ionic-pattern.svg +0 -1
- package/src/assets/download.svg +0 -1
- package/src/assets/dummyDump.sql +0 -1
- package/src/assets/icon/favicon_old.ico +0 -0
- package/src/assets/img/c21-down-gray.svg +0 -1
- package/src/assets/img/chat21-icon.png +0 -0
- package/src/assets/img/f21ico-attached.svg +0 -1
- package/src/assets/img/f21ico-close.svg +0 -1
- package/src/assets/img/f21ico-photo.svg +0 -1
- package/src/assets/img/ic_keyboard_arrow_down_black_24px.svg +0 -4
- package/src/assets/img/ic_keyboard_arrow_down_white_24px.svg +0 -4
- package/src/assets/img/icon.png +0 -0
- package/src/assets/message-mine.png +0 -0
- package/src/assets/message-other.png +0 -0
- package/src/assets/pling.mp3 +0 -0
- package/src/assets/splash.png +0 -0
- package/src/declarations.d.ts +0 -14
- package/src/directives/autosize/autosize.ts +0 -82
- package/src/environments/environment.pre.ts +0 -22
- package/src/environments/environment.prod.ts +0 -22
- package/src/environments/environment.ts +0 -21
- package/src/pages/_DetailPage.ts +0 -1
- package/src/pages/_MasterPage.ts +0 -1
- package/src/pages/archived-conversations/archived-conversations.html +0 -32
- package/src/pages/archived-conversations/archived-conversations.module.ts +0 -13
- package/src/pages/archived-conversations/archived-conversations.scss +0 -153
- package/src/pages/archived-conversations/archived-conversations.ts +0 -121
- package/src/pages/authentication/login/login.html +0 -58
- package/src/pages/authentication/login/login.module.ts +0 -16
- package/src/pages/authentication/login/login.scss +0 -121
- package/src/pages/authentication/login/login.ts +0 -221
- package/src/pages/authentication/register/register.html +0 -88
- package/src/pages/authentication/register/register.module.ts +0 -16
- package/src/pages/authentication/register/register.scss +0 -95
- package/src/pages/authentication/register/register.ts +0 -122
- package/src/pages/authentication/resetpwd/resetpwd.html +0 -40
- package/src/pages/authentication/resetpwd/resetpwd.module.ts +0 -16
- package/src/pages/authentication/resetpwd/resetpwd.scss +0 -102
- package/src/pages/authentication/resetpwd/resetpwd.ts +0 -93
- package/src/pages/components/chatBubble_old/chatBubble.scss +0 -83
- package/src/pages/components/chatBubble_old/chatBubble.ts +0 -30
- package/src/pages/components/elasticTextarea_old.ts +0 -46
- package/src/pages/dettaglio-conversazione/dettaglio-conversazione.html +0 -261
- package/src/pages/dettaglio-conversazione/dettaglio-conversazione.module.ts +0 -19
- package/src/pages/dettaglio-conversazione/dettaglio-conversazione.scss +0 -701
- package/src/pages/dettaglio-conversazione/dettaglio-conversazione.ts +0 -1395
- package/src/pages/index.ts +0 -5
- package/src/pages/info-advanced/info-advanced.html +0 -90
- package/src/pages/info-advanced/info-advanced.module.ts +0 -13
- package/src/pages/info-advanced/info-advanced.scss +0 -196
- package/src/pages/info-advanced/info-advanced.ts +0 -44
- package/src/pages/info-conversation/info-conversation.html +0 -225
- package/src/pages/info-conversation/info-conversation.module.ts +0 -15
- package/src/pages/info-conversation/info-conversation.scss +0 -444
- package/src/pages/info-conversation/info-conversation.ts +0 -1233
- package/src/pages/info-message/info-message.html +0 -74
- package/src/pages/info-message/info-message.module.ts +0 -13
- package/src/pages/info-message/info-message.scss +0 -216
- package/src/pages/info-message/info-message.ts +0 -89
- package/src/pages/info-user/info-user.html +0 -89
- package/src/pages/info-user/info-user.module.ts +0 -13
- package/src/pages/info-user/info-user.scss +0 -187
- package/src/pages/info-user/info-user.ts +0 -177
- package/src/pages/lista-conversazioni/lista-conversazioni.html +0 -88
- package/src/pages/lista-conversazioni/lista-conversazioni.module.ts +0 -18
- package/src/pages/lista-conversazioni/lista-conversazioni.scss +0 -245
- package/src/pages/lista-conversazioni/lista-conversazioni.ts +0 -736
- package/src/pages/placeholder/placeholder.html +0 -3
- package/src/pages/placeholder/placeholder.module.ts +0 -16
- package/src/pages/placeholder/placeholder.scss +0 -23
- package/src/pages/placeholder/placeholder.ts +0 -18
- package/src/pages/popover/popover.html +0 -27
- package/src/pages/popover/popover.module.ts +0 -16
- package/src/pages/popover/popover.scss +0 -23
- package/src/pages/popover/popover.ts +0 -95
- package/src/pages/popover-profile/popover-profile.html +0 -20
- package/src/pages/popover-profile/popover-profile.module.ts +0 -16
- package/src/pages/popover-profile/popover-profile.scss +0 -10
- package/src/pages/popover-profile/popover-profile.ts +0 -40
- package/src/pages/profile/profile.html +0 -54
- package/src/pages/profile/profile.module.ts +0 -16
- package/src/pages/profile/profile.scss +0 -45
- package/src/pages/profile/profile.ts +0 -108
- package/src/pages/update-image-profile/update-image-profile.html +0 -39
- package/src/pages/update-image-profile/update-image-profile.module.ts +0 -16
- package/src/pages/update-image-profile/update-image-profile.scss +0 -50
- package/src/pages/update-image-profile/update-image-profile.ts +0 -111
- package/src/pages/users/users.html +0 -55
- package/src/pages/users/users.module.ts +0 -16
- package/src/pages/users/users.scss +0 -10
- package/src/pages/users/users.ts +0 -222
- package/src/providers/app-config/app-config.ts +0 -33
- package/src/providers/auth-service.ts +0 -140
- package/src/providers/canned-responses-service/canned-responses-service.ts +0 -57
- package/src/providers/chat-archived-conversations-handler.ts +0 -283
- package/src/providers/chat-contacts-synchronizer.ts +0 -179
- package/src/providers/chat-conversation-handler.ts +0 -547
- package/src/providers/chat-conversations-handler.ts +0 -519
- package/src/providers/chat-manager/chat-manager.ts +0 -246
- package/src/providers/chat-presence-handler.ts +0 -188
- package/src/providers/database/database.ts +0 -214
- package/src/providers/group/group.ts +0 -243
- package/src/providers/messaging-service.ts +0 -267
- package/src/providers/nav-proxy.ts +0 -104
- package/src/providers/tiledesk-conversation/tiledesk-conversation.ts +0 -134
- package/src/providers/translate-service.ts +0 -61
- package/src/providers/upload-service/upload-service.ts +0 -117
- package/src/providers/user/user.ts +0 -320
- package/src/service-worker.js +0 -30
- package/src/utils/constants.ts +0 -73
- package/src/utils/utils.ts +0 -548
- package/src/videochat.php +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,213 +1,638 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
###
|
|
4
|
-
-
|
|
5
|
-
|
|
6
|
-
###
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
###
|
|
24
|
-
-
|
|
25
|
-
|
|
26
|
-
###
|
|
27
|
-
-
|
|
28
|
-
|
|
29
|
-
###
|
|
30
|
-
- bug
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
-
|
|
46
|
-
|
|
47
|
-
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
-
|
|
57
|
-
|
|
58
|
-
###
|
|
59
|
-
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
-
|
|
63
|
-
|
|
64
|
-
###
|
|
65
|
-
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
###
|
|
71
|
-
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
- bug
|
|
78
|
-
|
|
79
|
-
###
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
-
|
|
91
|
-
|
|
92
|
-
###
|
|
93
|
-
-
|
|
94
|
-
|
|
95
|
-
###
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
-
|
|
111
|
-
|
|
112
|
-
###
|
|
113
|
-
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
###
|
|
131
|
-
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
-
|
|
137
|
-
-
|
|
138
|
-
-
|
|
139
|
-
-
|
|
140
|
-
-
|
|
141
|
-
-
|
|
142
|
-
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
146
|
-
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
-
|
|
150
|
-
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
-
|
|
161
|
-
-
|
|
162
|
-
|
|
163
|
-
###
|
|
164
|
-
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
-
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
|
|
177
|
-
-
|
|
178
|
-
-
|
|
179
|
-
-
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
-
|
|
186
|
-
-
|
|
187
|
-
-
|
|
188
|
-
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
|
|
192
|
-
-
|
|
193
|
-
-
|
|
194
|
-
-
|
|
195
|
-
-
|
|
196
|
-
|
|
197
|
-
-
|
|
198
|
-
-
|
|
199
|
-
|
|
200
|
-
-
|
|
201
|
-
-
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
### 0.
|
|
205
|
-
-
|
|
206
|
-
-
|
|
207
|
-
-
|
|
208
|
-
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
-
|
|
212
|
-
-
|
|
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
|