@stream-io/video-react-sdk 0.0.1-alpha.100

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 (454) hide show
  1. package/CHANGELOG.md +101 -0
  2. package/LICENSE +219 -0
  3. package/README.md +5 -0
  4. package/dist/css/styles.css +2244 -0
  5. package/dist/css/styles.css.map +1 -0
  6. package/dist/index.d.ts +6 -0
  7. package/dist/index.js +15 -0
  8. package/dist/index.js.map +1 -0
  9. package/dist/src/components/Avatar/Avatar.d.ts +14 -0
  10. package/dist/src/components/Avatar/Avatar.js +11 -0
  11. package/dist/src/components/Avatar/Avatar.js.map +1 -0
  12. package/dist/src/components/Avatar/index.d.ts +1 -0
  13. package/dist/src/components/Avatar/index.js +2 -0
  14. package/dist/src/components/Avatar/index.js.map +1 -0
  15. package/dist/src/components/Button/CompositeButton.d.ts +16 -0
  16. package/dist/src/components/Button/CompositeButton.js +13 -0
  17. package/dist/src/components/Button/CompositeButton.js.map +1 -0
  18. package/dist/src/components/Button/CopyToClipboardButton.d.ts +27 -0
  19. package/dist/src/components/Button/CopyToClipboardButton.js +54 -0
  20. package/dist/src/components/Button/CopyToClipboardButton.js.map +1 -0
  21. package/dist/src/components/Button/IconButton.d.ts +7 -0
  22. package/dist/src/components/Button/IconButton.js +26 -0
  23. package/dist/src/components/Button/IconButton.js.map +1 -0
  24. package/dist/src/components/Button/TextButton.d.ts +2 -0
  25. package/dist/src/components/Button/TextButton.js +17 -0
  26. package/dist/src/components/Button/TextButton.js.map +1 -0
  27. package/dist/src/components/Button/index.d.ts +4 -0
  28. package/dist/src/components/Button/index.js +5 -0
  29. package/dist/src/components/Button/index.js.map +1 -0
  30. package/dist/src/components/CallControls/AcceptCallButton.d.ts +7 -0
  31. package/dist/src/components/CallControls/AcceptCallButton.js +27 -0
  32. package/dist/src/components/CallControls/AcceptCallButton.js.map +1 -0
  33. package/dist/src/components/CallControls/CallControls.d.ts +5 -0
  34. package/dist/src/components/CallControls/CallControls.js +5 -0
  35. package/dist/src/components/CallControls/CallControls.js.map +1 -0
  36. package/dist/src/components/CallControls/CallStatsButton.d.ts +2 -0
  37. package/dist/src/components/CallControls/CallStatsButton.js +8 -0
  38. package/dist/src/components/CallControls/CallStatsButton.js.map +1 -0
  39. package/dist/src/components/CallControls/CancelCallButton.d.ts +7 -0
  40. package/dist/src/components/CallControls/CancelCallButton.js +27 -0
  41. package/dist/src/components/CallControls/CancelCallButton.js.map +1 -0
  42. package/dist/src/components/CallControls/ReactionsButton.d.ts +11 -0
  43. package/dist/src/components/CallControls/ReactionsButton.js +32 -0
  44. package/dist/src/components/CallControls/ReactionsButton.js.map +1 -0
  45. package/dist/src/components/CallControls/RecordCallButton.d.ts +5 -0
  46. package/dist/src/components/CallControls/RecordCallButton.js +55 -0
  47. package/dist/src/components/CallControls/RecordCallButton.js.map +1 -0
  48. package/dist/src/components/CallControls/ScreenShareButton.d.ts +5 -0
  49. package/dist/src/components/CallControls/ScreenShareButton.js +54 -0
  50. package/dist/src/components/CallControls/ScreenShareButton.js.map +1 -0
  51. package/dist/src/components/CallControls/ToggleAudioButton.d.ts +9 -0
  52. package/dist/src/components/CallControls/ToggleAudioButton.js +73 -0
  53. package/dist/src/components/CallControls/ToggleAudioButton.js.map +1 -0
  54. package/dist/src/components/CallControls/ToggleAudioOutputButton.d.ts +5 -0
  55. package/dist/src/components/CallControls/ToggleAudioOutputButton.js +9 -0
  56. package/dist/src/components/CallControls/ToggleAudioOutputButton.js.map +1 -0
  57. package/dist/src/components/CallControls/ToggleVideoButton.d.ts +10 -0
  58. package/dist/src/components/CallControls/ToggleVideoButton.js +70 -0
  59. package/dist/src/components/CallControls/ToggleVideoButton.js.map +1 -0
  60. package/dist/src/components/CallControls/index.d.ts +10 -0
  61. package/dist/src/components/CallControls/index.js +11 -0
  62. package/dist/src/components/CallControls/index.js.map +1 -0
  63. package/dist/src/components/CallParticipantsList/BlockedUserListing.d.ts +4 -0
  64. package/dist/src/components/CallParticipantsList/BlockedUserListing.js +18 -0
  65. package/dist/src/components/CallParticipantsList/BlockedUserListing.js.map +1 -0
  66. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.d.ts +6 -0
  67. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.js +7 -0
  68. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.js.map +1 -0
  69. package/dist/src/components/CallParticipantsList/CallParticipantListing.d.ts +8 -0
  70. package/dist/src/components/CallParticipantsList/CallParticipantListing.js +4 -0
  71. package/dist/src/components/CallParticipantsList/CallParticipantListing.js.map +1 -0
  72. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.d.ts +16 -0
  73. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js +85 -0
  74. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js.map +1 -0
  75. package/dist/src/components/CallParticipantsList/CallParticipantsList.d.ts +15 -0
  76. package/dist/src/components/CallParticipantsList/CallParticipantsList.js +81 -0
  77. package/dist/src/components/CallParticipantsList/CallParticipantsList.js.map +1 -0
  78. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.d.ts +2 -0
  79. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.js +5 -0
  80. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.js.map +1 -0
  81. package/dist/src/components/CallParticipantsList/index.d.ts +3 -0
  82. package/dist/src/components/CallParticipantsList/index.js +4 -0
  83. package/dist/src/components/CallParticipantsList/index.js.map +1 -0
  84. package/dist/src/components/CallRecordingList/CallRecordingList.d.ts +20 -0
  85. package/dist/src/components/CallRecordingList/CallRecordingList.js +9 -0
  86. package/dist/src/components/CallRecordingList/CallRecordingList.js.map +1 -0
  87. package/dist/src/components/CallRecordingList/CallRecordingListHeader.d.ts +7 -0
  88. package/dist/src/components/CallRecordingList/CallRecordingListHeader.js +8 -0
  89. package/dist/src/components/CallRecordingList/CallRecordingListHeader.js.map +1 -0
  90. package/dist/src/components/CallRecordingList/CallRecordingListItem.d.ts +7 -0
  91. package/dist/src/components/CallRecordingList/CallRecordingListItem.js +11 -0
  92. package/dist/src/components/CallRecordingList/CallRecordingListItem.js.map +1 -0
  93. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.d.ts +2 -0
  94. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.js +5 -0
  95. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.js.map +1 -0
  96. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.d.ts +7 -0
  97. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.js +7 -0
  98. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.js.map +1 -0
  99. package/dist/src/components/CallRecordingList/index.d.ts +5 -0
  100. package/dist/src/components/CallRecordingList/index.js +6 -0
  101. package/dist/src/components/CallRecordingList/index.js.map +1 -0
  102. package/dist/src/components/CallStats/CallStats.d.ts +6 -0
  103. package/dist/src/components/CallStats/CallStats.js +69 -0
  104. package/dist/src/components/CallStats/CallStats.js.map +1 -0
  105. package/dist/src/components/CallStats/CallStatsLatencyChart.d.ts +7 -0
  106. package/dist/src/components/CallStats/CallStatsLatencyChart.js +39 -0
  107. package/dist/src/components/CallStats/CallStatsLatencyChart.js.map +1 -0
  108. package/dist/src/components/CallStats/index.d.ts +2 -0
  109. package/dist/src/components/CallStats/index.js +3 -0
  110. package/dist/src/components/CallStats/index.js.map +1 -0
  111. package/dist/src/components/Debug/DebugParticipantPublishQuality.d.ts +6 -0
  112. package/dist/src/components/Debug/DebugParticipantPublishQuality.js +46 -0
  113. package/dist/src/components/Debug/DebugParticipantPublishQuality.js.map +1 -0
  114. package/dist/src/components/Debug/DebugStatsView.d.ts +7 -0
  115. package/dist/src/components/Debug/DebugStatsView.js +51 -0
  116. package/dist/src/components/Debug/DebugStatsView.js.map +1 -0
  117. package/dist/src/components/Debug/useIsDebugMode.d.ts +5 -0
  118. package/dist/src/components/Debug/useIsDebugMode.js +18 -0
  119. package/dist/src/components/Debug/useIsDebugMode.js.map +1 -0
  120. package/dist/src/components/DeviceSettings/DeviceSelector.d.ts +7 -0
  121. package/dist/src/components/DeviceSettings/DeviceSelector.js +26 -0
  122. package/dist/src/components/DeviceSettings/DeviceSelector.js.map +1 -0
  123. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.d.ts +9 -0
  124. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.js +20 -0
  125. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.js.map +1 -0
  126. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.d.ts +5 -0
  127. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.js +11 -0
  128. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.js.map +1 -0
  129. package/dist/src/components/DeviceSettings/DeviceSettings.d.ts +2 -0
  130. package/dist/src/components/DeviceSettings/DeviceSettings.js +15 -0
  131. package/dist/src/components/DeviceSettings/DeviceSettings.js.map +1 -0
  132. package/dist/src/components/DeviceSettings/index.d.ts +4 -0
  133. package/dist/src/components/DeviceSettings/index.js +5 -0
  134. package/dist/src/components/DeviceSettings/index.js.map +1 -0
  135. package/dist/src/components/Icon/Icon.d.ts +5 -0
  136. package/dist/src/components/Icon/Icon.js +4 -0
  137. package/dist/src/components/Icon/Icon.js.map +1 -0
  138. package/dist/src/components/Icon/index.d.ts +1 -0
  139. package/dist/src/components/Icon/index.js +2 -0
  140. package/dist/src/components/Icon/index.js.map +1 -0
  141. package/dist/src/components/LoadingIndicator/LoadingIndicator.d.ts +11 -0
  142. package/dist/src/components/LoadingIndicator/LoadingIndicator.js +6 -0
  143. package/dist/src/components/LoadingIndicator/LoadingIndicator.js.map +1 -0
  144. package/dist/src/components/LoadingIndicator/index.d.ts +1 -0
  145. package/dist/src/components/LoadingIndicator/index.js +2 -0
  146. package/dist/src/components/LoadingIndicator/index.js.map +1 -0
  147. package/dist/src/components/Menu/GenericMenu.d.ts +3 -0
  148. package/dist/src/components/Menu/GenericMenu.js +20 -0
  149. package/dist/src/components/Menu/GenericMenu.js.map +1 -0
  150. package/dist/src/components/Menu/MenuToggle.d.ts +12 -0
  151. package/dist/src/components/Menu/MenuToggle.js +40 -0
  152. package/dist/src/components/Menu/MenuToggle.js.map +1 -0
  153. package/dist/src/components/Menu/index.d.ts +2 -0
  154. package/dist/src/components/Menu/index.js +3 -0
  155. package/dist/src/components/Menu/index.js.map +1 -0
  156. package/dist/src/components/Notification/Notification.d.ts +11 -0
  157. package/dist/src/components/Notification/Notification.js +25 -0
  158. package/dist/src/components/Notification/Notification.js.map +1 -0
  159. package/dist/src/components/Notification/PermissionNotification.d.ts +33 -0
  160. package/dist/src/components/Notification/PermissionNotification.js +26 -0
  161. package/dist/src/components/Notification/PermissionNotification.js.map +1 -0
  162. package/dist/src/components/Notification/SpeakingWhileMutedNotification.d.ts +3 -0
  163. package/dist/src/components/Notification/SpeakingWhileMutedNotification.js +47 -0
  164. package/dist/src/components/Notification/SpeakingWhileMutedNotification.js.map +1 -0
  165. package/dist/src/components/Notification/index.d.ts +3 -0
  166. package/dist/src/components/Notification/index.js +4 -0
  167. package/dist/src/components/Notification/index.js.map +1 -0
  168. package/dist/src/components/PendingCallPanel/PendingCallControls.d.ts +2 -0
  169. package/dist/src/components/PendingCallPanel/PendingCallControls.js +13 -0
  170. package/dist/src/components/PendingCallPanel/PendingCallControls.js.map +1 -0
  171. package/dist/src/components/PendingCallPanel/PendingCallPanel.d.ts +14 -0
  172. package/dist/src/components/PendingCallPanel/PendingCallPanel.js +43 -0
  173. package/dist/src/components/PendingCallPanel/PendingCallPanel.js.map +1 -0
  174. package/dist/src/components/PendingCallPanel/index.d.ts +2 -0
  175. package/dist/src/components/PendingCallPanel/index.js +3 -0
  176. package/dist/src/components/PendingCallPanel/index.js.map +1 -0
  177. package/dist/src/components/Permissions/PermissionRequests.d.ts +8 -0
  178. package/dist/src/components/Permissions/PermissionRequests.js +103 -0
  179. package/dist/src/components/Permissions/PermissionRequests.js.map +1 -0
  180. package/dist/src/components/Permissions/index.d.ts +1 -0
  181. package/dist/src/components/Permissions/index.js +2 -0
  182. package/dist/src/components/Permissions/index.js.map +1 -0
  183. package/dist/src/components/Reaction/Reaction.d.ts +10 -0
  184. package/dist/src/components/Reaction/Reaction.js +28 -0
  185. package/dist/src/components/Reaction/Reaction.js.map +1 -0
  186. package/dist/src/components/Reaction/index.d.ts +1 -0
  187. package/dist/src/components/Reaction/index.js +2 -0
  188. package/dist/src/components/Reaction/index.js.map +1 -0
  189. package/dist/src/components/Search/SearchInput.d.ts +14 -0
  190. package/dist/src/components/Search/SearchInput.js +34 -0
  191. package/dist/src/components/Search/SearchInput.js.map +1 -0
  192. package/dist/src/components/Search/SearchResults.d.ts +14 -0
  193. package/dist/src/components/Search/SearchResults.js +12 -0
  194. package/dist/src/components/Search/SearchResults.js.map +1 -0
  195. package/dist/src/components/Search/hooks/index.d.ts +1 -0
  196. package/dist/src/components/Search/hooks/index.js +2 -0
  197. package/dist/src/components/Search/hooks/index.js.map +1 -0
  198. package/dist/src/components/Search/hooks/useSearch.d.ts +15 -0
  199. package/dist/src/components/Search/hooks/useSearch.js +39 -0
  200. package/dist/src/components/Search/hooks/useSearch.js.map +1 -0
  201. package/dist/src/components/Search/index.d.ts +2 -0
  202. package/dist/src/components/Search/index.js +3 -0
  203. package/dist/src/components/Search/index.js.map +1 -0
  204. package/dist/src/components/StreamCall/CallParticipantsScreenView.d.ts +5 -0
  205. package/dist/src/components/StreamCall/CallParticipantsScreenView.js +34 -0
  206. package/dist/src/components/StreamCall/CallParticipantsScreenView.js.map +1 -0
  207. package/dist/src/components/StreamCall/CallParticipantsView.d.ts +5 -0
  208. package/dist/src/components/StreamCall/CallParticipantsView.js +10 -0
  209. package/dist/src/components/StreamCall/CallParticipantsView.js.map +1 -0
  210. package/dist/src/components/StreamCall/Stage.d.ts +8 -0
  211. package/dist/src/components/StreamCall/Stage.js +13 -0
  212. package/dist/src/components/StreamCall/Stage.js.map +1 -0
  213. package/dist/src/components/StreamCall/index.d.ts +3 -0
  214. package/dist/src/components/StreamCall/index.js +4 -0
  215. package/dist/src/components/StreamCall/index.js.map +1 -0
  216. package/dist/src/components/StreamTheme/StreamTheme.d.ts +5 -0
  217. package/dist/src/components/StreamTheme/StreamTheme.js +18 -0
  218. package/dist/src/components/StreamTheme/StreamTheme.js.map +1 -0
  219. package/dist/src/components/StreamTheme/index.d.ts +1 -0
  220. package/dist/src/components/StreamTheme/index.js +2 -0
  221. package/dist/src/components/StreamTheme/index.js.map +1 -0
  222. package/dist/src/components/Tooltip/Tooltip.d.ts +15 -0
  223. package/dist/src/components/Tooltip/Tooltip.js +22 -0
  224. package/dist/src/components/Tooltip/Tooltip.js.map +1 -0
  225. package/dist/src/components/Tooltip/WithTooltip.d.ts +5 -0
  226. package/dist/src/components/Tooltip/WithTooltip.js +23 -0
  227. package/dist/src/components/Tooltip/WithTooltip.js.map +1 -0
  228. package/dist/src/components/Tooltip/hooks/index.d.ts +1 -0
  229. package/dist/src/components/Tooltip/hooks/index.js +2 -0
  230. package/dist/src/components/Tooltip/hooks/index.js.map +1 -0
  231. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.d.ts +6 -0
  232. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.js +14 -0
  233. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.js.map +1 -0
  234. package/dist/src/components/Tooltip/index.d.ts +2 -0
  235. package/dist/src/components/Tooltip/index.js +3 -0
  236. package/dist/src/components/Tooltip/index.js.map +1 -0
  237. package/dist/src/components/Video/VideoPreview.d.ts +28 -0
  238. package/dist/src/components/Video/VideoPreview.js +75 -0
  239. package/dist/src/components/Video/VideoPreview.js.map +1 -0
  240. package/dist/src/components/Video/index.d.ts +4 -0
  241. package/dist/src/components/Video/index.js +5 -0
  242. package/dist/src/components/Video/index.js.map +1 -0
  243. package/dist/src/components/index.d.ts +16 -0
  244. package/dist/src/components/index.js +17 -0
  245. package/dist/src/components/index.js.map +1 -0
  246. package/dist/src/core/components/Audio/Audio.d.ts +6 -0
  247. package/dist/src/core/components/Audio/Audio.js +39 -0
  248. package/dist/src/core/components/Audio/Audio.js.map +1 -0
  249. package/dist/src/core/components/Audio/index.d.ts +1 -0
  250. package/dist/src/core/components/Audio/index.js +2 -0
  251. package/dist/src/core/components/Audio/index.js.map +1 -0
  252. package/dist/src/core/components/CallLayout/PaginatedGridLayout.d.ts +17 -0
  253. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js +38 -0
  254. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js.map +1 -0
  255. package/dist/src/core/components/CallLayout/SpeakerLayout.d.ts +8 -0
  256. package/dist/src/core/components/CallLayout/SpeakerLayout.js +74 -0
  257. package/dist/src/core/components/CallLayout/SpeakerLayout.js.map +1 -0
  258. package/dist/src/core/components/CallLayout/index.d.ts +2 -0
  259. package/dist/src/core/components/CallLayout/index.js +3 -0
  260. package/dist/src/core/components/CallLayout/index.js.map +1 -0
  261. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.d.ts +18 -0
  262. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.js +36 -0
  263. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.js.map +1 -0
  264. package/dist/src/core/components/ParticipantView/ParticipantView.d.ts +79 -0
  265. package/dist/src/core/components/ParticipantView/ParticipantView.js +33 -0
  266. package/dist/src/core/components/ParticipantView/ParticipantView.js.map +1 -0
  267. package/dist/src/core/components/ParticipantView/index.d.ts +2 -0
  268. package/dist/src/core/components/ParticipantView/index.js +3 -0
  269. package/dist/src/core/components/ParticipantView/index.js.map +1 -0
  270. package/dist/src/core/components/StreamCall/StreamCall.d.ts +73 -0
  271. package/dist/src/core/components/StreamCall/StreamCall.js +60 -0
  272. package/dist/src/core/components/StreamCall/StreamCall.js.map +1 -0
  273. package/dist/src/core/components/StreamCall/index.d.ts +1 -0
  274. package/dist/src/core/components/StreamCall/index.js +2 -0
  275. package/dist/src/core/components/StreamCall/index.js.map +1 -0
  276. package/dist/src/core/components/Video/BaseVideo.d.ts +9 -0
  277. package/dist/src/core/components/Video/BaseVideo.js +48 -0
  278. package/dist/src/core/components/Video/BaseVideo.js.map +1 -0
  279. package/dist/src/core/components/Video/DefaultVideoPlaceholder.d.ts +6 -0
  280. package/dist/src/core/components/Video/DefaultVideoPlaceholder.js +9 -0
  281. package/dist/src/core/components/Video/DefaultVideoPlaceholder.js.map +1 -0
  282. package/dist/src/core/components/Video/Video.d.ts +13 -0
  283. package/dist/src/core/components/Video/Video.js +154 -0
  284. package/dist/src/core/components/Video/Video.js.map +1 -0
  285. package/dist/src/core/components/Video/index.d.ts +2 -0
  286. package/dist/src/core/components/Video/index.js +3 -0
  287. package/dist/src/core/components/Video/index.js.map +1 -0
  288. package/dist/src/core/components/index.d.ts +6 -0
  289. package/dist/src/core/components/index.js +6 -0
  290. package/dist/src/core/components/index.js.map +1 -0
  291. package/dist/src/core/contexts/MediaDevicesContext.d.ts +180 -0
  292. package/dist/src/core/contexts/MediaDevicesContext.js +177 -0
  293. package/dist/src/core/contexts/MediaDevicesContext.js.map +1 -0
  294. package/dist/src/core/contexts/index.d.ts +1 -0
  295. package/dist/src/core/contexts/index.js +2 -0
  296. package/dist/src/core/contexts/index.js.map +1 -0
  297. package/dist/src/core/hooks/index.d.ts +4 -0
  298. package/dist/src/core/hooks/index.js +5 -0
  299. package/dist/src/core/hooks/index.js.map +1 -0
  300. package/dist/src/core/hooks/useAudioPublisher.d.ts +12 -0
  301. package/dist/src/core/hooks/useAudioPublisher.js +95 -0
  302. package/dist/src/core/hooks/useAudioPublisher.js.map +1 -0
  303. package/dist/src/core/hooks/useDevices.d.ts +80 -0
  304. package/dist/src/core/hooks/useDevices.js +113 -0
  305. package/dist/src/core/hooks/useDevices.js.map +1 -0
  306. package/dist/src/core/hooks/useTrackElementVisibility.d.ts +6 -0
  307. package/dist/src/core/hooks/useTrackElementVisibility.js +27 -0
  308. package/dist/src/core/hooks/useTrackElementVisibility.js.map +1 -0
  309. package/dist/src/core/hooks/useVideoPublisher.d.ts +12 -0
  310. package/dist/src/core/hooks/useVideoPublisher.js +120 -0
  311. package/dist/src/core/hooks/useVideoPublisher.js.map +1 -0
  312. package/dist/src/core/index.d.ts +3 -0
  313. package/dist/src/core/index.js +4 -0
  314. package/dist/src/core/index.js.map +1 -0
  315. package/dist/src/hooks/index.d.ts +2 -0
  316. package/dist/src/hooks/index.js +3 -0
  317. package/dist/src/hooks/index.js.map +1 -0
  318. package/dist/src/hooks/useFloatingUIPreset.d.ts +9 -0
  319. package/dist/src/hooks/useFloatingUIPreset.js +30 -0
  320. package/dist/src/hooks/useFloatingUIPreset.js.map +1 -0
  321. package/dist/src/hooks/useScrollPosition.d.ts +6 -0
  322. package/dist/src/hooks/useScrollPosition.js +63 -0
  323. package/dist/src/hooks/useScrollPosition.js.map +1 -0
  324. package/dist/src/types/components.d.ts +7 -0
  325. package/dist/src/types/components.js +2 -0
  326. package/dist/src/types/components.js.map +1 -0
  327. package/dist/src/types/index.d.ts +1 -0
  328. package/dist/src/types/index.js +2 -0
  329. package/dist/src/types/index.js.map +1 -0
  330. package/dist/src/utilities/applyElementToRef.d.ts +2 -0
  331. package/dist/src/utilities/applyElementToRef.js +8 -0
  332. package/dist/src/utilities/applyElementToRef.js.map +1 -0
  333. package/dist/src/utilities/chunk.d.ts +1 -0
  334. package/dist/src/utilities/chunk.js +5 -0
  335. package/dist/src/utilities/chunk.js.map +1 -0
  336. package/dist/src/utilities/index.d.ts +3 -0
  337. package/dist/src/utilities/index.js +4 -0
  338. package/dist/src/utilities/index.js.map +1 -0
  339. package/dist/src/utilities/isComponentType.d.ts +2 -0
  340. package/dist/src/utilities/isComponentType.js +7 -0
  341. package/dist/src/utilities/isComponentType.js.map +1 -0
  342. package/index.ts +18 -0
  343. package/package.json +51 -0
  344. package/src/components/Avatar/Avatar.tsx +45 -0
  345. package/src/components/Avatar/index.ts +1 -0
  346. package/src/components/Button/CompositeButton.tsx +50 -0
  347. package/src/components/Button/CopyToClipboardButton.tsx +129 -0
  348. package/src/components/Button/IconButton.tsx +32 -0
  349. package/src/components/Button/TextButton.tsx +12 -0
  350. package/src/components/Button/index.ts +4 -0
  351. package/src/components/CallControls/AcceptCallButton.tsx +36 -0
  352. package/src/components/CallControls/CallControls.tsx +26 -0
  353. package/src/components/CallControls/CallStatsButton.tsx +20 -0
  354. package/src/components/CallControls/CancelCallButton.tsx +36 -0
  355. package/src/components/CallControls/ReactionsButton.tsx +74 -0
  356. package/src/components/CallControls/RecordCallButton.tsx +73 -0
  357. package/src/components/CallControls/ScreenShareButton.tsx +84 -0
  358. package/src/components/CallControls/ToggleAudioButton.tsx +123 -0
  359. package/src/components/CallControls/ToggleAudioOutputButton.tsx +21 -0
  360. package/src/components/CallControls/ToggleVideoButton.tsx +116 -0
  361. package/src/components/CallControls/index.ts +10 -0
  362. package/src/components/CallParticipantsList/BlockedUserListing.tsx +37 -0
  363. package/src/components/CallParticipantsList/CallParticipantListHeader.tsx +29 -0
  364. package/src/components/CallParticipantsList/CallParticipantListing.tsx +22 -0
  365. package/src/components/CallParticipantsList/CallParticipantListingItem.tsx +273 -0
  366. package/src/components/CallParticipantsList/CallParticipantsList.tsx +255 -0
  367. package/src/components/CallParticipantsList/EmptyParticipantSearchList.tsx +7 -0
  368. package/src/components/CallParticipantsList/index.ts +3 -0
  369. package/src/components/CallRecordingList/CallRecordingList.tsx +60 -0
  370. package/src/components/CallRecordingList/CallRecordingListHeader.tsx +29 -0
  371. package/src/components/CallRecordingList/CallRecordingListItem.tsx +67 -0
  372. package/src/components/CallRecordingList/EmptyCallRecordingListing.tsx +11 -0
  373. package/src/components/CallRecordingList/LoadingCallRecordingListing.tsx +21 -0
  374. package/src/components/CallRecordingList/index.ts +5 -0
  375. package/src/components/CallStats/CallStats.tsx +162 -0
  376. package/src/components/CallStats/CallStatsLatencyChart.tsx +58 -0
  377. package/src/components/CallStats/index.ts +2 -0
  378. package/src/components/Debug/DebugParticipantPublishQuality.tsx +62 -0
  379. package/src/components/Debug/DebugStatsView.tsx +108 -0
  380. package/src/components/Debug/useIsDebugMode.ts +24 -0
  381. package/src/components/DeviceSettings/DeviceSelector.tsx +106 -0
  382. package/src/components/DeviceSettings/DeviceSelectorAudio.tsx +57 -0
  383. package/src/components/DeviceSettings/DeviceSelectorVideo.tsx +22 -0
  384. package/src/components/DeviceSettings/DeviceSettings.tsx +39 -0
  385. package/src/components/DeviceSettings/index.ts +4 -0
  386. package/src/components/Icon/Icon.tsx +11 -0
  387. package/src/components/Icon/index.ts +1 -0
  388. package/src/components/LoadingIndicator/LoadingIndicator.tsx +28 -0
  389. package/src/components/LoadingIndicator/index.ts +1 -0
  390. package/src/components/Menu/GenericMenu.tsx +16 -0
  391. package/src/components/Menu/MenuToggle.tsx +81 -0
  392. package/src/components/Menu/index.ts +2 -0
  393. package/src/components/Notification/Notification.tsx +61 -0
  394. package/src/components/Notification/PermissionNotification.tsx +97 -0
  395. package/src/components/Notification/SpeakingWhileMutedNotification.tsx +61 -0
  396. package/src/components/Notification/index.ts +3 -0
  397. package/src/components/PendingCallPanel/PendingCallControls.tsx +27 -0
  398. package/src/components/PendingCallPanel/PendingCallPanel.tsx +93 -0
  399. package/src/components/PendingCallPanel/index.ts +2 -0
  400. package/src/components/Permissions/PermissionRequests.tsx +176 -0
  401. package/src/components/Permissions/index.ts +1 -0
  402. package/src/components/Reaction/Reaction.tsx +48 -0
  403. package/src/components/Reaction/index.ts +1 -0
  404. package/src/components/Search/SearchInput.tsx +56 -0
  405. package/src/components/Search/SearchResults.tsx +40 -0
  406. package/src/components/Search/hooks/index.ts +1 -0
  407. package/src/components/Search/hooks/useSearch.ts +52 -0
  408. package/src/components/Search/index.ts +2 -0
  409. package/src/components/StreamCall/CallParticipantsScreenView.tsx +125 -0
  410. package/src/components/StreamCall/CallParticipantsView.tsx +24 -0
  411. package/src/components/StreamCall/Stage.tsx +22 -0
  412. package/src/components/StreamCall/index.ts +4 -0
  413. package/src/components/StreamTheme/StreamTheme.tsx +19 -0
  414. package/src/components/StreamTheme/index.ts +1 -0
  415. package/src/components/Tooltip/Tooltip.tsx +51 -0
  416. package/src/components/Tooltip/WithTooltip.tsx +39 -0
  417. package/src/components/Tooltip/hooks/index.ts +1 -0
  418. package/src/components/Tooltip/hooks/useEnterLeaveHandlers.ts +28 -0
  419. package/src/components/Tooltip/index.ts +2 -0
  420. package/src/components/Video/VideoPreview.tsx +152 -0
  421. package/src/components/Video/index.ts +4 -0
  422. package/src/components/index.ts +16 -0
  423. package/src/core/components/Audio/Audio.tsx +42 -0
  424. package/src/core/components/Audio/index.ts +1 -0
  425. package/src/core/components/CallLayout/PaginatedGridLayout.tsx +159 -0
  426. package/src/core/components/CallLayout/SpeakerLayout.tsx +231 -0
  427. package/src/core/components/CallLayout/index.ts +2 -0
  428. package/src/core/components/ParticipantView/DefaultParticipantViewUI.tsx +160 -0
  429. package/src/core/components/ParticipantView/ParticipantView.tsx +156 -0
  430. package/src/core/components/ParticipantView/index.ts +2 -0
  431. package/src/core/components/StreamCall/StreamCall.tsx +157 -0
  432. package/src/core/components/StreamCall/index.ts +1 -0
  433. package/src/core/components/Video/BaseVideo.tsx +53 -0
  434. package/src/core/components/Video/DefaultVideoPlaceholder.tsx +36 -0
  435. package/src/core/components/Video/Video.tsx +252 -0
  436. package/src/core/components/Video/index.ts +2 -0
  437. package/src/core/components/index.ts +8 -0
  438. package/src/core/contexts/MediaDevicesContext.tsx +416 -0
  439. package/src/core/contexts/index.ts +1 -0
  440. package/src/core/hooks/index.ts +4 -0
  441. package/src/core/hooks/useAudioPublisher.ts +124 -0
  442. package/src/core/hooks/useDevices.ts +161 -0
  443. package/src/core/hooks/useTrackElementVisibility.ts +44 -0
  444. package/src/core/hooks/useVideoPublisher.ts +152 -0
  445. package/src/core/index.ts +3 -0
  446. package/src/hooks/index.ts +2 -0
  447. package/src/hooks/useFloatingUIPreset.ts +50 -0
  448. package/src/hooks/useScrollPosition.ts +95 -0
  449. package/src/types/components.ts +7 -0
  450. package/src/types/index.ts +1 -0
  451. package/src/utilities/applyElementToRef.ts +12 -0
  452. package/src/utilities/chunk.ts +8 -0
  453. package/src/utilities/index.ts +3 -0
  454. package/src/utilities/isComponentType.ts +9 -0
@@ -0,0 +1,416 @@
1
+ import {
2
+ createContext,
3
+ PropsWithChildren,
4
+ useCallback,
5
+ useContext,
6
+ useEffect,
7
+ useState,
8
+ } from 'react';
9
+ import { map } from 'rxjs';
10
+ import {
11
+ CallingState,
12
+ checkIfAudioOutputChangeSupported,
13
+ disposeOfMediaStream,
14
+ getAudioStream,
15
+ getVideoStream,
16
+ SfuModels,
17
+ watchForDisconnectedAudioOutputDevice,
18
+ } from '@stream-io/video-client';
19
+ import {
20
+ useCall,
21
+ useCallCallingState,
22
+ useCallMetadata,
23
+ useCallState,
24
+ } from '@stream-io/video-react-bindings';
25
+
26
+ import {
27
+ useAudioInputDeviceFallback,
28
+ useAudioOutputDeviceFallback,
29
+ useAudioPublisher,
30
+ useVideoDeviceFallback,
31
+ useVideoPublisher,
32
+ } from '../hooks';
33
+
34
+ type EnabledStateType = 'starting' | 'playing';
35
+ type DisabledStateType = 'uninitialized' | 'stopped';
36
+ type ErrorStateType = 'error';
37
+ type DeviceStateType = EnabledStateType | DisabledStateType | ErrorStateType;
38
+
39
+ type EnabledDeviceState<T extends EnabledStateType> = {
40
+ type: T;
41
+ enabled: true;
42
+ };
43
+ type DisabledDeviceState<T extends DisabledStateType> = {
44
+ type: T;
45
+ enabled: false;
46
+ };
47
+ type ErrorDeviceState = {
48
+ type: 'error';
49
+ message: string;
50
+ enabled: false;
51
+ };
52
+
53
+ type DeviceState =
54
+ | EnabledDeviceState<EnabledStateType>
55
+ | DisabledDeviceState<DisabledStateType>
56
+ | ErrorDeviceState;
57
+
58
+ const DEVICE_STATE_TOGGLE: Record<DeviceStateType, 'starting' | 'stopped'> = {
59
+ starting: 'stopped',
60
+ playing: 'stopped',
61
+ stopped: 'starting',
62
+ uninitialized: 'starting',
63
+ error: 'starting',
64
+ };
65
+
66
+ /**
67
+ * Exclude types from documentation site, but we should still add doc comments
68
+ * @internal
69
+ */
70
+ export const DEVICE_STATE: {
71
+ starting: EnabledDeviceState<'starting'>;
72
+ playing: EnabledDeviceState<'playing'>;
73
+ stopped: DisabledDeviceState<'stopped'>;
74
+ uninitialized: DisabledDeviceState<'uninitialized'>;
75
+ error: ErrorDeviceState;
76
+ } = {
77
+ starting: { type: 'starting', enabled: true },
78
+ playing: { type: 'playing', enabled: true },
79
+ stopped: { type: 'stopped', enabled: false },
80
+ uninitialized: { type: 'uninitialized', enabled: false },
81
+ error: { type: 'error', message: '', enabled: false },
82
+ };
83
+
84
+ const DEFAULT_DEVICE_ID = 'default';
85
+
86
+ /**
87
+ * API to control device enablement, device selection and media stream access for a call.
88
+ * @category Device Management
89
+ */
90
+ export type MediaDevicesContextAPI = {
91
+ /**
92
+ * Deactivates MediaStream (stops and removes tracks) to be later garbage collected
93
+ *
94
+ * @param stream MediaStream
95
+ * @returns void
96
+ */
97
+ disposeOfMediaStream: (stream: MediaStream) => void;
98
+ /**
99
+ * Returns an 'audioinput' media stream with the given `deviceId`, if no `deviceId` is provided, it uses the first available device.
100
+ *
101
+ * @param deviceId
102
+ * @returns
103
+ */
104
+ getAudioStream: typeof getAudioStream;
105
+ /**
106
+ * Returns a 'videoinput' media stream with the given `deviceId`, if no `deviceId` is provided, it uses the first available device.
107
+ *
108
+ * @param deviceId
109
+ * @returns
110
+ */
111
+ getVideoStream: typeof getVideoStream;
112
+ /**
113
+ * [Tells if the browser supports audio output change on 'audio' elements](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/setSinkId).
114
+ */
115
+ isAudioOutputChangeSupported: boolean;
116
+ /**
117
+ * Signals whether audio stream will be published when the call is joined.
118
+ */
119
+ initialAudioEnabled: boolean;
120
+ /**
121
+ * Signals whether audio stream will be published when the call is joined.
122
+ */
123
+ initialVideoState: DeviceState;
124
+ /**
125
+ * Publishes audio stream for currently selected audio input (microphone) device to other call participants.
126
+ */
127
+ publishAudioStream: () => Promise<void>;
128
+ /**
129
+ * Publishes video stream for currently selected video input (camera) device to other call participants.
130
+ */
131
+ publishVideoStream: () => Promise<void>;
132
+ /**
133
+ * Stops publishing audio stream for currently selected audio input (microphone) device to other call participants.
134
+ */
135
+ stopPublishingAudio: () => void;
136
+ /**
137
+ * Stops publishing video stream for currently selected video input (camera) device to other call participants.
138
+ */
139
+ stopPublishingVideo: () => void;
140
+ /**
141
+ * Sets the initialAudioEnabled flag to a given boolean value.
142
+ * The latest value set will be used to decide, whether audio stream will be published when joining a call.
143
+ * @param enabled
144
+ */
145
+ setInitialAudioEnabled: (enabled: boolean) => void;
146
+
147
+ /**
148
+ * Sets the initialVideoState to a given DeviceState value.
149
+ * The latest value set will be used to decide, whether video stream will be published when joining a call.
150
+ * @param enabled
151
+ */
152
+ setInitialVideoState: (state: DeviceState) => void;
153
+ /**
154
+ * Stores audio input device (microphone) id which is used to publish user's sound to other call participants.
155
+ */
156
+ selectedAudioInputDeviceId?: string;
157
+ /**
158
+ * Stores audio output device (speaker) id used to reproduce incoming audio from other call participants.
159
+ */
160
+ selectedAudioOutputDeviceId?: string;
161
+ /**
162
+ * Stores video input device (camera) id which is used to publish user's video to other call participants.
163
+ */
164
+ selectedVideoDeviceId?: string;
165
+ /**
166
+ * Function should be used to change selected device id.
167
+ * The change is later reflected in selectedAudioInputDeviceId, selectedAudioOutputDeviceId or selectedVideoDeviceId depending on kind parameter.
168
+ * @param kind
169
+ * @param deviceId
170
+ */
171
+ switchDevice: (kind: MediaDeviceKind, deviceId?: string) => void;
172
+ /**
173
+ * Sets the initialAudioEnabled flag by negating the current state value.
174
+ * The latest value set will be used to decide, whether audio stream will be published when joining a call.
175
+ * @param enabled
176
+ */
177
+ toggleInitialAudioMuteState: () => void;
178
+ /**
179
+ * Sets the initialVideoState by toggling the current state DeviceState value.
180
+ * The latest value set will be used to decide, whether video stream will be published when joining a call.
181
+ * @param enabled
182
+ */
183
+ toggleInitialVideoMuteState: () => void;
184
+ };
185
+
186
+ const MediaDevicesContext = createContext<MediaDevicesContextAPI | null>(null);
187
+
188
+ /**
189
+ * Configuration parameters for MediaDevicesProvider.
190
+ * @category Device Management
191
+ */
192
+ export type MediaDevicesProviderProps = {
193
+ /**
194
+ * Provides external control over the initial audio input (microphone) enablement. Overrides the default false.
195
+ */
196
+ initialAudioEnabled?: boolean;
197
+ /**
198
+ * Provides external control over the initial video input (camera) enablement. Overrides the default false.
199
+ */
200
+ initialVideoEnabled?: boolean;
201
+ /**
202
+ * Allows to override the default audio input (microphone) stream to be published. Overrides the default string 'default'.
203
+ */
204
+ initialAudioInputDeviceId?: string;
205
+ /**
206
+ * Allows to override the default audio output (speaker) device to reproduce incoming audio from the SFU. Overrides the default string 'default'.
207
+ */
208
+ initialAudioOutputDeviceId?: string;
209
+ /**
210
+ * Allows to override the default video input (camera) stream to be published. Overrides the default string 'default'.
211
+ */
212
+ initialVideoInputDeviceId?: string;
213
+ };
214
+
215
+ /**
216
+ * Context provider that internally puts in place mechanisms that:
217
+ * 1. fall back to selecting a default device when trying to switch to a non-existent device
218
+ * 2. fall back to a default device when an active device is disconnected
219
+ * 3. stop publishing a media stream when a non-default device is disconnected
220
+ * 4. republish a media stream from the newly connected default device
221
+ * 5. republish a media stream when a new device is selected
222
+ *
223
+ * Provides `MediaDevicesContextAPI` that allow the integrators to handle:
224
+ * 1. the initial device state enablement (for example apt for lobby scenario)
225
+ * 2. media stream retrieval and disposal
226
+ * 3. media stream publishing
227
+ * 4. specific device selection
228
+ * @param params
229
+ * @returns
230
+ *
231
+ * @category Device Management
232
+ */
233
+ export const MediaDevicesProvider = ({
234
+ children,
235
+ initialAudioEnabled,
236
+ initialVideoEnabled,
237
+ initialVideoInputDeviceId = DEFAULT_DEVICE_ID,
238
+ initialAudioOutputDeviceId = DEFAULT_DEVICE_ID,
239
+ initialAudioInputDeviceId = DEFAULT_DEVICE_ID,
240
+ }: PropsWithChildren<MediaDevicesProviderProps>) => {
241
+ const call = useCall();
242
+ const callingState = useCallCallingState();
243
+ const callState = useCallState();
244
+ const metadata = useCallMetadata();
245
+ const { localParticipant$ } = callState;
246
+
247
+ const [selectedAudioInputDeviceId, selectAudioInputDeviceId] = useState<
248
+ MediaDevicesContextAPI['selectedAudioInputDeviceId']
249
+ >(initialAudioInputDeviceId);
250
+ const [selectedAudioOutputDeviceId, selectAudioOutputDeviceId] = useState<
251
+ MediaDevicesContextAPI['selectedAudioOutputDeviceId']
252
+ >(initialAudioOutputDeviceId);
253
+ const [selectedVideoDeviceId, selectVideoDeviceId] = useState<
254
+ MediaDevicesContextAPI['selectedVideoDeviceId']
255
+ >(initialVideoInputDeviceId);
256
+
257
+ const [isAudioOutputChangeSupported] = useState<boolean>(() =>
258
+ checkIfAudioOutputChangeSupported(),
259
+ );
260
+ const [initAudioEnabled, setInitialAudioEnabled] = useState<boolean>(
261
+ !!initialAudioEnabled,
262
+ );
263
+ const [initialVideoState, setInitialVideoState] = useState<DeviceState>(() =>
264
+ initialVideoEnabled ? DEVICE_STATE.starting : DEVICE_STATE.uninitialized,
265
+ );
266
+
267
+ const settings = metadata?.settings;
268
+ useEffect(() => {
269
+ if (
270
+ !settings ||
271
+ ![CallingState.IDLE, CallingState.RINGING].includes(callingState)
272
+ ) {
273
+ return;
274
+ }
275
+ const { audio, video } = settings;
276
+ if (typeof initialAudioEnabled === 'undefined' && audio.mic_default_on) {
277
+ setInitialAudioEnabled(audio.mic_default_on);
278
+ }
279
+ if (typeof initialVideoEnabled === 'undefined' && video.camera_default_on) {
280
+ setInitialVideoState(DEVICE_STATE.starting);
281
+ }
282
+ }, [callingState, initialAudioEnabled, initialVideoEnabled, settings]);
283
+
284
+ const publishVideoStream = useVideoPublisher({
285
+ initialVideoMuted: !initialVideoState.enabled,
286
+ videoDeviceId: selectedVideoDeviceId,
287
+ });
288
+ const publishAudioStream = useAudioPublisher({
289
+ initialAudioMuted: !initAudioEnabled,
290
+ audioDeviceId: selectedAudioInputDeviceId,
291
+ });
292
+
293
+ const stopPublishingAudio = useCallback(() => {
294
+ if (
295
+ callingState === CallingState.IDLE ||
296
+ callingState === CallingState.RINGING
297
+ ) {
298
+ setInitialAudioEnabled(false);
299
+ } else {
300
+ call?.stopPublish(SfuModels.TrackType.AUDIO);
301
+ }
302
+ }, [call, callingState]);
303
+
304
+ const stopPublishingVideo = useCallback(() => {
305
+ if (
306
+ callingState === CallingState.IDLE ||
307
+ callingState === CallingState.RINGING
308
+ ) {
309
+ setInitialVideoState(DEVICE_STATE.stopped);
310
+ } else {
311
+ call?.stopPublish(SfuModels.TrackType.VIDEO);
312
+ }
313
+ }, [call, callingState]);
314
+
315
+ const toggleInitialAudioMuteState = useCallback(
316
+ () =>
317
+ setInitialAudioEnabled((prev) => {
318
+ return !prev;
319
+ }),
320
+ [],
321
+ );
322
+ const toggleInitialVideoMuteState = useCallback(
323
+ () =>
324
+ setInitialVideoState((prev) => {
325
+ const newType = DEVICE_STATE_TOGGLE[prev.type];
326
+ return DEVICE_STATE[newType];
327
+ }),
328
+ [],
329
+ );
330
+
331
+ const switchDevice = useCallback(
332
+ (kind: MediaDeviceKind, deviceId?: string) => {
333
+ if (kind === 'videoinput') {
334
+ selectVideoDeviceId(deviceId);
335
+ }
336
+ if (kind === 'audioinput') {
337
+ selectAudioInputDeviceId(deviceId);
338
+ }
339
+ if (kind === 'audiooutput') {
340
+ selectAudioOutputDeviceId(deviceId);
341
+ }
342
+ },
343
+ [],
344
+ );
345
+
346
+ useAudioInputDeviceFallback(
347
+ () => switchDevice('audioinput', DEFAULT_DEVICE_ID),
348
+ selectedAudioInputDeviceId,
349
+ );
350
+ useAudioOutputDeviceFallback(
351
+ () => switchDevice('audiooutput', DEFAULT_DEVICE_ID),
352
+ selectedAudioOutputDeviceId,
353
+ );
354
+ useVideoDeviceFallback(
355
+ () => switchDevice('videoinput', DEFAULT_DEVICE_ID),
356
+ selectedVideoDeviceId,
357
+ );
358
+
359
+ useEffect(() => {
360
+ if (!call || callingState !== CallingState.JOINED) return;
361
+ call.setAudioOutputDevice(selectedAudioOutputDeviceId);
362
+ }, [call, callingState, selectedAudioOutputDeviceId]);
363
+
364
+ useEffect(() => {
365
+ if (!localParticipant$) return;
366
+ const subscription = watchForDisconnectedAudioOutputDevice(
367
+ localParticipant$.pipe(map((p) => p?.audioOutputDeviceId)),
368
+ ).subscribe(async () => {
369
+ selectAudioOutputDeviceId(DEFAULT_DEVICE_ID);
370
+ });
371
+ return () => {
372
+ subscription.unsubscribe();
373
+ };
374
+ }, [localParticipant$]);
375
+
376
+ const contextValue: MediaDevicesContextAPI = {
377
+ disposeOfMediaStream,
378
+ getAudioStream,
379
+ getVideoStream,
380
+ isAudioOutputChangeSupported,
381
+ selectedAudioInputDeviceId,
382
+ selectedAudioOutputDeviceId,
383
+ selectedVideoDeviceId,
384
+ switchDevice,
385
+ initialAudioEnabled: initAudioEnabled,
386
+ initialVideoState,
387
+ setInitialAudioEnabled,
388
+ setInitialVideoState,
389
+ toggleInitialAudioMuteState,
390
+ toggleInitialVideoMuteState,
391
+ publishAudioStream,
392
+ publishVideoStream,
393
+ stopPublishingAudio,
394
+ stopPublishingVideo,
395
+ };
396
+
397
+ return (
398
+ <MediaDevicesContext.Provider value={contextValue}>
399
+ {children}
400
+ </MediaDevicesContext.Provider>
401
+ );
402
+ };
403
+
404
+ /**
405
+ * Context consumer retrieving MediaDevicesContextAPI.
406
+ * @returns
407
+ *
408
+ * @category Device Management
409
+ */
410
+ export const useMediaDevices = () => {
411
+ const value = useContext(MediaDevicesContext);
412
+ if (!value) {
413
+ console.warn(`Null MediaDevicesContext`);
414
+ }
415
+ return value as MediaDevicesContextAPI;
416
+ };
@@ -0,0 +1 @@
1
+ export * from './MediaDevicesContext';
@@ -0,0 +1,4 @@
1
+ export * from './useAudioPublisher';
2
+ export * from './useDevices';
3
+ export * from './useVideoPublisher';
4
+ export * from './useTrackElementVisibility';
@@ -0,0 +1,124 @@
1
+ import { useCallback, useEffect } from 'react';
2
+ import { map } from 'rxjs';
3
+ import {
4
+ CallingState,
5
+ getAudioStream,
6
+ OwnCapability,
7
+ SfuModels,
8
+ watchForAddedDefaultAudioDevice,
9
+ watchForDisconnectedAudioDevice,
10
+ } from '@stream-io/video-client';
11
+ import {
12
+ useCall,
13
+ useCallCallingState,
14
+ useCallState,
15
+ useLocalParticipant,
16
+ } from '@stream-io/video-react-bindings';
17
+
18
+ /**
19
+ * @internal
20
+ */
21
+ export type AudioPublisherInit = {
22
+ initialAudioMuted?: boolean;
23
+ audioDeviceId?: string;
24
+ };
25
+
26
+ /**
27
+ * @internal
28
+ * @category Device Management
29
+ */
30
+ export const useAudioPublisher = ({
31
+ initialAudioMuted,
32
+ audioDeviceId,
33
+ }: AudioPublisherInit) => {
34
+ const call = useCall();
35
+ const callState = useCallState();
36
+ const callingState = useCallCallingState();
37
+ const participant = useLocalParticipant();
38
+ const { localParticipant$ } = callState;
39
+
40
+ const isPublishingAudio = participant?.publishedTracks.includes(
41
+ SfuModels.TrackType.AUDIO,
42
+ );
43
+
44
+ const publishAudioStream = useCallback(async () => {
45
+ if (!call) return;
46
+ if (!call.permissionsContext.hasPermission(OwnCapability.SEND_AUDIO)) {
47
+ throw new Error(`No permission to publish audio`);
48
+ }
49
+ try {
50
+ const audioStream = await getAudioStream({
51
+ deviceId: audioDeviceId,
52
+ });
53
+ await call.publishAudioStream(audioStream);
54
+ } catch (e) {
55
+ console.log('Failed to publish audio stream', e);
56
+ }
57
+ }, [audioDeviceId, call]);
58
+
59
+ useEffect(() => {
60
+ if (callingState === CallingState.JOINED && !initialAudioMuted) {
61
+ publishAudioStream().catch((e) => {
62
+ console.error('Failed to publish audio stream', e);
63
+ });
64
+ }
65
+ }, [callingState, initialAudioMuted, publishAudioStream]);
66
+
67
+ useEffect(() => {
68
+ if (!localParticipant$) return;
69
+ const subscription = watchForDisconnectedAudioDevice(
70
+ localParticipant$.pipe(map((p) => p?.audioDeviceId)),
71
+ ).subscribe(async () => {
72
+ if (!call) return;
73
+ call.setAudioDevice(undefined);
74
+ await call.stopPublish(SfuModels.TrackType.AUDIO);
75
+ });
76
+ return () => {
77
+ subscription.unsubscribe();
78
+ };
79
+ }, [localParticipant$, call]);
80
+
81
+ useEffect(() => {
82
+ if (!participant?.audioStream || !call || !isPublishingAudio) return;
83
+
84
+ const [track] = participant.audioStream.getAudioTracks();
85
+ const selectedAudioDeviceId = track.getSettings().deviceId;
86
+
87
+ const republishDefaultDevice = watchForAddedDefaultAudioDevice().subscribe(
88
+ async () => {
89
+ if (
90
+ !(
91
+ call &&
92
+ participant.audioStream &&
93
+ selectedAudioDeviceId === 'default'
94
+ )
95
+ )
96
+ return;
97
+ // We need to stop the original track first in order
98
+ // we can retrieve the new default device stream
99
+ track.stop();
100
+ const audioStream = await getAudioStream({
101
+ deviceId: 'default',
102
+ });
103
+ await call.publishAudioStream(audioStream);
104
+ },
105
+ );
106
+
107
+ const handleTrackEnded = async () => {
108
+ if (selectedAudioDeviceId === audioDeviceId) {
109
+ const audioStream = await getAudioStream({
110
+ deviceId: audioDeviceId,
111
+ });
112
+ await call.publishAudioStream(audioStream);
113
+ }
114
+ };
115
+
116
+ track.addEventListener('ended', handleTrackEnded);
117
+ return () => {
118
+ track.removeEventListener('ended', handleTrackEnded);
119
+ republishDefaultDevice.unsubscribe();
120
+ };
121
+ }, [audioDeviceId, call, participant?.audioStream, isPublishingAudio]);
122
+
123
+ return publishAudioStream;
124
+ };
@@ -0,0 +1,161 @@
1
+ import { useEffect, useState } from 'react';
2
+ import { Observable, pairwise } from 'rxjs';
3
+ import {
4
+ getAudioDevices,
5
+ getAudioOutputDevices,
6
+ getVideoDevices,
7
+ } from '@stream-io/video-client';
8
+
9
+ /**
10
+ * Observes changes in connected devices and maintains an up-to-date array of connected MediaDeviceInfo objects.
11
+ * @param observeDevices
12
+ * @category Device Management
13
+ */
14
+ export const useDevices = (
15
+ observeDevices: () => Observable<MediaDeviceInfo[]>,
16
+ ) => {
17
+ const [devices, setDevices] = useState<MediaDeviceInfo[]>([]);
18
+
19
+ useEffect(() => {
20
+ const subscription = observeDevices().subscribe(setDevices);
21
+
22
+ return () => {
23
+ subscription.unsubscribe();
24
+ };
25
+ }, [observeDevices]);
26
+
27
+ return devices;
28
+ };
29
+
30
+ /**
31
+ * Observes changes and maintains an array of connected video input devices
32
+ * @category Device Management
33
+ */
34
+ export const useVideoDevices = () => useDevices(getVideoDevices);
35
+
36
+ /**
37
+ * Observes changes and maintains an array of connected audio input devices
38
+ * @category Device Management
39
+ */
40
+ export const useAudioInputDevices = () => useDevices(getAudioDevices);
41
+
42
+ /**
43
+ * Observes changes and maintains an array of connected audio output devices
44
+ * @category Device Management
45
+ */
46
+ export const useAudioOutputDevices = () => useDevices(getAudioOutputDevices);
47
+
48
+ /**
49
+ * Verifies that newly selected device id exists among the registered devices.
50
+ * If the selected device id is not found among existing devices, switches to the default device.
51
+ * @param devices$
52
+ * @param switchToDefaultDevice
53
+ * @param selectedDeviceId
54
+ * @category Device Management
55
+ */
56
+ export const useDeviceFallback = (
57
+ devices$: Observable<MediaDeviceInfo[]>,
58
+ switchToDefaultDevice: () => void,
59
+ selectedDeviceId?: string,
60
+ ) => {
61
+ useEffect(() => {
62
+ const validateDeviceId = devices$.pipe().subscribe((devices) => {
63
+ const deviceFound = devices.find(
64
+ (device) => device.deviceId === selectedDeviceId,
65
+ );
66
+ if (!deviceFound) switchToDefaultDevice();
67
+ });
68
+
69
+ return () => {
70
+ validateDeviceId.unsubscribe();
71
+ };
72
+ }, [devices$, selectedDeviceId, switchToDefaultDevice]);
73
+ };
74
+
75
+ /**
76
+ * Verifies that newly selected video device id exists among the registered devices.
77
+ * If the selected device id is not found among existing devices, switches to the default video device.
78
+ * @param switchToDefaultDevice
79
+ * @param selectedDeviceId
80
+ * @category Device Management
81
+ */
82
+ export const useVideoDeviceFallback = (
83
+ switchToDefaultDevice: () => void,
84
+ selectedDeviceId?: string,
85
+ ) =>
86
+ useDeviceFallback(getVideoDevices(), switchToDefaultDevice, selectedDeviceId);
87
+
88
+ /**
89
+ * Verifies that newly selected audio input device id exists among the registered devices.
90
+ * If the selected device id is not found among existing devices, switches to the default audio input device.
91
+ * @param switchToDefaultDevice
92
+ * @param selectedDeviceId
93
+ * @category Device Management
94
+ */
95
+ export const useAudioInputDeviceFallback = (
96
+ switchToDefaultDevice: () => void,
97
+ selectedDeviceId?: string,
98
+ ) =>
99
+ useDeviceFallback(getAudioDevices(), switchToDefaultDevice, selectedDeviceId);
100
+
101
+ /**
102
+ * Verifies that newly selected audio output device id exists among the registered devices.
103
+ * If the selected device id is not found among existing devices, switches to the default audio output device.
104
+ * @param switchToDefaultDevice
105
+ * @param selectedDeviceId
106
+ * @category Device Management
107
+ */
108
+ export const useAudioOutputDeviceFallback = (
109
+ switchToDefaultDevice: () => void,
110
+ selectedDeviceId?: string,
111
+ ) =>
112
+ useDeviceFallback(
113
+ getAudioOutputDevices(),
114
+ switchToDefaultDevice,
115
+ selectedDeviceId,
116
+ );
117
+
118
+ /**
119
+ * Observes devices of certain kind are made unavailable and executes onDisconnect callback
120
+ * @param observeDevices
121
+ * @param onDisconnect
122
+ * @category Device Management
123
+ */
124
+ export const useOnUnavailableDevices = (
125
+ observeDevices: Observable<MediaDeviceInfo[]>,
126
+ onDisconnect: () => void,
127
+ ) => {
128
+ useEffect(() => {
129
+ const subscription = observeDevices
130
+ .pipe(pairwise())
131
+ .subscribe(([prev, current]) => {
132
+ if (prev.length > 0 && current.length === 0) onDisconnect();
133
+ });
134
+
135
+ return () => subscription.unsubscribe();
136
+ }, [observeDevices, onDisconnect]);
137
+ };
138
+
139
+ /**
140
+ * Observes disconnect of all video devices and executes onDisconnect callback
141
+ * @param onDisconnect
142
+ * @category Device Management
143
+ */
144
+ export const useOnUnavailableVideoDevices = (onDisconnect: () => void) =>
145
+ useOnUnavailableDevices(getVideoDevices(), onDisconnect);
146
+
147
+ /**
148
+ * Observes disconnect of all audio input devices and executes onDisconnect callback
149
+ * @param onDisconnect
150
+ * @category Device Management
151
+ */
152
+ export const useOnUnavailableAudioInputDevices = (onDisconnect: () => void) =>
153
+ useOnUnavailableDevices(getAudioDevices(), onDisconnect);
154
+
155
+ /**
156
+ * Observes disconnect of all audio output devices and executes onDisconnect callback
157
+ * @param onDisconnect
158
+ * @category Device Management
159
+ */
160
+ export const useOnUnavailableAudioOutputDevices = (onDisconnect: () => void) =>
161
+ useOnUnavailableDevices(getAudioOutputDevices(), onDisconnect);