quickblox-react-ui-kit 0.2.4 → 0.2.6-patch
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/README.md +3 -2
- package/dist/{Presentation/Views/Base → CommonTypes}/BaseViewModel.d.ts +22 -6
- package/dist/CommonTypes/FunctionResult.d.ts +3 -1
- package/dist/Data/dto/message/RemoteMessageDTO.d.ts +3 -0
- package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts +2 -0
- package/dist/Data/repository/DialogsRepository.d.ts +2 -1
- package/dist/Data/repository/EventMessagesRepository.d.ts +1 -0
- package/dist/Data/repository/MessagesRepository.d.ts +2 -2
- package/dist/Data/source/local/ILocalDataSource.d.ts +1 -1
- package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts +1 -0
- package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +6 -0
- package/dist/Domain/entity/MessageEntity.d.ts +3 -0
- package/dist/Domain/entity/NotificationTypes.d.ts +1 -0
- package/dist/Domain/repository/IDialogsRepository.d.ts +2 -1
- package/dist/Domain/repository/IMessagesRepository.d.ts +2 -2
- package/dist/Domain/use_cases/CreateDialogUseCase.d.ts +2 -1
- package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts +13 -0
- package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts +2 -1
- package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts +2 -1
- package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts +10 -0
- package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts +1 -0
- package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts +2 -1
- package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts +1 -1
- package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts +1 -1
- package/dist/Presentation/{components/UI/Dialogs → Views}/CreateDialog/CreateDialog.d.ts +1 -1
- package/dist/Presentation/Views/CreateDialogFlow/CreateNewDialogFlow.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts +8 -0
- package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts +11 -0
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/AIMessageWidget.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +22 -0
- package/dist/Presentation/Views/Dialog/AttachmentMessage/AttachmentMessage.d.ts +7 -0
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AudioAttachmentComponent/AudioAttachmentComponent.d.ts +1 -1
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog/ContextMenu}/ContextMenu.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/ContextMenu/MessageContextMenu/MessageContextMenu.d.ts +14 -0
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/DefaultAttachmentComponent/DefaultAttachmentComponent.d.ts +1 -0
- package/dist/Presentation/Views/Dialog/Dialog.d.ts +22 -0
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +12 -0
- package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts +16 -0
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/DropDownMenu/DropDownMenu.d.ts +2 -3
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +12 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/ItemForListComponent/ItemDialogList.d.ts +14 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +8 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +13 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +9 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +10 -0
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/ImageAttachmentComponent/ImageAttachmentComponent.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/IncomingForwardedRepliedMessage/IncomingForwardedRepliedMessage.d.ts +25 -0
- package/dist/Presentation/Views/Dialog/IncomingMessage/AttachmentContentComponent/AttachmentContentComponent.d.ts +8 -0
- package/dist/Presentation/{components/UI/Dialogs/MessagesView/InComingMessage → Views/Dialog/IncomingMessage}/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts +3 -0
- package/dist/Presentation/Views/Dialog/IncomingMessage/IncomingMessage.d.ts +29 -0
- package/dist/Presentation/Views/Dialog/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +10 -0
- package/dist/Presentation/Views/Dialog/Message/Message.d.ts +22 -0
- package/dist/Presentation/Views/Dialog/MessageInput/MessageInput.d.ts +21 -0
- package/dist/Presentation/Views/Dialog/OutgoingForwardedRepliedMessage/OutgoingForwardedRepliedMessage.d.ts +17 -0
- package/dist/Presentation/Views/Dialog/OutgoingMessage/OutgoingMessage.d.ts +14 -0
- package/dist/Presentation/Views/Dialog/RenderDialogHeaderNavigator/RenderDialogHeaderNavigator.d.ts +9 -0
- package/dist/Presentation/Views/Dialog/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +8 -0
- package/dist/Presentation/Views/Dialog/ReplyMessagePreview/ReplyMessagePreview.d.ts +11 -0
- package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +7 -0
- package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +7 -0
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/VideoAttachmentComponent/VideoAttachmentComponent.d.ts +1 -1
- package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +8 -0
- package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +3 -3
- package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts +4 -0
- package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +16 -0
- package/dist/Presentation/{components/UI/Dialogs/DialogInformation → Views/DialogInfo}/DialogMemberButton/DialogMembersButton.d.ts +1 -1
- package/dist/Presentation/{components/UI/Dialogs/DialogInformation → Views/DialogInfo}/UsersList/SingleUser/SingleUser.d.ts +1 -1
- package/dist/Presentation/{components/UI/Dialogs/DialogInformation → Views/DialogInfo}/UsersList/UsersList.d.ts +1 -1
- package/dist/Presentation/{components/UI/Dialogs/DialogInformation → Views/DialogInfo}/UsersList/UsersListViewModel.d.ts +3 -3
- package/dist/Presentation/{components/UI/Dialogs/DialogInformation → Views/DialogInfo}/UsersList/useUsersListViewModel.d.ts +1 -1
- package/dist/Presentation/Views/{Dialogs/Dialogs.d.ts → DialogList/DialogList.d.ts} +8 -8
- package/dist/Presentation/Views/{Dialogs/DialogViewModel.d.ts → DialogList/DialogListViewModel.d.ts} +2 -2
- package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts +4 -0
- package/dist/Presentation/{components/UI/Dialogs/HeaderDialogs/HeaderDialogs.d.ts → Views/DialogListHeader/DialogListHeader.d.ts} +6 -6
- package/dist/Presentation/{components/UI/Dialogs → Views}/EditDialog/EditDialog.d.ts +2 -2
- package/dist/Presentation/{components/UI/Dialogs → Views}/EditDialog/UserAvatar/UserAvatar.d.ts +2 -2
- package/dist/Presentation/{components/UI/Dialogs → Views}/InviteMembers/InviteMembers.d.ts +2 -2
- package/dist/Presentation/{components/UI/Dialogs → Views}/InviteMembers/InviteMembersViewModel.d.ts +3 -3
- package/dist/Presentation/{components/UI/Dialogs → Views}/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +1 -1
- package/dist/Presentation/{components/UI/Dialogs → Views}/InviteMembers/InviteUsersResultViewModel.d.ts +1 -1
- package/dist/Presentation/{components/UI/Dialogs → Views}/MembersList/MembersList.d.ts +2 -2
- package/dist/Presentation/{components/UI/Dialogs → Views}/PreviewDialog/PreviewDialog.d.ts +2 -2
- package/dist/Presentation/{components/UI/Dialogs → Views}/PreviewDialog/PreviewDialogViewModel.d.ts +2 -2
- package/dist/Presentation/{components/UI/Dialogs → Views}/YesNoQuestion/YesNoQuestion.d.ts +1 -1
- package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +1 -1
- package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +1 -1
- package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +1 -1
- package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +1 -1
- package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +1 -1
- package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +1 -1
- package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +1 -1
- package/dist/Presentation/{components/layouts → layouts}/Desktop/DesktopLayout.d.ts +1 -1
- package/dist/Presentation/{components/layouts → layouts}/Desktop/QuickBloxUIKitDesktopLayout.d.ts +3 -2
- package/dist/Presentation/{components/layouts → layouts}/TestStage/LoginView/Login.d.ts +1 -1
- package/dist/Presentation/{components/providers → providers}/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +6 -6
- package/dist/Presentation/{components/providers → providers}/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts +1 -1
- package/dist/Presentation/{components/providers → providers}/QuickBloxUIKitProvider/useQBConnection.d.ts +1 -1
- package/dist/QBconfig.d.ts +2 -0
- package/dist/index-ui.d.ts +22 -18
- package/dist/index-ui.js +1331 -649
- package/dist/utils/utils.d.ts +1 -1
- package/global.d.ts +23 -14
- package/package.json +26 -2
- package/.prettierignore +0 -4
- package/.prettierrc +0 -10
- package/dist/Presentation/Views/Dialogs/useDialogsViewModel.d.ts +0 -4
- package/dist/Presentation/components/UI/Dialogs/DialogInformation/DialogInformation.d.ts +0 -16
- package/dist/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.d.ts +0 -14
- package/dist/Presentation/components/UI/Dialogs/MessagesView/InComingMessage/InComingMessage.d.ts +0 -17
- package/dist/Presentation/components/UI/Dialogs/MessagesView/MessagesView.d.ts +0 -19
- package/dist/Presentation/components/UI/Dialogs/MessagesView/MessagesViewModel.d.ts +0 -14
- package/dist/Presentation/components/UI/Dialogs/MessagesView/OutGoingMessage/OutGoingMessage.d.ts +0 -9
- package/dist/Presentation/components/UI/Dialogs/MessagesView/useMessagesViewModel.d.ts +0 -4
- package/public/favicon.ico +0 -0
- package/public/index.html +0 -47
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +0 -25
- package/public/quickblox.js +0 -54609
- package/public/robots.txt +0 -3
- package/src/App.scss +0 -0
- package/src/App.tsx +0 -246
- package/src/CommonTypes/FunctionResult.ts +0 -63
- package/src/Data/DefaultConfigurations.ts +0 -333
- package/src/Data/Stubs.ts +0 -1131
- package/src/Data/dto/dialog/LocalDialogDTO.ts +0 -42
- package/src/Data/dto/dialog/LocalDialogsDTO.ts +0 -21
- package/src/Data/dto/dialog/RemoteDialogDTO.ts +0 -58
- package/src/Data/dto/dialog/RemoteDialogsDTO.ts +0 -21
- package/src/Data/dto/file/LocalFileDTO.ts +0 -26
- package/src/Data/dto/file/RemoteFileDTO.ts +0 -26
- package/src/Data/dto/message/LocalMessageDTO.ts +0 -51
- package/src/Data/dto/message/LocalMessagesDTO.ts +0 -21
- package/src/Data/dto/message/RemoteMessageDTO.ts +0 -51
- package/src/Data/dto/message/RemoteMessagesDTO.ts +0 -21
- package/src/Data/dto/user/LocalUserDTO.ts +0 -37
- package/src/Data/dto/user/LocalUsersDTO.ts +0 -23
- package/src/Data/dto/user/RemoteUserDTO.ts +0 -37
- package/src/Data/dto/user/RemoteUsersDTO.ts +0 -21
- package/src/Data/mapper/DialogLocalDTOMapper.ts +0 -742
- package/src/Data/mapper/DialogRemoteDTOMapper.ts +0 -777
- package/src/Data/mapper/FileLocalDTOMapper.ts +0 -253
- package/src/Data/mapper/FileRemoteDTOMapper.ts +0 -265
- package/src/Data/mapper/IMapper.ts +0 -14
- package/src/Data/mapper/MessageLocalDTOMapper.ts +0 -426
- package/src/Data/mapper/MessageRemoteDTOMapper.ts +0 -432
- package/src/Data/mapper/UserLocalDTOMapper.ts +0 -381
- package/src/Data/mapper/UserRemoteDTOMapper.ts +0 -393
- package/src/Data/repository/ConnectionRepository.ts +0 -144
- package/src/Data/repository/DialogsRepository.ts +0 -422
- package/src/Data/repository/EventMessagesRepository.ts +0 -291
- package/src/Data/repository/FileRepository.ts +0 -110
- package/src/Data/repository/MessagesRepository.ts +0 -288
- package/src/Data/repository/UsersRepository.ts +0 -324
- package/src/Data/source/AISource.ts +0 -133
- package/src/Data/source/exception/LocalDataSourceException.ts +0 -17
- package/src/Data/source/exception/MapperDTOException.ts +0 -19
- package/src/Data/source/exception/RemoteDataSourceException.ts +0 -28
- package/src/Data/source/exception/RepositoryException.ts +0 -27
- package/src/Data/source/local/ChatLocalStorageDataSource.ts +0 -262
- package/src/Data/source/local/ILocalDataSource.ts +0 -45
- package/src/Data/source/local/ILocalFileDataSource.ts +0 -11
- package/src/Data/source/local/LocalDataSource.ts +0 -377
- package/src/Data/source/local/LocalFileDataSource.ts +0 -22
- package/src/Data/source/remote/IRemoteDataSource.ts +0 -112
- package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +0 -418
- package/src/Data/source/remote/Mapper/FileDTOMapper.ts +0 -276
- package/src/Data/source/remote/Mapper/IDTOMapper.ts +0 -4
- package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +0 -452
- package/src/Data/source/remote/Mapper/UserDTOMapper.ts +0 -344
- package/src/Data/source/remote/RemoteDataSource.ts +0 -1392
- package/src/Domain/entity/Chat.ts +0 -4
- package/src/Domain/entity/ChatMessageAttachmentEntity.ts +0 -15
- package/src/Domain/entity/CustomDataEntity.ts +0 -3
- package/src/Domain/entity/DialogEntity.ts +0 -15
- package/src/Domain/entity/DialogEventInfo.ts +0 -15
- package/src/Domain/entity/DialogTypes.ts +0 -7
- package/src/Domain/entity/EventMessageType.ts +0 -7
- package/src/Domain/entity/FileEntity.ts +0 -11
- package/src/Domain/entity/FileTypes.ts +0 -9
- package/src/Domain/entity/GroupDialogEntity.ts +0 -54
- package/src/Domain/entity/LastMessageEntity.ts +0 -5
- package/src/Domain/entity/MessageEntity.ts +0 -25
- package/src/Domain/entity/NotificationTypes.ts +0 -7
- package/src/Domain/entity/PrivateDialogEntity.ts +0 -46
- package/src/Domain/entity/PublicDialogEntity.ts +0 -80
- package/src/Domain/entity/UserEntity.ts +0 -22
- package/src/Domain/exception/domain/DomainExecption.ts +0 -5
- package/src/Domain/repository/IDialogsRepository.ts +0 -40
- package/src/Domain/repository/IFileRepository.ts +0 -9
- package/src/Domain/repository/IMessagesRepository.ts +0 -28
- package/src/Domain/repository/IUsersRepository.ts +0 -13
- package/src/Domain/repository/Pagination.ts +0 -48
- package/src/Domain/use_cases/CreateDialogUseCase.ts +0 -73
- package/src/Domain/use_cases/GetAllDialogsUseCase.ts +0 -20
- package/src/Domain/use_cases/GetAllDialogsUseCaseWithMock.ts +0 -45
- package/src/Domain/use_cases/GetAllMessagesForDialog.ts +0 -61
- package/src/Domain/use_cases/GetAllUsersUseCase.ts +0 -34
- package/src/Domain/use_cases/GetDialogByIdUseCase.ts +0 -28
- package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +0 -22
- package/src/Domain/use_cases/LeaveDialogUseCase.ts +0 -109
- package/src/Domain/use_cases/RemoveUsersFromTheDialogUseCase.ts +0 -103
- package/src/Domain/use_cases/SendTextMessageUseCase.ts +0 -26
- package/src/Domain/use_cases/SubscribeToDialogEventsUseCase.ts +0 -141
- package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.ts +0 -69
- package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.ts +0 -61
- package/src/Domain/use_cases/SyncDialogsUseCase.ts +0 -246
- package/src/Domain/use_cases/UpdateDialogUseCase.ts +0 -65
- package/src/Domain/use_cases/UploadFileUseCase.ts +0 -24
- package/src/Domain/use_cases/UserTypingMessageUseCase.ts +0 -51
- package/src/Domain/use_cases/ai/AIAnswerAssistUseCase.ts +0 -69
- package/src/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.ts +0 -71
- package/src/Domain/use_cases/ai/AIRephraseUseCase.ts +0 -89
- package/src/Domain/use_cases/ai/AIRephraseWithProxyUseCase.ts +0 -75
- package/src/Domain/use_cases/ai/AITranslateUseCase.ts +0 -76
- package/src/Domain/use_cases/ai/AITranslateWithProxyUseCase.ts +0 -79
- package/src/Domain/use_cases/base/BaseUseCase.ts +0 -77
- package/src/Domain/use_cases/base/IUseCase.ts +0 -5
- package/src/Domain/use_cases/base/Subscribable/ISubscribable.ts +0 -6
- package/src/Domain/use_cases/base/Subscribable/SubscriptionPerformer.ts +0 -151
- package/src/Presentation/.gitkeep +0 -0
- package/src/Presentation/Views/Base/BaseViewModel.ts +0 -90
- package/src/Presentation/Views/CreateDialogFlow/CreateNewDialogFlow.tsx +0 -188
- package/src/Presentation/Views/Dialogs/DialogViewModel.ts +0 -25
- package/src/Presentation/Views/Dialogs/Dialogs.scss +0 -76
- package/src/Presentation/Views/Dialogs/Dialogs.tsx +0 -400
- package/src/Presentation/Views/Dialogs/useDialogsViewModel.ts +0 -382
- package/src/Presentation/Views/Navigation/More.svg +0 -7
- package/src/Presentation/assets/DarkTheme.ts +0 -58
- package/src/Presentation/assets/DefaultThemes/CustomTheme.ts +0 -58
- package/src/Presentation/assets/DefaultThemes/DefaultTheme.ts +0 -58
- package/src/Presentation/assets/LightTheme.ts +0 -58
- package/src/Presentation/assets/ThemeScheme.ts +0 -83
- package/src/Presentation/assets/UiKitTheme.ts +0 -143
- package/src/Presentation/assets/fonts/.gitkeep +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Bold.woff2 +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Medium.woff2 +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.eot +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.ttf +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.woff +0 -0
- package/src/Presentation/assets/fonts/Roboto-Regular.woff2 +0 -0
- package/src/Presentation/assets/img/Artem_Koltunov_Selfi.png +0 -0
- package/src/Presentation/assets/img/bee-img.png +0 -0
- package/src/Presentation/assets/img/web-doc.png +0 -0
- package/src/Presentation/assets/styles/_fonts.scss +0 -32
- package/src/Presentation/assets/styles/_reset-styles.scss +0 -435
- package/src/Presentation/assets/styles/_theme_colors_scheme.scss +0 -56
- package/src/Presentation/assets/styles/_theme_colors_scheme_green.scss +0 -57
- package/src/Presentation/assets/styles/_theme_colors_scheme_pink.scss +0 -72
- package/src/Presentation/assets/styles/_theme_dark.scss +0 -33
- package/src/Presentation/assets/styles/_theme_light.scss +0 -33
- package/src/Presentation/assets/styles/_variables.scss +0 -2
- package/src/Presentation/components/Button.js +0 -5
- package/src/Presentation/components/Navbar.tsx +0 -45
- package/src/Presentation/components/TextInput.js +0 -10
- package/src/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.tsx +0 -40
- package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.scss +0 -0
- package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.tsx +0 -30
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.scss +0 -127
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.tsx +0 -62
- package/src/Presentation/components/UI/Dialogs/CreateDialog/CreateDialog.scss +0 -45
- package/src/Presentation/components/UI/Dialogs/CreateDialog/CreateDialog.tsx +0 -77
- package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogInformation.scss +0 -429
- package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogInformation.tsx +0 -574
- package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogMemberButton/DialogMembersButton.scss +0 -42
- package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogMemberButton/DialogMembersButton.tsx +0 -26
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/SingleUser/SingleUser.scss +0 -95
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/SingleUser/SingleUser.tsx +0 -42
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersList.scss +0 -60
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersList.tsx +0 -65
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersListViewModel.ts +0 -13
- package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/useUsersListViewModel.ts +0 -81
- package/src/Presentation/components/UI/Dialogs/EditDialog/EditDialog.scss +0 -196
- package/src/Presentation/components/UI/Dialogs/EditDialog/EditDialog.tsx +0 -277
- package/src/Presentation/components/UI/Dialogs/EditDialog/UserAvatar/UserAvatar.scss +0 -32
- package/src/Presentation/components/UI/Dialogs/EditDialog/UserAvatar/UserAvatar.tsx +0 -59
- package/src/Presentation/components/UI/Dialogs/HeaderDialogs/HeaderDialogs.scss +0 -67
- package/src/Presentation/components/UI/Dialogs/HeaderDialogs/HeaderDialogs.tsx +0 -112
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembers.scss +0 -146
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembers.tsx +0 -328
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembersViewModel.ts +0 -18
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +0 -113
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.tsx +0 -79
- package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersResultViewModel.ts +0 -12
- package/src/Presentation/components/UI/Dialogs/InviteMembers/NotFoundContent/NotFoundContent.scss +0 -37
- package/src/Presentation/components/UI/Dialogs/InviteMembers/NotFoundContent/NotFoundContent.tsx +0 -22
- package/src/Presentation/components/UI/Dialogs/InviteMembers/useInviteMembersViewModel.ts +0 -116
- package/src/Presentation/components/UI/Dialogs/MembersList/MembersList.scss +0 -128
- package/src/Presentation/components/UI/Dialogs/MembersList/MembersList.tsx +0 -93
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/AIMessageWidget.ts +0 -40
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/AIWidgetActions/AIWidgetActions.scss +0 -55
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/AIWidgetActions/AIWidgetActions.tsx +0 -122
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/ErrorMessageIcon.tsx +0 -98
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/SliderMenu.tsx +0 -172
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/Tone.ts +0 -35
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/UseDefaultAIAssistAnswerWidget.tsx +0 -83
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.tsx +0 -83
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/UseDefaultAIRephraseMessageWidget.tsx +0 -104
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.tsx +0 -102
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/UseDefaultAITranslateWidget.tsx +0 -89
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/UseDefaultAITranslateWidgetWithProxy.tsx +0 -89
- package/src/Presentation/components/UI/Dialogs/MessagesView/AIWidgets/useDefaultVoiceInputWidget.tsx +0 -87
- package/src/Presentation/components/UI/Dialogs/MessagesView/AudioAttachmentComponent/AudioAttachmentComponent.scss +0 -7
- package/src/Presentation/components/UI/Dialogs/MessagesView/AudioAttachmentComponent/AudioAttachmentComponent.tsx +0 -27
- package/src/Presentation/components/UI/Dialogs/MessagesView/ContextMenu.tsx +0 -95
- package/src/Presentation/components/UI/Dialogs/MessagesView/DefaultAttachmentComponent/DefaultAttachmentComponent.scss +0 -76
- package/src/Presentation/components/UI/Dialogs/MessagesView/DefaultAttachmentComponent/DefaultAttachmentComponent.tsx +0 -34
- package/src/Presentation/components/UI/Dialogs/MessagesView/DropDownMenu/DropDownMenu.scss +0 -84
- package/src/Presentation/components/UI/Dialogs/MessagesView/DropDownMenu/DropDownMenu.tsx +0 -105
- package/src/Presentation/components/UI/Dialogs/MessagesView/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.scss +0 -50
- package/src/Presentation/components/UI/Dialogs/MessagesView/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.tsx +0 -43
- package/src/Presentation/components/UI/Dialogs/MessagesView/ErrorToast/ErrorToast.scss +0 -26
- package/src/Presentation/components/UI/Dialogs/MessagesView/ErrorToast/ErrorToast.tsx +0 -25
- package/src/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.scss +0 -133
- package/src/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.tsx +0 -144
- package/src/Presentation/components/UI/Dialogs/MessagesView/HighLightLink/HighLightLink.scss +0 -92
- package/src/Presentation/components/UI/Dialogs/MessagesView/HighLightLink/HighLightLink.tsx +0 -128
- package/src/Presentation/components/UI/Dialogs/MessagesView/ImageAttachmentComponent/ImageAttachmentComponent.scss +0 -11
- package/src/Presentation/components/UI/Dialogs/MessagesView/ImageAttachmentComponent/ImageAttachmentComponent.tsx +0 -25
- package/src/Presentation/components/UI/Dialogs/MessagesView/InComingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.scss +0 -39
- package/src/Presentation/components/UI/Dialogs/MessagesView/InComingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.tsx +0 -26
- package/src/Presentation/components/UI/Dialogs/MessagesView/InComingMessage/InComingMessage.scss +0 -392
- package/src/Presentation/components/UI/Dialogs/MessagesView/InComingMessage/InComingMessage.tsx +0 -435
- package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesView.scss +0 -410
- package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesView.tsx +0 -1636
- package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesViewModel.ts +0 -20
- package/src/Presentation/components/UI/Dialogs/MessagesView/OutGoingMessage/OutGoingMessage.scss +0 -7
- package/src/Presentation/components/UI/Dialogs/MessagesView/OutGoingMessage/OutGoingMessage.tsx +0 -99
- package/src/Presentation/components/UI/Dialogs/MessagesView/VideoAttachmentComponent/VideoAttachmentComponent.scss +0 -11
- package/src/Presentation/components/UI/Dialogs/MessagesView/VideoAttachmentComponent/VideoAttachmentComponent.tsx +0 -33
- package/src/Presentation/components/UI/Dialogs/MessagesView/VoiceRecordingProgress/VoiceRecordingProgress.scss +0 -35
- package/src/Presentation/components/UI/Dialogs/MessagesView/VoiceRecordingProgress/VoiceRecordingProgress.tsx +0 -89
- package/src/Presentation/components/UI/Dialogs/MessagesView/useMessagesViewModel.ts +0 -475
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewAudioFile/PreviewAudioFile.scss +0 -62
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewAudioFile/PreviewAudioFile.tsx +0 -25
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDefaultFile/PreviewDefaultFile.scss +0 -61
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDefaultFile/PreviewDefaultFile.tsx +0 -32
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialog.scss +0 -100
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialog.tsx +0 -489
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialogViewModel.ts +0 -42
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewImageFile/PreviewImageFile.scss +0 -40
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewImageFile/PreviewImageFile.tsx +0 -26
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewVideoFile/PreviewVideoFile.scss +0 -62
- package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewVideoFile/PreviewVideoFile.tsx +0 -25
- package/src/Presentation/components/UI/Dialogs/YesNoQuestion/YesNoQuestion.scss +0 -35
- package/src/Presentation/components/UI/Dialogs/YesNoQuestion/YesNoQuestion.tsx +0 -89
- package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +0 -61
- package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.tsx +0 -48
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +0 -74
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.tsx +0 -72
- package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +0 -21
- package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.tsx +0 -41
- package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +0 -3
- package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.tsx +0 -41
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/Send.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.tsx +0 -39
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.svg +0 -5
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.tsx +0 -50
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.tsx +0 -20
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.tsx +0 -7
- package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Add/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/AssistAnswer.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.tsx +0 -93
- package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Download/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Like/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Send/index.tsx +0 -38
- package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Share/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/Summarize.svg +0 -6
- package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.tsx +0 -58
- package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/Tone.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/index.tsx +0 -34
- package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +0 -7
- package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.tsx +0 -38
- package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +0 -7
- package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.tsx +0 -67
- package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/User/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/IconsCommonTypes.ts +0 -6
- package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Camera/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +0 -4
- package/src/Presentation/components/UI/svgs/Icons/Media/Location/index.tsx +0 -26
- package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Media/Translate/Translate.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Translate/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +0 -7
- package/src/Presentation/components/UI/svgs/Icons/Navigation/More/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.tsx +0 -36
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Error/index.tsx +0 -36
- package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Help/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Information/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Loader/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Mention/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Sent/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.tsx +0 -38
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.tsx +0 -24
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +0 -4
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.tsx +0 -26
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.tsx +0 -35
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.tsx +0 -22
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +0 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.tsx +0 -22
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +0 -6
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.tsx +0 -24
- package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +0 -45
- package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.tsx +0 -95
- package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +0 -45
- package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.tsx +0 -97
- package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +0 -46
- package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.tsx +0 -97
- package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +0 -45
- package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.tsx +0 -85
- package/src/Presentation/components/layouts/Desktop/DesktopLayout.scss +0 -31
- package/src/Presentation/components/layouts/Desktop/DesktopLayout.tsx +0 -52
- package/src/Presentation/components/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx +0 -382
- package/src/Presentation/components/layouts/LayoutCommonTypes.ts +0 -7
- package/src/Presentation/components/layouts/TestStage/CompanyLogo/CompanyLogo.tsx +0 -27
- package/src/Presentation/components/layouts/TestStage/LoginView/Login.scss +0 -71
- package/src/Presentation/components/layouts/TestStage/LoginView/Login.tsx +0 -95
- package/src/Presentation/components/layouts/TestStage/TestStageMarkup.scss +0 -24
- package/src/Presentation/components/layouts/TestStage/TestStageMarkup.tsx +0 -1109
- package/src/Presentation/components/providers/ModalContextProvider/Modal.scss +0 -71
- package/src/Presentation/components/providers/ModalContextProvider/Modal.tsx +0 -131
- package/src/Presentation/components/providers/ModalContextProvider/ModalContextProvider.tsx +0 -38
- package/src/Presentation/components/providers/ModalContextProvider/useModal.ts +0 -39
- package/src/Presentation/components/providers/ProviderProps.ts +0 -5
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.tsx +0 -344
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/useEventMessagesRepository.ts +0 -10
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/useQBConnection.ts +0 -38
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.ts +0 -83
- package/src/Presentation/components/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.ts +0 -11
- package/src/QBconfig.ts +0 -221
- package/src/index-ui.ts +0 -77
- package/src/index.scss +0 -18
- package/src/index.tsx +0 -25
- package/src/logo.svg +0 -1
- package/src/package_artan_react_ui.json +0 -91
- package/src/package_original.json +0 -115
- package/src/qb-api-calls/index.ts +0 -581
- package/src/react-app-env.d.ts +0 -1
- package/src/setupTests.ts +0 -5
- package/src/utils/DateTimeFormatter.ts +0 -35
- package/src/utils/parse.ts +0 -74
- package/src/utils/utils.ts +0 -102
- package/tsconfig.json +0 -33
- package/typedoc.json +0 -4
- package/webpack.config.js +0 -56
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/ErrorMessageIcon.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/SliderMenu.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/Tone.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/UseDefaultAITranslateWidget.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/AIWidgets/useDefaultVoiceInputWidget.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/ErrorToast/ErrorToast.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs/MessagesView → Views/Dialog}/HighLightLink/HighLightLink.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs → Views}/InviteMembers/NotFoundContent/NotFoundContent.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs → Views}/InviteMembers/useInviteMembersViewModel.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs → Views}/PreviewDialog/PreviewAudioFile/PreviewAudioFile.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs → Views}/PreviewDialog/PreviewDefaultFile/PreviewDefaultFile.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs → Views}/PreviewDialog/PreviewImageFile/PreviewImageFile.d.ts +0 -0
- /package/dist/Presentation/{components/UI/Dialogs → Views}/PreviewDialog/PreviewVideoFile/PreviewVideoFile.d.ts +0 -0
- /package/dist/Presentation/{components/layouts → layouts}/LayoutCommonTypes.d.ts +0 -0
- /package/dist/Presentation/{components/layouts → layouts}/TestStage/CompanyLogo/CompanyLogo.d.ts +0 -0
- /package/dist/Presentation/{components/layouts → layouts}/TestStage/TestStageMarkup.d.ts +0 -0
- /package/dist/Presentation/{components/providers → providers}/ModalContextProvider/Modal.d.ts +0 -0
- /package/dist/Presentation/{components/providers → providers}/ModalContextProvider/ModalContextProvider.d.ts +0 -0
- /package/dist/Presentation/{components/providers → providers}/ModalContextProvider/useModal.d.ts +0 -0
- /package/dist/Presentation/{components/providers → providers}/ProviderProps.d.ts +0 -0
- /package/dist/Presentation/{components/providers → providers}/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts +0 -0
- /package/dist/Presentation/{components/providers → providers}/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts +0 -0
- /package/dist/Presentation/{assets → themes}/DarkTheme.d.ts +0 -0
- /package/dist/Presentation/{assets → themes}/DefaultThemes/CustomTheme.d.ts +0 -0
- /package/dist/Presentation/{assets → themes}/DefaultThemes/DefaultTheme.d.ts +0 -0
- /package/dist/Presentation/{assets → themes}/LightTheme.d.ts +0 -0
- /package/dist/Presentation/{assets → themes}/ThemeScheme.d.ts +0 -0
- /package/dist/Presentation/{assets → themes}/UiKitTheme.d.ts +0 -0
|
@@ -1,422 +0,0 @@
|
|
|
1
|
-
import { ILocalDataSource } from '../source/local/ILocalDataSource';
|
|
2
|
-
import { IRemoteDataSource } from '../source/remote/IRemoteDataSource';
|
|
3
|
-
import { DialogEntity } from '../../Domain/entity/DialogEntity';
|
|
4
|
-
|
|
5
|
-
import RepositoryException, {
|
|
6
|
-
DIALOG_ENTITY_REPOSITORY_EXCEPTION_CODE,
|
|
7
|
-
DIALOG_ENTITY_REPOSITORY_EXCEPTION_MESSAGE,
|
|
8
|
-
UNEXPECTED_REPOSITORY_EXCEPTION_CODE,
|
|
9
|
-
UNEXPECTED_REPOSITORY_EXCEPTION_MESSAGE,
|
|
10
|
-
} from '../source/exception/RepositoryException';
|
|
11
|
-
import { IDialogsRepository } from '../../Domain/repository/IDialogsRepository';
|
|
12
|
-
import {
|
|
13
|
-
LocalDataSourceException,
|
|
14
|
-
NOT_FOUND_LOCAL_DATASOURCE_EXCEPTION_CODE,
|
|
15
|
-
NOT_FOUND_LOCAL_DATASOURCE_EXCEPTION_MESSAGE,
|
|
16
|
-
UNEXPECTED_LOCAL_DATASOURCE_EXCEPTION_CODE,
|
|
17
|
-
} from '../source/exception/LocalDataSourceException';
|
|
18
|
-
import { IMapper } from '../mapper/IMapper';
|
|
19
|
-
import { DialogRemoteDTOMapper } from '../mapper/DialogRemoteDTOMapper';
|
|
20
|
-
import { RemoteDialogDTO } from '../dto/dialog/RemoteDialogDTO';
|
|
21
|
-
import { RemoteDialogsDTO } from '../dto/dialog/RemoteDialogsDTO';
|
|
22
|
-
import { DialogLocalDTOMapper } from '../mapper/DialogLocalDTOMapper';
|
|
23
|
-
import { LocalDialogDTO } from '../dto/dialog/LocalDialogDTO';
|
|
24
|
-
import { LocalDialogsDTO } from '../dto/dialog/LocalDialogsDTO';
|
|
25
|
-
import { FunctionTypeVoidToVoid } from '../../Presentation/Views/Base/BaseViewModel';
|
|
26
|
-
import { MapperDTOException } from '../source/exception/MapperDTOException';
|
|
27
|
-
import {
|
|
28
|
-
PaginatedResult,
|
|
29
|
-
Pagination,
|
|
30
|
-
} from '../../Domain/repository/Pagination';
|
|
31
|
-
import { GroupDialogEntity } from '../../Domain/entity/GroupDialogEntity';
|
|
32
|
-
import { stringifyError } from '../../utils/parse';
|
|
33
|
-
import { RemoteUserDTO } from '../dto/user/RemoteUserDTO';
|
|
34
|
-
|
|
35
|
-
export default class DialogsRepository implements IDialogsRepository {
|
|
36
|
-
private localDataStorage: ILocalDataSource;
|
|
37
|
-
|
|
38
|
-
private remoteDataSource: IRemoteDataSource;
|
|
39
|
-
|
|
40
|
-
private dialogRemoteDTOMapper: IMapper;
|
|
41
|
-
|
|
42
|
-
private dialogLocalDTOMapper: IMapper;
|
|
43
|
-
|
|
44
|
-
// eslint-disable-next-line no-useless-constructor
|
|
45
|
-
constructor(
|
|
46
|
-
localDataStorage: ILocalDataSource,
|
|
47
|
-
remoteDataSource: IRemoteDataSource,
|
|
48
|
-
) {
|
|
49
|
-
this.localDataStorage = localDataStorage;
|
|
50
|
-
this.remoteDataSource = remoteDataSource;
|
|
51
|
-
this.dialogRemoteDTOMapper = new DialogRemoteDTOMapper();
|
|
52
|
-
this.dialogLocalDTOMapper = new DialogLocalDTOMapper();
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
subscribeLocalSync(subscriber: FunctionTypeVoidToVoid): void {
|
|
56
|
-
this.localDataStorage.subscribe(subscriber);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
unsubscribeLocalSync(): void {
|
|
60
|
-
this.localDataStorage.release();
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
isLocalSynced(): Promise<boolean> {
|
|
64
|
-
return this.localDataStorage.isLocalSynced();
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
setLocalSynced(synced: boolean): void {
|
|
68
|
-
this.localDataStorage.setLocalSynced(synced);
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
async saveDialogToLocal(entity: DialogEntity): Promise<boolean> {
|
|
72
|
-
try {
|
|
73
|
-
const dto: LocalDialogDTO = await this.dialogLocalDTOMapper.fromEntity(
|
|
74
|
-
entity,
|
|
75
|
-
);
|
|
76
|
-
|
|
77
|
-
await this.localDataStorage.saveDialog(dto);
|
|
78
|
-
|
|
79
|
-
return Promise.resolve(true);
|
|
80
|
-
} catch (e) {
|
|
81
|
-
let exceptionMessage: string;
|
|
82
|
-
|
|
83
|
-
if (e instanceof MapperDTOException) {
|
|
84
|
-
exceptionMessage = `have exception: ${e.message}, description: ${e._description} `;
|
|
85
|
-
console.log(exceptionMessage);
|
|
86
|
-
} else if (e instanceof LocalDataSourceException) {
|
|
87
|
-
exceptionMessage = `have exception: ${e.message}`;
|
|
88
|
-
console.log(exceptionMessage);
|
|
89
|
-
} else {
|
|
90
|
-
exceptionMessage = `have exception: ${
|
|
91
|
-
(e as RepositoryException).message
|
|
92
|
-
}`;
|
|
93
|
-
console.log(exceptionMessage);
|
|
94
|
-
}
|
|
95
|
-
console.log('for entity: ', JSON.stringify(entity));
|
|
96
|
-
|
|
97
|
-
// eslint-disable-next-line prefer-promise-reject-errors
|
|
98
|
-
// return Promise.reject(false);
|
|
99
|
-
return Promise.reject(exceptionMessage);
|
|
100
|
-
// todo: pay attention on Promise.resolve
|
|
101
|
-
// return Promise.resolve(false);
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
async createDialogInRemote(entity: DialogEntity): Promise<DialogEntity> {
|
|
106
|
-
console.log(
|
|
107
|
-
'call createDialogInRemote in Repository with param: ',
|
|
108
|
-
JSON.stringify(entity),
|
|
109
|
-
);
|
|
110
|
-
// todo exception convert error exception
|
|
111
|
-
const remoteDialogDTO: RemoteDialogDTO =
|
|
112
|
-
await this.dialogRemoteDTOMapper.fromEntity(entity);
|
|
113
|
-
|
|
114
|
-
console.log('have remoteDialogDTO: ', JSON.stringify(remoteDialogDTO));
|
|
115
|
-
|
|
116
|
-
// todo auth exception, restricted accsess, connection faild
|
|
117
|
-
try {
|
|
118
|
-
// todo MUST uncomment
|
|
119
|
-
const resultDTO: RemoteDialogDTO =
|
|
120
|
-
await this.remoteDataSource.createDialog(remoteDialogDTO);
|
|
121
|
-
const resultEntity: DialogEntity =
|
|
122
|
-
await this.dialogRemoteDTOMapper.toEntity(resultDTO);
|
|
123
|
-
|
|
124
|
-
// todo MUST delete
|
|
125
|
-
// const resultDTO: RemoteDialogDTO = remoteDialogDTO;
|
|
126
|
-
// const resultEntity: DialogEntity =
|
|
127
|
-
// await this.dialogRemoteDTOMapper.toEntity(resultDTO);
|
|
128
|
-
|
|
129
|
-
console.log(
|
|
130
|
-
'have result entity in createDialogInRemote:',
|
|
131
|
-
JSON.stringify(resultEntity),
|
|
132
|
-
);
|
|
133
|
-
|
|
134
|
-
return Promise.resolve(resultEntity);
|
|
135
|
-
} catch (e) {
|
|
136
|
-
return Promise.reject(e);
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
async updateDialogInLocal(entity: DialogEntity): Promise<DialogEntity> {
|
|
141
|
-
console.log('call updateDialogInLocal');
|
|
142
|
-
try {
|
|
143
|
-
const dto: LocalDialogDTO = await this.dialogLocalDTOMapper.fromEntity(
|
|
144
|
-
entity,
|
|
145
|
-
);
|
|
146
|
-
|
|
147
|
-
await this.localDataStorage.updateDialog(dto);
|
|
148
|
-
const newEntity: DialogEntity = await this.dialogLocalDTOMapper.toEntity(
|
|
149
|
-
dto,
|
|
150
|
-
);
|
|
151
|
-
|
|
152
|
-
return Promise.resolve(newEntity);
|
|
153
|
-
} catch (e) {
|
|
154
|
-
return Promise.reject(e);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
// eslint-disable-next-line class-methods-use-this,@typescript-eslint/no-unused-vars
|
|
159
|
-
async updateDialogInRemote(entity: DialogEntity): Promise<DialogEntity> {
|
|
160
|
-
// todo exception convert error exception
|
|
161
|
-
const remoteDialogDTO: RemoteDialogDTO =
|
|
162
|
-
await this.dialogRemoteDTOMapper.fromEntity<
|
|
163
|
-
GroupDialogEntity,
|
|
164
|
-
RemoteDialogDTO
|
|
165
|
-
>(entity as GroupDialogEntity);
|
|
166
|
-
|
|
167
|
-
// todo auth exception, restricted accsess, connection faild
|
|
168
|
-
try {
|
|
169
|
-
const resultDTO: RemoteDialogDTO =
|
|
170
|
-
await this.remoteDataSource.updateDialog(remoteDialogDTO);
|
|
171
|
-
const resultEntity: DialogEntity =
|
|
172
|
-
await this.dialogRemoteDTOMapper.toEntity(resultDTO);
|
|
173
|
-
|
|
174
|
-
return Promise.resolve(resultEntity);
|
|
175
|
-
} catch (e) {
|
|
176
|
-
return Promise.reject(e);
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
async getDialogFromLocal(dialogId: string): Promise<DialogEntity> {
|
|
181
|
-
const dto: LocalDialogDTO = new LocalDialogDTO();
|
|
182
|
-
|
|
183
|
-
dto.id = dialogId;
|
|
184
|
-
|
|
185
|
-
let checkResult = true;
|
|
186
|
-
|
|
187
|
-
/*
|
|
188
|
-
if (dialogId === '0' || dialogId === '') {
|
|
189
|
-
checkResult = false;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
*/
|
|
193
|
-
let dialog: DialogEntity =
|
|
194
|
-
DialogRemoteDTOMapper.createDefaultDialogEntity('0');
|
|
195
|
-
|
|
196
|
-
if (checkResult) {
|
|
197
|
-
try {
|
|
198
|
-
const dtoResult: LocalDialogDTO = await this.localDataStorage.getDialog(
|
|
199
|
-
dto,
|
|
200
|
-
);
|
|
201
|
-
|
|
202
|
-
dialog = await this.dialogLocalDTOMapper.toEntity(dtoResult);
|
|
203
|
-
} catch (e) {
|
|
204
|
-
if (e instanceof LocalDataSourceException) {
|
|
205
|
-
if (e.code !== UNEXPECTED_LOCAL_DATASOURCE_EXCEPTION_CODE) {
|
|
206
|
-
// return Promise.reject(new RepositoryException(e.message, e.code));
|
|
207
|
-
return Promise.reject(
|
|
208
|
-
new RepositoryException(
|
|
209
|
-
NOT_FOUND_LOCAL_DATASOURCE_EXCEPTION_MESSAGE,
|
|
210
|
-
NOT_FOUND_LOCAL_DATASOURCE_EXCEPTION_CODE,
|
|
211
|
-
),
|
|
212
|
-
);
|
|
213
|
-
//
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
return Promise.reject(
|
|
217
|
-
new RepositoryException(
|
|
218
|
-
UNEXPECTED_REPOSITORY_EXCEPTION_MESSAGE,
|
|
219
|
-
UNEXPECTED_REPOSITORY_EXCEPTION_CODE,
|
|
220
|
-
),
|
|
221
|
-
);
|
|
222
|
-
}
|
|
223
|
-
checkResult = false;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
const prom = new Promise<DialogEntity>((resolve, reject) => {
|
|
228
|
-
if (checkResult === true) {
|
|
229
|
-
resolve(dialog);
|
|
230
|
-
} else {
|
|
231
|
-
reject(
|
|
232
|
-
new RepositoryException(
|
|
233
|
-
DIALOG_ENTITY_REPOSITORY_EXCEPTION_MESSAGE,
|
|
234
|
-
DIALOG_ENTITY_REPOSITORY_EXCEPTION_CODE,
|
|
235
|
-
),
|
|
236
|
-
);
|
|
237
|
-
}
|
|
238
|
-
});
|
|
239
|
-
|
|
240
|
-
return prom;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
async getDialogFromRemote(dialogId: string): Promise<DialogEntity> {
|
|
244
|
-
const dto: RemoteDialogDTO = new RemoteDialogDTO();
|
|
245
|
-
|
|
246
|
-
dto.id = dialogId;
|
|
247
|
-
|
|
248
|
-
// todo auth exception, restricted accsess, connection faild
|
|
249
|
-
try {
|
|
250
|
-
const resultDTO: RemoteDialogDTO = await this.remoteDataSource.getDialog(
|
|
251
|
-
dto,
|
|
252
|
-
);
|
|
253
|
-
const resultEntity: DialogEntity =
|
|
254
|
-
await this.dialogRemoteDTOMapper.toEntity(resultDTO);
|
|
255
|
-
|
|
256
|
-
return Promise.resolve(resultEntity);
|
|
257
|
-
} catch (e) {
|
|
258
|
-
return Promise.reject(e);
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
async getDialogsFromLocal(
|
|
263
|
-
pagination?: Pagination,
|
|
264
|
-
): Promise<Array<DialogEntity>> {
|
|
265
|
-
try {
|
|
266
|
-
const resultDTO: LocalDialogsDTO = await this.localDataStorage.getDialogs(
|
|
267
|
-
pagination,
|
|
268
|
-
);
|
|
269
|
-
const entyties: Array<DialogEntity> = [];
|
|
270
|
-
|
|
271
|
-
// TODO: check this loop
|
|
272
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
273
|
-
for (const item of resultDTO.dialogs) {
|
|
274
|
-
// eslint-disable-next-line no-await-in-loop
|
|
275
|
-
const entity: DialogEntity = await this.dialogLocalDTOMapper.toEntity(
|
|
276
|
-
item,
|
|
277
|
-
);
|
|
278
|
-
|
|
279
|
-
entyties.push(entity);
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
return Promise.resolve(entyties);
|
|
283
|
-
} catch (e) {
|
|
284
|
-
return Promise.reject(e);
|
|
285
|
-
}
|
|
286
|
-
/*
|
|
287
|
-
let dialogs: Array<DialogEntity> = [];
|
|
288
|
-
|
|
289
|
-
try {
|
|
290
|
-
dialogs = await this.localDataStorage.getDialogs();
|
|
291
|
-
} catch (e) {
|
|
292
|
-
if (e instanceof LocalDataSourceException) {
|
|
293
|
-
if (e.code !== UNEXPECTED_LOCAL_DATASOURCE_EXCEPTION_CODE) {
|
|
294
|
-
return Promise.reject(
|
|
295
|
-
new RepositoryException(
|
|
296
|
-
NOT_FOUND_LOCAL_DATASOURCE_EXCEPTION_MESSAGE,
|
|
297
|
-
NOT_FOUND_LOCAL_DATASOURCE_EXCEPTION_CODE,
|
|
298
|
-
),
|
|
299
|
-
);
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
return Promise.reject(
|
|
303
|
-
new RepositoryException(
|
|
304
|
-
UNEXPECTED_REPOSITORY_EXCEPTION_MESSAGE,
|
|
305
|
-
UNEXPECTED_REPOSITORY_EXCEPTION_CODE,
|
|
306
|
-
),
|
|
307
|
-
);
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
return Promise.resolve(dialogs);
|
|
312
|
-
|
|
313
|
-
*/
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
// eslint-disable-next-line class-methods-use-this
|
|
317
|
-
async getDialogsFromRemote(
|
|
318
|
-
pagination?: Pagination,
|
|
319
|
-
): Promise<PaginatedResult<DialogEntity>> {
|
|
320
|
-
// todo auth exception, restricted accsess, connection faild
|
|
321
|
-
try {
|
|
322
|
-
const resultDTO: RemoteDialogsDTO =
|
|
323
|
-
await this.remoteDataSource.getDialogs(pagination);
|
|
324
|
-
const entyties: Array<DialogEntity> = [];
|
|
325
|
-
|
|
326
|
-
// TODO: check this loop
|
|
327
|
-
// eslint-disable-next-line no-restricted-syntax
|
|
328
|
-
for (const item of resultDTO.dialogs) {
|
|
329
|
-
// eslint-disable-next-line no-await-in-loop
|
|
330
|
-
const entity: DialogEntity = await this.dialogRemoteDTOMapper.toEntity(
|
|
331
|
-
item,
|
|
332
|
-
);
|
|
333
|
-
|
|
334
|
-
entyties.push(entity);
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
// const DialogsDictionary: Record<number, DialogEntity[]> = {};
|
|
338
|
-
//
|
|
339
|
-
// DialogsDictionary[resultDTO.pagination.getCurrentPage()] = entyties;
|
|
340
|
-
|
|
341
|
-
const result: PaginatedResult<DialogEntity> = {
|
|
342
|
-
// PaginatedList: DialogsDictionary,
|
|
343
|
-
ResultData: entyties,
|
|
344
|
-
CurrentPagination: resultDTO.pagination,
|
|
345
|
-
};
|
|
346
|
-
|
|
347
|
-
return Promise.resolve(result);
|
|
348
|
-
} catch (e) {
|
|
349
|
-
return Promise.reject(e);
|
|
350
|
-
}
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
async deleteDialogFromLocal(dialogId: string): Promise<boolean> {
|
|
354
|
-
const dto: LocalDialogDTO = new LocalDialogDTO();
|
|
355
|
-
|
|
356
|
-
dto.id = dialogId;
|
|
357
|
-
try {
|
|
358
|
-
await this.localDataStorage.deleteDialog(dto);
|
|
359
|
-
|
|
360
|
-
return Promise.resolve(true);
|
|
361
|
-
} catch (e) {
|
|
362
|
-
console.log('exception in deleteDialogFromLocal: ', stringifyError(e));
|
|
363
|
-
|
|
364
|
-
return Promise.reject(e);
|
|
365
|
-
}
|
|
366
|
-
/*
|
|
367
|
-
try {
|
|
368
|
-
const resultDeleteDialog = await this.localDataStorage.deleteDialog(
|
|
369
|
-
dialogId,
|
|
370
|
-
);
|
|
371
|
-
|
|
372
|
-
return resultDeleteDialog;
|
|
373
|
-
} catch (e) {
|
|
374
|
-
return Promise.resolve(false);
|
|
375
|
-
}
|
|
376
|
-
*/
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
// eslint-disable-next-line class-methods-use-this,@typescript-eslint/no-unused-vars
|
|
380
|
-
async deleteDialogFromRemote(dialogId: string): Promise<boolean> {
|
|
381
|
-
const dto: RemoteDialogDTO = new RemoteDialogDTO();
|
|
382
|
-
|
|
383
|
-
dto.id = dialogId;
|
|
384
|
-
|
|
385
|
-
// todo auth exception, restricted accsess, connection faild
|
|
386
|
-
try {
|
|
387
|
-
await this.remoteDataSource.deleteDialog(dto);
|
|
388
|
-
|
|
389
|
-
return Promise.resolve(true);
|
|
390
|
-
} catch (e) {
|
|
391
|
-
return Promise.reject(e);
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
async deleteUsersFromDialogFromRemote(
|
|
396
|
-
dialogId: string,
|
|
397
|
-
usersIds: Array<number>,
|
|
398
|
-
): Promise<boolean> {
|
|
399
|
-
const dialogDTO: RemoteDialogDTO = new RemoteDialogDTO();
|
|
400
|
-
|
|
401
|
-
dialogDTO.id = dialogId;
|
|
402
|
-
const arrayUsersDTO: Array<RemoteUserDTO> = new Array<RemoteUserDTO>();
|
|
403
|
-
|
|
404
|
-
try {
|
|
405
|
-
for (let i = 0; i < usersIds.length; i += 1) {
|
|
406
|
-
const dto: RemoteUserDTO = new RemoteUserDTO();
|
|
407
|
-
|
|
408
|
-
dto.id = usersIds[i].toString();
|
|
409
|
-
arrayUsersDTO.push(dto);
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
await this.remoteDataSource.deleteUsersFromDialog(
|
|
413
|
-
dialogDTO,
|
|
414
|
-
arrayUsersDTO,
|
|
415
|
-
);
|
|
416
|
-
|
|
417
|
-
return Promise.resolve(true);
|
|
418
|
-
} catch (e) {
|
|
419
|
-
return Promise.reject(e);
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
}
|
|
@@ -1,291 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
// eslint-disable-next-line import/named
|
|
3
|
-
Registry,
|
|
4
|
-
SubscriptionPerformer,
|
|
5
|
-
} from '../../Domain/use_cases/base/Subscribable/SubscriptionPerformer';
|
|
6
|
-
import { RemoteDataSource } from '../source/remote/RemoteDataSource';
|
|
7
|
-
import ConnectionRepository from './ConnectionRepository';
|
|
8
|
-
import { LocalDataSource } from '../source/local/LocalDataSource';
|
|
9
|
-
import { RemoteMessageDTO } from '../dto/message/RemoteMessageDTO';
|
|
10
|
-
import { stringifyError } from '../../utils/parse';
|
|
11
|
-
import { CallBackFunction } from '../../Domain/use_cases/base/IUseCase';
|
|
12
|
-
import EventMessageType from '../../Domain/entity/EventMessageType';
|
|
13
|
-
import { IRemoteMessaging } from '../source/remote/IRemoteDataSource';
|
|
14
|
-
import { MessageEntity } from '../../Domain/entity/MessageEntity';
|
|
15
|
-
import { NotificationTypes } from '../../Domain/entity/NotificationTypes';
|
|
16
|
-
import { MessageRemoteDTOMapper } from '../mapper/MessageRemoteDTOMapper';
|
|
17
|
-
import { DialogEventInfo } from '../../Domain/entity/DialogEventInfo';
|
|
18
|
-
|
|
19
|
-
export interface IEventBus {
|
|
20
|
-
dispatch<T>(event: string, arg?: T): void;
|
|
21
|
-
register<T>(event: string, callback: CallBackFunction<T>): Registry;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export default class EventMessagesRepository
|
|
25
|
-
implements IRemoteMessaging<MessageEntity>
|
|
26
|
-
{
|
|
27
|
-
private messageDTOMapper: MessageRemoteDTOMapper;
|
|
28
|
-
|
|
29
|
-
protected subscriptionOnSystemMessages: Dictionary<
|
|
30
|
-
SubscriptionPerformer<MessageEntity>
|
|
31
|
-
> = {};
|
|
32
|
-
|
|
33
|
-
protected subscriptionOnChatMessages: SubscriptionPerformer<MessageEntity> =
|
|
34
|
-
new SubscriptionPerformer<MessageEntity>();
|
|
35
|
-
|
|
36
|
-
protected subscriptionOnUpdateMessageStatus: SubscriptionPerformer<DialogEventInfo> =
|
|
37
|
-
new SubscriptionPerformer<DialogEventInfo>();
|
|
38
|
-
|
|
39
|
-
constructor(
|
|
40
|
-
private remoteDs: RemoteDataSource,
|
|
41
|
-
private localDs: LocalDataSource,
|
|
42
|
-
private connectionRep: ConnectionRepository,
|
|
43
|
-
) {
|
|
44
|
-
console.log('CREATE EventMessagesRepository');
|
|
45
|
-
this.messageDTOMapper = new MessageRemoteDTOMapper();
|
|
46
|
-
this.subscriptionOnSystemMessages[NotificationTypes.UPDATE_DIALOG] =
|
|
47
|
-
new SubscriptionPerformer<MessageEntity>();
|
|
48
|
-
this.subscriptionOnSystemMessages[NotificationTypes.DELETE_LEAVE_DIALOG] =
|
|
49
|
-
new SubscriptionPerformer<MessageEntity>();
|
|
50
|
-
this.subscriptionOnSystemMessages[NotificationTypes.NEW_DIALOG] =
|
|
51
|
-
new SubscriptionPerformer<MessageEntity>();
|
|
52
|
-
this.remoteDs.subscribeOnSystemMessaging(
|
|
53
|
-
NotificationTypes.NEW_DIALOG,
|
|
54
|
-
this.NewDialogEventHandler.bind(this),
|
|
55
|
-
);
|
|
56
|
-
this.remoteDs.subscribeOnSystemMessaging(
|
|
57
|
-
NotificationTypes.UPDATE_DIALOG,
|
|
58
|
-
this.UpdateDialogEventHandler.bind(this),
|
|
59
|
-
);
|
|
60
|
-
this.remoteDs.subscribeOnSystemMessaging(
|
|
61
|
-
NotificationTypes.DELETE_LEAVE_DIALOG,
|
|
62
|
-
this.DeleteLeaveDialogEventHandler.bind(this),
|
|
63
|
-
);
|
|
64
|
-
this.remoteDs.subscribeOnMessaging(this.NewMessageEventHandler.bind(this));
|
|
65
|
-
this.remoteDs.subscribeOnUpdateMessageStatus(
|
|
66
|
-
this.UpdateMessageStatusEventHandler.bind(this),
|
|
67
|
-
);
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
protected UpdateMessageStatusEventHandler(
|
|
71
|
-
messageInfo: DialogEventInfo,
|
|
72
|
-
): void {
|
|
73
|
-
console.log(
|
|
74
|
-
'call UpdateMessageStatusEventHandler with updated message status in EventMessagesRepository',
|
|
75
|
-
);
|
|
76
|
-
this.subscriptionOnUpdateMessageStatus.informSubscribers(
|
|
77
|
-
messageInfo,
|
|
78
|
-
EventMessageType.LocalMessage,
|
|
79
|
-
);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
protected NewMessageEventHandler(messageInfo: RemoteMessageDTO): void {
|
|
83
|
-
console.log(
|
|
84
|
-
'call NewMessageEventHandler with new message in EventMessagesRepository',
|
|
85
|
-
);
|
|
86
|
-
this.messageDTOMapper
|
|
87
|
-
.toEntity<RemoteMessageDTO, MessageEntity>(messageInfo)
|
|
88
|
-
// eslint-disable-next-line promise/always-return
|
|
89
|
-
.then((currentMessage: MessageEntity) => {
|
|
90
|
-
console.log(
|
|
91
|
-
'have system message for dialog',
|
|
92
|
-
JSON.stringify(currentMessage),
|
|
93
|
-
);
|
|
94
|
-
this.subscriptionOnChatMessages.informSubscribers(
|
|
95
|
-
currentMessage,
|
|
96
|
-
EventMessageType.RegularMessage,
|
|
97
|
-
);
|
|
98
|
-
})
|
|
99
|
-
.catch((reason) => {
|
|
100
|
-
const errorMessage = stringifyError(reason);
|
|
101
|
-
|
|
102
|
-
console.log(
|
|
103
|
-
'get system message with new dialog with exception:',
|
|
104
|
-
errorMessage,
|
|
105
|
-
);
|
|
106
|
-
|
|
107
|
-
throw new Error(errorMessage);
|
|
108
|
-
});
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
protected NewDialogEventHandler(messageInfo: RemoteMessageDTO): void {
|
|
112
|
-
this.messageDTOMapper
|
|
113
|
-
.toEntity<RemoteMessageDTO, MessageEntity>(messageInfo)
|
|
114
|
-
// eslint-disable-next-line promise/always-return
|
|
115
|
-
.then((currentMessage: MessageEntity) => {
|
|
116
|
-
console.log(
|
|
117
|
-
'have system message new dialog',
|
|
118
|
-
JSON.stringify(currentMessage),
|
|
119
|
-
);
|
|
120
|
-
this.subscriptionOnSystemMessages[
|
|
121
|
-
NotificationTypes.NEW_DIALOG
|
|
122
|
-
].informSubscribers(currentMessage, EventMessageType.SystemMessage);
|
|
123
|
-
})
|
|
124
|
-
.catch((reason) => {
|
|
125
|
-
const errorMessage = stringifyError(reason);
|
|
126
|
-
|
|
127
|
-
console.log(
|
|
128
|
-
'get system message with new dialog with exception:',
|
|
129
|
-
errorMessage,
|
|
130
|
-
);
|
|
131
|
-
|
|
132
|
-
throw new Error(errorMessage);
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
protected DeleteLeaveDialogEventHandler(messageInfo: RemoteMessageDTO): void {
|
|
137
|
-
this.messageDTOMapper
|
|
138
|
-
.toEntity<RemoteMessageDTO, MessageEntity>(messageInfo)
|
|
139
|
-
// eslint-disable-next-line promise/always-return
|
|
140
|
-
.then((currentMessage: MessageEntity) => {
|
|
141
|
-
console.log(
|
|
142
|
-
'have system message new dialog',
|
|
143
|
-
JSON.stringify(currentMessage),
|
|
144
|
-
);
|
|
145
|
-
this.subscriptionOnSystemMessages[
|
|
146
|
-
NotificationTypes.DELETE_LEAVE_DIALOG
|
|
147
|
-
].informSubscribers(currentMessage, EventMessageType.SystemMessage);
|
|
148
|
-
})
|
|
149
|
-
.catch((reason) => {
|
|
150
|
-
const errorMessage = stringifyError(reason);
|
|
151
|
-
|
|
152
|
-
console.log(
|
|
153
|
-
'get system message with new dialog with exception:',
|
|
154
|
-
errorMessage,
|
|
155
|
-
);
|
|
156
|
-
|
|
157
|
-
throw new Error(errorMessage);
|
|
158
|
-
});
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
protected UpdateDialogEventHandler(messageInfo: RemoteMessageDTO): void {
|
|
162
|
-
console.log('call UpdateDialogEventHandler');
|
|
163
|
-
if (this.messageDTOMapper) {
|
|
164
|
-
this.messageDTOMapper
|
|
165
|
-
.toEntity<RemoteMessageDTO, MessageEntity>(messageInfo)
|
|
166
|
-
// eslint-disable-next-line promise/always-return
|
|
167
|
-
.then((currentMessage: MessageEntity) => {
|
|
168
|
-
console.log(
|
|
169
|
-
'have system message new dialog',
|
|
170
|
-
JSON.stringify(currentMessage),
|
|
171
|
-
);
|
|
172
|
-
const subs =
|
|
173
|
-
this.subscriptionOnSystemMessages[NotificationTypes.UPDATE_DIALOG];
|
|
174
|
-
|
|
175
|
-
subs.informSubscribers(
|
|
176
|
-
currentMessage,
|
|
177
|
-
EventMessageType.SystemMessage,
|
|
178
|
-
);
|
|
179
|
-
})
|
|
180
|
-
.catch((reason) => {
|
|
181
|
-
const errorMessage = stringifyError(reason);
|
|
182
|
-
|
|
183
|
-
console.log(
|
|
184
|
-
'get system message with new dialog with exception:',
|
|
185
|
-
errorMessage,
|
|
186
|
-
);
|
|
187
|
-
|
|
188
|
-
throw new Error(errorMessage);
|
|
189
|
-
});
|
|
190
|
-
} else {
|
|
191
|
-
console.log('exception: this.messageDTOMapper');
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
// eslint-disable-next-line class-methods-use-this
|
|
196
|
-
public dispatchEvent<TEventInfo>(
|
|
197
|
-
even: EventMessageType,
|
|
198
|
-
eventBody: TEventInfo,
|
|
199
|
-
receivers: number[],
|
|
200
|
-
) {
|
|
201
|
-
console.log(
|
|
202
|
-
`call dispatchEvent ${even.toString()} with ${JSON.stringify(
|
|
203
|
-
eventBody,
|
|
204
|
-
)} for ${JSON.stringify(receivers)}`,
|
|
205
|
-
);
|
|
206
|
-
if (even === EventMessageType.LocalMessage) {
|
|
207
|
-
this.localDs.setLocalSynced(true);
|
|
208
|
-
}
|
|
209
|
-
if (even === EventMessageType.SystemMessage) {
|
|
210
|
-
receivers.forEach((id) => {
|
|
211
|
-
const systemMessageInfo: RemoteMessageDTO =
|
|
212
|
-
eventBody as RemoteMessageDTO;
|
|
213
|
-
|
|
214
|
-
systemMessageInfo.recipient_id = id;
|
|
215
|
-
|
|
216
|
-
this.remoteDs.sendSystemMessage(systemMessageInfo).catch((reason) => {
|
|
217
|
-
console.log(
|
|
218
|
-
`EXCEPTION IN send System Message for recipient_id ${id}: `,
|
|
219
|
-
stringifyError(reason),
|
|
220
|
-
);
|
|
221
|
-
});
|
|
222
|
-
});
|
|
223
|
-
}
|
|
224
|
-
if (even === EventMessageType.RegularMessage) {
|
|
225
|
-
const messageInfo: RemoteMessageDTO = eventBody as RemoteMessageDTO;
|
|
226
|
-
|
|
227
|
-
this.remoteDs.sendMessage(messageInfo).catch((reason) => {
|
|
228
|
-
console.log(
|
|
229
|
-
`EXCEPTION IN send Regular Message for dialog ${messageInfo.dialogId}: `,
|
|
230
|
-
stringifyError(reason),
|
|
231
|
-
);
|
|
232
|
-
});
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
subscribeOnMessaging(
|
|
237
|
-
callback: CallBackFunction<MessageEntity>,
|
|
238
|
-
nameSubscription: string = SubscriptionPerformer.DEFAULT_SUBSCRIPTION_NAME,
|
|
239
|
-
): void {
|
|
240
|
-
this.subscriptionOnChatMessages.subscribe(
|
|
241
|
-
callback,
|
|
242
|
-
EventMessageType.RegularMessage,
|
|
243
|
-
nameSubscription,
|
|
244
|
-
);
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
subscribeOnUpdateMessageStatus(
|
|
248
|
-
callback: CallBackFunction<DialogEventInfo>,
|
|
249
|
-
nameSubscription: string = SubscriptionPerformer.DEFAULT_SUBSCRIPTION_NAME,
|
|
250
|
-
): void {
|
|
251
|
-
this.subscriptionOnUpdateMessageStatus.subscribe(
|
|
252
|
-
callback,
|
|
253
|
-
EventMessageType.LocalMessage,
|
|
254
|
-
nameSubscription,
|
|
255
|
-
);
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
releaseSubscriptions(): void {
|
|
259
|
-
Object.entries(this.subscriptionOnSystemMessages).map((x) => {
|
|
260
|
-
const eventName = x[0];
|
|
261
|
-
|
|
262
|
-
return this.subscriptionOnSystemMessages[eventName].release();
|
|
263
|
-
});
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
subscribeOnSystemMessaging(
|
|
267
|
-
notificationType: NotificationTypes,
|
|
268
|
-
callback: CallBackFunction<MessageEntity>,
|
|
269
|
-
nameSubscription: string = SubscriptionPerformer.DEFAULT_SUBSCRIPTION_NAME,
|
|
270
|
-
): void {
|
|
271
|
-
let SystemMessageType: string = NotificationTypes.NEW_DIALOG;
|
|
272
|
-
|
|
273
|
-
switch (notificationType) {
|
|
274
|
-
case NotificationTypes.DELETE_LEAVE_DIALOG:
|
|
275
|
-
SystemMessageType = NotificationTypes.DELETE_LEAVE_DIALOG;
|
|
276
|
-
break;
|
|
277
|
-
case NotificationTypes.UPDATE_DIALOG:
|
|
278
|
-
SystemMessageType = NotificationTypes.UPDATE_DIALOG;
|
|
279
|
-
break;
|
|
280
|
-
default:
|
|
281
|
-
SystemMessageType = NotificationTypes.NEW_DIALOG;
|
|
282
|
-
break;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
this.subscriptionOnSystemMessages[SystemMessageType].subscribe(
|
|
286
|
-
callback,
|
|
287
|
-
EventMessageType.SystemMessage,
|
|
288
|
-
nameSubscription,
|
|
289
|
-
);
|
|
290
|
-
}
|
|
291
|
-
}
|