@stream-io/video-react-native-sdk 1.39.0 → 1.40.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 (692) hide show
  1. package/CHANGELOG.md +24 -6
  2. package/android/src/main/java/com/streamvideo/reactnative/StreamVideoReactNativeModule.kt +81 -0
  3. package/android/src/main/java/com/streamvideo/reactnative/recorder/AudioPipeline.kt +436 -0
  4. package/android/src/main/java/com/streamvideo/reactnative/recorder/EncoderConstants.kt +17 -0
  5. package/android/src/main/java/com/streamvideo/reactnative/recorder/PipelineHost.kt +36 -0
  6. package/android/src/main/java/com/streamvideo/reactnative/recorder/RecorderPlaybackSamplesSink.kt +60 -0
  7. package/android/src/main/java/com/streamvideo/reactnative/recorder/RecorderVideoSink.kt +31 -0
  8. package/android/src/main/java/com/streamvideo/reactnative/recorder/TracksRecorderManager.kt +338 -0
  9. package/android/src/main/java/com/streamvideo/reactnative/recorder/VideoPipeline.kt +472 -0
  10. package/dist/commonjs/components/Call/CallContent/CallContent.js +93 -48
  11. package/dist/commonjs/components/Call/CallContent/CallContent.js.map +1 -1
  12. package/dist/commonjs/components/Call/CallContent/RTCViewPipIOS.js +22 -20
  13. package/dist/commonjs/components/Call/CallContent/RTCViewPipIOS.js.map +1 -1
  14. package/dist/commonjs/components/Call/CallContent/RTCViewPipNative.js +2 -1
  15. package/dist/commonjs/components/Call/CallContent/RTCViewPipNative.js.map +1 -1
  16. package/dist/commonjs/components/Call/CallControls/AcceptCallButton.js +10 -6
  17. package/dist/commonjs/components/Call/CallControls/AcceptCallButton.js.map +1 -1
  18. package/dist/commonjs/components/Call/CallControls/CallControls.js +7 -5
  19. package/dist/commonjs/components/Call/CallControls/CallControls.js.map +1 -1
  20. package/dist/commonjs/components/Call/CallControls/CallControlsButton.js +11 -8
  21. package/dist/commonjs/components/Call/CallControls/CallControlsButton.js.map +1 -1
  22. package/dist/commonjs/components/Call/CallControls/HangupCallButton.js +10 -6
  23. package/dist/commonjs/components/Call/CallControls/HangupCallButton.js.map +1 -1
  24. package/dist/commonjs/components/Call/CallControls/IncomingCallControls.js +11 -9
  25. package/dist/commonjs/components/Call/CallControls/IncomingCallControls.js.map +1 -1
  26. package/dist/commonjs/components/Call/CallControls/LobbyControls.js +5 -3
  27. package/dist/commonjs/components/Call/CallControls/LobbyControls.js.map +1 -1
  28. package/dist/commonjs/components/Call/CallControls/OutgoingCallControls.js +12 -9
  29. package/dist/commonjs/components/Call/CallControls/OutgoingCallControls.js.map +1 -1
  30. package/dist/commonjs/components/Call/CallControls/ReactionsButton.js +22 -15
  31. package/dist/commonjs/components/Call/CallControls/ReactionsButton.js.map +1 -1
  32. package/dist/commonjs/components/Call/CallControls/RejectCallButton.js +10 -6
  33. package/dist/commonjs/components/Call/CallControls/RejectCallButton.js.map +1 -1
  34. package/dist/commonjs/components/Call/CallControls/ScreenShareToggleButton.js +15 -11
  35. package/dist/commonjs/components/Call/CallControls/ScreenShareToggleButton.js.map +1 -1
  36. package/dist/commonjs/components/Call/CallControls/ToggleAudioPreviewButton.js +13 -9
  37. package/dist/commonjs/components/Call/CallControls/ToggleAudioPreviewButton.js.map +1 -1
  38. package/dist/commonjs/components/Call/CallControls/ToggleAudioPublishingButton.js +18 -13
  39. package/dist/commonjs/components/Call/CallControls/ToggleAudioPublishingButton.js.map +1 -1
  40. package/dist/commonjs/components/Call/CallControls/ToggleCameraFaceButton.js +17 -12
  41. package/dist/commonjs/components/Call/CallControls/ToggleCameraFaceButton.js.map +1 -1
  42. package/dist/commonjs/components/Call/CallControls/ToggleVideoPreviewButton.js +13 -9
  43. package/dist/commonjs/components/Call/CallControls/ToggleVideoPreviewButton.js.map +1 -1
  44. package/dist/commonjs/components/Call/CallControls/ToggleVideoPublishingButton.js +17 -12
  45. package/dist/commonjs/components/Call/CallControls/ToggleVideoPublishingButton.js.map +1 -1
  46. package/dist/commonjs/components/Call/CallControls/internal/ReactionsPicker.js +39 -34
  47. package/dist/commonjs/components/Call/CallControls/internal/ReactionsPicker.js.map +1 -1
  48. package/dist/commonjs/components/Call/CallLayout/CallParticipantsGrid.js +17 -12
  49. package/dist/commonjs/components/Call/CallLayout/CallParticipantsGrid.js.map +1 -1
  50. package/dist/commonjs/components/Call/CallLayout/CallParticipantsSpotlight.js +36 -24
  51. package/dist/commonjs/components/Call/CallLayout/CallParticipantsSpotlight.js.map +1 -1
  52. package/dist/commonjs/components/Call/CallParticipantsList/CallParticipantsList.js +30 -28
  53. package/dist/commonjs/components/Call/CallParticipantsList/CallParticipantsList.js.map +1 -1
  54. package/dist/commonjs/components/Call/Lobby/JoinCallButton.js +10 -7
  55. package/dist/commonjs/components/Call/Lobby/JoinCallButton.js.map +1 -1
  56. package/dist/commonjs/components/Call/Lobby/Lobby.js +45 -35
  57. package/dist/commonjs/components/Call/Lobby/Lobby.js.map +1 -1
  58. package/dist/commonjs/components/Call/Lobby/LobbyFooter.js +21 -16
  59. package/dist/commonjs/components/Call/Lobby/LobbyFooter.js.map +1 -1
  60. package/dist/commonjs/components/Call/RingingCallContent/CallLeftIndicator.js +2 -1
  61. package/dist/commonjs/components/Call/RingingCallContent/CallLeftIndicator.js.map +1 -1
  62. package/dist/commonjs/components/Call/RingingCallContent/CallPreparingIndicator.js +2 -1
  63. package/dist/commonjs/components/Call/RingingCallContent/CallPreparingIndicator.js.map +1 -1
  64. package/dist/commonjs/components/Call/RingingCallContent/IncomingCall.js +32 -22
  65. package/dist/commonjs/components/Call/RingingCallContent/IncomingCall.js.map +1 -1
  66. package/dist/commonjs/components/Call/RingingCallContent/OutgoingCall.js +37 -27
  67. package/dist/commonjs/components/Call/RingingCallContent/OutgoingCall.js.map +1 -1
  68. package/dist/commonjs/components/Call/RingingCallContent/RingingCallContent.js +13 -11
  69. package/dist/commonjs/components/Call/RingingCallContent/RingingCallContent.js.map +1 -1
  70. package/dist/commonjs/components/Call/RingingCallContent/TextBasedIndicator.js +28 -22
  71. package/dist/commonjs/components/Call/RingingCallContent/TextBasedIndicator.js.map +1 -1
  72. package/dist/commonjs/components/Call/RingingCallContent/UserInfo.js +25 -22
  73. package/dist/commonjs/components/Call/RingingCallContent/UserInfo.js.map +1 -1
  74. package/dist/commonjs/components/Livestream/HostLivestream/HostLivestream.js +38 -34
  75. package/dist/commonjs/components/Livestream/HostLivestream/HostLivestream.js.map +1 -1
  76. package/dist/commonjs/components/Livestream/LivestreamControls/HostLivestreamControls.js +16 -12
  77. package/dist/commonjs/components/Livestream/LivestreamControls/HostLivestreamControls.js.map +1 -1
  78. package/dist/commonjs/components/Livestream/LivestreamControls/HostStartStreamButton.js +16 -12
  79. package/dist/commonjs/components/Livestream/LivestreamControls/HostStartStreamButton.js.map +1 -1
  80. package/dist/commonjs/components/Livestream/LivestreamControls/LivestreamAudioControlButton.js +19 -14
  81. package/dist/commonjs/components/Livestream/LivestreamControls/LivestreamAudioControlButton.js.map +1 -1
  82. package/dist/commonjs/components/Livestream/LivestreamControls/LivestreamMediaControls.js +5 -3
  83. package/dist/commonjs/components/Livestream/LivestreamControls/LivestreamMediaControls.js.map +1 -1
  84. package/dist/commonjs/components/Livestream/LivestreamControls/LivestreamScreenShareToggleButton.js +19 -16
  85. package/dist/commonjs/components/Livestream/LivestreamControls/LivestreamScreenShareToggleButton.js.map +1 -1
  86. package/dist/commonjs/components/Livestream/LivestreamControls/LivestreamVideoControlButton.js +19 -14
  87. package/dist/commonjs/components/Livestream/LivestreamControls/LivestreamVideoControlButton.js.map +1 -1
  88. package/dist/commonjs/components/Livestream/LivestreamControls/ViewerLeaveStreamButton.js +11 -8
  89. package/dist/commonjs/components/Livestream/LivestreamControls/ViewerLeaveStreamButton.js.map +1 -1
  90. package/dist/commonjs/components/Livestream/LivestreamControls/ViewerLivestreamControls.js +78 -57
  91. package/dist/commonjs/components/Livestream/LivestreamControls/ViewerLivestreamControls.js.map +1 -1
  92. package/dist/commonjs/components/Livestream/LivestreamLayout/LivestreamLayout.js +13 -46
  93. package/dist/commonjs/components/Livestream/LivestreamLayout/LivestreamLayout.js.map +1 -1
  94. package/dist/commonjs/components/Livestream/LivestreamPlayer/LivestreamEnded.js +48 -22
  95. package/dist/commonjs/components/Livestream/LivestreamPlayer/LivestreamEnded.js.map +1 -1
  96. package/dist/commonjs/components/Livestream/LivestreamPlayer/LivestreamPlayer.js +7 -5
  97. package/dist/commonjs/components/Livestream/LivestreamPlayer/LivestreamPlayer.js.map +1 -1
  98. package/dist/commonjs/components/Livestream/LivestreamTopView/DurationBadge.js +12 -9
  99. package/dist/commonjs/components/Livestream/LivestreamTopView/DurationBadge.js.map +1 -1
  100. package/dist/commonjs/components/Livestream/LivestreamTopView/FollowerCount.js +11 -7
  101. package/dist/commonjs/components/Livestream/LivestreamTopView/FollowerCount.js.map +1 -1
  102. package/dist/commonjs/components/Livestream/LivestreamTopView/HostLivestreamTopView.js +18 -13
  103. package/dist/commonjs/components/Livestream/LivestreamTopView/HostLivestreamTopView.js.map +1 -1
  104. package/dist/commonjs/components/Livestream/LivestreamTopView/LiveIndicator.js +10 -7
  105. package/dist/commonjs/components/Livestream/LivestreamTopView/LiveIndicator.js.map +1 -1
  106. package/dist/commonjs/components/Livestream/LivestreamTopView/ViewerLivestreamTopView.js +18 -13
  107. package/dist/commonjs/components/Livestream/LivestreamTopView/ViewerLivestreamTopView.js.map +1 -1
  108. package/dist/commonjs/components/Livestream/ViewerLivestream/ViewerLivestream.js +41 -37
  109. package/dist/commonjs/components/Livestream/ViewerLivestream/ViewerLivestream.js.map +1 -1
  110. package/dist/commonjs/components/Livestream/ViewerLivestream/ViewerLobby.js +33 -23
  111. package/dist/commonjs/components/Livestream/ViewerLivestream/ViewerLobby.js.map +1 -1
  112. package/dist/commonjs/components/Participant/FloatingParticipantView/FloatingView/AnimatedFloatingView.js +18 -15
  113. package/dist/commonjs/components/Participant/FloatingParticipantView/FloatingView/AnimatedFloatingView.js.map +1 -1
  114. package/dist/commonjs/components/Participant/FloatingParticipantView/FloatingView/ReanimatedFloatingView.js +20 -16
  115. package/dist/commonjs/components/Participant/FloatingParticipantView/FloatingView/ReanimatedFloatingView.js.map +1 -1
  116. package/dist/commonjs/components/Participant/FloatingParticipantView/index.js +55 -48
  117. package/dist/commonjs/components/Participant/FloatingParticipantView/index.js.map +1 -1
  118. package/dist/commonjs/components/Participant/ParticipantView/ParticipantLabel.js +64 -52
  119. package/dist/commonjs/components/Participant/ParticipantView/ParticipantLabel.js.map +1 -1
  120. package/dist/commonjs/components/Participant/ParticipantView/ParticipantNetworkQualityIndicator.js +30 -27
  121. package/dist/commonjs/components/Participant/ParticipantView/ParticipantNetworkQualityIndicator.js.map +1 -1
  122. package/dist/commonjs/components/Participant/ParticipantView/ParticipantReaction.js +11 -7
  123. package/dist/commonjs/components/Participant/ParticipantView/ParticipantReaction.js.map +1 -1
  124. package/dist/commonjs/components/Participant/ParticipantView/ParticipantVideoFallback.js +17 -14
  125. package/dist/commonjs/components/Participant/ParticipantView/ParticipantVideoFallback.js.map +1 -1
  126. package/dist/commonjs/components/Participant/ParticipantView/ParticipantView.js +27 -24
  127. package/dist/commonjs/components/Participant/ParticipantView/ParticipantView.js.map +1 -1
  128. package/dist/commonjs/components/Participant/ParticipantView/SpeechIndicator.js +8 -7
  129. package/dist/commonjs/components/Participant/ParticipantView/SpeechIndicator.js.map +1 -1
  130. package/dist/commonjs/components/Participant/ParticipantView/VideoRenderer/index.js +35 -32
  131. package/dist/commonjs/components/Participant/ParticipantView/VideoRenderer/index.js.map +1 -1
  132. package/dist/commonjs/components/utility/Avatar.js +18 -15
  133. package/dist/commonjs/components/utility/Avatar.js.map +1 -1
  134. package/dist/commonjs/components/utility/ScreenShareOverlay.js +35 -29
  135. package/dist/commonjs/components/utility/ScreenShareOverlay.js.map +1 -1
  136. package/dist/commonjs/contexts/BackgroundFilters.js +5 -3
  137. package/dist/commonjs/contexts/BackgroundFilters.js.map +1 -1
  138. package/dist/commonjs/contexts/ThemeContext.js +5 -3
  139. package/dist/commonjs/contexts/ThemeContext.js.map +1 -1
  140. package/dist/commonjs/contexts/internal/ScreenshotIosContext.js +5 -3
  141. package/dist/commonjs/contexts/internal/ScreenshotIosContext.js.map +1 -1
  142. package/dist/commonjs/hooks/index.js +11 -0
  143. package/dist/commonjs/hooks/index.js.map +1 -1
  144. package/dist/commonjs/hooks/useAutoEnterPiPEffect.js +5 -10
  145. package/dist/commonjs/hooks/useAutoEnterPiPEffect.js.map +1 -1
  146. package/dist/commonjs/hooks/useLoopbackRecording.js +263 -0
  147. package/dist/commonjs/hooks/useLoopbackRecording.js.map +1 -0
  148. package/dist/commonjs/hooks/useModeration.js +4 -1
  149. package/dist/commonjs/hooks/useModeration.js.map +1 -1
  150. package/dist/commonjs/icons/Back.js +8 -6
  151. package/dist/commonjs/icons/Back.js.map +1 -1
  152. package/dist/commonjs/icons/BadNetwork.js +11 -9
  153. package/dist/commonjs/icons/BadNetwork.js.map +1 -1
  154. package/dist/commonjs/icons/CameraSwitch.js +8 -6
  155. package/dist/commonjs/icons/CameraSwitch.js.map +1 -1
  156. package/dist/commonjs/icons/EndStreamIcon.js +8 -6
  157. package/dist/commonjs/icons/EndStreamIcon.js.map +1 -1
  158. package/dist/commonjs/icons/Eye.js +8 -6
  159. package/dist/commonjs/icons/Eye.js.map +1 -1
  160. package/dist/commonjs/icons/IconWrapper.js +5 -3
  161. package/dist/commonjs/icons/IconWrapper.js.map +1 -1
  162. package/dist/commonjs/icons/LivestreamControls.js +44 -39
  163. package/dist/commonjs/icons/LivestreamControls.js.map +1 -1
  164. package/dist/commonjs/icons/Lock.js +8 -6
  165. package/dist/commonjs/icons/Lock.js.map +1 -1
  166. package/dist/commonjs/icons/Maximize.js +33 -31
  167. package/dist/commonjs/icons/Maximize.js.map +1 -1
  168. package/dist/commonjs/icons/Mic.js +8 -6
  169. package/dist/commonjs/icons/Mic.js.map +1 -1
  170. package/dist/commonjs/icons/MicOff.js +8 -6
  171. package/dist/commonjs/icons/MicOff.js.map +1 -1
  172. package/dist/commonjs/icons/Phone.js +8 -6
  173. package/dist/commonjs/icons/Phone.js.map +1 -1
  174. package/dist/commonjs/icons/PhoneDown.js +8 -6
  175. package/dist/commonjs/icons/PhoneDown.js.map +1 -1
  176. package/dist/commonjs/icons/PinVertical.js +8 -6
  177. package/dist/commonjs/icons/PinVertical.js.map +1 -1
  178. package/dist/commonjs/icons/Reaction.js +8 -6
  179. package/dist/commonjs/icons/Reaction.js.map +1 -1
  180. package/dist/commonjs/icons/ScreenShare.js +8 -6
  181. package/dist/commonjs/icons/ScreenShare.js.map +1 -1
  182. package/dist/commonjs/icons/ScreenShareIndicator.js +21 -18
  183. package/dist/commonjs/icons/ScreenShareIndicator.js.map +1 -1
  184. package/dist/commonjs/icons/StartStreamIcon.js +8 -6
  185. package/dist/commonjs/icons/StartStreamIcon.js.map +1 -1
  186. package/dist/commonjs/icons/StopScreenShare.js +11 -9
  187. package/dist/commonjs/icons/StopScreenShare.js.map +1 -1
  188. package/dist/commonjs/icons/Video.js +8 -6
  189. package/dist/commonjs/icons/Video.js.map +1 -1
  190. package/dist/commonjs/icons/VideoSlash.js +8 -6
  191. package/dist/commonjs/icons/VideoSlash.js.map +1 -1
  192. package/dist/commonjs/icons/index.js +0 -66
  193. package/dist/commonjs/icons/index.js.map +1 -1
  194. package/dist/commonjs/package.json +1 -0
  195. package/dist/commonjs/providers/BusyTonePlayer.js +7 -7
  196. package/dist/commonjs/providers/BusyTonePlayer.js.map +1 -1
  197. package/dist/commonjs/providers/NoiseCancellation/NoiseCancellationProvider.js +5 -3
  198. package/dist/commonjs/providers/NoiseCancellation/NoiseCancellationProvider.js.map +1 -1
  199. package/dist/commonjs/providers/StreamCall/AppStateListener.js +3 -0
  200. package/dist/commonjs/providers/StreamCall/AppStateListener.js.map +1 -1
  201. package/dist/commonjs/providers/StreamCall/DeviceStats.js +1 -1
  202. package/dist/commonjs/providers/StreamCall/DeviceStats.js.map +1 -1
  203. package/dist/commonjs/providers/StreamCall/index.js +5 -3
  204. package/dist/commonjs/providers/StreamCall/index.js.map +1 -1
  205. package/dist/commonjs/providers/StreamVideo.js +10 -5
  206. package/dist/commonjs/providers/StreamVideo.js.map +1 -1
  207. package/dist/commonjs/utils/StreamVideoRN/index.js +0 -1
  208. package/dist/commonjs/utils/StreamVideoRN/index.js.map +1 -1
  209. package/dist/commonjs/utils/internal/callingx/callingx.js +4 -4
  210. package/dist/commonjs/utils/internal/callingx/callingx.js.map +1 -1
  211. package/dist/commonjs/utils/internal/registerSDKGlobals.js +2 -2
  212. package/dist/commonjs/utils/internal/registerSDKGlobals.js.map +1 -1
  213. package/dist/commonjs/utils/push/libs/firebaseMessaging/index.js.map +1 -1
  214. package/dist/commonjs/version.js +1 -1
  215. package/dist/module/components/Call/CallContent/CallContent.js +95 -48
  216. package/dist/module/components/Call/CallContent/CallContent.js.map +1 -1
  217. package/dist/module/components/Call/CallContent/RTCViewPipIOS.js +24 -20
  218. package/dist/module/components/Call/CallContent/RTCViewPipIOS.js.map +1 -1
  219. package/dist/module/components/Call/CallContent/RTCViewPipNative.js +4 -1
  220. package/dist/module/components/Call/CallContent/RTCViewPipNative.js.map +1 -1
  221. package/dist/module/components/Call/CallContent/index.js +2 -0
  222. package/dist/module/components/Call/CallContent/index.js.map +1 -1
  223. package/dist/module/components/Call/CallControls/AcceptCallButton.js +12 -7
  224. package/dist/module/components/Call/CallControls/AcceptCallButton.js.map +1 -1
  225. package/dist/module/components/Call/CallControls/CallControls.js +9 -6
  226. package/dist/module/components/Call/CallControls/CallControls.js.map +1 -1
  227. package/dist/module/components/Call/CallControls/CallControlsButton.js +13 -8
  228. package/dist/module/components/Call/CallControls/CallControlsButton.js.map +1 -1
  229. package/dist/module/components/Call/CallControls/HangupCallButton.js +12 -7
  230. package/dist/module/components/Call/CallControls/HangupCallButton.js.map +1 -1
  231. package/dist/module/components/Call/CallControls/IncomingCallControls.js +13 -10
  232. package/dist/module/components/Call/CallControls/IncomingCallControls.js.map +1 -1
  233. package/dist/module/components/Call/CallControls/LobbyControls.js +7 -3
  234. package/dist/module/components/Call/CallControls/LobbyControls.js.map +1 -1
  235. package/dist/module/components/Call/CallControls/OutgoingCallControls.js +14 -10
  236. package/dist/module/components/Call/CallControls/OutgoingCallControls.js.map +1 -1
  237. package/dist/module/components/Call/CallControls/ReactionsButton.js +24 -16
  238. package/dist/module/components/Call/CallControls/ReactionsButton.js.map +1 -1
  239. package/dist/module/components/Call/CallControls/RejectCallButton.js +12 -7
  240. package/dist/module/components/Call/CallControls/RejectCallButton.js.map +1 -1
  241. package/dist/module/components/Call/CallControls/ScreenShareToggleButton.js +17 -12
  242. package/dist/module/components/Call/CallControls/ScreenShareToggleButton.js.map +1 -1
  243. package/dist/module/components/Call/CallControls/ToggleAudioPreviewButton.js +15 -10
  244. package/dist/module/components/Call/CallControls/ToggleAudioPreviewButton.js.map +1 -1
  245. package/dist/module/components/Call/CallControls/ToggleAudioPublishingButton.js +20 -14
  246. package/dist/module/components/Call/CallControls/ToggleAudioPublishingButton.js.map +1 -1
  247. package/dist/module/components/Call/CallControls/ToggleCameraFaceButton.js +19 -13
  248. package/dist/module/components/Call/CallControls/ToggleCameraFaceButton.js.map +1 -1
  249. package/dist/module/components/Call/CallControls/ToggleVideoPreviewButton.js +15 -10
  250. package/dist/module/components/Call/CallControls/ToggleVideoPreviewButton.js.map +1 -1
  251. package/dist/module/components/Call/CallControls/ToggleVideoPublishingButton.js +19 -13
  252. package/dist/module/components/Call/CallControls/ToggleVideoPublishingButton.js.map +1 -1
  253. package/dist/module/components/Call/CallControls/index.js +2 -0
  254. package/dist/module/components/Call/CallControls/index.js.map +1 -1
  255. package/dist/module/components/Call/CallControls/internal/ReactionsPicker.js +41 -34
  256. package/dist/module/components/Call/CallControls/internal/ReactionsPicker.js.map +1 -1
  257. package/dist/module/components/Call/CallLayout/CallParticipantsGrid.js +19 -13
  258. package/dist/module/components/Call/CallLayout/CallParticipantsGrid.js.map +1 -1
  259. package/dist/module/components/Call/CallLayout/CallParticipantsSpotlight.js +38 -25
  260. package/dist/module/components/Call/CallLayout/CallParticipantsSpotlight.js.map +1 -1
  261. package/dist/module/components/Call/CallLayout/index.js +2 -0
  262. package/dist/module/components/Call/CallLayout/index.js.map +1 -1
  263. package/dist/module/components/Call/CallParticipantsList/CallParticipantsList.js +32 -28
  264. package/dist/module/components/Call/CallParticipantsList/CallParticipantsList.js.map +1 -1
  265. package/dist/module/components/Call/CallParticipantsList/index.js +2 -0
  266. package/dist/module/components/Call/CallParticipantsList/index.js.map +1 -1
  267. package/dist/module/components/Call/Lobby/JoinCallButton.js +12 -8
  268. package/dist/module/components/Call/Lobby/JoinCallButton.js.map +1 -1
  269. package/dist/module/components/Call/Lobby/Lobby.js +47 -36
  270. package/dist/module/components/Call/Lobby/Lobby.js.map +1 -1
  271. package/dist/module/components/Call/Lobby/LobbyFooter.js +23 -17
  272. package/dist/module/components/Call/Lobby/LobbyFooter.js.map +1 -1
  273. package/dist/module/components/Call/Lobby/index.js +2 -0
  274. package/dist/module/components/Call/Lobby/index.js.map +1 -1
  275. package/dist/module/components/Call/RingingCallContent/CallLeftIndicator.js +4 -1
  276. package/dist/module/components/Call/RingingCallContent/CallLeftIndicator.js.map +1 -1
  277. package/dist/module/components/Call/RingingCallContent/CallPreparingIndicator.js +4 -1
  278. package/dist/module/components/Call/RingingCallContent/CallPreparingIndicator.js.map +1 -1
  279. package/dist/module/components/Call/RingingCallContent/IncomingCall.js +34 -23
  280. package/dist/module/components/Call/RingingCallContent/IncomingCall.js.map +1 -1
  281. package/dist/module/components/Call/RingingCallContent/OutgoingCall.js +39 -28
  282. package/dist/module/components/Call/RingingCallContent/OutgoingCall.js.map +1 -1
  283. package/dist/module/components/Call/RingingCallContent/RingingCallContent.js +15 -12
  284. package/dist/module/components/Call/RingingCallContent/RingingCallContent.js.map +1 -1
  285. package/dist/module/components/Call/RingingCallContent/TextBasedIndicator.js +30 -22
  286. package/dist/module/components/Call/RingingCallContent/TextBasedIndicator.js.map +1 -1
  287. package/dist/module/components/Call/RingingCallContent/UserInfo.js +27 -22
  288. package/dist/module/components/Call/RingingCallContent/UserInfo.js.map +1 -1
  289. package/dist/module/components/Call/RingingCallContent/index.js +2 -0
  290. package/dist/module/components/Call/RingingCallContent/index.js.map +1 -1
  291. package/dist/module/components/Call/index.js +2 -0
  292. package/dist/module/components/Call/index.js.map +1 -1
  293. package/dist/module/components/Livestream/HostLivestream/HostLivestream.js +40 -35
  294. package/dist/module/components/Livestream/HostLivestream/HostLivestream.js.map +1 -1
  295. package/dist/module/components/Livestream/HostLivestream/index.js +2 -0
  296. package/dist/module/components/Livestream/HostLivestream/index.js.map +1 -1
  297. package/dist/module/components/Livestream/LivestreamControls/HostLivestreamControls.js +18 -13
  298. package/dist/module/components/Livestream/LivestreamControls/HostLivestreamControls.js.map +1 -1
  299. package/dist/module/components/Livestream/LivestreamControls/HostStartStreamButton.js +18 -13
  300. package/dist/module/components/Livestream/LivestreamControls/HostStartStreamButton.js.map +1 -1
  301. package/dist/module/components/Livestream/LivestreamControls/LivestreamAudioControlButton.js +21 -14
  302. package/dist/module/components/Livestream/LivestreamControls/LivestreamAudioControlButton.js.map +1 -1
  303. package/dist/module/components/Livestream/LivestreamControls/LivestreamMediaControls.js +7 -4
  304. package/dist/module/components/Livestream/LivestreamControls/LivestreamMediaControls.js.map +1 -1
  305. package/dist/module/components/Livestream/LivestreamControls/LivestreamScreenShareToggleButton.js +21 -16
  306. package/dist/module/components/Livestream/LivestreamControls/LivestreamScreenShareToggleButton.js.map +1 -1
  307. package/dist/module/components/Livestream/LivestreamControls/LivestreamVideoControlButton.js +21 -14
  308. package/dist/module/components/Livestream/LivestreamControls/LivestreamVideoControlButton.js.map +1 -1
  309. package/dist/module/components/Livestream/LivestreamControls/ViewerLeaveStreamButton.js +13 -9
  310. package/dist/module/components/Livestream/LivestreamControls/ViewerLeaveStreamButton.js.map +1 -1
  311. package/dist/module/components/Livestream/LivestreamControls/ViewerLivestreamControls.js +80 -58
  312. package/dist/module/components/Livestream/LivestreamControls/ViewerLivestreamControls.js.map +1 -1
  313. package/dist/module/components/Livestream/LivestreamControls/index.js +2 -0
  314. package/dist/module/components/Livestream/LivestreamControls/index.js.map +1 -1
  315. package/dist/module/components/Livestream/LivestreamLayout/LivestreamLayout.js +14 -46
  316. package/dist/module/components/Livestream/LivestreamLayout/LivestreamLayout.js.map +1 -1
  317. package/dist/module/components/Livestream/LivestreamLayout/index.js +2 -0
  318. package/dist/module/components/Livestream/LivestreamLayout/index.js.map +1 -1
  319. package/dist/module/components/Livestream/LivestreamPlayer/LivestreamEnded.js +52 -25
  320. package/dist/module/components/Livestream/LivestreamPlayer/LivestreamEnded.js.map +1 -1
  321. package/dist/module/components/Livestream/LivestreamPlayer/LivestreamPlayer.js +9 -5
  322. package/dist/module/components/Livestream/LivestreamPlayer/LivestreamPlayer.js.map +1 -1
  323. package/dist/module/components/Livestream/LivestreamPlayer/index.js +2 -0
  324. package/dist/module/components/Livestream/LivestreamPlayer/index.js.map +1 -1
  325. package/dist/module/components/Livestream/LivestreamTopView/DurationBadge.js +14 -10
  326. package/dist/module/components/Livestream/LivestreamTopView/DurationBadge.js.map +1 -1
  327. package/dist/module/components/Livestream/LivestreamTopView/FollowerCount.js +13 -8
  328. package/dist/module/components/Livestream/LivestreamTopView/FollowerCount.js.map +1 -1
  329. package/dist/module/components/Livestream/LivestreamTopView/HostLivestreamTopView.js +20 -14
  330. package/dist/module/components/Livestream/LivestreamTopView/HostLivestreamTopView.js.map +1 -1
  331. package/dist/module/components/Livestream/LivestreamTopView/LiveIndicator.js +12 -8
  332. package/dist/module/components/Livestream/LivestreamTopView/LiveIndicator.js.map +1 -1
  333. package/dist/module/components/Livestream/LivestreamTopView/ViewerLivestreamTopView.js +20 -14
  334. package/dist/module/components/Livestream/LivestreamTopView/ViewerLivestreamTopView.js.map +1 -1
  335. package/dist/module/components/Livestream/LivestreamTopView/index.js +2 -0
  336. package/dist/module/components/Livestream/LivestreamTopView/index.js.map +1 -1
  337. package/dist/module/components/Livestream/ViewerLivestream/ViewerLivestream.js +43 -38
  338. package/dist/module/components/Livestream/ViewerLivestream/ViewerLivestream.js.map +1 -1
  339. package/dist/module/components/Livestream/ViewerLivestream/ViewerLobby.js +35 -23
  340. package/dist/module/components/Livestream/ViewerLivestream/ViewerLobby.js.map +1 -1
  341. package/dist/module/components/Livestream/ViewerLivestream/index.js +2 -0
  342. package/dist/module/components/Livestream/ViewerLivestream/index.js.map +1 -1
  343. package/dist/module/components/Livestream/index.js +2 -0
  344. package/dist/module/components/Livestream/index.js.map +1 -1
  345. package/dist/module/components/Participant/FloatingParticipantView/FloatingView/AnimatedFloatingView.js +20 -15
  346. package/dist/module/components/Participant/FloatingParticipantView/FloatingView/AnimatedFloatingView.js.map +1 -1
  347. package/dist/module/components/Participant/FloatingParticipantView/FloatingView/ReanimatedFloatingView.js +22 -16
  348. package/dist/module/components/Participant/FloatingParticipantView/FloatingView/ReanimatedFloatingView.js.map +1 -1
  349. package/dist/module/components/Participant/FloatingParticipantView/FloatingView/common.js +2 -0
  350. package/dist/module/components/Participant/FloatingParticipantView/FloatingView/common.js.map +1 -1
  351. package/dist/module/components/Participant/FloatingParticipantView/FloatingView/index.js +2 -0
  352. package/dist/module/components/Participant/FloatingParticipantView/FloatingView/index.js.map +1 -1
  353. package/dist/module/components/Participant/FloatingParticipantView/index.js +56 -49
  354. package/dist/module/components/Participant/FloatingParticipantView/index.js.map +1 -1
  355. package/dist/module/components/Participant/FloatingParticipantView/useFloatingVideoDimensions.js +2 -0
  356. package/dist/module/components/Participant/FloatingParticipantView/useFloatingVideoDimensions.js.map +1 -1
  357. package/dist/module/components/Participant/ParticipantView/ParticipantLabel.js +66 -53
  358. package/dist/module/components/Participant/ParticipantView/ParticipantLabel.js.map +1 -1
  359. package/dist/module/components/Participant/ParticipantView/ParticipantNetworkQualityIndicator.js +32 -28
  360. package/dist/module/components/Participant/ParticipantView/ParticipantNetworkQualityIndicator.js.map +1 -1
  361. package/dist/module/components/Participant/ParticipantView/ParticipantReaction.js +13 -8
  362. package/dist/module/components/Participant/ParticipantView/ParticipantReaction.js.map +1 -1
  363. package/dist/module/components/Participant/ParticipantView/ParticipantVideoFallback.js +19 -15
  364. package/dist/module/components/Participant/ParticipantView/ParticipantVideoFallback.js.map +1 -1
  365. package/dist/module/components/Participant/ParticipantView/ParticipantView.js +29 -24
  366. package/dist/module/components/Participant/ParticipantView/ParticipantView.js.map +1 -1
  367. package/dist/module/components/Participant/ParticipantView/SpeechIndicator.js +10 -8
  368. package/dist/module/components/Participant/ParticipantView/SpeechIndicator.js.map +1 -1
  369. package/dist/module/components/Participant/ParticipantView/VideoRenderer/TrackSubscriber.js +2 -0
  370. package/dist/module/components/Participant/ParticipantView/VideoRenderer/TrackSubscriber.js.map +1 -1
  371. package/dist/module/components/Participant/ParticipantView/VideoRenderer/index.js +37 -31
  372. package/dist/module/components/Participant/ParticipantView/VideoRenderer/index.js.map +1 -1
  373. package/dist/module/components/Participant/ParticipantView/index.js +2 -0
  374. package/dist/module/components/Participant/ParticipantView/index.js.map +1 -1
  375. package/dist/module/components/Participant/index.js +2 -0
  376. package/dist/module/components/Participant/index.js.map +1 -1
  377. package/dist/module/components/index.js +2 -0
  378. package/dist/module/components/index.js.map +1 -1
  379. package/dist/module/components/utility/Avatar.js +20 -16
  380. package/dist/module/components/utility/Avatar.js.map +1 -1
  381. package/dist/module/components/utility/ScreenShareOverlay.js +37 -30
  382. package/dist/module/components/utility/ScreenShareOverlay.js.map +1 -1
  383. package/dist/module/components/utility/index.js +2 -0
  384. package/dist/module/components/utility/index.js.map +1 -1
  385. package/dist/module/constants/TestIds.js +2 -0
  386. package/dist/module/constants/TestIds.js.map +1 -1
  387. package/dist/module/constants/index.js +2 -0
  388. package/dist/module/constants/index.js.map +1 -1
  389. package/dist/module/contexts/BackgroundFilters.js +7 -4
  390. package/dist/module/contexts/BackgroundFilters.js.map +1 -1
  391. package/dist/module/contexts/ThemeContext.js +7 -4
  392. package/dist/module/contexts/ThemeContext.js.map +1 -1
  393. package/dist/module/contexts/index.js +2 -0
  394. package/dist/module/contexts/index.js.map +1 -1
  395. package/dist/module/contexts/internal/BackgroundFiltersContext.js +2 -0
  396. package/dist/module/contexts/internal/BackgroundFiltersContext.js.map +1 -1
  397. package/dist/module/contexts/internal/ScreenshotIosContext.js +7 -3
  398. package/dist/module/contexts/internal/ScreenshotIosContext.js.map +1 -1
  399. package/dist/module/hooks/index.js +3 -0
  400. package/dist/module/hooks/index.js.map +1 -1
  401. package/dist/module/hooks/push/index.js +2 -0
  402. package/dist/module/hooks/push/index.js.map +1 -1
  403. package/dist/module/hooks/push/useCallingExpWithCallingStateEffect.js +2 -0
  404. package/dist/module/hooks/push/useCallingExpWithCallingStateEffect.js.map +1 -1
  405. package/dist/module/hooks/push/useInitAndroidTokenAndRest.js +2 -0
  406. package/dist/module/hooks/push/useInitAndroidTokenAndRest.js.map +1 -1
  407. package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js +2 -0
  408. package/dist/module/hooks/push/useIosVoipPushEventsSetupEffect.js.map +1 -1
  409. package/dist/module/hooks/useAndroidKeepCallAliveEffect.js +2 -0
  410. package/dist/module/hooks/useAndroidKeepCallAliveEffect.js.map +1 -1
  411. package/dist/module/hooks/useAutoEnterPiPEffect.js +7 -10
  412. package/dist/module/hooks/useAutoEnterPiPEffect.js.map +1 -1
  413. package/dist/module/hooks/useIsInPiPMode.js +2 -0
  414. package/dist/module/hooks/useIsInPiPMode.js.map +1 -1
  415. package/dist/module/hooks/useIsIosScreenshareBroadcastStarted.js +2 -0
  416. package/dist/module/hooks/useIsIosScreenshareBroadcastStarted.js.map +1 -1
  417. package/dist/module/hooks/useLoopbackRecording.js +260 -0
  418. package/dist/module/hooks/useLoopbackRecording.js.map +1 -0
  419. package/dist/module/hooks/useModeration.js +6 -1
  420. package/dist/module/hooks/useModeration.js.map +1 -1
  421. package/dist/module/hooks/usePaginatedLayoutSortPreset.js +2 -0
  422. package/dist/module/hooks/usePaginatedLayoutSortPreset.js.map +1 -1
  423. package/dist/module/hooks/usePermissionNotification.js +2 -0
  424. package/dist/module/hooks/usePermissionNotification.js.map +1 -1
  425. package/dist/module/hooks/usePermissionRequest.js +2 -0
  426. package/dist/module/hooks/usePermissionRequest.js.map +1 -1
  427. package/dist/module/hooks/useScreenShareAudioMixing.js +2 -0
  428. package/dist/module/hooks/useScreenShareAudioMixing.js.map +1 -1
  429. package/dist/module/hooks/useScreenShareButton.js +2 -0
  430. package/dist/module/hooks/useScreenShareButton.js.map +1 -1
  431. package/dist/module/hooks/useScreenshot.js +2 -0
  432. package/dist/module/hooks/useScreenshot.js.map +1 -1
  433. package/dist/module/hooks/useTrackDimensions.js +2 -0
  434. package/dist/module/hooks/useTrackDimensions.js.map +1 -1
  435. package/dist/module/icons/Back.js +10 -6
  436. package/dist/module/icons/Back.js.map +1 -1
  437. package/dist/module/icons/BadNetwork.js +13 -9
  438. package/dist/module/icons/BadNetwork.js.map +1 -1
  439. package/dist/module/icons/CameraSwitch.js +10 -6
  440. package/dist/module/icons/CameraSwitch.js.map +1 -1
  441. package/dist/module/icons/EndStreamIcon.js +10 -6
  442. package/dist/module/icons/EndStreamIcon.js.map +1 -1
  443. package/dist/module/icons/Eye.js +10 -6
  444. package/dist/module/icons/Eye.js.map +1 -1
  445. package/dist/module/icons/IconWrapper.js +7 -3
  446. package/dist/module/icons/IconWrapper.js.map +1 -1
  447. package/dist/module/icons/LivestreamControls.js +46 -39
  448. package/dist/module/icons/LivestreamControls.js.map +1 -1
  449. package/dist/module/icons/Lock.js +10 -6
  450. package/dist/module/icons/Lock.js.map +1 -1
  451. package/dist/module/icons/Maximize.js +35 -31
  452. package/dist/module/icons/Maximize.js.map +1 -1
  453. package/dist/module/icons/Mic.js +10 -6
  454. package/dist/module/icons/Mic.js.map +1 -1
  455. package/dist/module/icons/MicOff.js +10 -6
  456. package/dist/module/icons/MicOff.js.map +1 -1
  457. package/dist/module/icons/Phone.js +10 -6
  458. package/dist/module/icons/Phone.js.map +1 -1
  459. package/dist/module/icons/PhoneDown.js +10 -6
  460. package/dist/module/icons/PhoneDown.js.map +1 -1
  461. package/dist/module/icons/PinVertical.js +10 -6
  462. package/dist/module/icons/PinVertical.js.map +1 -1
  463. package/dist/module/icons/Reaction.js +10 -6
  464. package/dist/module/icons/Reaction.js.map +1 -1
  465. package/dist/module/icons/ScreenShare.js +10 -6
  466. package/dist/module/icons/ScreenShare.js.map +1 -1
  467. package/dist/module/icons/ScreenShareIndicator.js +23 -18
  468. package/dist/module/icons/ScreenShareIndicator.js.map +1 -1
  469. package/dist/module/icons/StartStreamIcon.js +10 -6
  470. package/dist/module/icons/StartStreamIcon.js.map +1 -1
  471. package/dist/module/icons/StopScreenShare.js +13 -9
  472. package/dist/module/icons/StopScreenShare.js.map +1 -1
  473. package/dist/module/icons/Video.js +10 -6
  474. package/dist/module/icons/Video.js.map +1 -1
  475. package/dist/module/icons/VideoSlash.js +10 -6
  476. package/dist/module/icons/VideoSlash.js.map +1 -1
  477. package/dist/module/icons/index.js +2 -6
  478. package/dist/module/icons/index.js.map +1 -1
  479. package/dist/module/index.js +2 -0
  480. package/dist/module/index.js.map +1 -1
  481. package/dist/module/modules/ScreenShareAudioManager.js +2 -0
  482. package/dist/module/modules/ScreenShareAudioManager.js.map +1 -1
  483. package/dist/module/modules/call-manager/CallManager.js +2 -0
  484. package/dist/module/modules/call-manager/CallManager.js.map +1 -1
  485. package/dist/module/modules/call-manager/PrevLibDetection.js +2 -0
  486. package/dist/module/modules/call-manager/PrevLibDetection.js.map +1 -1
  487. package/dist/module/modules/call-manager/index.js +2 -0
  488. package/dist/module/modules/call-manager/index.js.map +1 -1
  489. package/dist/module/modules/call-manager/native-module.d.js +2 -0
  490. package/dist/module/modules/call-manager/native-module.d.js.map +1 -1
  491. package/dist/module/modules/call-manager/types.js +1 -1
  492. package/dist/module/providers/BusyTonePlayer.js +9 -7
  493. package/dist/module/providers/BusyTonePlayer.js.map +1 -1
  494. package/dist/module/providers/NoiseCancellation/NoiseCancellationProvider.js +7 -4
  495. package/dist/module/providers/NoiseCancellation/NoiseCancellationProvider.js.map +1 -1
  496. package/dist/module/providers/NoiseCancellation/index.js +2 -0
  497. package/dist/module/providers/NoiseCancellation/index.js.map +1 -1
  498. package/dist/module/providers/NoiseCancellation/lib.js +2 -0
  499. package/dist/module/providers/NoiseCancellation/lib.js.map +1 -1
  500. package/dist/module/providers/StreamCall/AppStateListener.js +5 -0
  501. package/dist/module/providers/StreamCall/AppStateListener.js.map +1 -1
  502. package/dist/module/providers/StreamCall/AudioInterruptionTracer.js +2 -0
  503. package/dist/module/providers/StreamCall/AudioInterruptionTracer.js.map +1 -1
  504. package/dist/module/providers/StreamCall/DeviceStats.js +3 -1
  505. package/dist/module/providers/StreamCall/DeviceStats.js.map +1 -1
  506. package/dist/module/providers/StreamCall/index.js +7 -4
  507. package/dist/module/providers/StreamCall/index.js.map +1 -1
  508. package/dist/module/providers/StreamVideo.js +12 -5
  509. package/dist/module/providers/StreamVideo.js.map +1 -1
  510. package/dist/module/theme/colors.js +2 -0
  511. package/dist/module/theme/colors.js.map +1 -1
  512. package/dist/module/theme/constants.js +2 -0
  513. package/dist/module/theme/constants.js.map +1 -1
  514. package/dist/module/theme/index.js +2 -0
  515. package/dist/module/theme/index.js.map +1 -1
  516. package/dist/module/theme/theme.js +2 -0
  517. package/dist/module/theme/theme.js.map +1 -1
  518. package/dist/module/theme/types.js +2 -0
  519. package/dist/module/translations/index.js +2 -0
  520. package/dist/module/translations/index.js.map +1 -1
  521. package/dist/module/utils/StreamVideoRN/index.js +2 -1
  522. package/dist/module/utils/StreamVideoRN/index.js.map +1 -1
  523. package/dist/module/utils/StreamVideoRN/types.js +2 -0
  524. package/dist/module/utils/enterPiPAndroid.js +2 -0
  525. package/dist/module/utils/enterPiPAndroid.js.map +1 -1
  526. package/dist/module/utils/getAndroidDefaultRingtoneUrl.js +2 -0
  527. package/dist/module/utils/getAndroidDefaultRingtoneUrl.js.map +1 -1
  528. package/dist/module/utils/hooks/index.js +2 -0
  529. package/dist/module/utils/hooks/index.js.map +1 -1
  530. package/dist/module/utils/hooks/usePrevious.js +2 -0
  531. package/dist/module/utils/hooks/usePrevious.js.map +1 -1
  532. package/dist/module/utils/index.js +2 -0
  533. package/dist/module/utils/index.js.map +1 -1
  534. package/dist/module/utils/internal/callingx/audioSessionPromise.js +2 -0
  535. package/dist/module/utils/internal/callingx/audioSessionPromise.js.map +1 -1
  536. package/dist/module/utils/internal/callingx/callingx.js +6 -4
  537. package/dist/module/utils/internal/callingx/callingx.js.map +1 -1
  538. package/dist/module/utils/internal/optionallibs/gestureHandler.js +2 -0
  539. package/dist/module/utils/internal/optionallibs/gestureHandler.js.map +1 -1
  540. package/dist/module/utils/internal/optionallibs/index.js +2 -0
  541. package/dist/module/utils/internal/optionallibs/index.js.map +1 -1
  542. package/dist/module/utils/internal/optionallibs/reanimated.js +2 -0
  543. package/dist/module/utils/internal/optionallibs/reanimated.js.map +1 -1
  544. package/dist/module/utils/internal/pushLogoutCallback.js +2 -0
  545. package/dist/module/utils/internal/pushLogoutCallback.js.map +1 -1
  546. package/dist/module/utils/internal/registerSDKGlobals.js +4 -2
  547. package/dist/module/utils/internal/registerSDKGlobals.js.map +1 -1
  548. package/dist/module/utils/internal/rxSubjects.js +2 -0
  549. package/dist/module/utils/internal/rxSubjects.js.map +1 -1
  550. package/dist/module/utils/internal/shouldDisableIOSLocalVideoOnBackground.js +2 -0
  551. package/dist/module/utils/internal/shouldDisableIOSLocalVideoOnBackground.js.map +1 -1
  552. package/dist/module/utils/keepCallAliveHeadlessTask.js +2 -0
  553. package/dist/module/utils/keepCallAliveHeadlessTask.js.map +1 -1
  554. package/dist/module/utils/push/android.js +2 -0
  555. package/dist/module/utils/push/android.js.map +1 -1
  556. package/dist/module/utils/push/index.js +2 -0
  557. package/dist/module/utils/push/index.js.map +1 -1
  558. package/dist/module/utils/push/internal/constants.js +2 -0
  559. package/dist/module/utils/push/internal/constants.js.map +1 -1
  560. package/dist/module/utils/push/internal/ios.js +2 -0
  561. package/dist/module/utils/push/internal/ios.js.map +1 -1
  562. package/dist/module/utils/push/internal/utils.js +2 -0
  563. package/dist/module/utils/push/internal/utils.js.map +1 -1
  564. package/dist/module/utils/push/libs/callingx.js +2 -0
  565. package/dist/module/utils/push/libs/callingx.js.map +1 -1
  566. package/dist/module/utils/push/libs/firebaseMessaging/index.js +2 -0
  567. package/dist/module/utils/push/libs/firebaseMessaging/index.js.map +1 -1
  568. package/dist/module/utils/push/libs/firebaseMessaging/lib.js +2 -0
  569. package/dist/module/utils/push/libs/firebaseMessaging/lib.js.map +1 -1
  570. package/dist/module/utils/push/libs/index.js +2 -0
  571. package/dist/module/utils/push/libs/index.js.map +1 -1
  572. package/dist/module/utils/push/setupCallingExpEvents.js +2 -0
  573. package/dist/module/utils/push/setupCallingExpEvents.js.map +1 -1
  574. package/dist/module/utils/push/setupIosVoipPushEvents.js +2 -0
  575. package/dist/module/utils/push/setupIosVoipPushEvents.js.map +1 -1
  576. package/dist/module/utils/push/utils.js +2 -0
  577. package/dist/module/utils/push/utils.js.map +1 -1
  578. package/dist/module/utils/setClientDetails.js +2 -0
  579. package/dist/module/utils/setClientDetails.js.map +1 -1
  580. package/dist/module/version.js +3 -1
  581. package/dist/module/version.js.map +1 -1
  582. package/dist/typescript/components/Call/CallContent/CallContent.d.ts.map +1 -1
  583. package/dist/typescript/components/Call/CallLayout/CallParticipantsGrid.d.ts.map +1 -1
  584. package/dist/typescript/components/Call/CallLayout/CallParticipantsSpotlight.d.ts.map +1 -1
  585. package/dist/typescript/components/Call/CallParticipantsList/CallParticipantsList.d.ts.map +1 -1
  586. package/dist/typescript/components/Call/Lobby/Lobby.d.ts.map +1 -1
  587. package/dist/typescript/components/Livestream/HostLivestream/HostLivestream.d.ts.map +1 -1
  588. package/dist/typescript/components/Livestream/LivestreamLayout/LivestreamLayout.d.ts.map +1 -1
  589. package/dist/typescript/components/Livestream/LivestreamPlayer/LivestreamEnded.d.ts.map +1 -1
  590. package/dist/typescript/components/Livestream/ViewerLivestream/ViewerLivestream.d.ts.map +1 -1
  591. package/dist/typescript/components/Participant/FloatingParticipantView/index.d.ts.map +1 -1
  592. package/dist/typescript/components/Participant/ParticipantView/ParticipantView.d.ts +1 -1
  593. package/dist/typescript/components/Participant/ParticipantView/ParticipantView.d.ts.map +1 -1
  594. package/dist/typescript/components/Participant/ParticipantView/VideoRenderer/index.d.ts +1 -1
  595. package/dist/typescript/components/Participant/ParticipantView/VideoRenderer/index.d.ts.map +1 -1
  596. package/dist/typescript/contexts/BackgroundFilters.d.ts +1 -1
  597. package/dist/typescript/contexts/BackgroundFilters.d.ts.map +1 -1
  598. package/dist/typescript/hooks/index.d.ts +1 -0
  599. package/dist/typescript/hooks/index.d.ts.map +1 -1
  600. package/dist/typescript/hooks/useAutoEnterPiPEffect.d.ts.map +1 -1
  601. package/dist/typescript/hooks/useLoopbackRecording.d.ts +85 -0
  602. package/dist/typescript/hooks/useLoopbackRecording.d.ts.map +1 -0
  603. package/dist/typescript/hooks/useModeration.d.ts.map +1 -1
  604. package/dist/typescript/icons/index.d.ts +0 -6
  605. package/dist/typescript/icons/index.d.ts.map +1 -1
  606. package/dist/typescript/providers/StreamCall/AppStateListener.d.ts.map +1 -1
  607. package/dist/typescript/providers/StreamCall/DeviceStats.d.ts.map +1 -1
  608. package/dist/typescript/utils/StreamVideoRN/index.d.ts +0 -1
  609. package/dist/typescript/utils/StreamVideoRN/index.d.ts.map +1 -1
  610. package/dist/typescript/utils/internal/callingx/callingx.d.ts.map +1 -1
  611. package/dist/typescript/utils/push/libs/firebaseMessaging/index.d.ts +2 -16
  612. package/dist/typescript/utils/push/libs/firebaseMessaging/index.d.ts.map +1 -1
  613. package/dist/typescript/version.d.ts +1 -1
  614. package/ios/StreamVideoReactNative-Bridging-Header.h +2 -0
  615. package/ios/StreamVideoReactNative.m +81 -0
  616. package/ios/TracksRecorder/AudioPipeline.swift +270 -0
  617. package/ios/TracksRecorder/PipelineHost.swift +56 -0
  618. package/ios/TracksRecorder/RecorderAudioRenderTap.swift +144 -0
  619. package/ios/TracksRecorder/RecorderVideoSink.swift +137 -0
  620. package/ios/TracksRecorder/TracksRecorderManager.swift +333 -0
  621. package/ios/TracksRecorder/VideoPipeline.swift +297 -0
  622. package/package.json +10 -8
  623. package/src/components/Call/CallContent/CallContent.tsx +69 -39
  624. package/src/components/Call/CallLayout/CallParticipantsGrid.tsx +4 -6
  625. package/src/components/Call/CallLayout/CallParticipantsSpotlight.tsx +30 -21
  626. package/src/components/Call/CallParticipantsList/CallParticipantsList.tsx +23 -9
  627. package/src/components/Call/Lobby/Lobby.tsx +9 -5
  628. package/src/components/Livestream/HostLivestream/HostLivestream.tsx +5 -6
  629. package/src/components/Livestream/LivestreamControls/ViewerLivestreamControls.tsx +1 -1
  630. package/src/components/Livestream/LivestreamLayout/LivestreamLayout.tsx +4 -64
  631. package/src/components/Livestream/LivestreamPlayer/LivestreamEnded.tsx +54 -18
  632. package/src/components/Livestream/LivestreamTopView/DurationBadge.tsx +2 -2
  633. package/src/components/Livestream/ViewerLivestream/ViewerLivestream.tsx +10 -12
  634. package/src/components/Participant/FloatingParticipantView/index.tsx +26 -18
  635. package/src/components/Participant/ParticipantView/ParticipantReaction.tsx +1 -1
  636. package/src/components/Participant/ParticipantView/ParticipantView.tsx +68 -64
  637. package/src/components/Participant/ParticipantView/VideoRenderer/index.tsx +192 -179
  638. package/src/hooks/index.ts +1 -0
  639. package/src/hooks/useAutoEnterPiPEffect.tsx +5 -11
  640. package/src/hooks/useLoopbackRecording.ts +448 -0
  641. package/src/hooks/useModeration.ts +4 -1
  642. package/src/icons/index.tsx +0 -6
  643. package/src/providers/BusyTonePlayer.tsx +11 -11
  644. package/src/providers/StreamCall/AppStateListener.tsx +3 -0
  645. package/src/providers/StreamCall/DeviceStats.tsx +2 -1
  646. package/src/utils/StreamVideoRN/index.ts +0 -1
  647. package/src/utils/internal/callingx/callingx.ts +20 -10
  648. package/src/utils/internal/registerSDKGlobals.ts +2 -2
  649. package/src/utils/push/libs/firebaseMessaging/index.ts +4 -2
  650. package/src/version.ts +1 -1
  651. package/dist/commonjs/icons/LeaveStreamIcon.js +0 -20
  652. package/dist/commonjs/icons/LeaveStreamIcon.js.map +0 -1
  653. package/dist/commonjs/icons/Settings.js +0 -22
  654. package/dist/commonjs/icons/Settings.js.map +0 -1
  655. package/dist/commonjs/icons/ShieldBadge.js +0 -20
  656. package/dist/commonjs/icons/ShieldBadge.js.map +0 -1
  657. package/dist/commonjs/icons/Spotlight.js +0 -21
  658. package/dist/commonjs/icons/Spotlight.js.map +0 -1
  659. package/dist/commonjs/icons/ThreeDots.js +0 -31
  660. package/dist/commonjs/icons/ThreeDots.js.map +0 -1
  661. package/dist/commonjs/icons/TopViewBackground.js +0 -35
  662. package/dist/commonjs/icons/TopViewBackground.js.map +0 -1
  663. package/dist/module/icons/LeaveStreamIcon.js +0 -12
  664. package/dist/module/icons/LeaveStreamIcon.js.map +0 -1
  665. package/dist/module/icons/Settings.js +0 -13
  666. package/dist/module/icons/Settings.js.map +0 -1
  667. package/dist/module/icons/ShieldBadge.js +0 -12
  668. package/dist/module/icons/ShieldBadge.js.map +0 -1
  669. package/dist/module/icons/Spotlight.js +0 -13
  670. package/dist/module/icons/Spotlight.js.map +0 -1
  671. package/dist/module/icons/ThreeDots.js +0 -23
  672. package/dist/module/icons/ThreeDots.js.map +0 -1
  673. package/dist/module/icons/TopViewBackground.js +0 -27
  674. package/dist/module/icons/TopViewBackground.js.map +0 -1
  675. package/dist/typescript/icons/LeaveStreamIcon.d.ts +0 -3
  676. package/dist/typescript/icons/LeaveStreamIcon.d.ts.map +0 -1
  677. package/dist/typescript/icons/Settings.d.ts +0 -7
  678. package/dist/typescript/icons/Settings.d.ts.map +0 -1
  679. package/dist/typescript/icons/ShieldBadge.d.ts +0 -3
  680. package/dist/typescript/icons/ShieldBadge.d.ts.map +0 -1
  681. package/dist/typescript/icons/Spotlight.d.ts +0 -8
  682. package/dist/typescript/icons/Spotlight.d.ts.map +0 -1
  683. package/dist/typescript/icons/ThreeDots.d.ts +0 -7
  684. package/dist/typescript/icons/ThreeDots.d.ts.map +0 -1
  685. package/dist/typescript/icons/TopViewBackground.d.ts +0 -15
  686. package/dist/typescript/icons/TopViewBackground.d.ts.map +0 -1
  687. package/src/icons/LeaveStreamIcon.tsx +0 -13
  688. package/src/icons/Settings.tsx +0 -14
  689. package/src/icons/ShieldBadge.tsx +0 -13
  690. package/src/icons/Spotlight.tsx +0 -18
  691. package/src/icons/ThreeDots.tsx +0 -14
  692. package/src/icons/TopViewBackground.tsx +0 -43
@@ -1 +1 @@
1
- {"version":3,"names":["CallingState","useCall","useCallStateHooks","React","StyleSheet","View","CallContent","DefaultCallContent","IncomingCall","DefaultIncomingCall","OutgoingCall","DefaultOutgoingCall","CallLeftIndicator","DefaultCallLeftIndicator","CallPreparingIndicator","DefaultCallPreparingIndicator","useTheme","RingingCallPanel","landscape","onBackPress","callingState","call","isCallCreatedByMe","isCreatedByMe","RINGING","createElement","LEFT","IDLE","RingingCallContent","props","theme","ringingCallContent","useCallCallingState","style","absoluteFill","container","_extends"],"sourceRoot":"../../../../../src","sources":["components/Call/RingingCallContent/RingingCallContent.tsx"],"mappings":";AAAA,SAASA,YAAY,QAAQ,yBAAyB;AACtD,SAASC,OAAO,EAAEC,iBAAiB,QAAQ,iCAAiC;AAC5E,OAAOC,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAC/C,SACEC,WAAW,IAAIC,kBAAkB,QAE5B,gBAAgB;AACvB,SACEC,YAAY,IAAIC,mBAAmB,QAE9B,gBAAgB;AACvB,SACEC,YAAY,IAAIC,mBAAmB,QAE9B,gBAAgB;AACvB,SACEC,iBAAiB,IAAIC,wBAAwB,QAExC,qBAAqB;AAC5B,SACEC,sBAAsB,IAAIC,6BAA6B,QAElD,0BAA0B;AACjC,SAASC,QAAQ,QAAQ,mBAAmB;;AAE5C;AACA;AACA;;AAkCA,MAAMC,gBAAgB,GAAGA,CAAC;EACxBT,YAAY,GAAGC,mBAAmB;EAClCC,YAAY,GAAGC,mBAAmB;EAClCL,WAAW,GAAGC,kBAAkB;EAChCK,iBAAiB,GAAGC,wBAAwB;EAC5CC,sBAAsB,GAAGC,6BAA6B;EACtDG,SAAS;EACTC,WAAW;EACXC;AACwD,CAAC,KAAK;EAC9D,MAAMC,IAAI,GAAGpB,OAAO,CAAC,CAAC;EACtB,MAAMqB,iBAAiB,GAAGD,IAAI,EAAEE,aAAa;EAE7C,QAAQH,YAAY;IAClB,KAAKpB,YAAY,CAACwB,OAAO;MACvB,OAAOF,iBAAiB,GACpBZ,YAAY,iBAAIP,KAAA,CAAAsB,aAAA,CAACf,YAAY;QAACQ,SAAS,EAAEA;MAAU,CAAE,CAAC,GACtDV,YAAY,iBAAIL,KAAA,CAAAsB,aAAA,CAACjB,YAAY;QAACU,SAAS,EAAEA;MAAU,CAAE,CAAC;IAC5D,KAAKlB,YAAY,CAAC0B,IAAI;MACpB,OACEd,iBAAiB,iBAAIT,KAAA,CAAAsB,aAAA,CAACb,iBAAiB;QAACO,WAAW,EAAEA;MAAY,CAAE,CAAC;IAExE,KAAKnB,YAAY,CAAC2B,IAAI;MACpB,OACEb,sBAAsB,iBACpBX,KAAA,CAAAsB,aAAA,CAACX,sBAAsB;QAACK,WAAW,EAAEA;MAAY,CAAE,CACpD;IAEL;MACE,OAAOb,WAAW,iBAAIH,KAAA,CAAAsB,aAAA,CAACnB,WAAW;QAACY,SAAS,EAAEA;MAAU,CAAE,CAAC;EAC/D;AACF,CAAC;;AAED;AACA;AACA;AACA,OAAO,MAAMU,kBAAkB,GAAIC,KAA8B,IAAK;EACpE,MAAM;IACJC,KAAK,EAAE;MAAEC;IAAmB;EAC9B,CAAC,GAAGf,QAAQ,CAAC,CAAC;EACd,MAAM;IAAEgB;EAAoB,CAAC,GAAG9B,iBAAiB,CAAC,CAAC;EACnD,MAAMkB,YAAY,GAAGY,mBAAmB,CAAC,CAAC;EAE1C,oBACE7B,KAAA,CAAAsB,aAAA,CAACpB,IAAI;IAAC4B,KAAK,EAAE,CAAC7B,UAAU,CAAC8B,YAAY,EAAEH,kBAAkB,CAACI,SAAS;EAAE,gBACnEhC,KAAA,CAAAsB,aAAA,CAACR,gBAAgB,EAAAmB,QAAA,KAAKP,KAAK;IAAET,YAAY,EAAEA;EAAa,EAAE,CACtD,CAAC;AAEX,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["CallingState","useCall","useCallStateHooks","React","StyleSheet","View","CallContent","DefaultCallContent","IncomingCall","DefaultIncomingCall","OutgoingCall","DefaultOutgoingCall","CallLeftIndicator","DefaultCallLeftIndicator","CallPreparingIndicator","DefaultCallPreparingIndicator","useTheme","jsx","_jsx","RingingCallPanel","landscape","onBackPress","callingState","call","isCallCreatedByMe","isCreatedByMe","RINGING","LEFT","IDLE","RingingCallContent","props","theme","ringingCallContent","useCallCallingState","style","absoluteFill","container","children"],"sourceRoot":"../../../../../src","sources":["components/Call/RingingCallContent/RingingCallContent.tsx"],"mappings":";;AAAA,SAASA,YAAY,QAAQ,yBAAyB;AACtD,SAASC,OAAO,EAAEC,iBAAiB,QAAQ,iCAAiC;AAC5E,OAAOC,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAC/C,SACEC,WAAW,IAAIC,kBAAkB,QAE5B,gBAAgB;AACvB,SACEC,YAAY,IAAIC,mBAAmB,QAE9B,gBAAgB;AACvB,SACEC,YAAY,IAAIC,mBAAmB,QAE9B,gBAAgB;AACvB,SACEC,iBAAiB,IAAIC,wBAAwB,QAExC,qBAAqB;AAC5B,SACEC,sBAAsB,IAAIC,6BAA6B,QAElD,0BAA0B;AACjC,SAASC,QAAQ,QAAQ,mBAAmB;;AAE5C;AACA;AACA;AAFA,SAAAC,GAAA,IAAAC,IAAA;AAoCA,MAAMC,gBAAgB,GAAGA,CAAC;EACxBX,YAAY,GAAGC,mBAAmB;EAClCC,YAAY,GAAGC,mBAAmB;EAClCL,WAAW,GAAGC,kBAAkB;EAChCK,iBAAiB,GAAGC,wBAAwB;EAC5CC,sBAAsB,GAAGC,6BAA6B;EACtDK,SAAS;EACTC,WAAW;EACXC;AACwD,CAAC,KAAK;EAC9D,MAAMC,IAAI,GAAGtB,OAAO,CAAC,CAAC;EACtB,MAAMuB,iBAAiB,GAAGD,IAAI,EAAEE,aAAa;EAE7C,QAAQH,YAAY;IAClB,KAAKtB,YAAY,CAAC0B,OAAO;MACvB,OAAOF,iBAAiB,GACpBd,YAAY,iBAAIQ,IAAA,CAACR,YAAY;QAACU,SAAS,EAAEA;MAAU,CAAE,CAAC,GACtDZ,YAAY,iBAAIU,IAAA,CAACV,YAAY;QAACY,SAAS,EAAEA;MAAU,CAAE,CAAC;IAC5D,KAAKpB,YAAY,CAAC2B,IAAI;MACpB,OACEf,iBAAiB,iBAAIM,IAAA,CAACN,iBAAiB;QAACS,WAAW,EAAEA;MAAY,CAAE,CAAC;IAExE,KAAKrB,YAAY,CAAC4B,IAAI;MACpB,OACEd,sBAAsB,iBACpBI,IAAA,CAACJ,sBAAsB;QAACO,WAAW,EAAEA;MAAY,CAAE,CACpD;IAEL;MACE,OAAOf,WAAW,iBAAIY,IAAA,CAACZ,WAAW;QAACc,SAAS,EAAEA;MAAU,CAAE,CAAC;EAC/D;AACF,CAAC;;AAED;AACA;AACA;AACA,OAAO,MAAMS,kBAAkB,GAAIC,KAA8B,IAAK;EACpE,MAAM;IACJC,KAAK,EAAE;MAAEC;IAAmB;EAC9B,CAAC,GAAGhB,QAAQ,CAAC,CAAC;EACd,MAAM;IAAEiB;EAAoB,CAAC,GAAG/B,iBAAiB,CAAC,CAAC;EACnD,MAAMoB,YAAY,GAAGW,mBAAmB,CAAC,CAAC;EAE1C,oBACEf,IAAA,CAACb,IAAI;IAAC6B,KAAK,EAAE,CAAC9B,UAAU,CAAC+B,YAAY,EAAEH,kBAAkB,CAACI,SAAS,CAAE;IAAAC,QAAA,eACnEnB,IAAA,CAACC,gBAAgB;MAAA,GAAKW,KAAK;MAAER,YAAY,EAAEA;IAAa,CAAE;EAAC,CACvD,CAAC;AAEX,CAAC","ignoreList":[]}
@@ -1,7 +1,10 @@
1
+ "use strict";
2
+
1
3
  import React from 'react';
2
4
  import { StyleSheet, View, Text, Pressable } from 'react-native';
3
5
  import { useTheme } from '../../../contexts/ThemeContext';
4
6
  import { Back } from '../../../icons/Back';
7
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
5
8
  export const TextBasedIndicator = props => {
6
9
  const {
7
10
  theme: {
@@ -13,34 +16,39 @@ export const TextBasedIndicator = props => {
13
16
  }
14
17
  }
15
18
  } = useTheme();
16
- return /*#__PURE__*/React.createElement(View, {
19
+ return /*#__PURE__*/_jsxs(View, {
17
20
  style: [styles.container, {
18
21
  backgroundColor: colors.sheetTertiary,
19
22
  paddingTop: insets.top,
20
23
  paddingBottom: insets.bottom,
21
24
  paddingLeft: insets.left,
22
25
  paddingRight: insets.right
23
- }]
24
- }, props.onBackPress && /*#__PURE__*/React.createElement(View, {
25
- style: styles.backContainer
26
- }, /*#__PURE__*/React.createElement(Pressable, {
27
- onPress: props.onBackPress,
28
- style: ({
29
- pressed
30
- }) => [{
31
- opacity: pressed ? 0.2 : 1,
32
- height: iconSizes.md,
33
- width: iconSizes.md
34
- }]
35
- }, /*#__PURE__*/React.createElement(Back, {
36
- color: colors.iconPrimary
37
- }))), /*#__PURE__*/React.createElement(View, {
38
- style: styles.textContainer
39
- }, /*#__PURE__*/React.createElement(Text, {
40
- style: [styles.text, {
41
- color: colors.textPrimary
42
- }, typefaces.heading6]
43
- }, props.text)));
26
+ }],
27
+ children: [props.onBackPress && /*#__PURE__*/_jsx(View, {
28
+ style: styles.backContainer,
29
+ children: /*#__PURE__*/_jsx(Pressable, {
30
+ onPress: props.onBackPress,
31
+ style: ({
32
+ pressed
33
+ }) => [{
34
+ opacity: pressed ? 0.2 : 1,
35
+ height: iconSizes.md,
36
+ width: iconSizes.md
37
+ }],
38
+ children: /*#__PURE__*/_jsx(Back, {
39
+ color: colors.iconPrimary
40
+ })
41
+ })
42
+ }), /*#__PURE__*/_jsx(View, {
43
+ style: styles.textContainer,
44
+ children: /*#__PURE__*/_jsx(Text, {
45
+ style: [styles.text, {
46
+ color: colors.textPrimary
47
+ }, typefaces.heading6],
48
+ children: props.text
49
+ })
50
+ })]
51
+ });
44
52
  };
45
53
  const styles = StyleSheet.create({
46
54
  container: {
@@ -1 +1 @@
1
- {"version":3,"names":["React","StyleSheet","View","Text","Pressable","useTheme","Back","TextBasedIndicator","props","theme","colors","typefaces","variants","iconSizes","insets","createElement","style","styles","container","backgroundColor","sheetTertiary","paddingTop","top","paddingBottom","bottom","paddingLeft","left","paddingRight","right","onBackPress","backContainer","onPress","pressed","opacity","height","md","width","color","iconPrimary","textContainer","text","textPrimary","heading6","create","flex","padding","justifyContent","alignItems","fontSize"],"sourceRoot":"../../../../../src","sources":["components/Call/RingingCallContent/TextBasedIndicator.tsx"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,EAAEC,IAAI,EAAEC,IAAI,EAAEC,SAAS,QAAQ,cAAc;AAChE,SAASC,QAAQ,QAAQ,gCAAgC;AACzD,SAASC,IAAI,QAAQ,qBAAqB;AAO1C,OAAO,MAAMC,kBAAkB,GAAIC,KAA8B,IAAK;EACpE,MAAM;IACJC,KAAK,EAAE;MACLC,MAAM;MACNC,SAAS;MACTC,QAAQ,EAAE;QAAEC,SAAS;QAAEC;MAAO;IAChC;EACF,CAAC,GAAGT,QAAQ,CAAC,CAAC;EAEd,oBACEL,KAAA,CAAAe,aAAA,CAACb,IAAI;IACHc,KAAK,EAAE,CACLC,MAAM,CAACC,SAAS,EAChB;MACEC,eAAe,EAAET,MAAM,CAACU,aAAa;MACrCC,UAAU,EAAEP,MAAM,CAACQ,GAAG;MACtBC,aAAa,EAAET,MAAM,CAACU,MAAM;MAC5BC,WAAW,EAAEX,MAAM,CAACY,IAAI;MACxBC,YAAY,EAAEb,MAAM,CAACc;IACvB,CAAC;EACD,GAEDpB,KAAK,CAACqB,WAAW,iBAChB7B,KAAA,CAAAe,aAAA,CAACb,IAAI;IAACc,KAAK,EAAEC,MAAM,CAACa;EAAc,gBAChC9B,KAAA,CAAAe,aAAA,CAACX,SAAS;IACR2B,OAAO,EAAEvB,KAAK,CAACqB,WAAY;IAC3Bb,KAAK,EAAEA,CAAC;MAAEgB;IAAQ,CAAC,KAAK,CACtB;MACEC,OAAO,EAAED,OAAO,GAAG,GAAG,GAAG,CAAC;MAC1BE,MAAM,EAAErB,SAAS,CAACsB,EAAE;MACpBC,KAAK,EAAEvB,SAAS,CAACsB;IACnB,CAAC;EACD,gBAEFnC,KAAA,CAAAe,aAAA,CAACT,IAAI;IAAC+B,KAAK,EAAE3B,MAAM,CAAC4B;EAAY,CAAE,CACzB,CACP,CACP,eACDtC,KAAA,CAAAe,aAAA,CAACb,IAAI;IAACc,KAAK,EAAEC,MAAM,CAACsB;EAAc,gBAChCvC,KAAA,CAAAe,aAAA,CAACZ,IAAI;IACHa,KAAK,EAAE,CACLC,MAAM,CAACuB,IAAI,EACX;MAAEH,KAAK,EAAE3B,MAAM,CAAC+B;IAAY,CAAC,EAC7B9B,SAAS,CAAC+B,QAAQ;EAClB,GAEDlC,KAAK,CAACgC,IACH,CACF,CACF,CAAC;AAEX,CAAC;AAED,MAAMvB,MAAM,GAAGhB,UAAU,CAAC0C,MAAM,CAAC;EAC/BzB,SAAS,EAAE;IACT0B,IAAI,EAAE;EACR,CAAC;EACDd,aAAa,EAAE;IACbe,OAAO,EAAE,CAAC;IACVxB,UAAU,EAAE;EACd,CAAC;EACDkB,aAAa,EAAE;IACbK,IAAI,EAAE,CAAC;IACPE,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE;EACd,CAAC;EACDP,IAAI,EAAE;IACJQ,QAAQ,EAAE;EACZ;AACF,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["React","StyleSheet","View","Text","Pressable","useTheme","Back","jsx","_jsx","jsxs","_jsxs","TextBasedIndicator","props","theme","colors","typefaces","variants","iconSizes","insets","style","styles","container","backgroundColor","sheetTertiary","paddingTop","top","paddingBottom","bottom","paddingLeft","left","paddingRight","right","children","onBackPress","backContainer","onPress","pressed","opacity","height","md","width","color","iconPrimary","textContainer","text","textPrimary","heading6","create","flex","padding","justifyContent","alignItems","fontSize"],"sourceRoot":"../../../../../src","sources":["components/Call/RingingCallContent/TextBasedIndicator.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,EAAEC,IAAI,EAAEC,IAAI,EAAEC,SAAS,QAAQ,cAAc;AAChE,SAASC,QAAQ,QAAQ,gCAAgC;AACzD,SAASC,IAAI,QAAQ,qBAAqB;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAO3C,OAAO,MAAMC,kBAAkB,GAAIC,KAA8B,IAAK;EACpE,MAAM;IACJC,KAAK,EAAE;MACLC,MAAM;MACNC,SAAS;MACTC,QAAQ,EAAE;QAAEC,SAAS;QAAEC;MAAO;IAChC;EACF,CAAC,GAAGb,QAAQ,CAAC,CAAC;EAEd,oBACEK,KAAA,CAACR,IAAI;IACHiB,KAAK,EAAE,CACLC,MAAM,CAACC,SAAS,EAChB;MACEC,eAAe,EAAER,MAAM,CAACS,aAAa;MACrCC,UAAU,EAAEN,MAAM,CAACO,GAAG;MACtBC,aAAa,EAAER,MAAM,CAACS,MAAM;MAC5BC,WAAW,EAAEV,MAAM,CAACW,IAAI;MACxBC,YAAY,EAAEZ,MAAM,CAACa;IACvB,CAAC,CACD;IAAAC,QAAA,GAEDpB,KAAK,CAACqB,WAAW,iBAChBzB,IAAA,CAACN,IAAI;MAACiB,KAAK,EAAEC,MAAM,CAACc,aAAc;MAAAF,QAAA,eAChCxB,IAAA,CAACJ,SAAS;QACR+B,OAAO,EAAEvB,KAAK,CAACqB,WAAY;QAC3Bd,KAAK,EAAEA,CAAC;UAAEiB;QAAQ,CAAC,KAAK,CACtB;UACEC,OAAO,EAAED,OAAO,GAAG,GAAG,GAAG,CAAC;UAC1BE,MAAM,EAAErB,SAAS,CAACsB,EAAE;UACpBC,KAAK,EAAEvB,SAAS,CAACsB;QACnB,CAAC,CACD;QAAAP,QAAA,eAEFxB,IAAA,CAACF,IAAI;UAACmC,KAAK,EAAE3B,MAAM,CAAC4B;QAAY,CAAE;MAAC,CAC1B;IAAC,CACR,CACP,eACDlC,IAAA,CAACN,IAAI;MAACiB,KAAK,EAAEC,MAAM,CAACuB,aAAc;MAAAX,QAAA,eAChCxB,IAAA,CAACL,IAAI;QACHgB,KAAK,EAAE,CACLC,MAAM,CAACwB,IAAI,EACX;UAAEH,KAAK,EAAE3B,MAAM,CAAC+B;QAAY,CAAC,EAC7B9B,SAAS,CAAC+B,QAAQ,CAClB;QAAAd,QAAA,EAEDpB,KAAK,CAACgC;MAAI,CACP;IAAC,CACH,CAAC;EAAA,CACH,CAAC;AAEX,CAAC;AAED,MAAMxB,MAAM,GAAGnB,UAAU,CAAC8C,MAAM,CAAC;EAC/B1B,SAAS,EAAE;IACT2B,IAAI,EAAE;EACR,CAAC;EACDd,aAAa,EAAE;IACbe,OAAO,EAAE,CAAC;IACVzB,UAAU,EAAE;EACd,CAAC;EACDmB,aAAa,EAAE;IACbK,IAAI,EAAE,CAAC;IACPE,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE;EACd,CAAC;EACDP,IAAI,EAAE;IACJQ,QAAQ,EAAE;EACZ;AACF,CAAC,CAAC","ignoreList":[]}
@@ -1,8 +1,11 @@
1
+ "use strict";
2
+
1
3
  import React from 'react';
2
4
  import { Image, StyleSheet, Text, View } from 'react-native';
3
5
  import { generateCallTitle } from '../../../utils';
4
6
  import { useCallStateHooks, useConnectedUser } from '@stream-io/video-react-bindings';
5
7
  import { useTheme } from '../../../contexts/ThemeContext';
8
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
9
  var AvatarModes = /*#__PURE__*/function (AvatarModes) {
7
10
  AvatarModes["small"] = "sm";
8
11
  AvatarModes["medium"] = "md";
@@ -58,28 +61,30 @@ export const UserInfo = ({
58
61
  marginVertical: 4
59
62
  };
60
63
  const fontStyleByMembersCount = memberUserIds.length > 1 ? typefaces.heading5 : typefaces.heading4;
61
- return /*#__PURE__*/React.createElement(View, {
62
- style: [styles.container, userInfo.container]
63
- }, /*#__PURE__*/React.createElement(View, {
64
- style: [styles.avatarGroup, userInfo.avatarGroup]
65
- }, membersToShow.map(memberToShow => {
66
- if (!memberToShow.image) {
67
- return null;
68
- }
69
- return /*#__PURE__*/React.createElement(Image, {
70
- key: memberToShow.id,
71
- style: [avatarStyles]
72
- // FIXME: use real avatar from coordinator this is temporary
73
- ,
74
- source: {
75
- uri: memberToShow.image
76
- }
77
- });
78
- })), /*#__PURE__*/React.createElement(Text, {
79
- style: [styles.name, fontStyleByMembersCount, {
80
- color: colors.textPrimary
81
- }, userInfo.name]
82
- }, callTitle));
64
+ return /*#__PURE__*/_jsxs(View, {
65
+ style: [styles.container, userInfo.container],
66
+ children: [/*#__PURE__*/_jsx(View, {
67
+ style: [styles.avatarGroup, userInfo.avatarGroup],
68
+ children: membersToShow.map(memberToShow => {
69
+ if (!memberToShow.image) {
70
+ return null;
71
+ }
72
+ return /*#__PURE__*/_jsx(Image, {
73
+ style: [avatarStyles]
74
+ // FIXME: use real avatar from coordinator this is temporary
75
+ ,
76
+ source: {
77
+ uri: memberToShow.image
78
+ }
79
+ }, memberToShow.id);
80
+ })
81
+ }), /*#__PURE__*/_jsx(Text, {
82
+ style: [styles.name, fontStyleByMembersCount, {
83
+ color: colors.textPrimary
84
+ }, userInfo.name],
85
+ children: callTitle
86
+ })]
87
+ });
83
88
  };
84
89
  const styles = StyleSheet.create({
85
90
  container: {
@@ -1 +1 @@
1
- {"version":3,"names":["React","Image","StyleSheet","Text","View","generateCallTitle","useCallStateHooks","useConnectedUser","useTheme","AvatarModes","UserInfo","includeSelf","totalMembersToShow","theme","colors","typefaces","variants","avatarSizes","userInfo","connectedUser","useCallMembers","members","membersToShow","filter","user","user_id","id","slice","map","find","self","splice","memberUserIds","memberToShow","name","callTitle","avatarSizeModes","large","medium","small","mode","length","avatarStyles","height","width","borderRadius","marginVertical","fontStyleByMembersCount","heading5","heading4","createElement","style","styles","container","avatarGroup","image","key","source","uri","color","textPrimary","create","paddingHorizontal","display","flexDirection","justifyContent","flexWrap","textAlign","marginTop"],"sourceRoot":"../../../../../src","sources":["components/Call/RingingCallContent/UserInfo.tsx"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,KAAK,EAAEC,UAAU,EAAEC,IAAI,EAAEC,IAAI,QAAQ,cAAc;AAC5D,SAASC,iBAAiB,QAAQ,gBAAgB;AAClD,SACEC,iBAAiB,EACjBC,gBAAgB,QACX,iCAAiC;AAExC,SAASC,QAAQ,QAAQ,gCAAgC;AAAC,IAErDC,WAAW,0BAAXA,WAAW;EAAXA,WAAW;EAAXA,WAAW;EAAXA,WAAW;EAAA,OAAXA,WAAW;AAAA,EAAXA,WAAW;AAoBhB,OAAO,MAAMC,QAAQ,GAAGA,CAAC;EACvBC,WAAW,GAAG,KAAK;EACnBC,kBAAkB,GAAG;AACT,CAAC,KAAK;EAClB,MAAM;IACJC,KAAK,EAAE;MACLC,MAAM;MACNC,SAAS;MACTC,QAAQ,EAAE;QAAEC;MAAY,CAAC;MACzBC;IACF;EACF,CAAC,GAAGV,QAAQ,CAAC,CAAC;EACd,MAAMW,aAAa,GAAGZ,gBAAgB,CAAC,CAAC;EACxC,MAAM;IAAEa;EAAe,CAAC,GAAGd,iBAAiB,CAAC,CAAC;EAC9C,MAAMe,OAAO,GAAGD,cAAc,CAAC,CAAC;;EAEhC;EACA,MAAME,aAA6B,GAAG,CAACD,OAAO,IAAI,EAAE,EACjDE,MAAM,CAAEC,IAAI,IAAKA,IAAI,CAACC,OAAO,KAAKN,aAAa,EAAEO,EAAE,IAAIf,WAAW,CAAC,CACnEgB,KAAK,CAAC,CAAC,EAAEf,kBAAkB,CAAC,CAC5BgB,GAAG,CAAC,CAAC;IAAEJ;EAAK,CAAC,KAAKA,IAAI,CAAC;EAE1B,IACEb,WAAW,IACX,CAACW,aAAa,CAACO,IAAI,CAAEL,IAAI,IAAKA,IAAI,CAACE,EAAE,KAAKP,aAAa,EAAEO,EAAE,CAAC,EAC5D;IACA;IACA;IACA,MAAMI,IAAI,GAAGT,OAAO,CAACQ,IAAI,CAAC,CAAC;MAAEL;IAAK,CAAC,KAAKA,IAAI,CAACE,EAAE,KAAKP,aAAa,EAAEO,EAAE,CAAC;IACtE,IAAII,IAAI,EAAE;MACRR,aAAa,CAACS,MAAM,CAAC,CAAC,EAAE,CAAC,EAAED,IAAI,CAACN,IAAI,CAAC;IACvC;EACF;EAEA,MAAMQ,aAAa,GAAGV,aAAa,CAACM,GAAG,CACpCK,YAAY,IAAKA,YAAY,CAACC,IAAI,IAAID,YAAY,CAACP,EACtD,CAAC;EAED,MAAMS,SAAS,GAAG9B,iBAAiB,CAAC2B,aAAa,EAAEpB,kBAAkB,CAAC;EAEtE,MAAMwB,eAA+C,GAAG;IACtD,CAAC,EAAE3B,WAAW,CAAC4B,KAAK;IACpB,CAAC,EAAE5B,WAAW,CAAC6B,MAAM;IACrB,CAAC,EAAE7B,WAAW,CAAC8B;EACjB,CAAC;EAED,MAAMC,IAAI,GAAGJ,eAAe,CAACJ,aAAa,CAACS,MAAM,CAAC,IAAIhC,WAAW,CAAC8B,KAAK;EAEvE,MAAMG,YAAY,GAAG;IACnBC,MAAM,EAAE1B,WAAW,CAACuB,IAAI,CAAC;IACzBI,KAAK,EAAE3B,WAAW,CAACuB,IAAI,CAAC;IACxBK,YAAY,EAAE5B,WAAW,CAACuB,IAAI,CAAC,GAAG,CAAC;IACnCM,cAAc,EAAE;EAClB,CAAC;EAED,MAAMC,uBAAuB,GAC3Bf,aAAa,CAACS,MAAM,GAAG,CAAC,GAAG1B,SAAS,CAACiC,QAAQ,GAAGjC,SAAS,CAACkC,QAAQ;EAEpE,oBACEjD,KAAA,CAAAkD,aAAA,CAAC9C,IAAI;IAAC+C,KAAK,EAAE,CAACC,MAAM,CAACC,SAAS,EAAEnC,QAAQ,CAACmC,SAAS;EAAE,gBAClDrD,KAAA,CAAAkD,aAAA,CAAC9C,IAAI;IAAC+C,KAAK,EAAE,CAACC,MAAM,CAACE,WAAW,EAAEpC,QAAQ,CAACoC,WAAW;EAAE,GACrDhC,aAAa,CAACM,GAAG,CAAEK,YAAY,IAAK;IACnC,IAAI,CAACA,YAAY,CAACsB,KAAK,EAAE;MACvB,OAAO,IAAI;IACb;IACA,oBACEvD,KAAA,CAAAkD,aAAA,CAACjD,KAAK;MACJuD,GAAG,EAAEvB,YAAY,CAACP,EAAG;MACrByB,KAAK,EAAE,CAACT,YAAY;MACpB;MAAA;MACAe,MAAM,EAAE;QACNC,GAAG,EAAEzB,YAAY,CAACsB;MACpB;IAAE,CACH,CAAC;EAEN,CAAC,CACG,CAAC,eACPvD,KAAA,CAAAkD,aAAA,CAAC/C,IAAI;IACHgD,KAAK,EAAE,CACLC,MAAM,CAAClB,IAAI,EACXa,uBAAuB,EACvB;MAAEY,KAAK,EAAE7C,MAAM,CAAC8C;IAAY,CAAC,EAC7B1C,QAAQ,CAACgB,IAAI;EACb,GAEDC,SACG,CACF,CAAC;AAEX,CAAC;AAED,MAAMiB,MAAM,GAAGlD,UAAU,CAAC2D,MAAM,CAAC;EAC/BR,SAAS,EAAE;IACTS,iBAAiB,EAAE,EAAE;IACrBC,OAAO,EAAE,MAAM;IACfC,aAAa,EAAE,QAAQ;IACvBC,cAAc,EAAE;EAClB,CAAC;EACDX,WAAW,EAAE;IACXS,OAAO,EAAE,MAAM;IACfC,aAAa,EAAE,KAAK;IACpBC,cAAc,EAAE,cAAc;IAC9BC,QAAQ,EAAE;EACZ,CAAC;EACDhC,IAAI,EAAE;IACJiC,SAAS,EAAE,QAAQ;IACnBC,SAAS,EAAE;EACb;AACF,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["React","Image","StyleSheet","Text","View","generateCallTitle","useCallStateHooks","useConnectedUser","useTheme","jsx","_jsx","jsxs","_jsxs","AvatarModes","UserInfo","includeSelf","totalMembersToShow","theme","colors","typefaces","variants","avatarSizes","userInfo","connectedUser","useCallMembers","members","membersToShow","filter","user","user_id","id","slice","map","find","self","splice","memberUserIds","memberToShow","name","callTitle","avatarSizeModes","large","medium","small","mode","length","avatarStyles","height","width","borderRadius","marginVertical","fontStyleByMembersCount","heading5","heading4","style","styles","container","children","avatarGroup","image","source","uri","color","textPrimary","create","paddingHorizontal","display","flexDirection","justifyContent","flexWrap","textAlign","marginTop"],"sourceRoot":"../../../../../src","sources":["components/Call/RingingCallContent/UserInfo.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,3 +1,5 @@
1
+ "use strict";
2
+
1
3
  export * from './RingingCallContent';
2
4
  export * from './IncomingCall';
3
5
  export * from './OutgoingCall';
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["components/Call/RingingCallContent/index.ts"],"mappings":"AAAA,cAAc,sBAAsB;AACpC,cAAc,gBAAgB;AAC9B,cAAc,gBAAgB","ignoreList":[]}
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["components/Call/RingingCallContent/index.ts"],"mappings":";;AAAA,cAAc,sBAAsB;AACpC,cAAc,gBAAgB;AAC9B,cAAc,gBAAgB","ignoreList":[]}
@@ -1,3 +1,5 @@
1
+ "use strict";
2
+
1
3
  export * from './CallContent';
2
4
  export * from './CallLayout';
3
5
  export * from './CallControls';
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/Call/index.ts"],"mappings":"AAAA,cAAc,eAAe;AAC7B,cAAc,cAAc;AAC5B,cAAc,gBAAgB;AAC9B,cAAc,wBAAwB;AACtC,cAAc,sBAAsB;AACpC,cAAc,SAAS","ignoreList":[]}
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["components/Call/index.ts"],"mappings":";;AAAA,cAAc,eAAe;AAC7B,cAAc,cAAc;AAC5B,cAAc,gBAAgB;AAC9B,cAAc,wBAAwB;AACtC,cAAc,sBAAsB;AACpC,cAAc,SAAS","ignoreList":[]}
@@ -1,3 +1,5 @@
1
+ "use strict";
2
+
1
3
  import React, { useEffect, useMemo } from 'react';
2
4
  import { StyleSheet, View } from 'react-native';
3
5
  import { getRNInCallManagerLibNoThrow } from '../../../modules/call-manager/PrevLibDetection';
@@ -14,7 +16,7 @@ import { ScreenShareOverlay as DefaultScreenShaerOverlay } from '../../utility/S
14
16
  /**
15
17
  * Props for the HostLivestream component.
16
18
  */
17
-
19
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
18
20
  /**
19
21
  * The HostLivestream component displays the UI for the Host's live stream.
20
22
  */
@@ -52,14 +54,13 @@ export const HostLivestream = ({
52
54
  // Automatically route audio to speaker devices as relevant for watching videos.
53
55
  useEffect(() => {
54
56
  const prevInCallManager = getRNInCallManagerLibNoThrow();
55
- if (prevInCallManager) {
56
- prevInCallManager.start({
57
- media: 'video'
58
- });
59
- return () => {
60
- prevInCallManager.stop();
61
- };
62
- }
57
+ if (!prevInCallManager) return;
58
+ prevInCallManager.start({
59
+ media: 'video'
60
+ });
61
+ return () => {
62
+ prevInCallManager.stop();
63
+ };
63
64
  }, []);
64
65
  const [topViewHeight, setTopViewHeight] = React.useState();
65
66
  const [controlsHeight, setControlsHeight] = React.useState();
@@ -71,34 +72,38 @@ export const HostLivestream = ({
71
72
  setTopViewHeight(event.nativeEvent.layout.height);
72
73
  }
73
74
  };
74
- return /*#__PURE__*/React.createElement(View, {
75
+ return /*#__PURE__*/_jsxs(View, {
75
76
  style: [styles.container, {
76
77
  backgroundColor: colors.sheetTertiary
77
- }, hostLivestream.container]
78
- }, HostLivestreamTopView && /*#__PURE__*/React.createElement(View, {
79
- style: styles.topViewContainer,
80
- onLayout: event => {
81
- setTopViewHeight(event.nativeEvent.layout.height);
82
- }
83
- }, /*#__PURE__*/React.createElement(HostLivestreamTopView, topViewProps)), FloatingParticipantView && floatingParticipant && topViewHeight && controlsHeight && /*#__PURE__*/React.createElement(FloatingParticipantView, {
84
- participant: floatingParticipant,
85
- draggableContainerStyle: [StyleSheet.absoluteFill, {
86
- top: topViewHeight,
87
- bottom: controlsHeight
88
- }]
89
- }), LivestreamLayout && /*#__PURE__*/React.createElement(LivestreamLayout, {
90
- ScreenShareOverlay: ScreenShareOverlay
91
- }), HostLivestreamControls && /*#__PURE__*/React.createElement(HostLivestreamControls, {
92
- onEndStreamHandler: onEndStreamHandler,
93
- onStartStreamHandler: onStartStreamHandler,
94
- HostStartStreamButton: HostStartStreamButton,
95
- LivestreamMediaControls: LivestreamMediaControls,
96
- hls: hls,
97
- onLayout: event => {
98
- setControlsHeight(event.nativeEvent.layout.height);
99
- },
100
- disableStopPublishedStreamsOnEndStream: disableStopPublishedStreamsOnEndStream
101
- }));
78
+ }, hostLivestream.container],
79
+ children: [HostLivestreamTopView && /*#__PURE__*/_jsx(View, {
80
+ style: styles.topViewContainer,
81
+ onLayout: event => {
82
+ setTopViewHeight(event.nativeEvent.layout.height);
83
+ },
84
+ children: /*#__PURE__*/_jsx(HostLivestreamTopView, {
85
+ ...topViewProps
86
+ })
87
+ }), FloatingParticipantView && floatingParticipant && topViewHeight && controlsHeight && /*#__PURE__*/_jsx(FloatingParticipantView, {
88
+ participant: floatingParticipant,
89
+ draggableContainerStyle: [StyleSheet.absoluteFill, {
90
+ top: topViewHeight,
91
+ bottom: controlsHeight
92
+ }]
93
+ }), LivestreamLayout && /*#__PURE__*/_jsx(LivestreamLayout, {
94
+ ScreenShareOverlay: ScreenShareOverlay
95
+ }), HostLivestreamControls && /*#__PURE__*/_jsx(HostLivestreamControls, {
96
+ onEndStreamHandler: onEndStreamHandler,
97
+ onStartStreamHandler: onStartStreamHandler,
98
+ HostStartStreamButton: HostStartStreamButton,
99
+ LivestreamMediaControls: LivestreamMediaControls,
100
+ hls: hls,
101
+ onLayout: event => {
102
+ setControlsHeight(event.nativeEvent.layout.height);
103
+ },
104
+ disableStopPublishedStreamsOnEndStream: disableStopPublishedStreamsOnEndStream
105
+ })]
106
+ });
102
107
  };
103
108
  const useStyles = () => {
104
109
  const {
@@ -1 +1 @@
1
- {"version":3,"names":["React","useEffect","useMemo","StyleSheet","View","getRNInCallManagerLibNoThrow","useTheme","HostLivestreamTopView","DefaultHostLivestreamTopView","HostLivestreamControls","DefaultHostLivestreamControls","LivestreamLayout","DefaultLivestreamLayout","Z_INDEX","FloatingParticipantView","DefaultFloatingParticipantView","useCallStateHooks","hasVideo","ScreenShareOverlay","DefaultScreenShaerOverlay","HostLivestream","LiveIndicator","FollowerCount","DurationBadge","HostStartStreamButton","LivestreamMediaControls","onEndStreamHandler","onStartStreamHandler","hls","disableStopPublishedStreamsOnEndStream","styles","useStyles","theme","colors","hostLivestream","useParticipants","useHasOngoingScreenShare","currentSpeaker","hasOngoingScreenShare","floatingParticipant","prevInCallManager","start","media","stop","topViewHeight","setTopViewHeight","useState","controlsHeight","setControlsHeight","topViewProps","onLayout","event","nativeEvent","layout","height","createElement","style","container","backgroundColor","sheetTertiary","topViewContainer","participant","draggableContainerStyle","absoluteFill","top","bottom","create","flex","paddingBottom","variants","insets","paddingLeft","left","paddingRight","right","paddingTop","sheetPrimary","position","zIndex","IN_FRONT","controlsViewContainer"],"sourceRoot":"../../../../../src","sources":["components/Livestream/HostLivestream/HostLivestream.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["React","useEffect","useMemo","StyleSheet","View","getRNInCallManagerLibNoThrow","useTheme","HostLivestreamTopView","DefaultHostLivestreamTopView","HostLivestreamControls","DefaultHostLivestreamControls","LivestreamLayout","DefaultLivestreamLayout","Z_INDEX","FloatingParticipantView","DefaultFloatingParticipantView","useCallStateHooks","hasVideo","ScreenShareOverlay","DefaultScreenShaerOverlay","jsx","_jsx","jsxs","_jsxs","HostLivestream","LiveIndicator","FollowerCount","DurationBadge","HostStartStreamButton","LivestreamMediaControls","onEndStreamHandler","onStartStreamHandler","hls","disableStopPublishedStreamsOnEndStream","styles","useStyles","theme","colors","hostLivestream","useParticipants","useHasOngoingScreenShare","currentSpeaker","hasOngoingScreenShare","floatingParticipant","prevInCallManager","start","media","stop","topViewHeight","setTopViewHeight","useState","controlsHeight","setControlsHeight","topViewProps","onLayout","event","nativeEvent","layout","height","style","container","backgroundColor","sheetTertiary","children","topViewContainer","participant","draggableContainerStyle","absoluteFill","top","bottom","create","flex","paddingBottom","variants","insets","paddingLeft","left","paddingRight","right","paddingTop","sheetPrimary","position","zIndex","IN_FRONT","controlsViewContainer"],"sourceRoot":"../../../../../src","sources":["components/Livestream/HostLivestream/HostLivestream.tsx"],"mappings":";;AAAA,OAAOA,KAAK,IAAIC,SAAS,EAAEC,OAAO,QAAQ,OAAO;AACjD,SAASC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAC/C,SAASC,4BAA4B,QAAQ,gDAAgD;AAE7F,SAASC,QAAQ,QAAQ,mBAAmB;AAC5C,SACEC,qBAAqB,IAAIC,4BAA4B,QAEhD,4CAA4C;AACnD,SACEC,sBAAsB,IAAIC,6BAA6B,QAElD,8CAA8C;AACrD,SACEC,gBAAgB,IAAIC,uBAAuB,QAEtC,qBAAqB;AAC5B,SAASC,OAAO,QAAQ,oBAAoB;AAC5C,SACEC,uBAAuB,IAAIC,8BAA8B,QAEpD,2CAA2C;AAClD,SAASC,iBAAiB,QAAQ,iCAAiC;AACnE,SAASC,QAAQ,QAAQ,yBAAyB;AAClD,SACEC,kBAAkB,IAAIC,yBAAyB,QAE1C,kCAAkC;;AAEzC;AACA;AACA;AAFA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AA2BA;AACA;AACA;AACA,OAAO,MAAMC,cAAc,GAAGA,CAAC;EAC7BjB,qBAAqB,GAAGC,4BAA4B;EACpDC,sBAAsB,GAAGC,6BAA6B;EACtDC,gBAAgB,GAAGC,uBAAuB;EAC1CE,uBAAuB,GAAGC,8BAA8B;EACxDG,kBAAkB,GAAGC,yBAAyB;EAC9CM,aAAa;EACbC,aAAa;EACbC,aAAa;EACbC,qBAAqB;EACrBC,uBAAuB;EACvBC,kBAAkB;EAClBC,oBAAoB;EACpBC,GAAG;EACHC;AACmB,CAAC,KAAK;EACzB,MAAMC,MAAM,GAAGC,SAAS,CAAC,CAAC;EAC1B,MAAM;IACJC,KAAK,EAAE;MAAEC,MAAM;MAAEC;IAAe;EAClC,CAAC,GAAGhC,QAAQ,CAAC,CAAC;EAEd,MAAM;IAAEiC,eAAe;IAAEC;EAAyB,CAAC,GAAGxB,iBAAiB,CAAC,CAAC;EACzE,MAAM,CAACyB,cAAc,CAAC,GAAGF,eAAe,CAAC,CAAC;EAC1C,MAAMG,qBAAqB,GAAGF,wBAAwB,CAAC,CAAC;EACxD,MAAMG,mBAAmB,GACvBD,qBAAqB,IACrBD,cAAc,IACdxB,QAAQ,CAACwB,cAAc,CAAC,IACxBA,cAAc;;EAEhB;EACAxC,SAAS,CAAC,MAAM;IACd,MAAM2C,iBAAiB,GAAGvC,4BAA4B,CAAC,CAAC;IACxD,IAAI,CAACuC,iBAAiB,EAAE;IACxBA,iBAAiB,CAACC,KAAK,CAAC;MAAEC,KAAK,EAAE;IAAQ,CAAC,CAAC;IAC3C,OAAO,MAAM;MACXF,iBAAiB,CAACG,IAAI,CAAC,CAAC;IAC1B,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN,MAAM,CAACC,aAAa,EAAEC,gBAAgB,CAAC,GAAGjD,KAAK,CAACkD,QAAQ,CAAS,CAAC;EAClE,MAAM,CAACC,cAAc,EAAEC,iBAAiB,CAAC,GAAGpD,KAAK,CAACkD,QAAQ,CAAS,CAAC;EAEpE,MAAMG,YAAwC,GAAG;IAC/C5B,aAAa;IACbC,aAAa;IACbC,aAAa;IACb2B,QAAQ,EAAGC,KAAK,IAAK;MACnBN,gBAAgB,CAACM,KAAK,CAACC,WAAW,CAACC,MAAM,CAACC,MAAM,CAAC;IACnD;EACF,CAAC;EAED,oBACEnC,KAAA,CAACnB,IAAI;IACHuD,KAAK,EAAE,CACLzB,MAAM,CAAC0B,SAAS,EAChB;MAAEC,eAAe,EAAExB,MAAM,CAACyB;IAAc,CAAC,EACzCxB,cAAc,CAACsB,SAAS,CACxB;IAAAG,QAAA,GAEDxD,qBAAqB,iBACpBc,IAAA,CAACjB,IAAI;MACHuD,KAAK,EAAEzB,MAAM,CAAC8B,gBAAiB;MAC/BV,QAAQ,EAAGC,KAAK,IAAK;QACnBN,gBAAgB,CAACM,KAAK,CAACC,WAAW,CAACC,MAAM,CAACC,MAAM,CAAC;MACnD,CAAE;MAAAK,QAAA,eAEF1C,IAAA,CAACd,qBAAqB;QAAA,GAAK8C;MAAY,CAAG;IAAC,CACvC,CACP,EACAvC,uBAAuB,IACtB6B,mBAAmB,IACnBK,aAAa,IACbG,cAAc,iBACZ9B,IAAA,CAACP,uBAAuB;MACtBmD,WAAW,EAAEtB,mBAAoB;MACjCuB,uBAAuB,EAAE,CACvB/D,UAAU,CAACgE,YAAY,EACvB;QACEC,GAAG,EAAEpB,aAAa;QAClBqB,MAAM,EAAElB;MACV,CAAC;IACD,CACH,CACF,EACFxC,gBAAgB,iBACfU,IAAA,CAACV,gBAAgB;MAACO,kBAAkB,EAAEA;IAAmB,CAAE,CAC5D,EACAT,sBAAsB,iBACrBY,IAAA,CAACZ,sBAAsB;MACrBqB,kBAAkB,EAAEA,kBAAmB;MACvCC,oBAAoB,EAAEA,oBAAqB;MAC3CH,qBAAqB,EAAEA,qBAAsB;MAC7CC,uBAAuB,EAAEA,uBAAwB;MACjDG,GAAG,EAAEA,GAAI;MACTsB,QAAQ,EAAGC,KAAK,IAAK;QACnBH,iBAAiB,CAACG,KAAK,CAACC,WAAW,CAACC,MAAM,CAACC,MAAM,CAAC;MACpD,CAAE;MACFzB,sCAAsC,EACpCA;IACD,CACF,CACF;EAAA,CACG,CAAC;AAEX,CAAC;AAED,MAAME,SAAS,GAAGA,CAAA,KAAM;EACtB,MAAM;IAAEC;EAAM,CAAC,GAAG9B,QAAQ,CAAC,CAAC;EAC5B,OAAOJ,OAAO,CACZ,MACEC,UAAU,CAACmE,MAAM,CAAC;IAChBV,SAAS,EAAE;MACTW,IAAI,EAAE,CAAC;MACPC,aAAa,EAAEpC,KAAK,CAACqC,QAAQ,CAACC,MAAM,CAACL,MAAM;MAC3CM,WAAW,EAAEvC,KAAK,CAACqC,QAAQ,CAACC,MAAM,CAACE,IAAI;MACvCC,YAAY,EAAEzC,KAAK,CAACqC,QAAQ,CAACC,MAAM,CAACI,KAAK;MACzCC,UAAU,EAAE3C,KAAK,CAACqC,QAAQ,CAACC,MAAM,CAACN,GAAG;MACrCP,eAAe,EAAEzB,KAAK,CAACC,MAAM,CAAC2C;IAChC,CAAC;IACDhB,gBAAgB,EAAE;MAChBiB,QAAQ,EAAE,UAAU;MACpBb,GAAG,EAAE,CAAC;MACNQ,IAAI,EAAE,CAAC;MACPE,KAAK,EAAE,CAAC;MACRI,MAAM,EAAErE,OAAO,CAACsE;IAClB,CAAC;IACDC,qBAAqB,EAAE;MACrBH,QAAQ,EAAE,UAAU;MACpBZ,MAAM,EAAE,CAAC;MACTO,IAAI,EAAE,CAAC;MACPE,KAAK,EAAE,CAAC;MACRI,MAAM,EAAErE,OAAO,CAACsE;IAClB;EACF,CAAC,CAAC,EACJ,CAAC/C,KAAK,CACR,CAAC;AACH,CAAC","ignoreList":[]}
@@ -1,2 +1,4 @@
1
+ "use strict";
2
+
1
3
  export * from './HostLivestream';
2
4
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["components/Livestream/HostLivestream/index.ts"],"mappings":"AAAA,cAAc,kBAAkB","ignoreList":[]}
1
+ {"version":3,"names":[],"sourceRoot":"../../../../../src","sources":["components/Livestream/HostLivestream/index.ts"],"mappings":";;AAAA,cAAc,kBAAkB","ignoreList":[]}
@@ -1,3 +1,5 @@
1
+ "use strict";
2
+
1
3
  import React from 'react';
2
4
  import { StyleSheet, View } from 'react-native';
3
5
  import { HostStartStreamButton as DefaultHostStartStreamButton } from './HostStartStreamButton';
@@ -8,7 +10,7 @@ import { Z_INDEX } from '../../../constants';
8
10
  /**
9
11
  * Props for the HostLivestreamControls component.
10
12
  */
11
-
13
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
12
14
  /**
13
15
  * The HostLivestreamControls component displays the call controls for the live stream at host's end.
14
16
  */
@@ -27,21 +29,24 @@ export const HostLivestreamControls = ({
27
29
  hostLivestreamControls
28
30
  }
29
31
  } = useTheme();
30
- return /*#__PURE__*/React.createElement(View, {
32
+ return /*#__PURE__*/_jsxs(View, {
31
33
  style: [styles.container, {
32
34
  backgroundColor: colors.sheetOverlay
33
35
  }, hostLivestreamControls.container],
34
- onLayout: onLayout
35
- }, /*#__PURE__*/React.createElement(View, {
36
- style: [styles.leftElement, hostLivestreamControls.leftElement]
37
- }, HostStartStreamButton && /*#__PURE__*/React.createElement(HostStartStreamButton, {
38
- onEndStreamHandler: onEndStreamHandler,
39
- onStartStreamHandler: onStartStreamHandler,
40
- hls: hls,
41
- disableStopPublishedStreamsOnEndStream: disableStopPublishedStreamsOnEndStream
42
- })), /*#__PURE__*/React.createElement(View, {
43
- style: [styles.rightElement, hostLivestreamControls.rightElement]
44
- }, LivestreamMediaControls && /*#__PURE__*/React.createElement(LivestreamMediaControls, null)));
36
+ onLayout: onLayout,
37
+ children: [/*#__PURE__*/_jsx(View, {
38
+ style: [styles.leftElement, hostLivestreamControls.leftElement],
39
+ children: HostStartStreamButton && /*#__PURE__*/_jsx(HostStartStreamButton, {
40
+ onEndStreamHandler: onEndStreamHandler,
41
+ onStartStreamHandler: onStartStreamHandler,
42
+ hls: hls,
43
+ disableStopPublishedStreamsOnEndStream: disableStopPublishedStreamsOnEndStream
44
+ })
45
+ }), /*#__PURE__*/_jsx(View, {
46
+ style: [styles.rightElement, hostLivestreamControls.rightElement],
47
+ children: LivestreamMediaControls && /*#__PURE__*/_jsx(LivestreamMediaControls, {})
48
+ })]
49
+ });
45
50
  };
46
51
  const styles = StyleSheet.create({
47
52
  container: {
@@ -1 +1 @@
1
- {"version":3,"names":["React","StyleSheet","View","HostStartStreamButton","DefaultHostStartStreamButton","LivestreamMediaControls","DefaultLivestreamMediaControls","useTheme","Z_INDEX","HostLivestreamControls","onEndStreamHandler","onStartStreamHandler","hls","disableStopPublishedStreamsOnEndStream","onLayout","theme","colors","hostLivestreamControls","createElement","style","styles","container","backgroundColor","sheetOverlay","leftElement","rightElement","create","position","bottom","flexDirection","alignItems","paddingVertical","paddingHorizontal","zIndex","IN_FRONT","flex"],"sourceRoot":"../../../../../src","sources":["components/Livestream/LivestreamControls/HostLivestreamControls.tsx"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,EAAEC,IAAI,QAAwB,cAAc;AAC/D,SACEC,qBAAqB,IAAIC,4BAA4B,QAEhD,yBAAyB;AAChC,SACEC,uBAAuB,IAAIC,8BAA8B,QAEpD,2BAA2B;AAClC,SAASC,QAAQ,QAAQ,mBAAmB;AAC5C,SAASC,OAAO,QAAQ,oBAAoB;;AAE5C;AACA;AACA;;AAaA;AACA;AACA;AACA,OAAO,MAAMC,sBAAsB,GAAGA,CAAC;EACrCN,qBAAqB,GAAGC,4BAA4B;EACpDC,uBAAuB,GAAGC,8BAA8B;EACxDI,kBAAkB;EAClBC,oBAAoB;EACpBC,GAAG;EACHC,sCAAsC;EACtCC;AAC2B,CAAC,KAAK;EACjC,MAAM;IACJC,KAAK,EAAE;MAAEC,MAAM;MAAEC;IAAuB;EAC1C,CAAC,GAAGV,QAAQ,CAAC,CAAC;EACd,oBACEP,KAAA,CAAAkB,aAAA,CAAChB,IAAI;IACHiB,KAAK,EAAE,CACLC,MAAM,CAACC,SAAS,EAChB;MAAEC,eAAe,EAAEN,MAAM,CAACO;IAAa,CAAC,EACxCN,sBAAsB,CAACI,SAAS,CAChC;IACFP,QAAQ,EAAEA;EAAS,gBAEnBd,KAAA,CAAAkB,aAAA,CAAChB,IAAI;IAACiB,KAAK,EAAE,CAACC,MAAM,CAACI,WAAW,EAAEP,sBAAsB,CAACO,WAAW;EAAE,GACnErB,qBAAqB,iBACpBH,KAAA,CAAAkB,aAAA,CAACf,qBAAqB;IACpBO,kBAAkB,EAAEA,kBAAmB;IACvCC,oBAAoB,EAAEA,oBAAqB;IAC3CC,GAAG,EAAEA,GAAI;IACTC,sCAAsC,EACpCA;EACD,CACF,CAEC,CAAC,eACPb,KAAA,CAAAkB,aAAA,CAAChB,IAAI;IAACiB,KAAK,EAAE,CAACC,MAAM,CAACK,YAAY,EAAER,sBAAsB,CAACQ,YAAY;EAAE,GACrEpB,uBAAuB,iBAAIL,KAAA,CAAAkB,aAAA,CAACb,uBAAuB,MAAE,CAClD,CACF,CAAC;AAEX,CAAC;AAED,MAAMe,MAAM,GAAGnB,UAAU,CAACyB,MAAM,CAAC;EAC/BL,SAAS,EAAE;IACTM,QAAQ,EAAE,UAAU;IACpBC,MAAM,EAAE,CAAC;IACTC,aAAa,EAAE,KAAK;IACpBC,UAAU,EAAE,QAAQ;IACpBC,eAAe,EAAE,EAAE;IACnBC,iBAAiB,EAAE,CAAC;IACpBC,MAAM,EAAEzB,OAAO,CAAC0B;EAClB,CAAC;EACDV,WAAW,EAAE;IACXW,IAAI,EAAE,CAAC;IACPL,UAAU,EAAE;EACd,CAAC;EACDL,YAAY,EAAE;IACZU,IAAI,EAAE,CAAC;IACPL,UAAU,EAAE;EACd;AACF,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["React","StyleSheet","View","HostStartStreamButton","DefaultHostStartStreamButton","LivestreamMediaControls","DefaultLivestreamMediaControls","useTheme","Z_INDEX","jsx","_jsx","jsxs","_jsxs","HostLivestreamControls","onEndStreamHandler","onStartStreamHandler","hls","disableStopPublishedStreamsOnEndStream","onLayout","theme","colors","hostLivestreamControls","style","styles","container","backgroundColor","sheetOverlay","children","leftElement","rightElement","create","position","bottom","flexDirection","alignItems","paddingVertical","paddingHorizontal","zIndex","IN_FRONT","flex"],"sourceRoot":"../../../../../src","sources":["components/Livestream/LivestreamControls/HostLivestreamControls.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,EAAEC,IAAI,QAAwB,cAAc;AAC/D,SACEC,qBAAqB,IAAIC,4BAA4B,QAEhD,yBAAyB;AAChC,SACEC,uBAAuB,IAAIC,8BAA8B,QAEpD,2BAA2B;AAClC,SAASC,QAAQ,QAAQ,mBAAmB;AAC5C,SAASC,OAAO,QAAQ,oBAAoB;;AAE5C;AACA;AACA;AAFA,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAeA;AACA;AACA;AACA,OAAO,MAAMC,sBAAsB,GAAGA,CAAC;EACrCV,qBAAqB,GAAGC,4BAA4B;EACpDC,uBAAuB,GAAGC,8BAA8B;EACxDQ,kBAAkB;EAClBC,oBAAoB;EACpBC,GAAG;EACHC,sCAAsC;EACtCC;AAC2B,CAAC,KAAK;EACjC,MAAM;IACJC,KAAK,EAAE;MAAEC,MAAM;MAAEC;IAAuB;EAC1C,CAAC,GAAGd,QAAQ,CAAC,CAAC;EACd,oBACEK,KAAA,CAACV,IAAI;IACHoB,KAAK,EAAE,CACLC,MAAM,CAACC,SAAS,EAChB;MAAEC,eAAe,EAAEL,MAAM,CAACM;IAAa,CAAC,EACxCL,sBAAsB,CAACG,SAAS,CAChC;IACFN,QAAQ,EAAEA,QAAS;IAAAS,QAAA,gBAEnBjB,IAAA,CAACR,IAAI;MAACoB,KAAK,EAAE,CAACC,MAAM,CAACK,WAAW,EAAEP,sBAAsB,CAACO,WAAW,CAAE;MAAAD,QAAA,EACnExB,qBAAqB,iBACpBO,IAAA,CAACP,qBAAqB;QACpBW,kBAAkB,EAAEA,kBAAmB;QACvCC,oBAAoB,EAAEA,oBAAqB;QAC3CC,GAAG,EAAEA,GAAI;QACTC,sCAAsC,EACpCA;MACD,CACF;IACF,CACG,CAAC,eACPP,IAAA,CAACR,IAAI;MAACoB,KAAK,EAAE,CAACC,MAAM,CAACM,YAAY,EAAER,sBAAsB,CAACQ,YAAY,CAAE;MAAAF,QAAA,EACrEtB,uBAAuB,iBAAIK,IAAA,CAACL,uBAAuB,IAAE;IAAC,CACnD,CAAC;EAAA,CACH,CAAC;AAEX,CAAC;AAED,MAAMkB,MAAM,GAAGtB,UAAU,CAAC6B,MAAM,CAAC;EAC/BN,SAAS,EAAE;IACTO,QAAQ,EAAE,UAAU;IACpBC,MAAM,EAAE,CAAC;IACTC,aAAa,EAAE,KAAK;IACpBC,UAAU,EAAE,QAAQ;IACpBC,eAAe,EAAE,EAAE;IACnBC,iBAAiB,EAAE,CAAC;IACpBC,MAAM,EAAE7B,OAAO,CAAC8B;EAClB,CAAC;EACDV,WAAW,EAAE;IACXW,IAAI,EAAE,CAAC;IACPL,UAAU,EAAE;EACd,CAAC;EACDL,YAAY,EAAE;IACZU,IAAI,EAAE,CAAC;IACPL,UAAU,EAAE;EACd;AACF,CAAC,CAAC","ignoreList":[]}
@@ -1,3 +1,5 @@
1
+ "use strict";
2
+
1
3
  import { useCall, useCallStateHooks, useI18n } from '@stream-io/video-react-bindings';
2
4
  import React, { useState } from 'react';
3
5
  import { ActivityIndicator, Pressable, StyleSheet, Text, View } from 'react-native';
@@ -8,7 +10,7 @@ import { SfuModels, videoLoggerSystem } from '@stream-io/video-client';
8
10
  /**
9
11
  * Props for the HostStartStreamButton component.
10
12
  */
11
-
13
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
12
14
  /**
13
15
  * The HostStartStreamButton component displays and controls the start and end of the host's live stream.
14
16
  */
@@ -77,22 +79,25 @@ export const HostStartStreamButton = ({
77
79
  logger.error('Error stopping livestream', error);
78
80
  }
79
81
  };
80
- return /*#__PURE__*/React.createElement(Pressable, {
82
+ return /*#__PURE__*/_jsxs(Pressable, {
81
83
  disabled: isAwaitingResponse,
82
84
  style: [styles.container, {
83
85
  backgroundColor: isAwaitingResponse ? colors.sheetTertiary : liveOrBroadcasting ? colors.buttonWarning : colors.buttonPrimary
84
86
  }, hostStartStreamButton.container],
85
- onPress: liveOrBroadcasting ? onEndStreamButtonPress : onStartStreamButtonPress
86
- }, /*#__PURE__*/React.createElement(View, {
87
- style: [styles.icon, {
88
- height: iconSizes.xs,
89
- width: iconSizes.xs
90
- }, hostStartStreamButton.icon]
91
- }, isAwaitingResponse ? /*#__PURE__*/React.createElement(ActivityIndicator, null) : liveOrBroadcasting ? /*#__PURE__*/React.createElement(EndBroadcastIcon, null) : /*#__PURE__*/React.createElement(StartStreamIcon, null)), /*#__PURE__*/React.createElement(Text, {
92
- style: [styles.text, typefaces.subtitleBold, {
93
- color: colors.textPrimary
94
- }, hostStartStreamButton.text]
95
- }, isAwaitingResponse ? t('Loading...') : liveOrBroadcasting ? t('Stop Livestream') : t('Start Livestream')));
87
+ onPress: liveOrBroadcasting ? onEndStreamButtonPress : onStartStreamButtonPress,
88
+ children: [/*#__PURE__*/_jsx(View, {
89
+ style: [styles.icon, {
90
+ height: iconSizes.xs,
91
+ width: iconSizes.xs
92
+ }, hostStartStreamButton.icon],
93
+ children: isAwaitingResponse ? /*#__PURE__*/_jsx(ActivityIndicator, {}) : liveOrBroadcasting ? /*#__PURE__*/_jsx(EndBroadcastIcon, {}) : /*#__PURE__*/_jsx(StartStreamIcon, {})
94
+ }), /*#__PURE__*/_jsx(Text, {
95
+ style: [styles.text, typefaces.subtitleBold, {
96
+ color: colors.textPrimary
97
+ }, hostStartStreamButton.text],
98
+ children: isAwaitingResponse ? t('Loading...') : liveOrBroadcasting ? t('Stop Livestream') : t('Start Livestream')
99
+ })]
100
+ });
96
101
  };
97
102
  const styles = StyleSheet.create({
98
103
  container: {
@@ -1 +1 @@
1
- {"version":3,"names":["useCall","useCallStateHooks","useI18n","React","useState","ActivityIndicator","Pressable","StyleSheet","Text","View","useTheme","EndBroadcastIcon","StartStreamIcon","SfuModels","videoLoggerSystem","HostStartStreamButton","onEndStreamHandler","onStartStreamHandler","hls","disableStopPublishedStreamsOnEndStream","isAwaitingResponse","setIsAwaitingResponse","useIsCallLive","useIsCallHLSBroadcastingInProgress","theme","colors","variants","iconSizes","typefaces","hostStartStreamButton","call","isCallLive","isCallBroadcasting","t","liveOrBroadcasting","onStartStreamButtonPress","goLive","startHLS","error","logger","getLogger","onEndStreamButtonPress","stopPublish","TrackType","VIDEO","SCREEN_SHARE","stopHLS","stopLive","createElement","disabled","style","styles","container","backgroundColor","sheetTertiary","buttonWarning","buttonPrimary","onPress","icon","height","xs","width","text","subtitleBold","color","textPrimary","create","flexDirection","alignItems","padding","borderRadius","marginLeft","includeFontPadding"],"sourceRoot":"../../../../../src","sources":["components/Livestream/LivestreamControls/HostStartStreamButton.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["useCall","useCallStateHooks","useI18n","React","useState","ActivityIndicator","Pressable","StyleSheet","Text","View","useTheme","EndBroadcastIcon","StartStreamIcon","SfuModels","videoLoggerSystem","jsx","_jsx","jsxs","_jsxs","HostStartStreamButton","onEndStreamHandler","onStartStreamHandler","hls","disableStopPublishedStreamsOnEndStream","isAwaitingResponse","setIsAwaitingResponse","useIsCallLive","useIsCallHLSBroadcastingInProgress","theme","colors","variants","iconSizes","typefaces","hostStartStreamButton","call","isCallLive","isCallBroadcasting","t","liveOrBroadcasting","onStartStreamButtonPress","goLive","startHLS","error","logger","getLogger","onEndStreamButtonPress","stopPublish","TrackType","VIDEO","SCREEN_SHARE","stopHLS","stopLive","disabled","style","styles","container","backgroundColor","sheetTertiary","buttonWarning","buttonPrimary","onPress","children","icon","height","xs","width","text","subtitleBold","color","textPrimary","create","flexDirection","alignItems","padding","borderRadius","marginLeft","includeFontPadding"],"sourceRoot":"../../../../../src","sources":["components/Livestream/LivestreamControls/HostStartStreamButton.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,3 +1,5 @@
1
+ "use strict";
2
+
1
3
  import { useCallStateHooks } from '@stream-io/video-react-bindings';
2
4
  import React from 'react';
3
5
  import { useTheme } from '../../../contexts';
@@ -7,6 +9,7 @@ import { IconWrapper, Mic, MicOff } from '../../../icons';
7
9
  /**
8
10
  * The LivestreamAudioControlButton controls the audio stream publish/unpublish while in the livestream for the host.
9
11
  */
12
+ import { jsx as _jsx } from "react/jsx-runtime";
10
13
  export const LivestreamAudioControlButton = () => {
11
14
  const {
12
15
  useMicrophoneState
@@ -28,25 +31,29 @@ export const LivestreamAudioControlButton = () => {
28
31
  const onPress = async () => {
29
32
  await microphone.toggle();
30
33
  };
31
- return /*#__PURE__*/React.createElement(Pressable, {
34
+ return /*#__PURE__*/_jsx(Pressable, {
32
35
  onPress: onPress,
33
36
  style: [styles.container, {
34
37
  backgroundColor: colors.buttonSecondary,
35
38
  height: buttonSizes.xs,
36
39
  width: buttonSizes.xs
37
- }, livestreamAudioControlButton.container]
38
- }, /*#__PURE__*/React.createElement(View, {
39
- style: [styles.icon, {
40
- height: iconSizes.sm,
41
- width: iconSizes.sm
42
- }, livestreamAudioControlButton.icon]
43
- }, /*#__PURE__*/React.createElement(IconWrapper, null, !optimisticIsMute ? /*#__PURE__*/React.createElement(Mic, {
44
- color: colors.iconPrimary,
45
- size: iconSizes.md
46
- }) : /*#__PURE__*/React.createElement(MicOff, {
47
- color: colors.iconPrimary,
48
- size: iconSizes.md
49
- }))));
40
+ }, livestreamAudioControlButton.container],
41
+ children: /*#__PURE__*/_jsx(View, {
42
+ style: [styles.icon, {
43
+ height: iconSizes.sm,
44
+ width: iconSizes.sm
45
+ }, livestreamAudioControlButton.icon],
46
+ children: /*#__PURE__*/_jsx(IconWrapper, {
47
+ children: !optimisticIsMute ? /*#__PURE__*/_jsx(Mic, {
48
+ color: colors.iconPrimary,
49
+ size: iconSizes.md
50
+ }) : /*#__PURE__*/_jsx(MicOff, {
51
+ color: colors.iconPrimary,
52
+ size: iconSizes.md
53
+ })
54
+ })
55
+ })
56
+ });
50
57
  };
51
58
  const styles = StyleSheet.create({
52
59
  container: {
@@ -1 +1 @@
1
- {"version":3,"names":["useCallStateHooks","React","useTheme","Pressable","StyleSheet","View","IconWrapper","Mic","MicOff","LivestreamAudioControlButton","useMicrophoneState","optimisticIsMute","microphone","theme","colors","variants","iconSizes","buttonSizes","livestreamAudioControlButton","onPress","toggle","createElement","style","styles","container","backgroundColor","buttonSecondary","height","xs","width","icon","sm","color","iconPrimary","size","md","create","justifyContent","alignItems","marginHorizontal","borderRadius"],"sourceRoot":"../../../../../src","sources":["components/Livestream/LivestreamControls/LivestreamAudioControlButton.tsx"],"mappings":"AAAA,SAASA,iBAAiB,QAAQ,iCAAiC;AACnE,OAAOC,KAAK,MAAM,OAAO;AACzB,SAASC,QAAQ,QAAQ,mBAAmB;AAC5C,SAASC,SAAS,EAAEC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAC1D,SAASC,WAAW,EAAEC,GAAG,EAAEC,MAAM,QAAQ,gBAAgB;;AAEzD;AACA;AACA;AACA,OAAO,MAAMC,4BAA4B,GAAGA,CAAA,KAAM;EAChD,MAAM;IAAEC;EAAmB,CAAC,GAAGV,iBAAiB,CAAC,CAAC;EAClD,MAAM;IAAEW,gBAAgB;IAAEC;EAAW,CAAC,GAAGF,kBAAkB,CAAC,CAAC;EAC7D,MAAM;IACJG,KAAK,EAAE;MACLC,MAAM;MACNC,QAAQ,EAAE;QAAEC,SAAS;QAAEC;MAAY,CAAC;MACpCC;IACF;EACF,CAAC,GAAGhB,QAAQ,CAAC,CAAC;EAEd,MAAMiB,OAAO,GAAG,MAAAA,CAAA,KAAY;IAC1B,MAAMP,UAAU,CAACQ,MAAM,CAAC,CAAC;EAC3B,CAAC;EAED,oBACEnB,KAAA,CAAAoB,aAAA,CAAClB,SAAS;IACRgB,OAAO,EAAEA,OAAQ;IACjBG,KAAK,EAAE,CACLC,MAAM,CAACC,SAAS,EAChB;MACEC,eAAe,EAAEX,MAAM,CAACY,eAAe;MACvCC,MAAM,EAAEV,WAAW,CAACW,EAAE;MACtBC,KAAK,EAAEZ,WAAW,CAACW;IACrB,CAAC,EACDV,4BAA4B,CAACM,SAAS;EACtC,gBAEFvB,KAAA,CAAAoB,aAAA,CAAChB,IAAI;IACHiB,KAAK,EAAE,CACLC,MAAM,CAACO,IAAI,EACX;MACEH,MAAM,EAAEX,SAAS,CAACe,EAAE;MACpBF,KAAK,EAAEb,SAAS,CAACe;IACnB,CAAC,EACDb,4BAA4B,CAACY,IAAI;EACjC,gBAEF7B,KAAA,CAAAoB,aAAA,CAACf,WAAW,QACT,CAACK,gBAAgB,gBAChBV,KAAA,CAAAoB,aAAA,CAACd,GAAG;IAACyB,KAAK,EAAElB,MAAM,CAACmB,WAAY;IAACC,IAAI,EAAElB,SAAS,CAACmB;EAAG,CAAE,CAAC,gBAEtDlC,KAAA,CAAAoB,aAAA,CAACb,MAAM;IAACwB,KAAK,EAAElB,MAAM,CAACmB,WAAY;IAACC,IAAI,EAAElB,SAAS,CAACmB;EAAG,CAAE,CAE/C,CACT,CACG,CAAC;AAEhB,CAAC;AAED,MAAMZ,MAAM,GAAGnB,UAAU,CAACgC,MAAM,CAAC;EAC/BZ,SAAS,EAAE;IACTa,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE,QAAQ;IACpBC,gBAAgB,EAAE,CAAC;IACnBC,YAAY,EAAE;EAChB,CAAC;EACDV,IAAI,EAAE,CAAC;AACT,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["useCallStateHooks","React","useTheme","Pressable","StyleSheet","View","IconWrapper","Mic","MicOff","jsx","_jsx","LivestreamAudioControlButton","useMicrophoneState","optimisticIsMute","microphone","theme","colors","variants","iconSizes","buttonSizes","livestreamAudioControlButton","onPress","toggle","style","styles","container","backgroundColor","buttonSecondary","height","xs","width","children","icon","sm","color","iconPrimary","size","md","create","justifyContent","alignItems","marginHorizontal","borderRadius"],"sourceRoot":"../../../../../src","sources":["components/Livestream/LivestreamControls/LivestreamAudioControlButton.tsx"],"mappings":";;AAAA,SAASA,iBAAiB,QAAQ,iCAAiC;AACnE,OAAOC,KAAK,MAAM,OAAO;AACzB,SAASC,QAAQ,QAAQ,mBAAmB;AAC5C,SAASC,SAAS,EAAEC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AAC1D,SAASC,WAAW,EAAEC,GAAG,EAAEC,MAAM,QAAQ,gBAAgB;;AAEzD;AACA;AACA;AAFA,SAAAC,GAAA,IAAAC,IAAA;AAGA,OAAO,MAAMC,4BAA4B,GAAGA,CAAA,KAAM;EAChD,MAAM;IAAEC;EAAmB,CAAC,GAAGZ,iBAAiB,CAAC,CAAC;EAClD,MAAM;IAAEa,gBAAgB;IAAEC;EAAW,CAAC,GAAGF,kBAAkB,CAAC,CAAC;EAC7D,MAAM;IACJG,KAAK,EAAE;MACLC,MAAM;MACNC,QAAQ,EAAE;QAAEC,SAAS;QAAEC;MAAY,CAAC;MACpCC;IACF;EACF,CAAC,GAAGlB,QAAQ,CAAC,CAAC;EAEd,MAAMmB,OAAO,GAAG,MAAAA,CAAA,KAAY;IAC1B,MAAMP,UAAU,CAACQ,MAAM,CAAC,CAAC;EAC3B,CAAC;EAED,oBACEZ,IAAA,CAACP,SAAS;IACRkB,OAAO,EAAEA,OAAQ;IACjBE,KAAK,EAAE,CACLC,MAAM,CAACC,SAAS,EAChB;MACEC,eAAe,EAAEV,MAAM,CAACW,eAAe;MACvCC,MAAM,EAAET,WAAW,CAACU,EAAE;MACtBC,KAAK,EAAEX,WAAW,CAACU;IACrB,CAAC,EACDT,4BAA4B,CAACK,SAAS,CACtC;IAAAM,QAAA,eAEFrB,IAAA,CAACL,IAAI;MACHkB,KAAK,EAAE,CACLC,MAAM,CAACQ,IAAI,EACX;QACEJ,MAAM,EAAEV,SAAS,CAACe,EAAE;QACpBH,KAAK,EAAEZ,SAAS,CAACe;MACnB,CAAC,EACDb,4BAA4B,CAACY,IAAI,CACjC;MAAAD,QAAA,eAEFrB,IAAA,CAACJ,WAAW;QAAAyB,QAAA,EACT,CAAClB,gBAAgB,gBAChBH,IAAA,CAACH,GAAG;UAAC2B,KAAK,EAAElB,MAAM,CAACmB,WAAY;UAACC,IAAI,EAAElB,SAAS,CAACmB;QAAG,CAAE,CAAC,gBAEtD3B,IAAA,CAACF,MAAM;UAAC0B,KAAK,EAAElB,MAAM,CAACmB,WAAY;UAACC,IAAI,EAAElB,SAAS,CAACmB;QAAG,CAAE;MACzD,CACU;IAAC,CACV;EAAC,CACE,CAAC;AAEhB,CAAC;AAED,MAAMb,MAAM,GAAGpB,UAAU,CAACkC,MAAM,CAAC;EAC/Bb,SAAS,EAAE;IACTc,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE,QAAQ;IACpBC,gBAAgB,EAAE,CAAC;IACnBC,YAAY,EAAE;EAChB,CAAC;EACDV,IAAI,EAAE,CAAC;AACT,CAAC,CAAC","ignoreList":[]}