quickblox-react-ui-kit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (724) hide show
  1. package/.prettierignore +4 -0
  2. package/.prettierrc +8 -0
  3. package/LICENSE.md +19 -0
  4. package/README.md +255 -0
  5. package/dist/App.d.ts +4 -0
  6. package/dist/CommonTypes/FunctionResult.d.ts +4 -0
  7. package/dist/Data/Stubs.d.ts +29 -0
  8. package/dist/Data/dto/dialog/LocalDialogDTO.d.ts +16 -0
  9. package/dist/Data/dto/dialog/LocalDialogsDTO.d.ts +9 -0
  10. package/dist/Data/dto/dialog/RemoteDialogDTO.d.ts +18 -0
  11. package/dist/Data/dto/dialog/RemoteDialogsDTO.d.ts +9 -0
  12. package/dist/Data/dto/file/LocalFileDTO.d.ts +10 -0
  13. package/dist/Data/dto/file/RemoteFileDTO.d.ts +10 -0
  14. package/dist/Data/dto/message/LocalMessageDTO.d.ts +20 -0
  15. package/dist/Data/dto/message/LocalMessagesDTO.d.ts +9 -0
  16. package/dist/Data/dto/message/RemoteMessageDTO.d.ts +20 -0
  17. package/dist/Data/dto/message/RemoteMessagesDTO.d.ts +9 -0
  18. package/dist/Data/dto/user/LocalUserDTO.d.ts +14 -0
  19. package/dist/Data/dto/user/LocalUsersDTO.d.ts +9 -0
  20. package/dist/Data/dto/user/RemoteUserDTO.d.ts +14 -0
  21. package/dist/Data/dto/user/RemoteUsersDTO.d.ts +9 -0
  22. package/dist/Data/mapper/DialogLocalDTOMapper.d.ts +17 -0
  23. package/dist/Data/mapper/DialogRemoteDTOMapper.d.ts +18 -0
  24. package/dist/Data/mapper/FileLocalDTOMapper.d.ts +8 -0
  25. package/dist/Data/mapper/FileRemoteDTOMapper.d.ts +8 -0
  26. package/dist/Data/mapper/IMapper.d.ts +4 -0
  27. package/dist/Data/mapper/MessageLocalDTOMapper.d.ts +8 -0
  28. package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts +8 -0
  29. package/dist/Data/mapper/UserLocalDTOMapper.d.ts +9 -0
  30. package/dist/Data/mapper/UserRemoteDTOMapper.d.ts +9 -0
  31. package/dist/Data/repository/ConnectionRepository.d.ts +15 -0
  32. package/dist/Data/repository/DialogsRepository.d.ts +28 -0
  33. package/dist/Data/repository/EventMessagesRepository.d.ts +35 -0
  34. package/dist/Data/repository/FileRepository.d.ts +14 -0
  35. package/dist/Data/repository/MessagesRepository.d.ts +24 -0
  36. package/dist/Data/repository/UsersRepository.d.ts +18 -0
  37. package/dist/Data/source/exception/LocalDataSourceException.d.ts +10 -0
  38. package/dist/Data/source/exception/MapperDTOException.d.ts +9 -0
  39. package/dist/Data/source/exception/RemoteDataSourceException.d.ts +15 -0
  40. package/dist/Data/source/exception/RepositoryException.d.ts +15 -0
  41. package/dist/Data/source/local/ChatLocalStorageDataSource.d.ts +8 -0
  42. package/dist/Data/source/local/ILocalDataSource.d.ts +25 -0
  43. package/dist/Data/source/local/ILocalFileDataSource.d.ts +7 -0
  44. package/dist/Data/source/local/LocalDataSource.d.ts +28 -0
  45. package/dist/Data/source/local/LocalFileDataSource.d.ts +8 -0
  46. package/dist/Data/source/remote/IRemoteDataSource.d.ts +36 -0
  47. package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts +7 -0
  48. package/dist/Data/source/remote/Mapper/FileDTOMapper.d.ts +7 -0
  49. package/dist/Data/source/remote/Mapper/IDTOMapper.d.ts +4 -0
  50. package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +9 -0
  51. package/dist/Data/source/remote/Mapper/UserDTOMapper.d.ts +7 -0
  52. package/dist/Data/source/remote/RemoteDataSource.d.ts +81 -0
  53. package/dist/Domain/entity/Chat.d.ts +4 -0
  54. package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts +14 -0
  55. package/dist/Domain/entity/CustomDataEntity.d.ts +3 -0
  56. package/dist/Domain/entity/DialogEntity.d.ts +13 -0
  57. package/dist/Domain/entity/DialogEventInfo.d.ts +14 -0
  58. package/dist/Domain/entity/DialogTypes.d.ts +5 -0
  59. package/dist/Domain/entity/EventMessageType.d.ts +5 -0
  60. package/dist/Domain/entity/FileEntity.d.ts +10 -0
  61. package/dist/Domain/entity/FileTypes.d.ts +6 -0
  62. package/dist/Domain/entity/GroupDialogEntity.d.ts +19 -0
  63. package/dist/Domain/entity/LastMessageEntity.d.ts +5 -0
  64. package/dist/Domain/entity/MessageEntity.d.ts +21 -0
  65. package/dist/Domain/entity/NotificationTypes.d.ts +5 -0
  66. package/dist/Domain/entity/PrivateDialogEntity.d.ts +16 -0
  67. package/dist/Domain/entity/PublicDialogEntity.d.ts +18 -0
  68. package/dist/Domain/entity/UserEntity.d.ts +12 -0
  69. package/dist/Domain/exception/domain/DomainExecption.d.ts +4 -0
  70. package/dist/Domain/repository/IDialogsRepository.d.ts +20 -0
  71. package/dist/Domain/repository/IFileRepository.d.ts +6 -0
  72. package/dist/Domain/repository/IMessagesRepository.d.ts +15 -0
  73. package/dist/Domain/repository/IUsersRepository.d.ts +8 -0
  74. package/dist/Domain/repository/Pagination.d.ts +16 -0
  75. package/dist/Domain/use_cases/CreateDialogUseCase.d.ts +12 -0
  76. package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts +8 -0
  77. package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts +10 -0
  78. package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts +11 -0
  79. package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts +11 -0
  80. package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts +9 -0
  81. package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts +9 -0
  82. package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts +18 -0
  83. package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts +12 -0
  84. package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts +9 -0
  85. package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts +16 -0
  86. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts +11 -0
  87. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts +11 -0
  88. package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts +23 -0
  89. package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts +12 -0
  90. package/dist/Domain/use_cases/UploadFileUseCase.d.ts +9 -0
  91. package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts +13 -0
  92. package/dist/Domain/use_cases/base/BaseUseCase.d.ts +5 -0
  93. package/dist/Domain/use_cases/base/IUseCase.d.ts +5 -0
  94. package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts +5 -0
  95. package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts +24 -0
  96. package/dist/MyButton/MyButton.d.ts +9 -0
  97. package/dist/MyInput/MyInput.d.ts +10 -0
  98. package/dist/Presentation/Views/Base/BaseViewModel.d.ts +23 -0
  99. package/dist/Presentation/Views/CreateDialogFlow/CreateNewDialogFlow.d.ts +7 -0
  100. package/dist/Presentation/Views/Dialogs/DialogViewModel.d.ts +16 -0
  101. package/dist/Presentation/Views/Dialogs/Dialogs.d.ts +20 -0
  102. package/dist/Presentation/Views/Dialogs/useDialogsViewModel.d.ts +2 -0
  103. package/dist/Presentation/Views/Dialogs/useDialogsViewModelWithMockUseCase.d.ts +4 -0
  104. package/dist/Presentation/assets/DarkTheme.d.ts +21 -0
  105. package/dist/Presentation/assets/LightTheme.d.ts +21 -0
  106. package/dist/Presentation/assets/Theme.d.ts +20 -0
  107. package/dist/Presentation/assets/ThemeScheme.d.ts +43 -0
  108. package/dist/Presentation/components/Button.d.ts +4 -0
  109. package/dist/Presentation/components/Navbar.d.ts +2 -0
  110. package/dist/Presentation/components/TextInput.d.ts +1 -0
  111. package/dist/Presentation/components/UI/ DefaultThemes/CustomTheme.d.ts +6 -0
  112. package/dist/Presentation/components/UI/ DefaultThemes/DefaultTheme.d.ts +21 -0
  113. package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +9 -0
  114. package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +11 -0
  115. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +21 -0
  116. package/dist/Presentation/components/UI/Dialogs/CreateDialog/CreateDialog.d.ts +13 -0
  117. package/dist/Presentation/components/UI/Dialogs/DialogInformation/DialogInformation.d.ts +12 -0
  118. package/dist/Presentation/components/UI/Dialogs/DialogInformation/DialogMemberButton/DialogMembersButton.d.ts +10 -0
  119. package/dist/Presentation/components/UI/Dialogs/DialogInformation/UsersList/SingleUser/SingleUser.d.ts +9 -0
  120. package/dist/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersList.d.ts +10 -0
  121. package/dist/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersListViewModel.d.ts +10 -0
  122. package/dist/Presentation/components/UI/Dialogs/DialogInformation/UsersList/useUsersListViewModel.d.ts +3 -0
  123. package/dist/Presentation/components/UI/Dialogs/EditDialog/EditDialog.d.ts +19 -0
  124. package/dist/Presentation/components/UI/Dialogs/EditDialog/UserAvatar/UserAvatar.d.ts +11 -0
  125. package/dist/Presentation/components/UI/Dialogs/HeaderDialogs/HeaderDialogs.d.ts +15 -0
  126. package/dist/Presentation/components/UI/Dialogs/InviteMembers/InviteMembers.d.ts +14 -0
  127. package/dist/Presentation/components/UI/Dialogs/InviteMembers/InviteMembersViewModel.d.ts +13 -0
  128. package/dist/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +13 -0
  129. package/dist/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersResultViewModel.d.ts +6 -0
  130. package/dist/Presentation/components/UI/Dialogs/InviteMembers/NotFoundContent/NotFoundContent.d.ts +7 -0
  131. package/dist/Presentation/components/UI/Dialogs/InviteMembers/useInviteMembersViewModel.d.ts +2 -0
  132. package/dist/Presentation/components/UI/Dialogs/MembersList/MembersList.d.ts +10 -0
  133. package/dist/Presentation/components/UI/Dialogs/MessagesView/AudioAttachmentComponent/AudioAttachmentComponent.d.ts +8 -0
  134. package/dist/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.d.ts +12 -0
  135. package/dist/Presentation/components/UI/Dialogs/MessagesView/ImageAttachmentComponent/ImageAttachmentComponent.d.ts +8 -0
  136. package/dist/Presentation/components/UI/Dialogs/MessagesView/MessagesView.d.ts +11 -0
  137. package/dist/Presentation/components/UI/Dialogs/MessagesView/MessagesViewModel.d.ts +14 -0
  138. package/dist/Presentation/components/UI/Dialogs/MessagesView/VideoAttachmentComponent/VideoAttachmentComponent.d.ts +8 -0
  139. package/dist/Presentation/components/UI/Dialogs/MessagesView/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +10 -0
  140. package/dist/Presentation/components/UI/Dialogs/MessagesView/useMessagesViewModelWithMockUseCase.d.ts +4 -0
  141. package/dist/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialog.d.ts +34 -0
  142. package/dist/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialogViewModel.d.ts +11 -0
  143. package/dist/Presentation/components/UI/Dialogs/YesNoQuestion/YesNoQuestion.d.ts +14 -0
  144. package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +11 -0
  145. package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +12 -0
  146. package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts +4 -0
  147. package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +10 -0
  148. package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts +4 -0
  149. package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts +4 -0
  150. package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts +4 -0
  151. package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts +4 -0
  152. package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts +4 -0
  153. package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts +4 -0
  154. package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts +4 -0
  155. package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts +4 -0
  156. package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts +4 -0
  157. package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts +4 -0
  158. package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts +4 -0
  159. package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts +4 -0
  160. package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts +4 -0
  161. package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts +4 -0
  162. package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts +4 -0
  163. package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts +4 -0
  164. package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts +4 -0
  165. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts +4 -0
  166. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts +4 -0
  167. package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts +4 -0
  168. package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts +4 -0
  169. package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts +4 -0
  170. package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts +4 -0
  171. package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts +4 -0
  172. package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts +4 -0
  173. package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts +4 -0
  174. package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts +4 -0
  175. package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts +4 -0
  176. package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts +4 -0
  177. package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts +4 -0
  178. package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts +4 -0
  179. package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts +4 -0
  180. package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts +4 -0
  181. package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts +4 -0
  182. package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts +4 -0
  183. package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts +4 -0
  184. package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts +4 -0
  185. package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts +4 -0
  186. package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts +4 -0
  187. package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts +6 -0
  188. package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts +4 -0
  189. package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts +4 -0
  190. package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts +4 -0
  191. package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts +4 -0
  192. package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts +4 -0
  193. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts +4 -0
  194. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts +4 -0
  195. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts +4 -0
  196. package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts +4 -0
  197. package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts +4 -0
  198. package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts +4 -0
  199. package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts +4 -0
  200. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts +4 -0
  201. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts +4 -0
  202. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts +4 -0
  203. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts +4 -0
  204. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts +4 -0
  205. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts +4 -0
  206. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts +4 -0
  207. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts +4 -0
  208. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts +4 -0
  209. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts +4 -0
  210. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts +4 -0
  211. package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts +4 -0
  212. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts +4 -0
  213. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts +4 -0
  214. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts +4 -0
  215. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts +4 -0
  216. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts +4 -0
  217. package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts +4 -0
  218. package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts +4 -0
  219. package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts +4 -0
  220. package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts +4 -0
  221. package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts +4 -0
  222. package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts +4 -0
  223. package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts +4 -0
  224. package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts +4 -0
  225. package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts +4 -0
  226. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts +4 -0
  227. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts +4 -0
  228. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts +4 -0
  229. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts +4 -0
  230. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts +4 -0
  231. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts +4 -0
  232. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts +4 -0
  233. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts +4 -0
  234. package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts +4 -0
  235. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts +4 -0
  236. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts +4 -0
  237. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts +4 -0
  238. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts +4 -0
  239. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts +4 -0
  240. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts +4 -0
  241. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts +4 -0
  242. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts +4 -0
  243. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts +4 -0
  244. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts +4 -0
  245. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts +4 -0
  246. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts +4 -0
  247. package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts +4 -0
  248. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts +4 -0
  249. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts +4 -0
  250. package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +5 -0
  251. package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +33 -0
  252. package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +33 -0
  253. package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +33 -0
  254. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +14 -0
  255. package/dist/Presentation/components/layouts/Desktop/Desktop.d.ts +4 -0
  256. package/dist/Presentation/components/layouts/Desktop/DesktopLayoutForMockModels.d.ts +9 -0
  257. package/dist/Presentation/components/layouts/LayoutCommonTypes.d.ts +6 -0
  258. package/dist/Presentation/components/layouts/TestStage/LoginView/Login.d.ts +9 -0
  259. package/dist/Presentation/components/layouts/TestStage/TestStageMarkup.d.ts +4 -0
  260. package/dist/Presentation/components/layouts/TestStage/TestStageWithMockData/TestStageWithMockData.d.ts +3 -0
  261. package/dist/Presentation/components/providers/ModalContextProvider/Modal.d.ts +14 -0
  262. package/dist/Presentation/components/providers/ModalContextProvider/ModalContextProvider.d.ts +4 -0
  263. package/dist/Presentation/components/providers/ModalContextProvider/useModal.d.ts +11 -0
  264. package/dist/Presentation/components/providers/ProviderProps.d.ts +4 -0
  265. package/dist/Presentation/components/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +41 -0
  266. package/dist/Presentation/components/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts +3 -0
  267. package/dist/Presentation/components/providers/QuickBloxUIKitProvider/useQBConnection.d.ts +7 -0
  268. package/dist/Presentation/components/providers/QuickBloxUIKitProvider/useQbDataContext.d.ts +3 -0
  269. package/dist/QBconfig.d.ts +29 -0
  270. package/dist/index-ui.d.ts +25 -0
  271. package/dist/index-ui.js +2589 -0
  272. package/dist/index.d.ts +1 -0
  273. package/dist/qb-api-calls/index.d.ts +59 -0
  274. package/dist/setupTests.d.ts +1 -0
  275. package/dist/utils/DateTimeFormatter.d.ts +4 -0
  276. package/dist/utils/parse.d.ts +6 -0
  277. package/global.d.ts +855 -0
  278. package/package.json +104 -0
  279. package/public/favicon.ico +0 -0
  280. package/public/index.html +47 -0
  281. package/public/logo192.png +0 -0
  282. package/public/logo512.png +0 -0
  283. package/public/manifest.json +25 -0
  284. package/public/quickblox.js +54609 -0
  285. package/public/robots.txt +3 -0
  286. package/src/App.scss +0 -0
  287. package/src/App.tsx +230 -0
  288. package/src/CommonTypes/FunctionResult.ts +4 -0
  289. package/src/Data/Stubs.ts +1131 -0
  290. package/src/Data/dto/dialog/LocalDialogDTO.ts +42 -0
  291. package/src/Data/dto/dialog/LocalDialogsDTO.ts +21 -0
  292. package/src/Data/dto/dialog/RemoteDialogDTO.ts +58 -0
  293. package/src/Data/dto/dialog/RemoteDialogsDTO.ts +21 -0
  294. package/src/Data/dto/file/LocalFileDTO.ts +26 -0
  295. package/src/Data/dto/file/RemoteFileDTO.ts +26 -0
  296. package/src/Data/dto/message/LocalMessageDTO.ts +51 -0
  297. package/src/Data/dto/message/LocalMessagesDTO.ts +21 -0
  298. package/src/Data/dto/message/RemoteMessageDTO.ts +51 -0
  299. package/src/Data/dto/message/RemoteMessagesDTO.ts +21 -0
  300. package/src/Data/dto/user/LocalUserDTO.ts +37 -0
  301. package/src/Data/dto/user/LocalUsersDTO.ts +23 -0
  302. package/src/Data/dto/user/RemoteUserDTO.ts +37 -0
  303. package/src/Data/dto/user/RemoteUsersDTO.ts +21 -0
  304. package/src/Data/mapper/DialogLocalDTOMapper.ts +742 -0
  305. package/src/Data/mapper/DialogRemoteDTOMapper.ts +776 -0
  306. package/src/Data/mapper/FileLocalDTOMapper.ts +253 -0
  307. package/src/Data/mapper/FileRemoteDTOMapper.ts +265 -0
  308. package/src/Data/mapper/IMapper.ts +14 -0
  309. package/src/Data/mapper/MessageLocalDTOMapper.ts +425 -0
  310. package/src/Data/mapper/MessageRemoteDTOMapper.ts +430 -0
  311. package/src/Data/mapper/UserLocalDTOMapper.ts +381 -0
  312. package/src/Data/mapper/UserRemoteDTOMapper.ts +393 -0
  313. package/src/Data/repository/ConnectionRepository.ts +128 -0
  314. package/src/Data/repository/DialogsRepository.ts +422 -0
  315. package/src/Data/repository/EventMessagesRepository.ts +291 -0
  316. package/src/Data/repository/FileRepository.ts +110 -0
  317. package/src/Data/repository/MessagesRepository.ts +288 -0
  318. package/src/Data/repository/UsersRepository.ts +324 -0
  319. package/src/Data/source/exception/LocalDataSourceException.ts +17 -0
  320. package/src/Data/source/exception/MapperDTOException.ts +19 -0
  321. package/src/Data/source/exception/RemoteDataSourceException.ts +28 -0
  322. package/src/Data/source/exception/RepositoryException.ts +27 -0
  323. package/src/Data/source/local/ChatLocalStorageDataSource.ts +262 -0
  324. package/src/Data/source/local/ILocalDataSource.ts +45 -0
  325. package/src/Data/source/local/ILocalFileDataSource.ts +11 -0
  326. package/src/Data/source/local/LocalDataSource.ts +377 -0
  327. package/src/Data/source/local/LocalFileDataSource.ts +22 -0
  328. package/src/Data/source/remote/IRemoteDataSource.ts +112 -0
  329. package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +401 -0
  330. package/src/Data/source/remote/Mapper/FileDTOMapper.ts +276 -0
  331. package/src/Data/source/remote/Mapper/IDTOMapper.ts +4 -0
  332. package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +399 -0
  333. package/src/Data/source/remote/Mapper/UserDTOMapper.ts +344 -0
  334. package/src/Data/source/remote/RemoteDataSource.ts +1278 -0
  335. package/src/Domain/entity/Chat.ts +4 -0
  336. package/src/Domain/entity/ChatMessageAttachmentEntity.ts +15 -0
  337. package/src/Domain/entity/CustomDataEntity.ts +3 -0
  338. package/src/Domain/entity/DialogEntity.ts +15 -0
  339. package/src/Domain/entity/DialogEventInfo.ts +15 -0
  340. package/src/Domain/entity/DialogTypes.ts +7 -0
  341. package/src/Domain/entity/EventMessageType.ts +7 -0
  342. package/src/Domain/entity/FileEntity.ts +11 -0
  343. package/src/Domain/entity/FileTypes.ts +9 -0
  344. package/src/Domain/entity/GroupDialogEntity.ts +54 -0
  345. package/src/Domain/entity/LastMessageEntity.ts +5 -0
  346. package/src/Domain/entity/MessageEntity.ts +25 -0
  347. package/src/Domain/entity/NotificationTypes.ts +7 -0
  348. package/src/Domain/entity/PrivateDialogEntity.ts +46 -0
  349. package/src/Domain/entity/PublicDialogEntity.ts +72 -0
  350. package/src/Domain/entity/UserEntity.ts +22 -0
  351. package/src/Domain/exception/domain/DomainExecption.ts +5 -0
  352. package/src/Domain/repository/IDialogsRepository.ts +40 -0
  353. package/src/Domain/repository/IFileRepository.ts +9 -0
  354. package/src/Domain/repository/IMessagesRepository.ts +28 -0
  355. package/src/Domain/repository/IUsersRepository.ts +13 -0
  356. package/src/Domain/repository/Pagination.ts +48 -0
  357. package/src/Domain/use_cases/CreateDialogUseCase.ts +73 -0
  358. package/src/Domain/use_cases/GetAllDialogsUseCase.ts +20 -0
  359. package/src/Domain/use_cases/GetAllDialogsUseCaseWithMock.ts +45 -0
  360. package/src/Domain/use_cases/GetAllMessagesForDialog.ts +61 -0
  361. package/src/Domain/use_cases/GetAllUsersUseCase.ts +34 -0
  362. package/src/Domain/use_cases/GetDialogByIdUseCase.ts +28 -0
  363. package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +22 -0
  364. package/src/Domain/use_cases/LeaveDialogUseCase.ts +109 -0
  365. package/src/Domain/use_cases/RemoveUsersFromTheDialogUseCase.ts +103 -0
  366. package/src/Domain/use_cases/SendTextMessageUseCase.ts +26 -0
  367. package/src/Domain/use_cases/SubscribeToDialogEventsUseCase.ts +141 -0
  368. package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.ts +69 -0
  369. package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.ts +61 -0
  370. package/src/Domain/use_cases/SyncDialogsUseCase.ts +246 -0
  371. package/src/Domain/use_cases/UpdateDialogUseCase.ts +65 -0
  372. package/src/Domain/use_cases/UploadFileUseCase.ts +24 -0
  373. package/src/Domain/use_cases/UserTypingMessageUseCase.ts +51 -0
  374. package/src/Domain/use_cases/base/BaseUseCase.ts +77 -0
  375. package/src/Domain/use_cases/base/IUseCase.ts +5 -0
  376. package/src/Domain/use_cases/base/Subscribable/ISubscribable.ts +6 -0
  377. package/src/Domain/use_cases/base/Subscribable/SubscriptionPerformer.ts +143 -0
  378. package/src/MyButton/MyButton.scss +11 -0
  379. package/src/MyButton/MyButton.tsx +25 -0
  380. package/src/MyInput/MyInput.scss +9 -0
  381. package/src/MyInput/MyInput.tsx +36 -0
  382. package/src/Presentation/.gitkeep +0 -0
  383. package/src/Presentation/Views/Base/BaseViewModel.ts +66 -0
  384. package/src/Presentation/Views/CreateDialogFlow/CreateNewDialogFlow.tsx +187 -0
  385. package/src/Presentation/Views/Dialogs/DialogViewModel.ts +23 -0
  386. package/src/Presentation/Views/Dialogs/Dialogs.scss +66 -0
  387. package/src/Presentation/Views/Dialogs/Dialogs.tsx +372 -0
  388. package/src/Presentation/Views/Dialogs/useDialogsViewModel.ts +136 -0
  389. package/src/Presentation/Views/Dialogs/useDialogsViewModelWithMockUseCase.ts +345 -0
  390. package/src/Presentation/Views/Navigation/More.svg +7 -0
  391. package/src/Presentation/assets/DarkTheme.ts +58 -0
  392. package/src/Presentation/assets/LightTheme.ts +58 -0
  393. package/src/Presentation/assets/Theme.ts +143 -0
  394. package/src/Presentation/assets/ThemeScheme.ts +83 -0
  395. package/src/Presentation/assets/fonts/.gitkeep +0 -0
  396. package/src/Presentation/assets/fonts/Roboto-Bold.eot +0 -0
  397. package/src/Presentation/assets/fonts/Roboto-Bold.ttf +0 -0
  398. package/src/Presentation/assets/fonts/Roboto-Bold.woff +0 -0
  399. package/src/Presentation/assets/fonts/Roboto-Bold.woff2 +0 -0
  400. package/src/Presentation/assets/fonts/Roboto-Medium.eot +0 -0
  401. package/src/Presentation/assets/fonts/Roboto-Medium.ttf +0 -0
  402. package/src/Presentation/assets/fonts/Roboto-Medium.woff +0 -0
  403. package/src/Presentation/assets/fonts/Roboto-Medium.woff2 +0 -0
  404. package/src/Presentation/assets/fonts/Roboto-Regular.eot +0 -0
  405. package/src/Presentation/assets/fonts/Roboto-Regular.ttf +0 -0
  406. package/src/Presentation/assets/fonts/Roboto-Regular.woff +0 -0
  407. package/src/Presentation/assets/fonts/Roboto-Regular.woff2 +0 -0
  408. package/src/Presentation/assets/img/Artem_Koltunov_Selfi.png +0 -0
  409. package/src/Presentation/assets/img/bee-img.png +0 -0
  410. package/src/Presentation/assets/styles/_fonts.scss +32 -0
  411. package/src/Presentation/assets/styles/_reset-styles.scss +435 -0
  412. package/src/Presentation/assets/styles/_theme_colors_scheme.scss +56 -0
  413. package/src/Presentation/assets/styles/_theme_dark.scss +33 -0
  414. package/src/Presentation/assets/styles/_theme_light.scss +33 -0
  415. package/src/Presentation/assets/styles/_variables.scss +2 -0
  416. package/src/Presentation/components/Button.js +5 -0
  417. package/src/Presentation/components/Navbar.tsx +45 -0
  418. package/src/Presentation/components/TextInput.js +10 -0
  419. package/src/Presentation/components/UI/ DefaultThemes/CustomTheme.ts +13 -0
  420. package/src/Presentation/components/UI/ DefaultThemes/DefaultTheme.ts +58 -0
  421. package/src/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.tsx +40 -0
  422. package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.scss +0 -0
  423. package/src/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.tsx +30 -0
  424. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.scss +127 -0
  425. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.tsx +62 -0
  426. package/src/Presentation/components/UI/Dialogs/CreateDialog/CreateDialog.scss +45 -0
  427. package/src/Presentation/components/UI/Dialogs/CreateDialog/CreateDialog.tsx +77 -0
  428. package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogInformation.scss +429 -0
  429. package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogInformation.tsx +646 -0
  430. package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogMemberButton/DialogMembersButton.scss +42 -0
  431. package/src/Presentation/components/UI/Dialogs/DialogInformation/DialogMemberButton/DialogMembersButton.tsx +26 -0
  432. package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/SingleUser/SingleUser.scss +95 -0
  433. package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/SingleUser/SingleUser.tsx +42 -0
  434. package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersList.scss +60 -0
  435. package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersList.tsx +65 -0
  436. package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/UsersListViewModel.ts +13 -0
  437. package/src/Presentation/components/UI/Dialogs/DialogInformation/UsersList/useUsersListViewModel.ts +81 -0
  438. package/src/Presentation/components/UI/Dialogs/EditDialog/EditDialog.scss +183 -0
  439. package/src/Presentation/components/UI/Dialogs/EditDialog/EditDialog.tsx +262 -0
  440. package/src/Presentation/components/UI/Dialogs/EditDialog/UserAvatar/UserAvatar.scss +32 -0
  441. package/src/Presentation/components/UI/Dialogs/EditDialog/UserAvatar/UserAvatar.tsx +59 -0
  442. package/src/Presentation/components/UI/Dialogs/HeaderDialogs/HeaderDialogs.scss +67 -0
  443. package/src/Presentation/components/UI/Dialogs/HeaderDialogs/HeaderDialogs.tsx +112 -0
  444. package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembers.scss +146 -0
  445. package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembers.tsx +374 -0
  446. package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteMembersViewModel.ts +18 -0
  447. package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +113 -0
  448. package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.tsx +87 -0
  449. package/src/Presentation/components/UI/Dialogs/InviteMembers/InviteUsersResultViewModel.ts +12 -0
  450. package/src/Presentation/components/UI/Dialogs/InviteMembers/NotFoundContent/NotFoundContent.scss +37 -0
  451. package/src/Presentation/components/UI/Dialogs/InviteMembers/NotFoundContent/NotFoundContent.tsx +22 -0
  452. package/src/Presentation/components/UI/Dialogs/InviteMembers/useInviteMembersViewModel.ts +116 -0
  453. package/src/Presentation/components/UI/Dialogs/MembersList/MembersList.scss +128 -0
  454. package/src/Presentation/components/UI/Dialogs/MembersList/MembersList.tsx +89 -0
  455. package/src/Presentation/components/UI/Dialogs/MessagesView/AudioAttachmentComponent/AudioAttachmentComponent.scss +7 -0
  456. package/src/Presentation/components/UI/Dialogs/MessagesView/AudioAttachmentComponent/AudioAttachmentComponent.tsx +27 -0
  457. package/src/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.scss +133 -0
  458. package/src/Presentation/components/UI/Dialogs/MessagesView/HeaderMessages/HeaderMessages.tsx +137 -0
  459. package/src/Presentation/components/UI/Dialogs/MessagesView/ImageAttachmentComponent/ImageAttachmentComponent.scss +11 -0
  460. package/src/Presentation/components/UI/Dialogs/MessagesView/ImageAttachmentComponent/ImageAttachmentComponent.tsx +25 -0
  461. package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesView.scss +327 -0
  462. package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesView.tsx +794 -0
  463. package/src/Presentation/components/UI/Dialogs/MessagesView/MessagesViewModel.ts +20 -0
  464. package/src/Presentation/components/UI/Dialogs/MessagesView/VideoAttachmentComponent/VideoAttachmentComponent.scss +7 -0
  465. package/src/Presentation/components/UI/Dialogs/MessagesView/VideoAttachmentComponent/VideoAttachmentComponent.tsx +33 -0
  466. package/src/Presentation/components/UI/Dialogs/MessagesView/VoiceRecordingProgress/VoiceRecordingProgress.scss +35 -0
  467. package/src/Presentation/components/UI/Dialogs/MessagesView/VoiceRecordingProgress/VoiceRecordingProgress.tsx +86 -0
  468. package/src/Presentation/components/UI/Dialogs/MessagesView/useMessagesViewModelWithMockUseCase.ts +452 -0
  469. package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialog.scss +100 -0
  470. package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialog.tsx +405 -0
  471. package/src/Presentation/components/UI/Dialogs/PreviewDialog/PreviewDialogViewModel.ts +42 -0
  472. package/src/Presentation/components/UI/Dialogs/YesNoQuestion/YesNoQuestion.scss +35 -0
  473. package/src/Presentation/components/UI/Dialogs/YesNoQuestion/YesNoQuestion.tsx +89 -0
  474. package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +61 -0
  475. package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.tsx +48 -0
  476. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +74 -0
  477. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.tsx +72 -0
  478. package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +21 -0
  479. package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.tsx +41 -0
  480. package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +3 -0
  481. package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.tsx +41 -0
  482. package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +3 -0
  483. package/src/Presentation/components/UI/svgs/Icons/Actions/Add/index.tsx +22 -0
  484. package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +3 -0
  485. package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.tsx +22 -0
  486. package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +3 -0
  487. package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/index.tsx +22 -0
  488. package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +3 -0
  489. package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/index.tsx +22 -0
  490. package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +3 -0
  491. package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/index.tsx +22 -0
  492. package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +3 -0
  493. package/src/Presentation/components/UI/svgs/Icons/Actions/Download/index.tsx +22 -0
  494. package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +3 -0
  495. package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/index.tsx +22 -0
  496. package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +3 -0
  497. package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.tsx +22 -0
  498. package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +3 -0
  499. package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.tsx +22 -0
  500. package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +3 -0
  501. package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.tsx +22 -0
  502. package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +3 -0
  503. package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.tsx +22 -0
  504. package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +3 -0
  505. package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.tsx +22 -0
  506. package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +3 -0
  507. package/src/Presentation/components/UI/svgs/Icons/Actions/Like/index.tsx +22 -0
  508. package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +3 -0
  509. package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.tsx +22 -0
  510. package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +3 -0
  511. package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.tsx +22 -0
  512. package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +3 -0
  513. package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/index.tsx +35 -0
  514. package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +3 -0
  515. package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.tsx +22 -0
  516. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +3 -0
  517. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/index.tsx +22 -0
  518. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +3 -0
  519. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.tsx +22 -0
  520. package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +3 -0
  521. package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.tsx +22 -0
  522. package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +3 -0
  523. package/src/Presentation/components/UI/svgs/Icons/Actions/Send/index.tsx +38 -0
  524. package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +3 -0
  525. package/src/Presentation/components/UI/svgs/Icons/Actions/Share/index.tsx +22 -0
  526. package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +3 -0
  527. package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.tsx +22 -0
  528. package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +3 -0
  529. package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.tsx +22 -0
  530. package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +3 -0
  531. package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.tsx +22 -0
  532. package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +3 -0
  533. package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/index.tsx +35 -0
  534. package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +7 -0
  535. package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.tsx +38 -0
  536. package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +3 -0
  537. package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/index.tsx +35 -0
  538. package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +3 -0
  539. package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.tsx +22 -0
  540. package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +3 -0
  541. package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/index.tsx +22 -0
  542. package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +3 -0
  543. package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/index.tsx +22 -0
  544. package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +3 -0
  545. package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.tsx +22 -0
  546. package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +3 -0
  547. package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.tsx +35 -0
  548. package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +3 -0
  549. package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.tsx +22 -0
  550. package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +3 -0
  551. package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.tsx +22 -0
  552. package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +7 -0
  553. package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.tsx +67 -0
  554. package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +3 -0
  555. package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/index.tsx +22 -0
  556. package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +3 -0
  557. package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.tsx +22 -0
  558. package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +3 -0
  559. package/src/Presentation/components/UI/svgs/Icons/Contents/User/index.tsx +35 -0
  560. package/src/Presentation/components/UI/svgs/Icons/IconsCommonTypes.ts +6 -0
  561. package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +3 -0
  562. package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/index.tsx +22 -0
  563. package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +3 -0
  564. package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.tsx +22 -0
  565. package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +3 -0
  566. package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.tsx +22 -0
  567. package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +3 -0
  568. package/src/Presentation/components/UI/svgs/Icons/Media/Camera/index.tsx +22 -0
  569. package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +3 -0
  570. package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/index.tsx +22 -0
  571. package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +3 -0
  572. package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.tsx +22 -0
  573. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +3 -0
  574. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.tsx +35 -0
  575. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +3 -0
  576. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.tsx +22 -0
  577. package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +3 -0
  578. package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.tsx +22 -0
  579. package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +4 -0
  580. package/src/Presentation/components/UI/svgs/Icons/Media/Location/index.tsx +26 -0
  581. package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +3 -0
  582. package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.tsx +22 -0
  583. package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +3 -0
  584. package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.tsx +22 -0
  585. package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +3 -0
  586. package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.tsx +22 -0
  587. package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +3 -0
  588. package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.tsx +22 -0
  589. package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +3 -0
  590. package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.tsx +22 -0
  591. package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +3 -0
  592. package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.tsx +22 -0
  593. package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +3 -0
  594. package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.tsx +22 -0
  595. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +3 -0
  596. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.tsx +22 -0
  597. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +3 -0
  598. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.tsx +22 -0
  599. package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +3 -0
  600. package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/index.tsx +22 -0
  601. package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +3 -0
  602. package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/index.tsx +35 -0
  603. package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +3 -0
  604. package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/index.tsx +35 -0
  605. package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +3 -0
  606. package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.tsx +35 -0
  607. package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +7 -0
  608. package/src/Presentation/components/UI/svgs/Icons/Navigation/More/index.tsx +22 -0
  609. package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +3 -0
  610. package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/index.tsx +35 -0
  611. package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +3 -0
  612. package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.tsx +22 -0
  613. package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +3 -0
  614. package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.tsx +36 -0
  615. package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +3 -0
  616. package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/index.tsx +35 -0
  617. package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +3 -0
  618. package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.tsx +22 -0
  619. package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +3 -0
  620. package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.tsx +22 -0
  621. package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +3 -0
  622. package/src/Presentation/components/UI/svgs/Icons/Status/Error/index.tsx +36 -0
  623. package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +3 -0
  624. package/src/Presentation/components/UI/svgs/Icons/Status/Help/index.tsx +22 -0
  625. package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +3 -0
  626. package/src/Presentation/components/UI/svgs/Icons/Status/Information/index.tsx +22 -0
  627. package/src/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.tsx +35 -0
  628. package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +3 -0
  629. package/src/Presentation/components/UI/svgs/Icons/Status/Loader/index.tsx +22 -0
  630. package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +3 -0
  631. package/src/Presentation/components/UI/svgs/Icons/Status/Mention/index.tsx +22 -0
  632. package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +3 -0
  633. package/src/Presentation/components/UI/svgs/Icons/Status/Sent/index.tsx +22 -0
  634. package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +3 -0
  635. package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.tsx +38 -0
  636. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +3 -0
  637. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.tsx +22 -0
  638. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +3 -0
  639. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.tsx +22 -0
  640. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +3 -0
  641. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.tsx +22 -0
  642. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +3 -0
  643. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.tsx +24 -0
  644. package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +3 -0
  645. package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.tsx +22 -0
  646. package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +3 -0
  647. package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.tsx +22 -0
  648. package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +3 -0
  649. package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.tsx +22 -0
  650. package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +3 -0
  651. package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.tsx +22 -0
  652. package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +3 -0
  653. package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.tsx +22 -0
  654. package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +3 -0
  655. package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.tsx +22 -0
  656. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +3 -0
  657. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.tsx +22 -0
  658. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +4 -0
  659. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.tsx +26 -0
  660. package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +3 -0
  661. package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.tsx +22 -0
  662. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +3 -0
  663. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.tsx +35 -0
  664. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +3 -0
  665. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.tsx +35 -0
  666. package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +3 -0
  667. package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.tsx +22 -0
  668. package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +3 -0
  669. package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.tsx +22 -0
  670. package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +3 -0
  671. package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/index.tsx +22 -0
  672. package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +3 -0
  673. package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.tsx +22 -0
  674. package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +3 -0
  675. package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/index.tsx +22 -0
  676. package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +3 -0
  677. package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.tsx +22 -0
  678. package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +3 -0
  679. package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.tsx +22 -0
  680. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +3 -0
  681. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.tsx +22 -0
  682. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +3 -0
  683. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.tsx +22 -0
  684. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +6 -0
  685. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.tsx +24 -0
  686. package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +45 -0
  687. package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.tsx +95 -0
  688. package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +45 -0
  689. package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.tsx +97 -0
  690. package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +46 -0
  691. package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.tsx +97 -0
  692. package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +46 -0
  693. package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.tsx +85 -0
  694. package/src/Presentation/components/layouts/Desktop/Desktop.tsx +103 -0
  695. package/src/Presentation/components/layouts/Desktop/DesktopLayout.scss +31 -0
  696. package/src/Presentation/components/layouts/Desktop/DesktopLayoutForMockModels.tsx +31 -0
  697. package/src/Presentation/components/layouts/LayoutCommonTypes.ts +7 -0
  698. package/src/Presentation/components/layouts/TestStage/LoginView/Login.scss +71 -0
  699. package/src/Presentation/components/layouts/TestStage/LoginView/Login.tsx +116 -0
  700. package/src/Presentation/components/layouts/TestStage/TestStageMarkup.scss +24 -0
  701. package/src/Presentation/components/layouts/TestStage/TestStageMarkup.tsx +1109 -0
  702. package/src/Presentation/components/layouts/TestStage/TestStageWithMockData/TestStageWithMockData.tsx +209 -0
  703. package/src/Presentation/components/providers/ModalContextProvider/Modal.scss +71 -0
  704. package/src/Presentation/components/providers/ModalContextProvider/Modal.tsx +131 -0
  705. package/src/Presentation/components/providers/ModalContextProvider/ModalContextProvider.tsx +38 -0
  706. package/src/Presentation/components/providers/ModalContextProvider/useModal.ts +39 -0
  707. package/src/Presentation/components/providers/ProviderProps.ts +5 -0
  708. package/src/Presentation/components/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.tsx +255 -0
  709. package/src/Presentation/components/providers/QuickBloxUIKitProvider/useEventMessagesRepository.ts +10 -0
  710. package/src/Presentation/components/providers/QuickBloxUIKitProvider/useQBConnection.ts +38 -0
  711. package/src/Presentation/components/providers/QuickBloxUIKitProvider/useQbDataContext.ts +82 -0
  712. package/src/QBconfig.ts +41 -0
  713. package/src/index-ui.ts +60 -0
  714. package/src/index.scss +74 -0
  715. package/src/index.tsx +25 -0
  716. package/src/logo.svg +1 -0
  717. package/src/qb-api-calls/index.ts +543 -0
  718. package/src/react-app-env.d.ts +1 -0
  719. package/src/setupTests.ts +5 -0
  720. package/src/utils/DateTimeFormatter.ts +35 -0
  721. package/src/utils/parse.ts +74 -0
  722. package/tsconfig.json +33 -0
  723. package/typedoc.json +4 -0
  724. package/webpack.config.js +56 -0
@@ -0,0 +1,401 @@
1
+ import { IDTOMapper } from './IDTOMapper';
2
+ import { RemoteDialogDTO } from '../../../dto/dialog/RemoteDialogDTO';
3
+ import { DialogType } from '../../../../Domain/entity/DialogTypes';
4
+ import {
5
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
6
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
7
+ MapperDTOException,
8
+ UNEXPECTED_MAPPER_DTO_EXCEPTION_EXCEPTION_CODE,
9
+ UNEXPECTED_MAPPER_DTO_EXCEPTION_MESSAGE,
10
+ } from '../../exception/MapperDTOException';
11
+
12
+ type DtoValidator<T> = {
13
+ [key in keyof T]: (v: unknown) => v is T[key];
14
+ };
15
+
16
+ export class DialogDTOMapper implements IDTOMapper {
17
+ // eslint-disable-next-line class-methods-use-this
18
+ fromDTO<TArg, TResult>(dto: TArg): Promise<TResult> {
19
+ const dialogDTO: RemoteDialogDTO = dto as unknown as RemoteDialogDTO;
20
+
21
+ DialogDTOMapper.validateDTO(dialogDTO);
22
+
23
+ const dialog: QBChatDialog = {
24
+ _id: dialogDTO.id,
25
+ created_at: '',
26
+ last_message: dialogDTO.lastMessageText,
27
+ last_message_date_sent: dialogDTO.lastMessageDateSent,
28
+ last_message_id: null,
29
+ last_message_user_id: parseInt(dialogDTO.lastMessageUserId, 10),
30
+ name: dialogDTO.name,
31
+ occupants_ids: dialogDTO.participantsIds,
32
+ new_occupants_ids: dialogDTO.newParticipantsIds
33
+ ? dialogDTO.newParticipantsIds
34
+ : [],
35
+ photo: dialogDTO.photo !== '' ? dialogDTO.photo : null,
36
+ type: dialogDTO.type as QBChatDialogType,
37
+ unread_messages_count: dialogDTO.unreadMessageCount,
38
+ updated_at: dialogDTO.updatedAt,
39
+ user_id: parseInt(dialogDTO.ownerId, 10),
40
+ xmpp_room_jid: null,
41
+ };
42
+
43
+ return Promise.resolve(dialog as TResult);
44
+ }
45
+
46
+ // eslint-disable-next-line class-methods-use-this
47
+ toTDO<TArg, TResult>(qbEntity: TArg): Promise<TResult> {
48
+ const qbDialog: QBChatDialog = qbEntity as unknown as QBChatDialog;
49
+
50
+ DialogDTOMapper.validateQBChatDialog(qbDialog);
51
+
52
+ const dto: RemoteDialogDTO = new RemoteDialogDTO();
53
+
54
+ dto.id = qbDialog._id;
55
+ dto.lastMessageId = qbDialog.last_message_id || '';
56
+ dto.lastMessageText = qbDialog.last_message as string;
57
+ dto.lastMessageDateSent = qbDialog.last_message_date_sent as string;
58
+ dto.lastMessageUserId =
59
+ qbDialog.last_message_user_id === null
60
+ ? ''
61
+ : qbDialog.last_message_user_id.toString();
62
+ dto.ownerId = qbDialog.user_id.toString();
63
+ dto.type = qbDialog.type as number;
64
+ dto.unreadMessageCount =
65
+ qbDialog.unread_messages_count === null
66
+ ? 0
67
+ : qbDialog.unread_messages_count;
68
+ dto.updatedAt = qbDialog.updated_at;
69
+ dto.participantId = qbDialog.user_id.toString();
70
+ dto.name = qbDialog.name;
71
+ dto.photo = qbDialog.photo === null ? '' : qbDialog.photo;
72
+ dto.participantsIds = qbDialog.occupants_ids;
73
+ dto.newParticipantsIds = qbDialog.new_occupants_ids;
74
+
75
+ switch (qbDialog.type) {
76
+ case DialogType.private:
77
+ dto.id = qbDialog._id;
78
+ dto.lastMessageText = qbDialog.last_message as string;
79
+ dto.lastMessageDateSent = qbDialog.last_message_date_sent as string;
80
+ dto.lastMessageUserId =
81
+ qbDialog.last_message_user_id === null
82
+ ? ''
83
+ : qbDialog.last_message_user_id.toString();
84
+ dto.ownerId = qbDialog.user_id.toString();
85
+ dto.type = qbDialog.type;
86
+ dto.unreadMessageCount =
87
+ qbDialog.unread_messages_count === null
88
+ ? 0
89
+ : qbDialog.unread_messages_count;
90
+ dto.updatedAt = qbDialog.updated_at;
91
+ break;
92
+ case DialogType.public:
93
+ dto.id = qbDialog._id;
94
+ dto.lastMessageText = qbDialog.last_message as string;
95
+ dto.lastMessageDateSent = qbDialog.last_message_date_sent as string;
96
+ dto.lastMessageUserId =
97
+ qbDialog.last_message_user_id === null
98
+ ? ''
99
+ : qbDialog.last_message_user_id.toString();
100
+ dto.ownerId = qbDialog.user_id.toString();
101
+ dto.type = qbDialog.type;
102
+ dto.unreadMessageCount =
103
+ qbDialog.unread_messages_count === null
104
+ ? 0
105
+ : qbDialog.unread_messages_count;
106
+ dto.updatedAt = qbDialog.updated_at;
107
+ dto.participantId = qbDialog.user_id.toString();
108
+ dto.name = qbDialog.name;
109
+ dto.photo = qbDialog.photo === null ? '' : qbDialog.photo;
110
+ break;
111
+ case DialogType.group:
112
+ dto.id = qbDialog._id;
113
+ dto.lastMessageText = qbDialog.last_message as string;
114
+ dto.lastMessageDateSent = qbDialog.last_message_date_sent as string;
115
+ dto.lastMessageUserId =
116
+ qbDialog.last_message_user_id === null
117
+ ? ''
118
+ : qbDialog.last_message_user_id.toString();
119
+ dto.ownerId = qbDialog.user_id.toString();
120
+ dto.type = qbDialog.type;
121
+ dto.unreadMessageCount =
122
+ qbDialog.unread_messages_count === null
123
+ ? 0
124
+ : qbDialog.unread_messages_count;
125
+ dto.updatedAt = qbDialog.updated_at;
126
+ dto.name = qbDialog.name;
127
+ dto.photo = qbDialog.photo === null ? '' : qbDialog.photo;
128
+ dto.participantsIds = qbDialog.occupants_ids;
129
+ break;
130
+ default:
131
+ return Promise.reject(
132
+ new MapperDTOException(
133
+ UNEXPECTED_MAPPER_DTO_EXCEPTION_MESSAGE,
134
+ UNEXPECTED_MAPPER_DTO_EXCEPTION_EXCEPTION_CODE,
135
+ 'undefinded type dialog in QBChatDialog',
136
+ ),
137
+ );
138
+ }
139
+
140
+ return Promise.resolve(dto as unknown as TResult);
141
+ }
142
+
143
+ // TODO: check field for validate RemoteDialogDTO
144
+ private static validateDTO(dto: RemoteDialogDTO) {
145
+ const dialogDTOValidator: DtoValidator<RemoteDialogDTO> = {
146
+ id(v: unknown): v is RemoteDialogDTO['id'] {
147
+ const { id } = v as RemoteDialogDTO;
148
+
149
+ return id !== undefined && id !== null;
150
+ },
151
+ lastMessageDateSent(
152
+ v: unknown,
153
+ ): v is RemoteDialogDTO['lastMessageDateSent'] {
154
+ const { lastMessageDateSent } = v as RemoteDialogDTO;
155
+
156
+ return (
157
+ lastMessageDateSent !== undefined && lastMessageDateSent !== null
158
+ );
159
+ },
160
+ lastMessageText(v: unknown): v is RemoteDialogDTO['lastMessageText'] {
161
+ const { lastMessageText } = v as RemoteDialogDTO;
162
+
163
+ return lastMessageText !== undefined && lastMessageText !== null;
164
+ },
165
+ lastMessageUserId(v: unknown): v is RemoteDialogDTO['lastMessageUserId'] {
166
+ const { lastMessageUserId } = v as RemoteDialogDTO;
167
+
168
+ return lastMessageUserId !== undefined && lastMessageUserId !== null;
169
+ },
170
+ lastMessageId(v: unknown): v is RemoteDialogDTO['lastMessageId'] {
171
+ const { lastMessageId } = v as RemoteDialogDTO;
172
+
173
+ return lastMessageId !== undefined && lastMessageId !== null;
174
+ },
175
+ name(v: unknown): v is RemoteDialogDTO['name'] {
176
+ const { name } = v as RemoteDialogDTO;
177
+
178
+ return name !== undefined && name !== null;
179
+ },
180
+ ownerId(v: unknown): v is RemoteDialogDTO['ownerId'] {
181
+ const { ownerId } = v as RemoteDialogDTO;
182
+
183
+ // todo: need check to empty string or string with len <= 3
184
+ return ownerId !== undefined && ownerId !== null;
185
+ },
186
+ participantId(v: unknown): v is RemoteDialogDTO['participantId'] {
187
+ const { participantId } = v as RemoteDialogDTO;
188
+
189
+ return participantId !== undefined && participantId !== null;
190
+ },
191
+ participantsIds(v: unknown): v is RemoteDialogDTO['participantsIds'] {
192
+ const { participantsIds } = v as RemoteDialogDTO;
193
+
194
+ return participantsIds !== undefined && participantsIds !== null;
195
+ },
196
+ photo(v: unknown): v is RemoteDialogDTO['photo'] {
197
+ const { photo } = v as RemoteDialogDTO;
198
+
199
+ return photo !== undefined && photo !== null;
200
+ },
201
+ type(v: unknown): v is RemoteDialogDTO['type'] {
202
+ const { type } = v as RemoteDialogDTO;
203
+
204
+ return type !== undefined && type !== null;
205
+ },
206
+ unreadMessageCount(
207
+ v: unknown,
208
+ ): v is RemoteDialogDTO['unreadMessageCount'] {
209
+ const { unreadMessageCount } = v as RemoteDialogDTO;
210
+
211
+ return unreadMessageCount !== undefined && unreadMessageCount !== null;
212
+ },
213
+ updatedAt(v: unknown): v is RemoteDialogDTO['updatedAt'] {
214
+ const { updatedAt } = v as RemoteDialogDTO;
215
+
216
+ return updatedAt !== undefined && updatedAt !== null;
217
+ },
218
+ };
219
+
220
+ if (!dialogDTOValidator.id(dto))
221
+ throw new MapperDTOException(
222
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
223
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
224
+ 'field {id} does not exist or empty',
225
+ );
226
+ if (!dialogDTOValidator.lastMessageText(dto))
227
+ throw new MapperDTOException(
228
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
229
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
230
+ 'field {lastMessage} does not exist or empty',
231
+ );
232
+ if (!dialogDTOValidator.ownerId(dto))
233
+ throw new MapperDTOException(
234
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
235
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
236
+ 'field {ownerId} does not exist or empty',
237
+ );
238
+ if (!dialogDTOValidator.type(dto))
239
+ throw new MapperDTOException(
240
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
241
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
242
+ 'field {type} does not exist or empty',
243
+ );
244
+ if (!dialogDTOValidator.unreadMessageCount(dto))
245
+ throw new MapperDTOException(
246
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
247
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
248
+ 'field {unreadMessageCount} does not exist or empty',
249
+ );
250
+ if (!dialogDTOValidator.updatedAt(dto))
251
+ throw new MapperDTOException(
252
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
253
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
254
+ 'field {updatedAt} does not exist or empty',
255
+ );
256
+ if (!dialogDTOValidator.name(dto))
257
+ throw new MapperDTOException(
258
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
259
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
260
+ 'field {name} does not exist or empty',
261
+ );
262
+ if (!dialogDTOValidator.photo(dto))
263
+ throw new MapperDTOException(
264
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
265
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
266
+ 'field {photo} does not exist or empty',
267
+ );
268
+ }
269
+
270
+ // TODO: check field for validate QBChatDialog
271
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
272
+ private static validateQBChatDialog(qbDialog: QBChatDialog) {
273
+ const qbDialogValidator: DtoValidator<QBChatDialog> = {
274
+ _id(v: unknown): v is QBChatDialog['_id'] {
275
+ const { _id } = v as QBChatDialog;
276
+
277
+ return _id !== undefined && _id !== null;
278
+ },
279
+ created_at(v: unknown): v is QBChatDialog['created_at'] {
280
+ const { created_at } = v as QBChatDialog;
281
+
282
+ return created_at !== undefined && created_at !== null;
283
+ },
284
+ data(v: unknown): v is QBChatDialog['data'] {
285
+ const { data } = v as QBChatDialog;
286
+
287
+ return data !== undefined && data !== null;
288
+ },
289
+ joined(v: unknown): v is QBChatDialog['joined'] {
290
+ const { joined } = v as QBChatDialog;
291
+
292
+ return joined !== undefined && joined !== null;
293
+ },
294
+ last_message(v: unknown): v is QBChatDialog['last_message'] {
295
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
296
+ const { last_message } = v as QBChatDialog;
297
+
298
+ // return last_message !== undefined && last_message !== null;
299
+ return true;
300
+ },
301
+ last_message_date_sent(
302
+ v: unknown,
303
+ ): v is QBChatDialog['last_message_date_sent'] {
304
+ const { last_message_date_sent } = v as QBChatDialog;
305
+
306
+ return (
307
+ last_message_date_sent !== undefined &&
308
+ last_message_date_sent !== null
309
+ );
310
+ },
311
+ last_message_id(v: unknown): v is QBChatDialog['last_message_id'] {
312
+ const { last_message_id } = v as QBChatDialog;
313
+
314
+ return last_message_id !== undefined && last_message_id !== null;
315
+ },
316
+ last_message_user_id(
317
+ v: unknown,
318
+ ): v is QBChatDialog['last_message_user_id'] {
319
+ const { last_message_user_id } = v as QBChatDialog;
320
+
321
+ return (
322
+ last_message_user_id !== undefined && last_message_user_id !== null
323
+ );
324
+ },
325
+ name(v: unknown): v is QBChatDialog['name'] {
326
+ const { name } = v as QBChatDialog;
327
+
328
+ return name !== undefined && name !== null;
329
+ },
330
+ occupants_ids(v: unknown): v is QBChatDialog['occupants_ids'] {
331
+ const { occupants_ids } = v as QBChatDialog;
332
+
333
+ return occupants_ids !== undefined && occupants_ids !== null;
334
+ },
335
+ new_occupants_ids(v: unknown): v is QBChatDialog['new_occupants_ids'] {
336
+ const { new_occupants_ids } = v as QBChatDialog;
337
+
338
+ return new_occupants_ids !== undefined && new_occupants_ids !== null;
339
+ },
340
+ photo(v: unknown): v is QBChatDialog['photo'] {
341
+ const { photo } = v as QBChatDialog;
342
+
343
+ return photo !== undefined && photo !== null;
344
+ },
345
+ type(v: unknown): v is QBChatDialog['type'] {
346
+ const { type } = v as QBChatDialog;
347
+
348
+ return type !== undefined && type !== null;
349
+ },
350
+ unread_messages_count(
351
+ v: unknown,
352
+ ): v is QBChatDialog['unread_messages_count'] {
353
+ const { unread_messages_count } = v as QBChatDialog;
354
+
355
+ return (
356
+ unread_messages_count !== undefined && unread_messages_count !== null
357
+ );
358
+ },
359
+ updated_at(v: unknown): v is QBChatDialog['updated_at'] {
360
+ const { updated_at } = v as QBChatDialog;
361
+
362
+ return updated_at !== undefined && updated_at !== null;
363
+ },
364
+ user_id(v: unknown): v is QBChatDialog['user_id'] {
365
+ const { user_id } = v as QBChatDialog;
366
+
367
+ return user_id !== undefined && user_id !== null;
368
+ },
369
+ xmpp_room_jid(v: unknown): v is QBChatDialog['xmpp_room_jid'] {
370
+ const { xmpp_room_jid } = v as QBChatDialog;
371
+
372
+ return xmpp_room_jid !== undefined && xmpp_room_jid !== null;
373
+ },
374
+ };
375
+
376
+ if (!qbDialogValidator._id(qbDialog))
377
+ throw new MapperDTOException(
378
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
379
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
380
+ 'field {id} does not exist or empty',
381
+ );
382
+ if (!qbDialogValidator.last_message(qbDialog)) {
383
+ console.log(
384
+ 'last_message is does not exist or empty. qbDialog: ',
385
+ JSON.stringify(qbDialog),
386
+ );
387
+ throw new MapperDTOException(
388
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
389
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
390
+ 'field {lastMessage} does not exist or empty',
391
+ );
392
+ }
393
+
394
+ if (!qbDialogValidator.user_id(qbDialog))
395
+ throw new MapperDTOException(
396
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
397
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
398
+ 'field {user_id} does not exist or empty',
399
+ );
400
+ }
401
+ }
@@ -0,0 +1,276 @@
1
+ import { IDTOMapper } from './IDTOMapper';
2
+ import { RemoteFileDTO } from '../../../dto/file/RemoteFileDTO';
3
+ import {
4
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
5
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
6
+ MapperDTOException,
7
+ } from '../../exception/MapperDTOException';
8
+
9
+ type DtoValidator<T> = {
10
+ [key in keyof T]: (v: unknown) => v is T[key];
11
+ };
12
+
13
+ export class FileDTOMapper implements IDTOMapper {
14
+ // eslint-disable-next-line class-methods-use-this
15
+ fromDTO<TArg, TResult>(dto: TArg): Promise<TResult> {
16
+ const fileDTO: RemoteFileDTO = dto as unknown as RemoteFileDTO;
17
+
18
+ FileDTOMapper.validateDTO(fileDTO);
19
+
20
+ // eslint-disable-next-line @typescript-eslint/no-shadow
21
+ const fileContentParam: QBContentParam = {
22
+ name: fileDTO.name || '',
23
+ file: fileDTO.data,
24
+ type: fileDTO.type || '',
25
+ size: fileDTO.size || 0,
26
+ public: false, // optional, "false" by default
27
+ };
28
+
29
+ return Promise.resolve(fileContentParam as TResult);
30
+ }
31
+
32
+ // eslint-disable-next-line class-methods-use-this
33
+ toTDO<TArg, TResult>(qbEntity: TArg): Promise<TResult> {
34
+ const qbFile: QBContentObject = qbEntity as unknown as QBContentObject;
35
+
36
+ FileDTOMapper.validateQBFileDialog(qbFile);
37
+
38
+ const dto: RemoteFileDTO = new RemoteFileDTO();
39
+
40
+ dto.id = qbFile.id?.toString() || '';
41
+
42
+ dto.type = qbFile.content_type || '';
43
+
44
+ dto.uid = qbFile.uid?.toString() || '';
45
+
46
+ dto.url =
47
+ qbFile.uid.toString() && QB.content.privateUrl(qbFile.uid.toString());
48
+
49
+ dto.name = qbFile.name || '';
50
+
51
+ dto.size = qbFile.size || 0;
52
+
53
+ return Promise.resolve(dto as TResult);
54
+ }
55
+
56
+ private static validateDTO(fileDTO: RemoteFileDTO) {
57
+ const fileDTOValidator: DtoValidator<RemoteFileDTO> = {
58
+ data(v: unknown): v is RemoteFileDTO['data'] {
59
+ const { data } = v as RemoteFileDTO;
60
+
61
+ return data !== undefined && data !== null;
62
+ },
63
+ id(v: unknown): v is RemoteFileDTO['id'] {
64
+ const { id } = v as RemoteFileDTO;
65
+
66
+ return id !== undefined && id !== null;
67
+ },
68
+ name(v: unknown): v is RemoteFileDTO['name'] {
69
+ const { name } = v as RemoteFileDTO;
70
+
71
+ return name !== undefined && name !== null && name.length > 0;
72
+ },
73
+ size(v: unknown): v is RemoteFileDTO['size'] {
74
+ const { size } = v as RemoteFileDTO;
75
+
76
+ return size !== undefined && size !== null;
77
+ },
78
+ uid(v: unknown): v is RemoteFileDTO['uid'] {
79
+ const { uid } = v as RemoteFileDTO;
80
+
81
+ return uid !== undefined && uid !== null;
82
+ },
83
+ url(v: unknown): v is RemoteFileDTO['url'] {
84
+ const { url } = v as RemoteFileDTO;
85
+
86
+ return url !== undefined;
87
+ },
88
+ type(v: unknown): v is RemoteFileDTO['type'] {
89
+ const { type } = v as RemoteFileDTO;
90
+ const result = (type as unknown as string) || '';
91
+
92
+ return result.length >= 0;
93
+ },
94
+ };
95
+
96
+ if (!fileDTOValidator.id(fileDTO))
97
+ throw new MapperDTOException(
98
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
99
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
100
+ 'field {id} does not exists or empty in DTO',
101
+ );
102
+
103
+ if (!fileDTOValidator.name(fileDTO))
104
+ throw new MapperDTOException(
105
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
106
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
107
+ 'field {name} does not exist or empty in DTO',
108
+ );
109
+
110
+ if (!fileDTOValidator.data(fileDTO))
111
+ throw new MapperDTOException(
112
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
113
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
114
+ 'field {data} does not exists or empty in DTO',
115
+ );
116
+
117
+ if (!fileDTOValidator.url(fileDTO))
118
+ throw new MapperDTOException(
119
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
120
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
121
+ 'field {url} does not exist or empty in DTO',
122
+ );
123
+
124
+ if (!fileDTOValidator.size(fileDTO))
125
+ throw new MapperDTOException(
126
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
127
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
128
+ 'field {size} does not exists or empty in DTO',
129
+ );
130
+
131
+ if (!fileDTOValidator.uid(fileDTO))
132
+ throw new MapperDTOException(
133
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
134
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
135
+ 'field {uid} does not exist or empty in DTO',
136
+ );
137
+
138
+ if (!fileDTOValidator.type(fileDTO))
139
+ throw new MapperDTOException(
140
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
141
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
142
+ 'field {type} does not exist or empty in DTO',
143
+ );
144
+
145
+ return Promise.resolve();
146
+ }
147
+
148
+ private static validateQBFileDialog(qbFile: QBContentObject) {
149
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
150
+ // @ts-ignore
151
+ const qbFileValidator: DtoValidator<QBContentObject> = {
152
+ account_id(v: unknown): v is QBContentObject['account_id'] {
153
+ const { account_id } = v as QBContentObject;
154
+
155
+ return account_id !== undefined && account_id !== null;
156
+ },
157
+ app_id(v: unknown): v is QBContentObject['app_id'] {
158
+ const { app_id } = v as QBContentObject;
159
+
160
+ return app_id !== undefined && app_id !== null;
161
+ },
162
+ content_type(v: unknown): v is QBContentObject['content_type'] {
163
+ const { content_type } = v as QBContentObject;
164
+
165
+ return content_type !== undefined && content_type !== null;
166
+ },
167
+ created_at(v: unknown): v is QBContentObject['created_at'] {
168
+ const { created_at } = v as QBContentObject;
169
+
170
+ return (
171
+ created_at !== undefined &&
172
+ created_at !== null &&
173
+ created_at.length > 0
174
+ );
175
+ },
176
+ id(v: unknown): v is QBContentObject['id'] {
177
+ const { id } = v as QBContentObject;
178
+
179
+ return id !== undefined && id !== null;
180
+ },
181
+ name(v: unknown): v is QBContentObject['name'] {
182
+ const { name } = v as QBContentObject;
183
+
184
+ return name !== undefined && name !== null && name.length > 0;
185
+ },
186
+ // TODO: public
187
+ // public(v: unknown): v is QBContentObject['public'] {
188
+ // const { public } = v as QBContentObject;
189
+ //
190
+ // return public !== undefined && public !== null;
191
+ // },
192
+ size(v: unknown): v is QBContentObject['size'] {
193
+ const { size } = v as QBContentObject;
194
+
195
+ return size !== undefined && size !== null;
196
+ },
197
+ uid(v: unknown): v is QBContentObject['uid'] {
198
+ const { uid } = v as QBContentObject;
199
+
200
+ return uid !== undefined && uid !== null && uid.length > 0;
201
+ },
202
+ updated_at(v: unknown): v is QBContentObject['updated_at'] {
203
+ const { updated_at } = v as QBContentObject;
204
+
205
+ return (
206
+ updated_at !== undefined &&
207
+ updated_at !== null &&
208
+ updated_at.length > 0
209
+ );
210
+ },
211
+ };
212
+
213
+ if (!qbFileValidator.account_id(qbFile))
214
+ throw new MapperDTOException(
215
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
216
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
217
+ 'field {account_id} does not exists or empty',
218
+ );
219
+
220
+ if (!qbFileValidator.app_id(qbFile))
221
+ throw new MapperDTOException(
222
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
223
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
224
+ 'field {app_id} does not exists or empty',
225
+ );
226
+
227
+ if (!qbFileValidator.content_type(qbFile))
228
+ throw new MapperDTOException(
229
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
230
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
231
+ 'field {content_type} does not exists or empty',
232
+ );
233
+
234
+ if (!qbFileValidator.created_at(qbFile))
235
+ throw new MapperDTOException(
236
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
237
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
238
+ 'field {created_at} does not exists or empty',
239
+ );
240
+
241
+ if (!qbFileValidator.id(qbFile))
242
+ throw new MapperDTOException(
243
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
244
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
245
+ 'field {id} does not exists or empty',
246
+ );
247
+
248
+ if (!qbFileValidator.name(qbFile))
249
+ throw new MapperDTOException(
250
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
251
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
252
+ 'field {name} does not exists or empty',
253
+ );
254
+
255
+ if (!qbFileValidator.size(qbFile))
256
+ throw new MapperDTOException(
257
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
258
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
259
+ 'field {size} does not exists or empty',
260
+ );
261
+
262
+ if (!qbFileValidator.uid(qbFile))
263
+ throw new MapperDTOException(
264
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
265
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
266
+ 'field {size} does not exists or empty',
267
+ );
268
+
269
+ if (!qbFileValidator.updated_at(qbFile))
270
+ throw new MapperDTOException(
271
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_MESSAGE,
272
+ INCORRECT_DATA_MAPPER_DTO_EXCEPTION_CODE,
273
+ 'field {size} does not exists or empty',
274
+ );
275
+ }
276
+ }
@@ -0,0 +1,4 @@
1
+ export interface IDTOMapper {
2
+ fromDTO<TArg, TResult>(dto: TArg): Promise<TResult>;
3
+ toTDO<TArg, TResult>(entity: TArg): Promise<TResult>;
4
+ }