mediasfu-angular 1.0.1 → 2.0.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 (474) hide show
  1. package/README.md +871 -769
  2. package/dist/README.md +870 -769
  3. package/dist/fesm2022/mediasfu-angular.mjs +13241 -3372
  4. package/dist/fesm2022/mediasfu-angular.mjs.map +1 -1
  5. package/dist/lib/@types/types.d.ts +22 -1
  6. package/dist/lib/components/background-components/background-modal/background-modal.component.d.ts +36 -0
  7. package/dist/lib/components/breakout-components/breakout-rooms-modal.component.d.ts +51 -0
  8. package/dist/lib/components/breakout-components/edit-room-modal/edit-room-modal.component.d.ts +48 -0
  9. package/dist/lib/components/co-host-components/co-host-modal/co-host-modal.component.d.ts +62 -0
  10. package/dist/lib/components/display-components/alert-component/alert.component.component.d.ts +24 -18
  11. package/dist/lib/components/display-components/audio-card/audio-card.component.d.ts +59 -0
  12. package/dist/lib/components/display-components/audio-grid/audio-grid.component.d.ts +20 -0
  13. package/dist/lib/components/display-components/card-video-display/card-video-display.component.d.ts +35 -0
  14. package/dist/lib/components/display-components/control-buttons-alt-component/control-buttons-alt-component.component.d.ts +38 -0
  15. package/dist/lib/components/display-components/control-buttons-component-touch/control-buttons-component-touch.component.d.ts +24 -40
  16. package/dist/lib/components/display-components/control-widgets/menu-participants-widget.component.d.ts +21 -0
  17. package/dist/lib/components/display-components/control-widgets/menu-record-widget.component.d.ts +22 -0
  18. package/dist/lib/components/display-components/control-widgets/menu-widget.component.d.ts +23 -0
  19. package/dist/lib/components/display-components/control-widgets/message-widget.component.d.ts +23 -0
  20. package/dist/lib/components/display-components/control-widgets/record-timer-widget.component.d.ts +15 -0
  21. package/dist/lib/components/display-components/control-widgets/screenshare-widget.component.d.ts +27 -0
  22. package/dist/lib/components/display-components/flexible-grid/flexible-grid.component.d.ts +27 -18
  23. package/dist/lib/components/display-components/flexible-video/flexible-video.component.d.ts +30 -45
  24. package/dist/lib/components/display-components/loading-modal/loading-modal.component.d.ts +19 -17
  25. package/dist/lib/components/display-components/main-aspect-component/main-aspect-component.component.d.ts +32 -24
  26. package/dist/lib/components/display-components/main-container-component/main-container-component.component.d.ts +28 -16
  27. package/dist/lib/components/display-components/main-grid-component/main-grid-component.component.d.ts +28 -14
  28. package/dist/lib/components/display-components/main-screen-component/main-screen-component.component.d.ts +43 -22
  29. package/dist/lib/components/display-components/meeting-progress-timer/meeting-progress-timer.component.d.ts +25 -30
  30. package/dist/lib/components/display-components/mini-audio/mini-audio.component.d.ts +55 -62
  31. package/dist/lib/components/display-components/mini-card/mini-card.component.d.ts +19 -23
  32. package/dist/lib/components/display-components/mini-card-audio/mini-card-audio.component.d.ts +39 -39
  33. package/dist/lib/components/display-components/other-grid-component/other-grid-component.component.d.ts +28 -13
  34. package/dist/lib/components/display-components/pagination/pagination.component.d.ts +29 -23
  35. package/dist/lib/components/display-components/sub-aspect-component/sub-aspect-component.component.d.ts +18 -24
  36. package/dist/lib/components/display-components/video-card/video-card.component.d.ts +62 -0
  37. package/dist/lib/components/display-settings-components/display-settings-modal.component.d.ts +28 -17
  38. package/dist/lib/components/event-settings-components/event-settings-modal/event-settings-modal.component.d.ts +47 -38
  39. package/dist/lib/components/exit-components/confirm-exit-modal/confirm-exit-modal.component.d.ts +35 -22
  40. package/dist/lib/components/media-settings-components/media-settings-modal/media-settings-modal.component.d.ts +35 -24
  41. package/dist/lib/components/mediasfu-components/mediasfu-broadcast.component.d.ts +258 -117
  42. package/dist/lib/components/mediasfu-components/mediasfu-chat.component.d.ts +254 -117
  43. package/dist/lib/components/mediasfu-components/mediasfu-conference.component.d.ts +312 -162
  44. package/dist/lib/components/mediasfu-components/mediasfu-generic.component.d.ts +312 -162
  45. package/dist/lib/components/mediasfu-components/mediasfu-webinar.component.d.ts +310 -162
  46. package/dist/lib/components/menu-components/custom-buttons/custom-buttons.component.d.ts +49 -51
  47. package/dist/lib/components/menu-components/meeting-id-component/meeting-id-component.component.d.ts +6 -1
  48. package/dist/lib/components/menu-components/meeting-passcode-component/meeting-passcode-component.component.d.ts +5 -0
  49. package/dist/lib/components/menu-components/menu-modal/menu-modal.component.d.ts +27 -29
  50. package/dist/lib/components/menu-components/share-buttons-component/share-buttons-component.component.d.ts +20 -15
  51. package/dist/lib/components/message-components/message-panel/message-panel.component.d.ts +24 -0
  52. package/dist/lib/components/message-components/messages-modal/messages-modal.component.d.ts +34 -0
  53. package/dist/lib/components/misc-components/confirm-here-modal/confirm-here-modal.component.d.ts +20 -35
  54. package/dist/lib/components/misc-components/pre-join-page/pre-join-page.component.d.ts +79 -66
  55. package/dist/lib/components/misc-components/share-event-modal/share-event-modal.component.d.ts +19 -1
  56. package/dist/lib/components/misc-components/welcome-page/welcome-page.component.d.ts +15 -0
  57. package/dist/lib/components/participants-components/participant-list/participant-list.component.d.ts +19 -0
  58. package/dist/lib/components/participants-components/participant-list-item/participant-list-item.component.d.ts +19 -0
  59. package/dist/lib/components/participants-components/participant-list-others/participant-list-others.component.d.ts +17 -0
  60. package/dist/lib/components/participants-components/participant-list-others-item/participant-list-others-item.component.d.ts +17 -0
  61. package/dist/lib/components/participants-components/participants-modal/participants-modal.component.d.ts +24 -0
  62. package/dist/lib/components/polls-components/poll-modal/poll-modal.component.d.ts +27 -0
  63. package/dist/lib/components/recording-components/advanced-panel-component/advanced-panel-components.component.d.ts +15 -0
  64. package/dist/lib/components/recording-components/recording-modal/recording-modal.component.d.ts +12 -0
  65. package/dist/lib/components/recording-components/standard-panel-component/standard-panel-component.component.d.ts +5 -0
  66. package/dist/lib/components/requests-components/render-request-component/render-request-component.component.d.ts +22 -0
  67. package/dist/lib/components/requests-components/requests-modal/requests-modal.component.d.ts +17 -0
  68. package/dist/lib/components/screenboard-components/screenboard/screenboard.component.d.ts +10 -0
  69. package/dist/lib/components/screenboard-components/screenboard-modal/screenboard-modal.component.d.ts +11 -0
  70. package/dist/lib/components/waiting-components/waiting-room-modal.component.d.ts +59 -0
  71. package/dist/lib/components/whiteboard-components/configure-whiteboard-modal/configure-whiteboard-modal.component.d.ts +21 -0
  72. package/dist/lib/components/whiteboard-components/whiteboard/whiteboard.component.d.ts +49 -0
  73. package/dist/lib/consumers/add-videos-grid.service.d.ts +49 -0
  74. package/dist/lib/consumers/auto-adjust.service.d.ts +26 -0
  75. package/dist/lib/consumers/calculate-rows-and-columns.service.d.ts +18 -0
  76. package/dist/lib/consumers/change-vids.service.d.ts +131 -66
  77. package/dist/lib/consumers/check-grid.service.d.ts +32 -18
  78. package/dist/lib/consumers/check-permission.service.d.ts +25 -0
  79. package/dist/lib/consumers/check-screen-share.service.d.ts +35 -0
  80. package/dist/lib/consumers/close-and-resize.service.d.ts +102 -0
  81. package/dist/lib/consumers/compare-active-names.service.d.ts +31 -0
  82. package/dist/lib/consumers/compare-screen-states.service.d.ts +35 -0
  83. package/dist/lib/consumers/connect-ips.service.d.ts +42 -0
  84. package/dist/lib/consumers/connect-local-ips.service.d.ts +81 -0
  85. package/dist/lib/consumers/connect-recv-transport.service.d.ts +33 -0
  86. package/dist/lib/consumers/connect-send-transport-audio.service.d.ts +81 -11
  87. package/dist/lib/consumers/connect-send-transport-screen.service.d.ts +96 -15
  88. package/dist/lib/consumers/connect-send-transport-video.service.d.ts +101 -11
  89. package/dist/lib/consumers/connect-send-transport.service.d.ts +59 -1
  90. package/dist/lib/consumers/consumer-resume.service.d.ts +36 -0
  91. package/dist/lib/consumers/control-media.service.d.ts +45 -0
  92. package/dist/lib/consumers/create-send-transport.service.d.ts +149 -13
  93. package/dist/lib/consumers/disconnect-send-transport-audio.service.d.ts +100 -13
  94. package/dist/lib/consumers/disconnect-send-transport-screen.service.d.ts +75 -2
  95. package/dist/lib/consumers/disconnect-send-transport-video.service.d.ts +99 -17
  96. package/dist/lib/consumers/disp-streams.service.d.ts +92 -0
  97. package/dist/lib/consumers/generate-page-content.service.d.ts +47 -0
  98. package/dist/lib/consumers/get-estimate.service.d.ts +50 -0
  99. package/dist/lib/consumers/get-piped-producers-alt.service.d.ts +38 -1
  100. package/dist/lib/consumers/get-producers-piped.service.d.ts +33 -0
  101. package/dist/lib/consumers/get-videos.service.d.ts +33 -0
  102. package/dist/lib/consumers/mix-streams.service.d.ts +22 -0
  103. package/dist/lib/consumers/on-screen-changes.service.d.ts +40 -0
  104. package/dist/lib/consumers/prepopulate-user-media.service.d.ts +99 -0
  105. package/dist/lib/consumers/process-consumer-transports-audio.service.d.ts +29 -0
  106. package/dist/lib/consumers/process-consumer-transports.service.d.ts +37 -0
  107. package/dist/lib/consumers/re-port.service.d.ts +48 -0
  108. package/dist/lib/consumers/re-update-inter.service.d.ts +82 -0
  109. package/dist/lib/consumers/readjust.service.d.ts +50 -0
  110. package/dist/lib/consumers/receive-all-piped-transports.service.d.ts +36 -1
  111. package/dist/lib/consumers/receive-room-messages.service.d.ts +27 -0
  112. package/dist/lib/consumers/reorder-streams.service.d.ts +58 -0
  113. package/dist/lib/consumers/request-screen-share.service.d.ts +34 -0
  114. package/dist/lib/consumers/resume-pause-audio-streams.service.d.ts +51 -0
  115. package/dist/lib/consumers/resume-pause-streams.service.d.ts +33 -0
  116. package/dist/lib/consumers/resume-send-transport-audio.service.d.ts +76 -7
  117. package/dist/lib/consumers/signal-new-consumer-transport.service.d.ts +37 -37
  118. package/dist/lib/consumers/socket-receive-methods/join-consume-room.service.d.ts +33 -0
  119. package/dist/lib/consumers/socket-receive-methods/new-pipe-producer.service.d.ts +39 -0
  120. package/dist/lib/consumers/socket-receive-methods/producer-closed.service.d.ts +27 -0
  121. package/dist/lib/consumers/start-share-screen.service.d.ts +40 -0
  122. package/dist/lib/consumers/stop-share-screen.service.d.ts +55 -0
  123. package/dist/lib/consumers/stream-success-audio-switch.service.d.ts +148 -11
  124. package/dist/lib/consumers/stream-success-audio.service.d.ts +61 -0
  125. package/dist/lib/consumers/stream-success-screen.service.d.ts +50 -0
  126. package/dist/lib/consumers/stream-success-video.service.d.ts +58 -0
  127. package/dist/lib/consumers/switch-user-audio.service.d.ts +33 -0
  128. package/dist/lib/consumers/switch-user-video-alt.service.d.ts +32 -0
  129. package/dist/lib/consumers/switch-user-video.service.d.ts +47 -0
  130. package/dist/lib/consumers/trigger.service.d.ts +41 -0
  131. package/dist/lib/consumers/update-mini-cards-grid.service.d.ts +54 -0
  132. package/dist/lib/consumers/update-participant-audio-decibels.service.d.ts +45 -0
  133. package/dist/lib/methods/background-methods/launch-background.service.d.ts +25 -0
  134. package/dist/lib/methods/breakout-room-methods/breakout-room-updated.service.d.ts +71 -0
  135. package/dist/lib/methods/breakout-room-methods/launch-breakout-rooms.service.d.ts +24 -0
  136. package/dist/lib/methods/co-host-methods/launch-co-host.service.d.ts +24 -0
  137. package/dist/lib/methods/co-host-methods/modify-co-host-settings.service.d.ts +44 -0
  138. package/dist/lib/methods/display-settings-methods/launch-display-settings.service.d.ts +22 -0
  139. package/dist/lib/methods/display-settings-methods/modify-display-settings.service.d.ts +75 -0
  140. package/dist/lib/methods/exit-methods/confirm-exit.service.d.ts +29 -1
  141. package/dist/lib/methods/exit-methods/launch-confirm-exit.service.d.ts +20 -0
  142. package/dist/lib/methods/media-settings-methods/launch-media-settings.service.d.ts +35 -0
  143. package/dist/lib/methods/menu-methods/launch-menu-modal.service.d.ts +22 -0
  144. package/dist/lib/methods/message-methods/launch-messages.service.d.ts +22 -0
  145. package/dist/lib/methods/message-methods/send-message.service.d.ts +49 -0
  146. package/dist/lib/methods/participants-methods/launch-participants.service.d.ts +24 -0
  147. package/dist/lib/methods/participants-methods/message-participants.service.d.ts +46 -0
  148. package/dist/lib/methods/participants-methods/mute-participants.service.d.ts +39 -0
  149. package/dist/lib/methods/participants-methods/remove-participants.service.d.ts +45 -0
  150. package/dist/lib/methods/polls-methods/handle-create-poll.service.d.ts +38 -0
  151. package/dist/lib/methods/polls-methods/handle-end-poll.service.d.ts +32 -0
  152. package/dist/lib/methods/polls-methods/handle-vote-poll.service.d.ts +34 -0
  153. package/dist/lib/methods/polls-methods/launch-poll.service.d.ts +20 -0
  154. package/dist/lib/methods/polls-methods/poll-updated.service.d.ts +31 -0
  155. package/dist/lib/methods/recording-methods/check-pause-state.service.d.ts +24 -0
  156. package/dist/lib/methods/recording-methods/check-resume-state.service.d.ts +22 -0
  157. package/dist/lib/methods/recording-methods/confirm-recording.service.d.ts +63 -0
  158. package/dist/lib/methods/recording-methods/launch-recording.service.d.ts +43 -0
  159. package/dist/lib/methods/recording-methods/record-pause-timer.service.d.ts +27 -0
  160. package/dist/lib/methods/recording-methods/record-resume-timer.service.d.ts +44 -0
  161. package/dist/lib/methods/recording-methods/record-start-timer.service.d.ts +45 -0
  162. package/dist/lib/methods/recording-methods/record-update-timer.service.d.ts +32 -0
  163. package/dist/lib/methods/recording-methods/start-recording.service.d.ts +53 -0
  164. package/dist/lib/methods/recording-methods/stop-recording.service.d.ts +42 -1
  165. package/dist/lib/methods/recording-methods/update-recording.service.d.ts +51 -0
  166. package/dist/lib/methods/requests-methods/launch-requests.service.d.ts +25 -0
  167. package/dist/lib/methods/requests-methods/respond-to-requests.service.d.ts +39 -0
  168. package/dist/lib/methods/settings-methods/launch-settings.service.d.ts +25 -0
  169. package/dist/lib/methods/settings-methods/modify-settings.service.d.ts +42 -0
  170. package/dist/lib/methods/stream-methods/click-audio.service.d.ts +100 -0
  171. package/dist/lib/methods/stream-methods/click-chat.service.d.ts +31 -0
  172. package/dist/lib/methods/stream-methods/click-screen-share.service.d.ts +68 -0
  173. package/dist/lib/methods/stream-methods/click-video.service.d.ts +88 -0
  174. package/dist/lib/methods/stream-methods/switch-audio.service.d.ts +47 -0
  175. package/dist/lib/methods/stream-methods/switch-video-alt.service.d.ts +50 -0
  176. package/dist/lib/methods/stream-methods/switch-video.service.d.ts +56 -0
  177. package/dist/lib/methods/utils/check-limits-and-make-request.service.d.ts +23 -0
  178. package/dist/lib/methods/utils/create-response-join-room.util.d.ts +33 -0
  179. package/dist/lib/methods/utils/create-room-on-media-sfu.service.d.ts +25 -0
  180. package/dist/lib/methods/utils/format-number.service.d.ts +26 -14
  181. package/dist/lib/methods/utils/generate-random-messages.service.d.ts +33 -0
  182. package/dist/lib/methods/utils/generate-random-participants.service.d.ts +27 -0
  183. package/dist/lib/methods/utils/generate-random-polls.service.d.ts +26 -0
  184. package/dist/lib/methods/utils/generate-random-request-list.service.d.ts +36 -0
  185. package/dist/lib/methods/utils/generate-random-waiting-room-list.service.d.ts +21 -0
  186. package/dist/lib/methods/utils/get-modal-position.util.d.ts +13 -3
  187. package/dist/lib/methods/utils/get-overlay-position.util.d.ts +13 -3
  188. package/dist/lib/methods/utils/initial-values.util.d.ts +6 -0
  189. package/dist/lib/methods/utils/join-room-on-media-sfu.service.d.ts +52 -0
  190. package/dist/lib/methods/utils/meeting-timer/start-meeting-progress-timer.service.d.ts +37 -0
  191. package/dist/lib/methods/utils/mini-audio-player/mini-audio-player.component.d.ts +55 -0
  192. package/dist/lib/methods/utils/producer/a-params.service.d.ts +37 -0
  193. package/dist/lib/methods/utils/producer/h-params.service.d.ts +50 -0
  194. package/dist/lib/methods/utils/producer/screen-params.service.d.ts +37 -0
  195. package/dist/lib/methods/utils/producer/v-params.service.d.ts +50 -0
  196. package/dist/lib/methods/utils/producer/video-capture-constraints.service.d.ts +46 -0
  197. package/dist/lib/methods/utils/sleep.util.d.ts +9 -3
  198. package/dist/lib/methods/utils/sound-player.service.d.ts +21 -0
  199. package/dist/lib/methods/utils/validate-alphanumeric.service.d.ts +16 -0
  200. package/dist/lib/methods/waiting-methods/launch-waiting.service.d.ts +18 -0
  201. package/dist/lib/methods/waiting-methods/respond-to-waiting.service.d.ts +29 -0
  202. package/dist/lib/methods/whiteboard-methods/capture-canvas-stream.service.d.ts +46 -0
  203. package/dist/lib/methods/whiteboard-methods/launch-configure-whiteboard.service.d.ts +20 -0
  204. package/dist/lib/producer-client/producer-client-emits/create-device-client.service.d.ts +23 -0
  205. package/dist/lib/producer-client/producer-client-emits/join-room-client.service.d.ts +31 -0
  206. package/dist/lib/producer-client/producer-client-emits/update-room-parameters-client.service.d.ts +44 -0
  207. package/dist/lib/producers/producer-emits/join-con-room.service.d.ts +38 -0
  208. package/dist/lib/producers/producer-emits/join-local-room.service.d.ts +125 -0
  209. package/dist/lib/producers/producer-emits/join-room.service.d.ts +38 -0
  210. package/dist/lib/producers/socket-receive-methods/all-members-rest.service.d.ts +80 -2
  211. package/dist/lib/producers/socket-receive-methods/all-members.service.d.ts +78 -2
  212. package/dist/lib/producers/socket-receive-methods/all-waiting-room-members.service.d.ts +27 -0
  213. package/dist/lib/producers/socket-receive-methods/ban-participant.service.d.ts +36 -0
  214. package/dist/lib/producers/socket-receive-methods/control-media-host.service.d.ts +37 -0
  215. package/dist/lib/producers/socket-receive-methods/disconnect-user-self.service.d.ts +29 -1
  216. package/dist/lib/producers/socket-receive-methods/disconnect.service.d.ts +26 -0
  217. package/dist/lib/producers/socket-receive-methods/get-domains.service.d.ts +24 -9
  218. package/dist/lib/producers/socket-receive-methods/host-request-response.service.d.ts +31 -48
  219. package/dist/lib/producers/socket-receive-methods/meeting-ended.service.d.ts +29 -0
  220. package/dist/lib/producers/socket-receive-methods/meeting-still-there.service.d.ts +23 -0
  221. package/dist/lib/producers/socket-receive-methods/meeting-time-remaining.service.d.ts +27 -0
  222. package/dist/lib/producers/socket-receive-methods/participant-requested.service.d.ts +31 -0
  223. package/dist/lib/producers/socket-receive-methods/person-joined.service.d.ts +25 -0
  224. package/dist/lib/producers/socket-receive-methods/producer-media-closed.service.d.ts +61 -0
  225. package/dist/lib/producers/socket-receive-methods/producer-media-paused.service.d.ts +62 -0
  226. package/dist/lib/producers/socket-receive-methods/producer-media-resumed.service.d.ts +45 -0
  227. package/dist/lib/producers/socket-receive-methods/re-initiate-recording.service.d.ts +29 -0
  228. package/dist/lib/producers/socket-receive-methods/receive-message.service.d.ts +38 -0
  229. package/dist/lib/producers/socket-receive-methods/recording-notice.service.d.ts +38 -0
  230. package/dist/lib/producers/socket-receive-methods/room-record-params.service.d.ts +62 -0
  231. package/dist/lib/producers/socket-receive-methods/screen-producer-id.service.d.ts +41 -0
  232. package/dist/lib/producers/socket-receive-methods/start-records.service.d.ts +25 -0
  233. package/dist/lib/producers/socket-receive-methods/stopped-recording.service.d.ts +25 -0
  234. package/dist/lib/producers/socket-receive-methods/time-left-recording.service.d.ts +21 -0
  235. package/dist/lib/producers/socket-receive-methods/update-consuming-domains.service.d.ts +42 -0
  236. package/dist/lib/producers/socket-receive-methods/update-media-settings.service.d.ts +30 -0
  237. package/dist/lib/producers/socket-receive-methods/updated-co-host.service.d.ts +40 -0
  238. package/dist/lib/producers/socket-receive-methods/user-waiting.service.d.ts +14 -40
  239. package/dist/lib/sockets/socket-manager.service.d.ts +130 -0
  240. package/dist/public-api.d.ts +11 -1
  241. package/package.json +17 -20
  242. package/dist/esm2022/lib/@types/types.mjs +0 -2
  243. package/dist/esm2022/lib/components/background-components/background-modal/background-modal.component.mjs +0 -763
  244. package/dist/esm2022/lib/components/breakout-components/breakout-rooms-modal.component.mjs +0 -316
  245. package/dist/esm2022/lib/components/breakout-components/edit-room-modal/edit-room-modal.component.mjs +0 -95
  246. package/dist/esm2022/lib/components/breakout-components/room-list/room-list.component.mjs +0 -40
  247. package/dist/esm2022/lib/components/co-host-components/co-host-modal/co-host-modal.component.mjs +0 -246
  248. package/dist/esm2022/lib/components/display-components/alert-component/alert.component.component.mjs +0 -73
  249. package/dist/esm2022/lib/components/display-components/audio-card/audio-card.component.mjs +0 -297
  250. package/dist/esm2022/lib/components/display-components/audio-grid/audio-grid.component.mjs +0 -60
  251. package/dist/esm2022/lib/components/display-components/card-video-display/card-video-display.component.mjs +0 -94
  252. package/dist/esm2022/lib/components/display-components/control-buttons-alt-component/control-buttons-alt-component.component.mjs +0 -100
  253. package/dist/esm2022/lib/components/display-components/control-buttons-component/control-buttons-component.component.mjs +0 -231
  254. package/dist/esm2022/lib/components/display-components/control-buttons-component-touch/control-buttons-component-touch.component.mjs +0 -298
  255. package/dist/esm2022/lib/components/display-components/control-widgets/menu-participants-widget.component.mjs +0 -61
  256. package/dist/esm2022/lib/components/display-components/control-widgets/menu-record-widget.component.mjs +0 -43
  257. package/dist/esm2022/lib/components/display-components/control-widgets/menu-widget.component.mjs +0 -114
  258. package/dist/esm2022/lib/components/display-components/control-widgets/message-widget.component.mjs +0 -114
  259. package/dist/esm2022/lib/components/display-components/control-widgets/record-timer-widget.component.mjs +0 -36
  260. package/dist/esm2022/lib/components/display-components/control-widgets/screenshare-widget.component.mjs +0 -74
  261. package/dist/esm2022/lib/components/display-components/flexible-grid/flexible-grid.component.mjs +0 -142
  262. package/dist/esm2022/lib/components/display-components/flexible-video/flexible-video.component.mjs +0 -265
  263. package/dist/esm2022/lib/components/display-components/loading-modal/loading-modal.component.mjs +0 -100
  264. package/dist/esm2022/lib/components/display-components/main-aspect-component/main-aspect-component.component.mjs +0 -132
  265. package/dist/esm2022/lib/components/display-components/main-container-component/main-container-component.component.mjs +0 -119
  266. package/dist/esm2022/lib/components/display-components/main-grid-component/main-grid-component.component.mjs +0 -106
  267. package/dist/esm2022/lib/components/display-components/main-screen-component/main-screen-component.component.mjs +0 -180
  268. package/dist/esm2022/lib/components/display-components/meeting-progress-timer/meeting-progress-timer.component.mjs +0 -120
  269. package/dist/esm2022/lib/components/display-components/mini-audio/mini-audio.component.mjs +0 -326
  270. package/dist/esm2022/lib/components/display-components/mini-card/mini-card.component.mjs +0 -165
  271. package/dist/esm2022/lib/components/display-components/mini-card-audio/mini-card-audio.component.mjs +0 -230
  272. package/dist/esm2022/lib/components/display-components/other-grid-component/other-grid-component.component.mjs +0 -111
  273. package/dist/esm2022/lib/components/display-components/pagination/pagination.component.mjs +0 -328
  274. package/dist/esm2022/lib/components/display-components/sub-aspect-component/sub-aspect-component.component.mjs +0 -118
  275. package/dist/esm2022/lib/components/display-components/video-card/video-card.component.mjs +0 -330
  276. package/dist/esm2022/lib/components/display-settings-components/display-settings-modal.component.mjs +0 -95
  277. package/dist/esm2022/lib/components/event-settings-components/event-settings-modal/event-settings-modal.component.mjs +0 -190
  278. package/dist/esm2022/lib/components/exit-components/confirm-exit-modal/confirm-exit-modal.component.mjs +0 -119
  279. package/dist/esm2022/lib/components/media-settings-components/media-settings-modal/media-settings-modal.component.mjs +0 -209
  280. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-broadcast.component.mjs +0 -4189
  281. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-chat.component.mjs +0 -3705
  282. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-conference.component.mjs +0 -5024
  283. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-generic.component.mjs +0 -5333
  284. package/dist/esm2022/lib/components/mediasfu-components/mediasfu-webinar.component.mjs +0 -5023
  285. package/dist/esm2022/lib/components/menu-components/custom-buttons/custom-buttons.component.mjs +0 -85
  286. package/dist/esm2022/lib/components/menu-components/meeting-id-component/meeting-id-component.component.mjs +0 -22
  287. package/dist/esm2022/lib/components/menu-components/meeting-passcode-component/meeting-passcode-component.component.mjs +0 -22
  288. package/dist/esm2022/lib/components/menu-components/menu-modal/menu-modal.component.mjs +0 -132
  289. package/dist/esm2022/lib/components/menu-components/share-buttons-component/share-buttons-component.component.mjs +0 -104
  290. package/dist/esm2022/lib/components/message-components/message-panel/message-panel.component.mjs +0 -204
  291. package/dist/esm2022/lib/components/message-components/messages-modal/messages-modal.component.mjs +0 -243
  292. package/dist/esm2022/lib/components/misc-components/confirm-here-modal/confirm-here-modal.component.mjs +0 -147
  293. package/dist/esm2022/lib/components/misc-components/pre-join-page/pre-join-page.component.mjs +0 -335
  294. package/dist/esm2022/lib/components/misc-components/share-event-modal/share-event-modal.component.mjs +0 -113
  295. package/dist/esm2022/lib/components/misc-components/welcome-page/welcome-page.component.mjs +0 -226
  296. package/dist/esm2022/lib/components/participants-components/participant-list/participant-list.component.mjs +0 -63
  297. package/dist/esm2022/lib/components/participants-components/participant-list-item/participant-list-item.component.mjs +0 -120
  298. package/dist/esm2022/lib/components/participants-components/participant-list-others/participant-list-others.component.mjs +0 -23
  299. package/dist/esm2022/lib/components/participants-components/participant-list-others-item/participant-list-others-item.component.mjs +0 -43
  300. package/dist/esm2022/lib/components/participants-components/participants-modal/participants-modal.component.mjs +0 -100
  301. package/dist/esm2022/lib/components/polls-components/poll-modal/poll-modal.component.mjs +0 -174
  302. package/dist/esm2022/lib/components/recording-components/advanced-panel-component/advanced-panel-components.component.mjs +0 -77
  303. package/dist/esm2022/lib/components/recording-components/recording-modal/recording-modal.component.mjs +0 -121
  304. package/dist/esm2022/lib/components/recording-components/standard-panel-component/standard-panel-component.component.mjs +0 -85
  305. package/dist/esm2022/lib/components/requests-components/render-request-component/render-request-component.component.mjs +0 -59
  306. package/dist/esm2022/lib/components/requests-components/requests-modal/requests-modal.component.mjs +0 -130
  307. package/dist/esm2022/lib/components/screenboard-components/screenboard/screenboard.component.mjs +0 -617
  308. package/dist/esm2022/lib/components/screenboard-components/screenboard-modal/screenboard-modal.component.mjs +0 -380
  309. package/dist/esm2022/lib/components/waiting-components/waiting-room-modal.component.mjs +0 -142
  310. package/dist/esm2022/lib/components/whiteboard-components/configure-whiteboard-modal/configure-whiteboard-modal.component.mjs +0 -265
  311. package/dist/esm2022/lib/components/whiteboard-components/whiteboard/whiteboard.component.mjs +0 -1784
  312. package/dist/esm2022/lib/consumers/add-videos-grid.service.mjs +0 -296
  313. package/dist/esm2022/lib/consumers/auto-adjust.service.mjs +0 -83
  314. package/dist/esm2022/lib/consumers/calculate-rows-and-columns.service.mjs +0 -42
  315. package/dist/esm2022/lib/consumers/change-vids.service.mjs +0 -486
  316. package/dist/esm2022/lib/consumers/check-grid.service.mjs +0 -79
  317. package/dist/esm2022/lib/consumers/check-permission.service.mjs +0 -80
  318. package/dist/esm2022/lib/consumers/check-screen-share.service.mjs +0 -71
  319. package/dist/esm2022/lib/consumers/close-and-resize.service.mjs +0 -229
  320. package/dist/esm2022/lib/consumers/compare-active-names.service.mjs +0 -75
  321. package/dist/esm2022/lib/consumers/compare-screen-states.service.mjs +0 -63
  322. package/dist/esm2022/lib/consumers/connect-ips.service.mjs +0 -112
  323. package/dist/esm2022/lib/consumers/connect-recv-transport.service.mjs +0 -113
  324. package/dist/esm2022/lib/consumers/connect-send-transport-audio.service.mjs +0 -46
  325. package/dist/esm2022/lib/consumers/connect-send-transport-screen.service.mjs +0 -62
  326. package/dist/esm2022/lib/consumers/connect-send-transport-video.service.mjs +0 -55
  327. package/dist/esm2022/lib/consumers/connect-send-transport.service.mjs +0 -86
  328. package/dist/esm2022/lib/consumers/consumer-resume.service.mjs +0 -332
  329. package/dist/esm2022/lib/consumers/control-media.service.mjs +0 -68
  330. package/dist/esm2022/lib/consumers/create-send-transport.service.mjs +0 -126
  331. package/dist/esm2022/lib/consumers/disconnect-send-transport-audio.service.mjs +0 -58
  332. package/dist/esm2022/lib/consumers/disconnect-send-transport-screen.service.mjs +0 -45
  333. package/dist/esm2022/lib/consumers/disconnect-send-transport-video.service.mjs +0 -56
  334. package/dist/esm2022/lib/consumers/disp-streams.service.mjs +0 -421
  335. package/dist/esm2022/lib/consumers/generate-page-content.service.mjs +0 -59
  336. package/dist/esm2022/lib/consumers/get-estimate.service.mjs +0 -70
  337. package/dist/esm2022/lib/consumers/get-piped-producers-alt.service.mjs +0 -49
  338. package/dist/esm2022/lib/consumers/get-producers-piped.service.mjs +0 -46
  339. package/dist/esm2022/lib/consumers/get-videos.service.mjs +0 -58
  340. package/dist/esm2022/lib/consumers/mix-streams.service.mjs +0 -73
  341. package/dist/esm2022/lib/consumers/on-screen-changes.service.mjs +0 -63
  342. package/dist/esm2022/lib/consumers/prepopulate-user-media.service.mjs +0 -442
  343. package/dist/esm2022/lib/consumers/process-consumer-transports-audio.service.mjs +0 -72
  344. package/dist/esm2022/lib/consumers/process-consumer-transports.service.mjs +0 -91
  345. package/dist/esm2022/lib/consumers/re-port.service.mjs +0 -66
  346. package/dist/esm2022/lib/consumers/re-update-inter.service.mjs +0 -157
  347. package/dist/esm2022/lib/consumers/readjust.service.mjs +0 -123
  348. package/dist/esm2022/lib/consumers/receive-all-piped-transports.service.mjs +0 -56
  349. package/dist/esm2022/lib/consumers/receive-room-messages.service.mjs +0 -42
  350. package/dist/esm2022/lib/consumers/reorder-streams.service.mjs +0 -181
  351. package/dist/esm2022/lib/consumers/request-screen-share.service.mjs +0 -67
  352. package/dist/esm2022/lib/consumers/resume-pause-audio-streams.service.mjs +0 -99
  353. package/dist/esm2022/lib/consumers/resume-pause-streams.service.mjs +0 -70
  354. package/dist/esm2022/lib/consumers/resume-send-transport-audio.service.mjs +0 -55
  355. package/dist/esm2022/lib/consumers/signal-new-consumer-transport.service.mjs +0 -136
  356. package/dist/esm2022/lib/consumers/socket-receive-methods/join-consume-room.service.mjs +0 -63
  357. package/dist/esm2022/lib/consumers/socket-receive-methods/new-pipe-producer.service.mjs +0 -61
  358. package/dist/esm2022/lib/consumers/socket-receive-methods/producer-closed.service.mjs +0 -51
  359. package/dist/esm2022/lib/consumers/start-share-screen.service.mjs +0 -80
  360. package/dist/esm2022/lib/consumers/stop-share-screen.service.mjs +0 -120
  361. package/dist/esm2022/lib/consumers/stream-success-audio-switch.service.mjs +0 -132
  362. package/dist/esm2022/lib/consumers/stream-success-audio.service.mjs +0 -149
  363. package/dist/esm2022/lib/consumers/stream-success-screen.service.mjs +0 -143
  364. package/dist/esm2022/lib/consumers/stream-success-video.service.mjs +0 -202
  365. package/dist/esm2022/lib/consumers/switch-user-audio.service.mjs +0 -87
  366. package/dist/esm2022/lib/consumers/switch-user-video-alt.service.mjs +0 -228
  367. package/dist/esm2022/lib/consumers/switch-user-video.service.mjs +0 -125
  368. package/dist/esm2022/lib/consumers/trigger.service.mjs +0 -172
  369. package/dist/esm2022/lib/consumers/update-mini-cards-grid.service.mjs +0 -81
  370. package/dist/esm2022/lib/consumers/update-participant-audio-decibels.service.mjs +0 -39
  371. package/dist/esm2022/lib/methods/background-methods/launch-background.service.mjs +0 -23
  372. package/dist/esm2022/lib/methods/breakout-room-methods/breakout-room-updated.service.mjs +0 -112
  373. package/dist/esm2022/lib/methods/breakout-room-methods/launch-breakout-rooms.service.mjs +0 -22
  374. package/dist/esm2022/lib/methods/co-host-methods/launch-co-host.service.mjs +0 -22
  375. package/dist/esm2022/lib/methods/co-host-methods/modify-co-host-settings.service.mjs +0 -60
  376. package/dist/esm2022/lib/methods/display-settings-methods/launch-display-settings.service.mjs +0 -24
  377. package/dist/esm2022/lib/methods/display-settings-methods/modify-display-settings.service.mjs +0 -119
  378. package/dist/esm2022/lib/methods/exit-methods/confirm-exit.service.mjs +0 -28
  379. package/dist/esm2022/lib/methods/exit-methods/launch-confirm-exit.service.mjs +0 -22
  380. package/dist/esm2022/lib/methods/media-settings-methods/launch-media-settings.service.mjs +0 -50
  381. package/dist/esm2022/lib/methods/menu-methods/launch-menu-modal.service.mjs +0 -22
  382. package/dist/esm2022/lib/methods/message-methods/launch-messages.service.mjs +0 -23
  383. package/dist/esm2022/lib/methods/message-methods/send-message.service.mjs +0 -94
  384. package/dist/esm2022/lib/methods/participants-methods/launch-participants.service.mjs +0 -23
  385. package/dist/esm2022/lib/methods/participants-methods/message-participants.service.mjs +0 -52
  386. package/dist/esm2022/lib/methods/participants-methods/mute-participants.service.mjs +0 -57
  387. package/dist/esm2022/lib/methods/participants-methods/remove-participants.service.mjs +0 -62
  388. package/dist/esm2022/lib/methods/polls-methods/handle-create-poll.service.mjs +0 -37
  389. package/dist/esm2022/lib/methods/polls-methods/handle-end-poll.service.mjs +0 -40
  390. package/dist/esm2022/lib/methods/polls-methods/handle-vote-poll.service.mjs +0 -49
  391. package/dist/esm2022/lib/methods/polls-methods/launch-poll.service.mjs +0 -23
  392. package/dist/esm2022/lib/methods/polls-methods/poll-updated.service.mjs +0 -64
  393. package/dist/esm2022/lib/methods/recording-methods/check-pause-state.service.mjs +0 -45
  394. package/dist/esm2022/lib/methods/recording-methods/check-resume-state.service.mjs +0 -34
  395. package/dist/esm2022/lib/methods/recording-methods/confirm-recording.service.mjs +0 -215
  396. package/dist/esm2022/lib/methods/recording-methods/launch-recording.service.mjs +0 -82
  397. package/dist/esm2022/lib/methods/recording-methods/record-pause-timer.service.mjs +0 -40
  398. package/dist/esm2022/lib/methods/recording-methods/record-resume-timer.service.mjs +0 -86
  399. package/dist/esm2022/lib/methods/recording-methods/record-start-timer.service.mjs +0 -89
  400. package/dist/esm2022/lib/methods/recording-methods/record-update-timer.service.mjs +0 -48
  401. package/dist/esm2022/lib/methods/recording-methods/start-recording.service.mjs +0 -147
  402. package/dist/esm2022/lib/methods/recording-methods/stop-recording.service.mjs +0 -74
  403. package/dist/esm2022/lib/methods/recording-methods/update-recording.service.mjs +0 -224
  404. package/dist/esm2022/lib/methods/requests-methods/launch-requests.service.mjs +0 -26
  405. package/dist/esm2022/lib/methods/requests-methods/respond-to-requests.service.mjs +0 -45
  406. package/dist/esm2022/lib/methods/settings-methods/launch-settings.service.mjs +0 -26
  407. package/dist/esm2022/lib/methods/settings-methods/modify-settings.service.mjs +0 -67
  408. package/dist/esm2022/lib/methods/stream-methods/click-audio.service.mjs +0 -178
  409. package/dist/esm2022/lib/methods/stream-methods/click-chat.service.mjs +0 -44
  410. package/dist/esm2022/lib/methods/stream-methods/click-screen-share.service.mjs +0 -110
  411. package/dist/esm2022/lib/methods/stream-methods/click-video.service.mjs +0 -183
  412. package/dist/esm2022/lib/methods/stream-methods/switch-audio.service.mjs +0 -33
  413. package/dist/esm2022/lib/methods/stream-methods/switch-video-alt.service.mjs +0 -66
  414. package/dist/esm2022/lib/methods/stream-methods/switch-video.service.mjs +0 -76
  415. package/dist/esm2022/lib/methods/utils/format-number.service.mjs +0 -45
  416. package/dist/esm2022/lib/methods/utils/generate-random-messages.service.mjs +0 -87
  417. package/dist/esm2022/lib/methods/utils/generate-random-participants.service.mjs +0 -99
  418. package/dist/esm2022/lib/methods/utils/generate-random-polls.service.mjs +0 -52
  419. package/dist/esm2022/lib/methods/utils/generate-random-request-list.service.mjs +0 -54
  420. package/dist/esm2022/lib/methods/utils/generate-random-waiting-room-list.service.mjs +0 -38
  421. package/dist/esm2022/lib/methods/utils/get-modal-position.util.mjs +0 -22
  422. package/dist/esm2022/lib/methods/utils/get-overlay-position.util.mjs +0 -21
  423. package/dist/esm2022/lib/methods/utils/initial-values.util.mjs +0 -379
  424. package/dist/esm2022/lib/methods/utils/meeting-timer/start-meeting-progress-timer.service.mjs +0 -59
  425. package/dist/esm2022/lib/methods/utils/mini-audio-player/mini-audio-player.component.mjs +0 -260
  426. package/dist/esm2022/lib/methods/utils/producer/a-params.service.mjs +0 -21
  427. package/dist/esm2022/lib/methods/utils/producer/h-params.service.mjs +0 -37
  428. package/dist/esm2022/lib/methods/utils/producer/screen-params.service.mjs +0 -24
  429. package/dist/esm2022/lib/methods/utils/producer/v-params.service.mjs +0 -37
  430. package/dist/esm2022/lib/methods/utils/producer/video-capture-constraints.service.mjs +0 -38
  431. package/dist/esm2022/lib/methods/utils/sleep.util.mjs +0 -11
  432. package/dist/esm2022/lib/methods/utils/sound-player.service.mjs +0 -42
  433. package/dist/esm2022/lib/methods/utils/validate-alphanumeric.service.mjs +0 -33
  434. package/dist/esm2022/lib/methods/waiting-methods/launch-waiting.service.mjs +0 -23
  435. package/dist/esm2022/lib/methods/waiting-methods/respond-to-waiting.service.mjs +0 -40
  436. package/dist/esm2022/lib/methods/whiteboard-methods/capture-canvas-stream.service.mjs +0 -69
  437. package/dist/esm2022/lib/methods/whiteboard-methods/launch-configure-whiteboard.service.mjs +0 -24
  438. package/dist/esm2022/lib/producer-client/producer-client-emits/create-device-client.service.mjs +0 -51
  439. package/dist/esm2022/lib/producer-client/producer-client-emits/join-room-client.service.mjs +0 -65
  440. package/dist/esm2022/lib/producer-client/producer-client-emits/update-room-parameters-client.service.mjs +0 -232
  441. package/dist/esm2022/lib/producers/producer-emits/join-con-room.service.mjs +0 -114
  442. package/dist/esm2022/lib/producers/producer-emits/join-room.service.mjs +0 -114
  443. package/dist/esm2022/lib/producers/socket-receive-methods/all-members-rest.service.mjs +0 -155
  444. package/dist/esm2022/lib/producers/socket-receive-methods/all-members.service.mjs +0 -147
  445. package/dist/esm2022/lib/producers/socket-receive-methods/all-waiting-room-members.service.mjs +0 -30
  446. package/dist/esm2022/lib/producers/socket-receive-methods/ban-participant.service.mjs +0 -40
  447. package/dist/esm2022/lib/producers/socket-receive-methods/control-media-host.service.mjs +0 -146
  448. package/dist/esm2022/lib/producers/socket-receive-methods/disconnect-user-self.service.mjs +0 -26
  449. package/dist/esm2022/lib/producers/socket-receive-methods/disconnect.service.mjs +0 -38
  450. package/dist/esm2022/lib/producers/socket-receive-methods/get-domains.service.mjs +0 -63
  451. package/dist/esm2022/lib/producers/socket-receive-methods/host-request-response.service.mjs +0 -167
  452. package/dist/esm2022/lib/producers/socket-receive-methods/meeting-ended.service.mjs +0 -44
  453. package/dist/esm2022/lib/producers/socket-receive-methods/meeting-still-there.service.mjs +0 -24
  454. package/dist/esm2022/lib/producers/socket-receive-methods/meeting-time-remaining.service.mjs +0 -36
  455. package/dist/esm2022/lib/producers/socket-receive-methods/participant-requested.service.mjs +0 -32
  456. package/dist/esm2022/lib/producers/socket-receive-methods/person-joined.service.mjs +0 -29
  457. package/dist/esm2022/lib/producers/socket-receive-methods/producer-media-closed.service.mjs +0 -68
  458. package/dist/esm2022/lib/producers/socket-receive-methods/producer-media-paused.service.mjs +0 -90
  459. package/dist/esm2022/lib/producers/socket-receive-methods/producer-media-resumed.service.mjs +0 -54
  460. package/dist/esm2022/lib/producers/socket-receive-methods/re-initiate-recording.service.mjs +0 -38
  461. package/dist/esm2022/lib/producers/socket-receive-methods/receive-message.service.mjs +0 -96
  462. package/dist/esm2022/lib/producers/socket-receive-methods/recording-notice.service.mjs +0 -195
  463. package/dist/esm2022/lib/producers/socket-receive-methods/room-record-params.service.mjs +0 -59
  464. package/dist/esm2022/lib/producers/socket-receive-methods/screen-producer-id.service.mjs +0 -45
  465. package/dist/esm2022/lib/producers/socket-receive-methods/start-records.service.mjs +0 -35
  466. package/dist/esm2022/lib/producers/socket-receive-methods/stopped-recording.service.mjs +0 -37
  467. package/dist/esm2022/lib/producers/socket-receive-methods/time-left-recording.service.mjs +0 -36
  468. package/dist/esm2022/lib/producers/socket-receive-methods/update-consuming-domains.service.mjs +0 -63
  469. package/dist/esm2022/lib/producers/socket-receive-methods/update-media-settings.service.mjs +0 -36
  470. package/dist/esm2022/lib/producers/socket-receive-methods/updated-co-host.service.mjs +0 -56
  471. package/dist/esm2022/lib/producers/socket-receive-methods/user-waiting.service.mjs +0 -78
  472. package/dist/esm2022/lib/sockets/socket-manager.service.mjs +0 -73
  473. package/dist/esm2022/mediasfu-angular.mjs +0 -5
  474. package/dist/esm2022/public-api.mjs +0 -187
@@ -1,120 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
4
- import { faMicrophone, faMicrophoneSlash, faComment, faTrash, faDotCircle, } from '@fortawesome/free-solid-svg-icons';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/common";
7
- import * as i2 from "@fortawesome/angular-fontawesome";
8
- export class ParticipantListItem {
9
- participant;
10
- isBroadcast;
11
- onMuteParticipants;
12
- onMessageParticipants;
13
- onRemoveParticipants;
14
- socket;
15
- coHostResponsibility;
16
- member;
17
- islevel;
18
- showAlert;
19
- coHost;
20
- roomName;
21
- updateIsMessagesModalVisible;
22
- updateDirectMessageDetails;
23
- updateStartDirectMessage;
24
- participants;
25
- updateParticipants;
26
- faMicrophone = faMicrophone;
27
- faMicrophoneSlash = faMicrophoneSlash;
28
- faComment = faComment;
29
- faTrash = faTrash;
30
- faDotCircle = faDotCircle;
31
- getIconName() {
32
- return this.participant.muted ? this.faMicrophoneSlash : this.faMicrophone;
33
- }
34
- muteParticipant() {
35
- if (this.onMuteParticipants) {
36
- this.onMuteParticipants({
37
- socket: this.socket,
38
- participant: this.participant,
39
- coHostResponsibility: this.coHostResponsibility,
40
- member: this.member,
41
- islevel: this.islevel,
42
- showAlert: this.showAlert,
43
- coHost: this.coHost,
44
- roomName: this.roomName,
45
- });
46
- }
47
- }
48
- messageParticipant() {
49
- if (this.onMessageParticipants) {
50
- this.onMessageParticipants({
51
- participant: this.participant,
52
- coHostResponsibility: this.coHostResponsibility,
53
- member: this.member,
54
- islevel: this.islevel,
55
- showAlert: this.showAlert,
56
- coHost: this.coHost,
57
- updateIsMessagesModalVisible: this.updateIsMessagesModalVisible,
58
- updateDirectMessageDetails: this.updateDirectMessageDetails,
59
- updateStartDirectMessage: this.updateStartDirectMessage,
60
- });
61
- }
62
- }
63
- removeParticipant() {
64
- if (this.onRemoveParticipants) {
65
- this.onRemoveParticipants({
66
- socket: this.socket,
67
- participant: this.participant,
68
- coHostResponsibility: this.coHostResponsibility,
69
- member: this.member,
70
- islevel: this.islevel,
71
- showAlert: this.showAlert,
72
- coHost: this.coHost,
73
- roomName: this.roomName,
74
- participants: this.participants,
75
- updateParticipants: this.updateParticipants,
76
- });
77
- }
78
- }
79
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ParticipantListItem, deps: [], target: i0.ɵɵFactoryTarget.Component });
80
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: ParticipantListItem, isStandalone: true, selector: "app-participant-list-item", inputs: { participant: "participant", isBroadcast: "isBroadcast", onMuteParticipants: "onMuteParticipants", onMessageParticipants: "onMessageParticipants", onRemoveParticipants: "onRemoveParticipants", socket: "socket", coHostResponsibility: "coHostResponsibility", member: "member", islevel: "islevel", showAlert: "showAlert", coHost: "coHost", roomName: "roomName", updateIsMessagesModalVisible: "updateIsMessagesModalVisible", updateDirectMessageDetails: "updateDirectMessageDetails", updateStartDirectMessage: "updateStartDirectMessage", participants: "participants", updateParticipants: "updateParticipants" }, ngImport: i0, template: "<div class=\"container\" style=\"display: flex; flex-direction: row; align-items: center; margin-bottom: 0px; margin-top: 0px;\">\r\n <div class=\"nameContainer\" style=\"flex: 4;\">\r\n <p class=\"nameText\" style=\"font-size: 16px;\">\r\n {{ participant.islevel === '2' ? participant.name + ' (host)' : participant.name }}\r\n </p>\r\n </div>\r\n <div *ngIf=\"!isBroadcast\" class=\"iconContainer\" style=\"flex: 1; align-items: center;\">\r\n <fa-icon [icon]=\"participant.muted ? faDotCircle : faDotCircle\" [style.font-size.px]=\"20\" [style.color]=\"participant.muted ? 'red' : 'green'\"></fa-icon>\r\n </div>\r\n <div *ngIf=\"!isBroadcast\" class=\"buttonContainer\" style=\"flex: 2; align-items: flex-end;\">\r\n <button (click)=\"muteParticipant()\" style=\"padding: 5px; border-radius: 5px; align-items: center; background-color: #007bff; color: white;\">\r\n <fa-icon [icon]=\"getIconName()\" style=\"font-size: 20px;\"></fa-icon>\r\n </button>\r\n </div>\r\n <div *ngIf=\"!isBroadcast\" class=\"buttonContainer\" style=\"flex: 2; align-items: flex-end;\">\r\n <button (click)=\"messageParticipant()\" style=\"padding: 5px; border-radius: 5px; align-items: center; background-color: #007bff; color: white;\">\r\n <fa-icon [icon]=\"faComment\" style=\"font-size: 20px; color: white;\"></fa-icon>\r\n </button>\r\n </div>\r\n <div class=\"buttonContainer\" style=\"flex: 2; align-items: flex-end;\">\r\n <button (click)=\"removeParticipant()\" style=\"padding: 5px; border-radius: 5px; align-items: center; background-color: #dc3545; color: white;\">\r\n <fa-icon [icon]=\"faTrash\" style=\"font-size: 20px; color: white;\"></fa-icon>\r\n </button>\r\n </div>\r\n</div>\r\n", styles: [".container{display:flex;flex-direction:row;align-items:center;margin-bottom:0;margin-top:0}.nameContainer{flex:4}.nameText{font-size:16px}.iconContainer,.buttonContainer{flex:2;align-items:center}button{padding:5px;border-radius:5px;background-color:#007bff;color:#fff}button.remove{background-color:#dc3545}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FontAwesomeModule }, { kind: "component", type: i2.FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "animation", "mask", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "transform", "a11yRole"] }] });
81
- }
82
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ParticipantListItem, decorators: [{
83
- type: Component,
84
- args: [{ selector: 'app-participant-list-item', standalone: true, imports: [CommonModule, FontAwesomeModule], template: "<div class=\"container\" style=\"display: flex; flex-direction: row; align-items: center; margin-bottom: 0px; margin-top: 0px;\">\r\n <div class=\"nameContainer\" style=\"flex: 4;\">\r\n <p class=\"nameText\" style=\"font-size: 16px;\">\r\n {{ participant.islevel === '2' ? participant.name + ' (host)' : participant.name }}\r\n </p>\r\n </div>\r\n <div *ngIf=\"!isBroadcast\" class=\"iconContainer\" style=\"flex: 1; align-items: center;\">\r\n <fa-icon [icon]=\"participant.muted ? faDotCircle : faDotCircle\" [style.font-size.px]=\"20\" [style.color]=\"participant.muted ? 'red' : 'green'\"></fa-icon>\r\n </div>\r\n <div *ngIf=\"!isBroadcast\" class=\"buttonContainer\" style=\"flex: 2; align-items: flex-end;\">\r\n <button (click)=\"muteParticipant()\" style=\"padding: 5px; border-radius: 5px; align-items: center; background-color: #007bff; color: white;\">\r\n <fa-icon [icon]=\"getIconName()\" style=\"font-size: 20px;\"></fa-icon>\r\n </button>\r\n </div>\r\n <div *ngIf=\"!isBroadcast\" class=\"buttonContainer\" style=\"flex: 2; align-items: flex-end;\">\r\n <button (click)=\"messageParticipant()\" style=\"padding: 5px; border-radius: 5px; align-items: center; background-color: #007bff; color: white;\">\r\n <fa-icon [icon]=\"faComment\" style=\"font-size: 20px; color: white;\"></fa-icon>\r\n </button>\r\n </div>\r\n <div class=\"buttonContainer\" style=\"flex: 2; align-items: flex-end;\">\r\n <button (click)=\"removeParticipant()\" style=\"padding: 5px; border-radius: 5px; align-items: center; background-color: #dc3545; color: white;\">\r\n <fa-icon [icon]=\"faTrash\" style=\"font-size: 20px; color: white;\"></fa-icon>\r\n </button>\r\n </div>\r\n</div>\r\n", styles: [".container{display:flex;flex-direction:row;align-items:center;margin-bottom:0;margin-top:0}.nameContainer{flex:4}.nameText{font-size:16px}.iconContainer,.buttonContainer{flex:2;align-items:center}button{padding:5px;border-radius:5px;background-color:#007bff;color:#fff}button.remove{background-color:#dc3545}\n"] }]
85
- }], propDecorators: { participant: [{
86
- type: Input
87
- }], isBroadcast: [{
88
- type: Input
89
- }], onMuteParticipants: [{
90
- type: Input
91
- }], onMessageParticipants: [{
92
- type: Input
93
- }], onRemoveParticipants: [{
94
- type: Input
95
- }], socket: [{
96
- type: Input
97
- }], coHostResponsibility: [{
98
- type: Input
99
- }], member: [{
100
- type: Input
101
- }], islevel: [{
102
- type: Input
103
- }], showAlert: [{
104
- type: Input
105
- }], coHost: [{
106
- type: Input
107
- }], roomName: [{
108
- type: Input
109
- }], updateIsMessagesModalVisible: [{
110
- type: Input
111
- }], updateDirectMessageDetails: [{
112
- type: Input
113
- }], updateStartDirectMessage: [{
114
- type: Input
115
- }], participants: [{
116
- type: Input
117
- }], updateParticipants: [{
118
- type: Input
119
- }] } });
120
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFydGljaXBhbnQtbGlzdC1pdGVtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL21lZGlhc2Z1LWFuZ3VsYXIvc3JjL2xpYi9jb21wb25lbnRzL3BhcnRpY2lwYW50cy1jb21wb25lbnRzL3BhcnRpY2lwYW50LWxpc3QtaXRlbS9wYXJ0aWNpcGFudC1saXN0LWl0ZW0uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbWVkaWFzZnUtYW5ndWxhci9zcmMvbGliL2NvbXBvbmVudHMvcGFydGljaXBhbnRzLWNvbXBvbmVudHMvcGFydGljaXBhbnQtbGlzdC1pdGVtL3BhcnRpY2lwYW50LWxpc3QtaXRlbS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNqRCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDckUsT0FBTyxFQUNMLFlBQVksRUFDWixpQkFBaUIsRUFDakIsU0FBUyxFQUNULE9BQU8sRUFDUCxXQUFXLEdBQ1osTUFBTSxtQ0FBbUMsQ0FBQzs7OztBQXdDM0MsTUFBTSxPQUFPLG1CQUFtQjtJQUNyQixXQUFXLENBQWU7SUFDMUIsV0FBVyxDQUFXO0lBQ3RCLGtCQUFrQixDQUFrQztJQUNwRCxxQkFBcUIsQ0FBeUI7SUFDOUMsb0JBQW9CLENBQWtDO0lBQ3RELE1BQU0sQ0FBVTtJQUNoQixvQkFBb0IsQ0FBMEI7SUFDOUMsTUFBTSxDQUFVO0lBQ2hCLE9BQU8sQ0FBVTtJQUNqQixTQUFTLENBQWE7SUFDdEIsTUFBTSxDQUFVO0lBQ2hCLFFBQVEsQ0FBVTtJQUNsQiw0QkFBNEIsQ0FBZ0M7SUFDNUQsMEJBQTBCLENBQTZD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b0JBQW9CO3NCQUE1QixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFDRyxvQkFBb0I7c0JBQTVCLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLDRCQUE0QjtzQkFBcEMsS0FBSztnQkFDRywwQkFBMEI7c0JBQWxDLEtBQUs7Z0JBQ0csd0JBQXdCO3NCQUFoQyxLQUFLO2dCQUNHLFlBQVk7c0JBQXBCLEtBQUs7Z0JBQ0csa0JBQWtCO3NCQUExQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEZvbnRBd2Vzb21lTW9kdWxlIH0gZnJvbSAnQGZvcnRhd2Vzb21lL2FuZ3VsYXItZm9udGF3ZXNvbWUnO1xuaW1wb3J0IHtcbiAgZmFNaWNyb3Bob25lLFxuICBmYU1pY3JvcGhvbmVTbGFzaCxcbiAgZmFDb21tZW50LFxuICBmYVRyYXNoLFxuICBmYURvdENpcmNsZSxcbn0gZnJvbSAnQGZvcnRhd2Vzb21lL2ZyZWUtc29saWQtc3ZnLWljb25zJztcbmltcG9ydCB7XG4gIENvSG9zdFJlc3BvbnNpYmlsaXR5LFxuICBNZXNzYWdlUGFydGljaXBhbnRzVHlwZSxcbiAgTXV0ZVBhcnRpY2lwYW50c1R5cGUsXG4gIFBhcnRpY2lwYW50LFxuICBSZW1vdmVQYXJ0aWNpcGFudHNUeXBlLFxuICBTaG93QWxlcnQsXG59IGZyb20gJy4uLy4uLy4uL0B0eXBlcy90eXBlcyc7IC8vIEFkanVzdCB0aGUgaW1wb3J0IGJhc2VkIG9uIHlvdXIgZmlsZSBzdHJ1Y3R1cmVcbmltcG9ydCB7IFNvY2tldCB9IGZyb20gJ3NvY2tldC5pby1jbGllbnQnO1xuXG5leHBvcnQgaW50ZXJmYWNlIFBhcnRpY2lwYW50TGlzdEl0ZW1PcHRpb25zIHtcbiAgcGFydGljaXBhbnQ6IFBhcnRpY2lwYW50O1xuICBpc0Jyb2FkY2FzdDogYm9vbGVhbjtcbiAgb25NdXRlUGFydGljaXBhbnRzOiBNdXRlUGFydGljaXBhbnRzVHlwZTtcbiAgb25NZXNzYWdlUGFydGljaXBhbnRzOiBNZXNzYWdlUGFydGljaXBhbnRzVHlwZTtcbiAgb25SZW1vdmVQYXJ0aWNpcGFudHM6IFJlbW92ZVBhcnRpY2lwYW50c1R5cGU7XG4gIHNvY2tldDogU29ja2V0O1xuICBjb0hvc3RSZXNwb25zaWJpbGl0eTogQ29Ib3N0UmVzcG9uc2liaWxpdHlbXTtcbiAgbWVtYmVyOiBzdHJpbmc7XG4gIGlzbGV2ZWw6IHN0cmluZztcbiAgc2hvd0FsZXJ0PzogU2hvd0FsZXJ0O1xuICBjb0hvc3Q6IHN0cmluZztcbiAgcm9vbU5hbWU6IHN0cmluZztcbiAgcGFydGljaXBhbnRzOiBQYXJ0aWNpcGFudFtdO1xuICB1cGRhdGVJc01lc3NhZ2VzTW9kYWxWaXNpYmxlOiAoaXNWaXNpYmxlOiBib29sZWFuKSA9PiB2b2lkO1xuICB1cGRhdGVEaXJlY3RNZXNzYWdlRGV0YWlsczogKHBhcnRpY2lwYW50OiBQYXJ0aWNpcGFudCB8IG51bGwpID0+IHZvaWQ7XG4gIHVwZGF0ZVN0YXJ0RGlyZWN0TWVzc2FnZTogKHN0YXJ0OiBib29sZWFuKSA9PiB2b2lkO1xuICB1cGRhdGVQYXJ0aWNpcGFudHM6IChwYXJ0aWNpcGFudHM6IFBhcnRpY2lwYW50W10pID0+IHZvaWQ7XG59XG5cbmV4cG9ydCB0eXBlIFBhcnRpY2lwYW50TGlzdEl0ZW1UeXBlID0gKG9wdGlvbnM6IFBhcnRpY2lwYW50TGlzdEl0ZW1PcHRpb25zKSA9PiBIVE1MRWxlbWVudDtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLXBhcnRpY2lwYW50LWxpc3QtaXRlbScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIHRlbXBsYXRlVXJsOiAnLi9wYXJ0aWNpcGFudC1saXN0LWl0ZW0uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wYXJ0aWNpcGFudC1saXN0LWl0ZW0uY29tcG9uZW50LmNzcyddLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb250QXdlc29tZU1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIFBhcnRpY2lwYW50TGlzdEl0ZW0ge1xuICBASW5wdXQoKSBwYXJ0aWNpcGFudCE6IFBhcnRpY2lwYW50O1xuICBASW5wdXQoKSBpc0Jyb2FkY2FzdCE6IGJvb2xlYW47XG4gIEBJbnB1dCgpIG9uTXV0ZVBhcnRpY2lwYW50cyE6IChwYXJhbXM6IGFueSkgPT4gUHJvbWlzZTx2b2lkPjtcbiAgQElucHV0KCkgb25NZXNzYWdlUGFydGljaXBhbnRzITogKHBhcmFtczogYW55KSA9PiB2b2lkO1xuICBASW5wdXQoKSBvblJlbW92ZVBhcnRpY2lwYW50cyE6IChwYXJhbXM6IGFueSkgPT4gUHJvbWlzZTx2b2lkPjtcbiAgQElucHV0KCkgc29ja2V0ITogU29ja2V0O1xuICBASW5wdXQoKSBjb0hvc3RSZXNwb25zaWJpbGl0eSE6IENvSG9zdFJlc3BvbnNpYmlsaXR5W107XG4gIEBJbnB1dCgpIG1lbWJlciE6IHN0cmluZztcbiAgQElucHV0KCkgaXNsZXZlbCE6IHN0cmluZztcbiAgQElucHV0KCkgc2hvd0FsZXJ0PzogU2hvd0FsZXJ0O1xuICBASW5wdXQoKSBjb0hvc3QhOiBzdHJpbmc7XG4gIEBJbnB1dCgpIHJvb21OYW1lITogc3RyaW5nO1xuICBASW5wdXQoKSB1cGRhdGVJc01lc3NhZ2VzTW9kYWxWaXNpYmxlITogKGlzVmlzaWJsZTogYm9vbGVhbikgPT4gdm9pZDtcbiAgQElucHV0KCkgdXBkYXRlRGlyZWN0TWVzc2FnZURldGFpbHMhOiAocGFydGljaXBhbnQ6IFBhcnRpY2lwYW50IHwgbnVsbCkgPT4gdm9pZDtcbiAgQElucHV0KCkgdXBkYXRlU3RhcnREaXJlY3RNZXNzYWdlITogKHN0YXJ0OiBib29sZWFuKSA9PiB2b2lkO1xuICBASW5wdXQoKSBwYXJ0aWNpcGFudHMhOiBQYXJ0aWNpcGFudFtdO1xuICBASW5wdXQoKSB1cGRhdGVQYXJ0aWNpcGFudHMhOiAocGFydGljaXBhbnRzOiBQYXJ0aWNpcGFudFtdKSA9PiB2b2lkO1xuXG4gIGZhTWljcm9waG9uZSA9IGZhTWljcm9waG9uZTtcbiAgZmFNaWNyb3Bob25lU2xhc2ggPSBmYU1pY3JvcGhvbmVTbGFzaDtcbiAgZmFDb21tZW50ID0gZmFDb21tZW50O1xuICBmYVRyYXNoID0gZmFUcmFzaDtcbiAgZmFEb3RDaXJjbGUgPSBmYURvdENpcmNsZTtcblxuICBnZXRJY29uTmFtZSgpIHtcbiAgICByZXR1cm4gdGhpcy5wYXJ0aWNpcGFudC5tdXRlZCA/IHRoaXMuZmFNaWNyb3Bob25lU2xhc2ggOiB0aGlzLmZhTWljcm9waG9uZTtcbiAgfVxuXG4gIG11dGVQYXJ0aWNpcGFudCgpIHtcbiAgICBpZiAodGhpcy5vbk11dGVQYXJ0aWNpcGFudHMpIHtcbiAgICAgIHRoaXMub25NdXRlUGFydGljaXBhbnRzKHtcbiAgICAgICAgc29ja2V0OiB0aGlzLnNvY2tldCxcbiAgICAgICAgcGFydGljaXBhbnQ6IHRoaXMucGFydGljaXBhbnQsXG4gICAgICAgIGNvSG9zdFJlc3BvbnNpYmlsaXR5OiB0aGlzLmNvSG9zdFJlc3BvbnNpYmlsaXR5LFxuICAgICAgICBtZW1iZXI6IHRoaXMubWVtYmVyLFxuICAgICAgICBpc2xldmVsOiB0aGlzLmlzbGV2ZWwsXG4gICAgICAgIHNob3dBbGVydDogdGhpcy5zaG93QWxlcnQsXG4gICAgICAgIGNvSG9zdDogdGhpcy5jb0hvc3QsXG4gICAgICAgIHJvb21OYW1lOiB0aGlzLnJvb21OYW1lLFxuICAgICAgfSk7XG4gICAgfVxuICB9XG5cbiAgbWVzc2FnZVBhcnRpY2lwYW50KCkge1xuICAgIGlmICh0aGlzLm9uTWVzc2FnZVBhcnRpY2lwYW50cykge1xuICAgICAgdGhpcy5vbk1lc3NhZ2VQYXJ0aWNpcGFudHMoe1xuICAgICAgICBwYXJ0aWNpcGFudDogdGhpcy5wYXJ0aWNpcGFudCxcbiAgICAgICAgY29Ib3N0UmVzcG9uc2liaWxpdHk6IHRoaXMuY29Ib3N0UmVzcG9uc2liaWxpdHksXG4gICAgICAgIG1lbWJlcjogdGhpcy5tZW1iZXIsXG4gICAgICAgIGlzbGV2ZWw6IHRoaXMuaXNsZXZlbCxcbiAgICAgICAgc2hvd0FsZXJ0OiB0aGlzLnNob3dBbGVydCxcbiAgICAgICAgY29Ib3N0OiB0aGlzLmNvSG9zdCxcbiAgICAgICAgdXBkYXRlSXNNZXNzYWdlc01vZGFsVmlzaWJsZTogdGhpcy51cGRhdGVJc01lc3NhZ2VzTW9kYWxWaXNpYmxlLFxuICAgICAgICB1cGRhdGVEaXJlY3RNZXNzYWdlRGV0YWlsczogdGhpcy51cGRhdGVEaXJlY3RNZXNzYWdlRGV0YWlscyxcbiAgICAgICAgdXBkYXRlU3RhcnREaXJlY3RNZXNzYWdlOiB0aGlzLnVwZGF0ZVN0YXJ0RGlyZWN0TWVzc2FnZSxcbiAgICAgIH0pO1xuICAgIH1cbiAgfVxuXG4gIHJlbW92ZVBhcnRpY2lwYW50KCkge1xuICAgIGlmICh0aGlzLm9uUmVtb3ZlUGFydGljaXBhbnRzKSB7XG4gICAgICB0aGlzLm9uUmVtb3ZlUGFydGljaXBhbnRzKHtcbiAgICAgICAgc29ja2V0OiB0aGlzLnNvY2tldCxcbiAgICAgICAgcGFydGljaXBhbnQ6IHRoaXMucGFydGljaXBhbnQsXG4gICAgICAgIGNvSG9zdFJlc3BvbnNpYmlsaXR5OiB0aGlzLmNvSG9zdFJlc3BvbnNpYmlsaXR5LFxuICAgICAgICBtZW1iZXI6IHRoaXMubWVtYmVyLFxuICAgICAgICBpc2xldmVsOiB0aGlzLmlzbGV2ZWwsXG4gICAgICAgIHNob3dBbGVydDogdGhpcy5zaG93QWxlcnQsXG4gICAgICAgIGNvSG9zdDogdGhpcy5jb0hvc3QsXG4gICAgICAgIHJvb21OYW1lOiB0aGlzLnJvb21OYW1lLFxuICAgICAgICBwYXJ0aWNpcGFudHM6IHRoaXMucGFydGljaXBhbnRzLFxuICAgICAgICB1cGRhdGVQYXJ0aWNpcGFudHM6IHRoaXMudXBkYXRlUGFydGljaXBhbnRzLFxuICAgICAgfSk7XG4gICAgfVxuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiY29udGFpbmVyXCIgc3R5bGU9XCJkaXNwbGF5OiBmbGV4OyBmbGV4LWRpcmVjdGlvbjogcm93OyBhbGlnbi1pdGVtczogY2VudGVyOyBtYXJnaW4tYm90dG9tOiAwcHg7IG1hcmdpbi10b3A6IDBweDtcIj5cclxuICA8ZGl2IGNsYXNzPVwibmFtZUNvbnRhaW5lclwiIHN0eWxlPVwiZmxleDogNDtcIj5cclxuICAgIDxwIGNsYXNzPVwibmFtZVRleHRcIiBzdHlsZT1cImZvbnQtc2l6ZTogMTZweDtcIj5cclxuICAgICAge3sgcGFydGljaXBhbnQuaXNsZXZlbCA9PT0gJzInID8gcGFydGljaXBhbnQubmFtZSArICcgKGhvc3QpJyA6IHBhcnRpY2lwYW50Lm5hbWUgfX1cclxuICAgIDwvcD5cclxuICA8L2Rpdj5cclxuICA8ZGl2ICpuZ0lmPVwiIWlzQnJvYWRjYXN0XCIgY2xhc3M9XCJpY29uQ29udGFpbmVyXCIgc3R5bGU9XCJmbGV4OiAxOyBhbGlnbi1pdGVtczogY2VudGVyO1wiPlxyXG4gICAgPGZhLWljb24gW2ljb25dPVwicGFydGljaXBhbnQubXV0ZWQgPyBmYURvdENpcmNsZSA6IGZhRG90Q2lyY2xlXCIgW3N0eWxlLmZvbnQtc2l6ZS5weF09XCIyMFwiIFtzdHlsZS5jb2xvcl09XCJwYXJ0aWNpcGFudC5tdXRlZCA/ICdyZWQnIDogJ2dyZWVuJ1wiPjwvZmEtaWNvbj5cclxuICA8L2Rpdj5cclxuICA8ZGl2ICpuZ0lmPVwiIWlzQnJvYWRjYXN0XCIgY2xhc3M9XCJidXR0b25Db250YWluZXJcIiBzdHlsZT1cImZsZXg6IDI7IGFsaWduLWl0ZW1zOiBmbGV4LWVuZDtcIj5cclxuICAgIDxidXR0b24gKGNsaWNrKT1cIm11dGVQYXJ0aWNpcGFudCgpXCIgc3R5bGU9XCJwYWRkaW5nOiA1cHg7IGJvcmRlci1yYWRpdXM6IDVweDsgYWxpZ24taXRlbXM6IGNlbnRlcjsgYmFja2dyb3VuZC1jb2xvcjogIzAwN2JmZjsgY29sb3I6IHdoaXRlO1wiPlxyXG4gICAgICA8ZmEtaWNvbiBbaWNvbl09XCJnZXRJY29uTmFtZSgpXCIgc3R5bGU9XCJmb250LXNpemU6IDIwcHg7XCI+PC9mYS1pY29uPlxyXG4gICAgPC9idXR0b24+XHJcbiAgPC9kaXY+XHJcbiAgPGRpdiAqbmdJZj1cIiFpc0Jyb2FkY2FzdFwiIGNsYXNzPVwiYnV0dG9uQ29udGFpbmVyXCIgc3R5bGU9XCJmbGV4OiAyOyBhbGlnbi1pdGVtczogZmxleC1lbmQ7XCI+XHJcbiAgICA8YnV0dG9uIChjbGljayk9XCJtZXNzYWdlUGFydGljaXBhbnQoKVwiIHN0eWxlPVwicGFkZGluZzogNXB4OyBib3JkZXItcmFkaXVzOiA1cHg7IGFsaWduLWl0ZW1zOiBjZW50ZXI7IGJhY2tncm91bmQtY29sb3I6ICMwMDdiZmY7IGNvbG9yOiB3aGl0ZTtcIj5cclxuICAgICAgPGZhLWljb24gW2ljb25dPVwiZmFDb21tZW50XCIgc3R5bGU9XCJmb250LXNpemU6IDIwcHg7IGNvbG9yOiB3aGl0ZTtcIj48L2ZhLWljb24+XHJcbiAgICA8L2J1dHRvbj5cclxuICA8L2Rpdj5cclxuICA8ZGl2IGNsYXNzPVwiYnV0dG9uQ29udGFpbmVyXCIgc3R5bGU9XCJmbGV4OiAyOyBhbGlnbi1pdGVtczogZmxleC1lbmQ7XCI+XHJcbiAgICA8YnV0dG9uIChjbGljayk9XCJyZW1vdmVQYXJ0aWNpcGFudCgpXCIgc3R5bGU9XCJwYWRkaW5nOiA1cHg7IGJvcmRlci1yYWRpdXM6IDVweDsgYWxpZ24taXRlbXM6IGNlbnRlcjsgYmFja2dyb3VuZC1jb2xvcjogI2RjMzU0NTsgY29sb3I6IHdoaXRlO1wiPlxyXG4gICAgICA8ZmEtaWNvbiBbaWNvbl09XCJmYVRyYXNoXCIgc3R5bGU9XCJmb250LXNpemU6IDIwcHg7IGNvbG9yOiB3aGl0ZTtcIj48L2ZhLWljb24+XHJcbiAgICA8L2J1dHRvbj5cclxuICA8L2Rpdj5cclxuPC9kaXY+XHJcbiJdfQ==
@@ -1,23 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { ParticipantListOthersItem } from '../participant-list-others-item/participant-list-others-item.component';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "@angular/common";
6
- export class ParticipantListOthers {
7
- participants = [];
8
- coHost = '';
9
- member = '';
10
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ParticipantListOthers, deps: [], target: i0.ɵɵFactoryTarget.Component });
11
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: ParticipantListOthers, isStandalone: true, selector: "app-participant-list-others", inputs: { participants: "participants", coHost: "coHost", member: "member" }, ngImport: i0, template: "<div *ngFor=\"let participant of participants; let i = index\">\r\n <app-participant-list-others-item\r\n [participant]=\"participant\"\r\n [coHost]=\"coHost\"\r\n [member]=\"member\"\r\n ></app-participant-list-others-item>\r\n <hr *ngIf=\"i < participants.length - 1\" class=\"separator\" />\r\n</div>\r\n", styles: [".separator{border:none;border-top:1px solid #e0e0e0;margin:10px 0}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ParticipantListOthersItem, selector: "app-participant-list-others-item", inputs: ["participant", "member", "coHost"] }] });
12
- }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ParticipantListOthers, decorators: [{
14
- type: Component,
15
- args: [{ selector: 'app-participant-list-others', standalone: true, imports: [CommonModule, ParticipantListOthersItem], template: "<div *ngFor=\"let participant of participants; let i = index\">\r\n <app-participant-list-others-item\r\n [participant]=\"participant\"\r\n [coHost]=\"coHost\"\r\n [member]=\"member\"\r\n ></app-participant-list-others-item>\r\n <hr *ngIf=\"i < participants.length - 1\" class=\"separator\" />\r\n</div>\r\n", styles: [".separator{border:none;border-top:1px solid #e0e0e0;margin:10px 0}\n"] }]
16
- }], propDecorators: { participants: [{
17
- type: Input
18
- }], coHost: [{
19
- type: Input
20
- }], member: [{
21
- type: Input
22
- }] } });
23
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFydGljaXBhbnQtbGlzdC1vdGhlcnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbWVkaWFzZnUtYW5ndWxhci9zcmMvbGliL2NvbXBvbmVudHMvcGFydGljaXBhbnRzLWNvbXBvbmVudHMvcGFydGljaXBhbnQtbGlzdC1vdGhlcnMvcGFydGljaXBhbnQtbGlzdC1vdGhlcnMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbWVkaWFzZnUtYW5ndWxhci9zcmMvbGliL2NvbXBvbmVudHMvcGFydGljaXBhbnRzLWNvbXBvbmVudHMvcGFydGljaXBhbnQtbGlzdC1vdGhlcnMvcGFydGljaXBhbnQtbGlzdC1vdGhlcnMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDakQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLHdFQUF3RSxDQUFDOzs7QUFrQm5ILE1BQU0sT0FBTyxxQkFBcUI7SUFDdkIsWUFBWSxHQUFrQixFQUFFLENBQUM7SUFDakMsTUFBTSxHQUFHLEVBQUUsQ0FBQztJQUNaLE1BQU0sR0FBRyxFQUFFLENBQUM7dUdBSFYscUJBQXFCOzJGQUFyQixxQkFBcUIscUtDcEJsQyxpVUFRQSw2SERRWSxZQUFZLGdRQUFFLHlCQUF5Qjs7MkZBSXRDLHFCQUFxQjtrQkFQakMsU0FBUzsrQkFDRSw2QkFBNkIsY0FDM0IsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLHlCQUF5QixDQUFDOzhCQUt6QyxZQUFZO3NCQUFwQixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgUGFydGljaXBhbnRMaXN0T3RoZXJzSXRlbSB9IGZyb20gJy4uL3BhcnRpY2lwYW50LWxpc3Qtb3RoZXJzLWl0ZW0vcGFydGljaXBhbnQtbGlzdC1vdGhlcnMtaXRlbS5jb21wb25lbnQnO1xuaW1wb3J0IHsgUGFydGljaXBhbnQgfSBmcm9tICcuLi8uLi8uLi9AdHlwZXMvdHlwZXMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIFBhcnRpY2lwYW50TGlzdE90aGVyc09wdGlvbnMge1xuICBwYXJ0aWNpcGFudHM6IFBhcnRpY2lwYW50W107XG4gIGNvSG9zdDogc3RyaW5nO1xuICBtZW1iZXI6IHN0cmluZztcbn1cblxuZXhwb3J0IHR5cGUgUGFydGljaXBhbnRMaXN0T3RoZXJzVHlwZSA9IChvcHRpb25zOiBQYXJ0aWNpcGFudExpc3RPdGhlcnNPcHRpb25zKSA9PiBIVE1MRWxlbWVudDtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLXBhcnRpY2lwYW50LWxpc3Qtb3RoZXJzJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgUGFydGljaXBhbnRMaXN0T3RoZXJzSXRlbV0sXG4gIHRlbXBsYXRlVXJsOiAnLi9wYXJ0aWNpcGFudC1saXN0LW90aGVycy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3BhcnRpY2lwYW50LWxpc3Qtb3RoZXJzLmNvbXBvbmVudC5jc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgUGFydGljaXBhbnRMaXN0T3RoZXJzIHtcbiAgQElucHV0KCkgcGFydGljaXBhbnRzOiBQYXJ0aWNpcGFudFtdID0gW107XG4gIEBJbnB1dCgpIGNvSG9zdCA9ICcnO1xuICBASW5wdXQoKSBtZW1iZXIgPSAnJztcbn1cbiIsIjxkaXYgKm5nRm9yPVwibGV0IHBhcnRpY2lwYW50IG9mIHBhcnRpY2lwYW50czsgbGV0IGkgPSBpbmRleFwiPlxyXG4gIDxhcHAtcGFydGljaXBhbnQtbGlzdC1vdGhlcnMtaXRlbVxyXG4gICAgW3BhcnRpY2lwYW50XT1cInBhcnRpY2lwYW50XCJcclxuICAgIFtjb0hvc3RdPVwiY29Ib3N0XCJcclxuICAgIFttZW1iZXJdPVwibWVtYmVyXCJcclxuICA+PC9hcHAtcGFydGljaXBhbnQtbGlzdC1vdGhlcnMtaXRlbT5cclxuICA8aHIgKm5nSWY9XCJpIDwgcGFydGljaXBhbnRzLmxlbmd0aCAtIDFcIiBjbGFzcz1cInNlcGFyYXRvclwiIC8+XHJcbjwvZGl2PlxyXG4iXX0=
@@ -1,43 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
4
- import { faCircle } from '@fortawesome/free-solid-svg-icons';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@fortawesome/angular-fontawesome";
7
- export class ParticipantListOthersItem {
8
- participant;
9
- member;
10
- coHost;
11
- faCircle = faCircle;
12
- getParticipantDisplayName() {
13
- if (this.participant.islevel === '2') {
14
- return this.participant.name === this.member
15
- ? `${this.participant.name} (you)`
16
- : `${this.participant.name} (host)`;
17
- }
18
- else {
19
- if (this.participant.name === this.member) {
20
- return `${this.participant.name} (you)`;
21
- }
22
- else if (this.coHost === this.participant.name) {
23
- return `${this.participant.name} (co-host)`;
24
- }
25
- else {
26
- return this.participant.name;
27
- }
28
- }
29
- }
30
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ParticipantListOthersItem, deps: [], target: i0.ɵɵFactoryTarget.Component });
31
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: ParticipantListOthersItem, isStandalone: true, selector: "app-participant-list-others-item", inputs: { participant: "participant", member: "member", coHost: "coHost" }, ngImport: i0, template: "<div class=\"container\">\r\n <div class=\"name-container\">\r\n <span class=\"name-text\">\r\n {{ getParticipantDisplayName() }}\r\n </span>\r\n </div>\r\n <div class=\"icon-container\">\r\n <fa-icon [icon]=\"faCircle\" [style.color]=\"participant.muted ? 'red' : 'green'\"></fa-icon>\r\n </div>\r\n</div>\r\n", styles: [".container{display:flex;flex-direction:row;align-items:center;margin-bottom:10px}.name-container{flex:8}.name-text{font-size:16px}.icon-container{flex:4;display:flex;align-items:center}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FontAwesomeModule }, { kind: "component", type: i1.FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "animation", "mask", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "transform", "a11yRole"] }] });
32
- }
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ParticipantListOthersItem, decorators: [{
34
- type: Component,
35
- args: [{ selector: 'app-participant-list-others-item', standalone: true, imports: [CommonModule, FontAwesomeModule], template: "<div class=\"container\">\r\n <div class=\"name-container\">\r\n <span class=\"name-text\">\r\n {{ getParticipantDisplayName() }}\r\n </span>\r\n </div>\r\n <div class=\"icon-container\">\r\n <fa-icon [icon]=\"faCircle\" [style.color]=\"participant.muted ? 'red' : 'green'\"></fa-icon>\r\n </div>\r\n</div>\r\n", styles: [".container{display:flex;flex-direction:row;align-items:center;margin-bottom:10px}.name-container{flex:8}.name-text{font-size:16px}.icon-container{flex:4;display:flex;align-items:center}\n"] }]
36
- }], propDecorators: { participant: [{
37
- type: Input
38
- }], member: [{
39
- type: Input
40
- }], coHost: [{
41
- type: Input
42
- }] } });
43
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFydGljaXBhbnQtbGlzdC1vdGhlcnMtaXRlbS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tZWRpYXNmdS1hbmd1bGFyL3NyYy9saWIvY29tcG9uZW50cy9wYXJ0aWNpcGFudHMtY29tcG9uZW50cy9wYXJ0aWNpcGFudC1saXN0LW90aGVycy1pdGVtL3BhcnRpY2lwYW50LWxpc3Qtb3RoZXJzLWl0ZW0uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbWVkaWFzZnUtYW5ndWxhci9zcmMvbGliL2NvbXBvbmVudHMvcGFydGljaXBhbnRzLWNvbXBvbmVudHMvcGFydGljaXBhbnQtbGlzdC1vdGhlcnMtaXRlbS9wYXJ0aWNpcGFudC1saXN0LW90aGVycy1pdGVtLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQztBQUNyRSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sbUNBQW1DLENBQUM7OztBQW9CN0QsTUFBTSxPQUFPLHlCQUF5QjtJQUMzQixXQUFXLENBQWU7SUFDMUIsTUFBTSxDQUFVO0lBQ2hCLE1BQU0sQ0FBVTtJQUV6QixRQUFRLEdBQUcsUUFBUSxDQUFDO0lBRXBCLHlCQUF5QjtRQUN2QixJQUFJLElBQUksQ0FBQyxXQUFXLENBQUMsT0FBTyxLQUFLLEdBQUcsRUFBRSxDQUFDO1lBQ3JDLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLEtBQUssSUFBSSxDQUFDLE1BQU07Z0JBQzFDLENBQUMsQ0FBQyxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxRQUFRO2dCQUNsQyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksU0FBUyxDQUFDO1FBQ3hDLENBQUM7YUFBTSxDQUFDO1lBQ04sSUFBSSxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksS0FBSyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7Z0JBQzFDLE9BQU8sR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksUUFBUSxDQUFDO1lBQzFDLENBQUM7aUJBQU0sSUFBSSxJQUFJLENBQUMsTUFBTSxLQUFLLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxFQUFFLENBQUM7Z0JBQ2pELE9BQU8sR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksWUFBWSxDQUFDO1lBQzlDLENBQUM7aUJBQU0sQ0FBQztnQkFDTixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDO1lBQy9CLENBQUM7UUFDSCxDQUFDO0lBQ0gsQ0FBQzt1R0FyQlUseUJBQXlCOzJGQUF6Qix5QkFBeUIsd0tDdkJ0QywwVUFVQSxvUERTWSxZQUFZLDhCQUFFLGlCQUFpQjs7MkZBSTlCLHlCQUF5QjtrQkFQckMsU0FBUzsrQkFDRSxrQ0FBa0MsY0FDaEMsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLGlCQUFpQixDQUFDOzhCQUtqQyxXQUFXO3NCQUFuQixLQUFLO2dCQUNHLE1BQU07c0JBQWQsS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgRm9udEF3ZXNvbWVNb2R1bGUgfSBmcm9tICdAZm9ydGF3ZXNvbWUvYW5ndWxhci1mb250YXdlc29tZSc7XG5pbXBvcnQgeyBmYUNpcmNsZSB9IGZyb20gJ0Bmb3J0YXdlc29tZS9mcmVlLXNvbGlkLXN2Zy1pY29ucyc7XG5pbXBvcnQgeyBQYXJ0aWNpcGFudCB9IGZyb20gJy4uLy4uLy4uL0B0eXBlcy90eXBlcyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgUGFydGljaXBhbnRMaXN0T3RoZXJzSXRlbU9wdGlvbnMge1xuICBwYXJ0aWNpcGFudDogUGFydGljaXBhbnQ7XG4gIG1lbWJlcjogc3RyaW5nO1xuICBjb0hvc3Q6IHN0cmluZztcbn1cblxuZXhwb3J0IHR5cGUgUGFydGljaXBhbnRMaXN0T3RoZXJzSXRlbVR5cGUgPSAoXG4gIG9wdGlvbnM6IFBhcnRpY2lwYW50TGlzdE90aGVyc0l0ZW1PcHRpb25zLFxuKSA9PiBIVE1MRWxlbWVudDtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLXBhcnRpY2lwYW50LWxpc3Qtb3RoZXJzLWl0ZW0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBGb250QXdlc29tZU1vZHVsZV0sXG4gIHRlbXBsYXRlVXJsOiAnLi9wYXJ0aWNpcGFudC1saXN0LW90aGVycy1pdGVtLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFydGljaXBhbnQtbGlzdC1vdGhlcnMtaXRlbS5jb21wb25lbnQuY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIFBhcnRpY2lwYW50TGlzdE90aGVyc0l0ZW0ge1xuICBASW5wdXQoKSBwYXJ0aWNpcGFudCE6IFBhcnRpY2lwYW50O1xuICBASW5wdXQoKSBtZW1iZXIhOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGNvSG9zdCE6IHN0cmluZztcblxuICBmYUNpcmNsZSA9IGZhQ2lyY2xlO1xuXG4gIGdldFBhcnRpY2lwYW50RGlzcGxheU5hbWUoKTogc3RyaW5nIHtcbiAgICBpZiAodGhpcy5wYXJ0aWNpcGFudC5pc2xldmVsID09PSAnMicpIHtcbiAgICAgIHJldHVybiB0aGlzLnBhcnRpY2lwYW50Lm5hbWUgPT09IHRoaXMubWVtYmVyXG4gICAgICAgID8gYCR7dGhpcy5wYXJ0aWNpcGFudC5uYW1lfSAoeW91KWBcbiAgICAgICAgOiBgJHt0aGlzLnBhcnRpY2lwYW50Lm5hbWV9IChob3N0KWA7XG4gICAgfSBlbHNlIHtcbiAgICAgIGlmICh0aGlzLnBhcnRpY2lwYW50Lm5hbWUgPT09IHRoaXMubWVtYmVyKSB7XG4gICAgICAgIHJldHVybiBgJHt0aGlzLnBhcnRpY2lwYW50Lm5hbWV9ICh5b3UpYDtcbiAgICAgIH0gZWxzZSBpZiAodGhpcy5jb0hvc3QgPT09IHRoaXMucGFydGljaXBhbnQubmFtZSkge1xuICAgICAgICByZXR1cm4gYCR7dGhpcy5wYXJ0aWNpcGFudC5uYW1lfSAoY28taG9zdClgO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgcmV0dXJuIHRoaXMucGFydGljaXBhbnQubmFtZTtcbiAgICAgIH1cbiAgICB9XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJjb250YWluZXJcIj5cclxuICA8ZGl2IGNsYXNzPVwibmFtZS1jb250YWluZXJcIj5cclxuICAgIDxzcGFuIGNsYXNzPVwibmFtZS10ZXh0XCI+XHJcbiAgICAgIHt7IGdldFBhcnRpY2lwYW50RGlzcGxheU5hbWUoKSB9fVxyXG4gICAgPC9zcGFuPlxyXG4gIDwvZGl2PlxyXG4gIDxkaXYgY2xhc3M9XCJpY29uLWNvbnRhaW5lclwiPlxyXG4gICAgPGZhLWljb24gW2ljb25dPVwiZmFDaXJjbGVcIiBbc3R5bGUuY29sb3JdPVwicGFydGljaXBhbnQubXV0ZWQgPyAncmVkJyA6ICdncmVlbidcIj48L2ZhLWljb24+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=
@@ -1,100 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
4
- import { faTimes } from '@fortawesome/free-solid-svg-icons';
5
- import { ParticipantList } from '../participant-list/participant-list.component';
6
- import { ParticipantListOthers } from '../participant-list-others/participant-list-others.component';
7
- import * as i0 from "@angular/core";
8
- import * as i1 from "../../../methods/participants-methods/mute-participants.service";
9
- import * as i2 from "../../../methods/participants-methods/message-participants.service";
10
- import * as i3 from "../../../methods/participants-methods/remove-participants.service";
11
- import * as i4 from "@angular/common";
12
- import * as i5 from "@fortawesome/angular-fontawesome";
13
- export class ParticipantsModal {
14
- muteParticipantsService;
15
- messageParticipantsService;
16
- removeParticipantsService;
17
- isParticipantsModalVisible = false;
18
- onParticipantsClose;
19
- onParticipantsFilterChange;
20
- participantsCounter = 0;
21
- onMuteParticipants;
22
- onMessageParticipants;
23
- onRemoveParticipants;
24
- parameters = {};
25
- position = 'topRight';
26
- backgroundColor = '#83c0e9';
27
- participant_s = [];
28
- participantsCounter_s = 0;
29
- reRender = false;
30
- faTimes = faTimes;
31
- constructor(muteParticipantsService, messageParticipantsService, removeParticipantsService) {
32
- this.muteParticipantsService = muteParticipantsService;
33
- this.messageParticipantsService = messageParticipantsService;
34
- this.removeParticipantsService = removeParticipantsService;
35
- }
36
- ngOnInit() {
37
- this.updateParticipantsData();
38
- if (!this.onMuteParticipants) {
39
- this.onMuteParticipants = this.muteParticipantsService.muteParticipants.bind(this.muteParticipantsService);
40
- }
41
- if (!this.onMessageParticipants) {
42
- this.onMessageParticipants = this.messageParticipantsService.messageParticipants.bind(this.messageParticipantsService);
43
- }
44
- if (!this.onRemoveParticipants) {
45
- this.onRemoveParticipants = this.removeParticipantsService.removeParticipants.bind(this.removeParticipantsService);
46
- }
47
- }
48
- ngOnChanges(changes) {
49
- if (changes['parameters'] || changes['participantsCounter']) {
50
- this.updateParticipantsData();
51
- }
52
- }
53
- updateParticipantsData() {
54
- let { getUpdatedAllParams } = this.parameters;
55
- this.parameters = getUpdatedAllParams();
56
- this.participant_s = this.parameters.filteredParticipants;
57
- this.participantsCounter_s = this.parameters.filteredParticipants.length;
58
- }
59
- handleFilterChange(event) {
60
- const inputElement = event.target;
61
- const filterValue = inputElement.value;
62
- this.onParticipantsFilterChange(filterValue);
63
- this.reRender = !this.reRender;
64
- }
65
- handleClose() {
66
- this.onParticipantsClose();
67
- }
68
- canShowParticipantList() {
69
- const participantsValue = this.parameters.coHostResponsibility?.find((item) => item.name === 'participants')?.value;
70
- return (this.parameters.islevel === '2' ||
71
- (this.parameters.coHost === this.parameters.member && participantsValue === true));
72
- }
73
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ParticipantsModal, deps: [{ token: i1.MuteParticipants }, { token: i2.MessageParticipants }, { token: i3.RemoveParticipants }], target: i0.ɵɵFactoryTarget.Component });
74
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.8", type: ParticipantsModal, isStandalone: true, selector: "app-participants-modal", inputs: { isParticipantsModalVisible: "isParticipantsModalVisible", onParticipantsClose: "onParticipantsClose", onParticipantsFilterChange: "onParticipantsFilterChange", participantsCounter: "participantsCounter", onMuteParticipants: "onMuteParticipants", onMessageParticipants: "onMessageParticipants", onRemoveParticipants: "onRemoveParticipants", parameters: "parameters", position: "position", backgroundColor: "backgroundColor" }, usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"isParticipantsModalVisible\" class=\"modal-container\" [ngStyle]=\"{'background-color': 'rgba(0, 0, 0, 0.5)'}\">\r\n <div class=\"modal-content\" [ngStyle]=\"{'background-color': backgroundColor, 'top': position.includes('top') ? '10px' : 'auto', 'bottom': position.includes('bottom') ? '10px' : 'auto', 'left': position.includes('Left') ? '10px' : 'auto', 'right': position.includes('Right') ? '10px' : 'auto'}\">\r\n <div class=\"modal-header\">\r\n <div>\r\n Participants <span class=\"badge\">{{ participantsCounter_s }}</span>\r\n </div>\r\n <div class=\"close-icon\" (click)=\"handleClose()\">\r\n <fa-icon [icon]=\"faTimes\" size=\"xl\"></fa-icon>\r\n </div>\r\n </div>\r\n <div class=\"modal-body\">\r\n <input type=\"text\" class=\"filter-input\" placeholder=\"Search ...\" (input)=\"handleFilterChange($event)\">\r\n <ng-container *ngIf=\"parameters.participants\">\r\n <ng-container *ngIf=\"canShowParticipantList()\">\r\n <app-participant-list\r\n [participants]=\"participant_s\"\r\n [isBroadcast]=\"parameters.eventType === 'broadcast'\"\r\n [onMuteParticipants]=\"onMuteParticipants\"\r\n [onMessageParticipants]=\"onMessageParticipants\"\r\n [onRemoveParticipants]=\"onRemoveParticipants\"\r\n [socket]=\"parameters.socket\"\r\n [coHostResponsibility]=\"parameters.coHostResponsibility\"\r\n [coHost]=\"parameters.coHost\"\r\n [member]=\"parameters.member\"\r\n [islevel]=\"parameters.islevel\"\r\n [roomName]=\"parameters.roomName\"\r\n [updateIsMessagesModalVisible]=\"parameters.updateIsMessagesModalVisible\"\r\n [updateStartDirectMessage]=\"parameters.updateStartDirectMessage\"\r\n [updateDirectMessageDetails]=\"parameters.updateDirectMessageDetails\"\r\n [updateParticipants]=\"parameters.updateParticipants\"\r\n >\r\n </app-participant-list>\r\n </ng-container>\r\n <ng-container *ngIf=\"!canShowParticipantList()\">\r\n <app-participant-list-others\r\n [participants]=\"participant_s\"\r\n [coHost]=\"parameters.coHost\"\r\n [member]=\"parameters.member\"\r\n >\r\n </app-participant-list-others>\r\n </ng-container>\r\n </ng-container>\r\n <div *ngIf=\"!parameters.participants\">No participants</div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".modal-container{position:fixed;top:0;left:0;width:100%;height:100%;display:block;z-index:999}.modal-content{position:fixed;border-radius:10px;padding:10px;width:80%;max-width:400px;max-height:75%;overflow-y:auto}.modal-header{display:flex;justify-content:space-between;align-items:center}.badge{background-color:#fff;color:#000;border-radius:10px;padding:5px}.close-icon{padding:5px;cursor:pointer}.modal-body{margin-top:10px}.filter-input{width:90%;padding:10px;border-radius:5px;border:1px solid #000;font-size:16px;margin-bottom:10px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "ngmodule", type: FontAwesomeModule }, { kind: "component", type: i5.FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "animation", "mask", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "transform", "a11yRole"] }, { kind: "component", type: ParticipantList, selector: "app-participant-list", inputs: ["participants", "isBroadcast", "onMuteParticipants", "onMessageParticipants", "onRemoveParticipants", "socket", "coHostResponsibility", "member", "islevel", "showAlert", "coHost", "roomName", "updateIsMessagesModalVisible", "updateDirectMessageDetails", "updateStartDirectMessage", "updateParticipants"] }, { kind: "component", type: ParticipantListOthers, selector: "app-participant-list-others", inputs: ["participants", "coHost", "member"] }] });
75
- }
76
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.8", ngImport: i0, type: ParticipantsModal, decorators: [{
77
- type: Component,
78
- args: [{ selector: 'app-participants-modal', standalone: true, imports: [CommonModule, FontAwesomeModule, ParticipantList, ParticipantListOthers], template: "<div *ngIf=\"isParticipantsModalVisible\" class=\"modal-container\" [ngStyle]=\"{'background-color': 'rgba(0, 0, 0, 0.5)'}\">\r\n <div class=\"modal-content\" [ngStyle]=\"{'background-color': backgroundColor, 'top': position.includes('top') ? '10px' : 'auto', 'bottom': position.includes('bottom') ? '10px' : 'auto', 'left': position.includes('Left') ? '10px' : 'auto', 'right': position.includes('Right') ? '10px' : 'auto'}\">\r\n <div class=\"modal-header\">\r\n <div>\r\n Participants <span class=\"badge\">{{ participantsCounter_s }}</span>\r\n </div>\r\n <div class=\"close-icon\" (click)=\"handleClose()\">\r\n <fa-icon [icon]=\"faTimes\" size=\"xl\"></fa-icon>\r\n </div>\r\n </div>\r\n <div class=\"modal-body\">\r\n <input type=\"text\" class=\"filter-input\" placeholder=\"Search ...\" (input)=\"handleFilterChange($event)\">\r\n <ng-container *ngIf=\"parameters.participants\">\r\n <ng-container *ngIf=\"canShowParticipantList()\">\r\n <app-participant-list\r\n [participants]=\"participant_s\"\r\n [isBroadcast]=\"parameters.eventType === 'broadcast'\"\r\n [onMuteParticipants]=\"onMuteParticipants\"\r\n [onMessageParticipants]=\"onMessageParticipants\"\r\n [onRemoveParticipants]=\"onRemoveParticipants\"\r\n [socket]=\"parameters.socket\"\r\n [coHostResponsibility]=\"parameters.coHostResponsibility\"\r\n [coHost]=\"parameters.coHost\"\r\n [member]=\"parameters.member\"\r\n [islevel]=\"parameters.islevel\"\r\n [roomName]=\"parameters.roomName\"\r\n [updateIsMessagesModalVisible]=\"parameters.updateIsMessagesModalVisible\"\r\n [updateStartDirectMessage]=\"parameters.updateStartDirectMessage\"\r\n [updateDirectMessageDetails]=\"parameters.updateDirectMessageDetails\"\r\n [updateParticipants]=\"parameters.updateParticipants\"\r\n >\r\n </app-participant-list>\r\n </ng-container>\r\n <ng-container *ngIf=\"!canShowParticipantList()\">\r\n <app-participant-list-others\r\n [participants]=\"participant_s\"\r\n [coHost]=\"parameters.coHost\"\r\n [member]=\"parameters.member\"\r\n >\r\n </app-participant-list-others>\r\n </ng-container>\r\n </ng-container>\r\n <div *ngIf=\"!parameters.participants\">No participants</div>\r\n </div>\r\n </div>\r\n</div>\r\n", styles: [".modal-container{position:fixed;top:0;left:0;width:100%;height:100%;display:block;z-index:999}.modal-content{position:fixed;border-radius:10px;padding:10px;width:80%;max-width:400px;max-height:75%;overflow-y:auto}.modal-header{display:flex;justify-content:space-between;align-items:center}.badge{background-color:#fff;color:#000;border-radius:10px;padding:5px}.close-icon{padding:5px;cursor:pointer}.modal-body{margin-top:10px}.filter-input{width:90%;padding:10px;border-radius:5px;border:1px solid #000;font-size:16px;margin-bottom:10px}\n"] }]
79
- }], ctorParameters: () => [{ type: i1.MuteParticipants }, { type: i2.MessageParticipants }, { type: i3.RemoveParticipants }], propDecorators: { isParticipantsModalVisible: [{
80
- type: Input
81
- }], onParticipantsClose: [{
82
- type: Input
83
- }], onParticipantsFilterChange: [{
84
- type: Input
85
- }], participantsCounter: [{
86
- type: Input
87
- }], onMuteParticipants: [{
88
- type: Input
89
- }], onMessageParticipants: [{
90
- type: Input
91
- }], onRemoveParticipants: [{
92
- type: Input
93
- }], parameters: [{
94
- type: Input
95
- }], position: [{
96
- type: Input
97
- }], backgroundColor: [{
98
- type: Input
99
- }] } });
100
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFydGljaXBhbnRzLW1vZGFsLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL21lZGlhc2Z1LWFuZ3VsYXIvc3JjL2xpYi9jb21wb25lbnRzL3BhcnRpY2lwYW50cy1jb21wb25lbnRzL3BhcnRpY2lwYW50cy1tb2RhbC9wYXJ0aWNpcGFudHMtbW9kYWwuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbWVkaWFzZnUtYW5ndWxhci9zcmMvbGliL2NvbXBvbmVudHMvcGFydGljaXBhbnRzLWNvbXBvbmVudHMvcGFydGljaXBhbnRzLW1vZGFsL3BhcnRpY2lwYW50cy1tb2RhbC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBb0MsTUFBTSxlQUFlLENBQUM7QUFDbkYsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUU1RCxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sZ0RBQWdELENBQUM7QUFDakYsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sOERBQThELENBQUM7Ozs7Ozs7QUE4RHJHLE1BQU0sT0FBTyxpQkFBaUI7SUFtQmxCO0lBQ0E7SUFDQTtJQXBCRCwwQkFBMEIsR0FBRyxLQUFLLENBQUM7SUFDbkMsbUJBQW1CLENBQWM7SUFDakMsMEJBQTBCLENBQTRCO0lBQ3RELG1CQUFtQixHQUFHLENBQUMsQ0FBQztJQUN4QixrQkFBa0IsQ0FBdUQ7SUFDekUscUJBQXFCLENBQWlEO0lBQ3RFLG9CQUFvQixDQUF5RDtJQUM3RSxVQUFVLEdBQWdDLEVBQWlDLENBQUM7SUFDNUUsUUFBUSxH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QWlCLDJoQkNwRTlCLGsrRUE4Q0EscWxCRGtCWSxZQUFZLHVOQUFFLGlCQUFpQiw2UEFBRSxlQUFlLDJYQUFFLHFCQUFxQjs7MkZBSXRFLGlCQUFpQjtrQkFQN0IsU0FBUzsrQkFDRSx3QkFBd0IsY0FDdEIsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLGlCQUFpQixFQUFFLGVBQWUsRUFBRSxxQkFBcUIsQ0FBQzt3SkFLekUsMEJBQTBCO3NCQUFsQyxLQUFLO2dCQUNHLG1CQUFtQjtzQkFBM0IsS0FBSztnQkFDRywwQkFBMEI7c0JBQWxDLEtBQUs7Z0JBQ0csbUJBQW1CO3NCQUEzQixLQUFLO2dCQUNHLGtCQUFrQjtzQkFBMUIsS0FBSztnQkFDRyxxQkFBcUI7c0JBQTdCLEtBQUs7Z0JBQ0csb0JBQW9CO3NCQUE1QixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxlQUFlO3NCQUF2QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0LCBPbkNoYW5nZXMsIFNpbXBsZUNoYW5nZXMgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBGb250QXdlc29tZU1vZHVsZSB9IGZyb20gJ0Bmb3J0YXdlc29tZS9hbmd1bGFyLWZvbnRhd2Vzb21lJztcbmltcG9ydCB7IGZhVGltZXMgfSBmcm9tICdAZm9ydGF3ZXNvbWUvZnJlZS1zb2xpZC1zdmctaWNvbnMnO1xuaW1wb3J0IHsgQ29Ib3N0UmVzcG9uc2liaWxpdHksIEV2ZW50VHlwZSwgUGFydGljaXBhbnQsIFNob3dBbGVydCB9IGZyb20gJy4uLy4uLy4uL0B0eXBlcy90eXBlcyc7XG5pbXBvcnQgeyBQYXJ0aWNpcGFudExpc3QgfSBmcm9tICcuLi9wYXJ0aWNpcGFudC1saXN0L3BhcnRpY2lwYW50LWxpc3QuY29tcG9uZW50JztcbmltcG9ydCB7IFBhcnRpY2lwYW50TGlzdE90aGVycyB9IGZyb20gJy4uL3BhcnRpY2lwYW50LWxpc3Qtb3RoZXJzL3BhcnRpY2lwYW50LWxpc3Qtb3RoZXJzLmNvbXBvbmVudCc7XG5pbXBvcnQge1xuICBNdXRlUGFydGljaXBhbnRzLFxuICBNdXRlUGFydGljaXBhbnRzT3B0aW9ucyxcbn0gZnJvbSAnLi4vLi4vLi4vbWV0aG9kcy9wYXJ0aWNpcGFudHMtbWV0aG9kcy9tdXRlLXBhcnRpY2lwYW50cy5zZXJ2aWNlJztcbmltcG9ydCB7XG4gIE1lc3NhZ2VQYXJ0aWNpcGFudHMsXG4gIE1lc3NhZ2VQYXJ0aWNpcGFudHNPcHRpb25zLFxufSBmcm9tICcuLi8uLi8uLi9tZXRob2RzL3BhcnRpY2lwYW50cy1tZXRob2RzL21lc3NhZ2UtcGFydGljaXBhbnRzLnNlcnZpY2UnO1xuaW1wb3J0IHtcbiAgUmVtb3ZlUGFydGljaXBhbnRzLFxuICBSZW1vdmVQYXJ0aWNpcGFudHNPcHRpb25zLFxufSBmcm9tICcuLi8uLi8uLi9tZXRob2RzL3BhcnRpY2lwYW50cy1tZXRob2RzL3JlbW92ZS1wYXJ0aWNpcGFudHMuc2VydmljZSc7XG5pbXBvcnQgeyBTb2NrZXQgfSBmcm9tICdzb2NrZXQuaW8tY2xpZW50JztcblxuZXhwb3J0IGludGVyZmFjZSBQYXJ0aWNpcGFudHNNb2RhbFBhcmFtZXRlcnMge1xuICBwb3NpdGlvbj86IHN0cmluZztcbiAgYmFja2dyb3VuZENvbG9yPzogc3RyaW5nO1xuICBjb0hvc3RSZXNwb25zaWJpbGl0eTogQ29Ib3N0UmVzcG9uc2liaWxpdHlbXTtcbiAgY29Ib3N0OiBzdHJpbmc7XG4gIG1lbWJlcjogc3RyaW5nO1xuICBpc2xldmVsOiBzdHJpbmc7XG4gIHBhcnRpY2lwYW50czogUGFydGljaXBhbnRbXTtcbiAgZXZlbnRUeXBlOiBFdmVudFR5cGU7XG4gIGZpbHRlcmVkUGFydGljaXBhbnRzOiBQYXJ0aWNpcGFudFtdO1xuICBzb2NrZXQ6IFNvY2tldDtcbiAgc2hvd0FsZXJ0PzogU2hvd0FsZXJ0O1xuICByb29tTmFtZTogc3RyaW5nO1xuICB1cGRhdGVJc01lc3NhZ2VzTW9kYWxWaXNpYmxlOiAoaXNWaXNpYmxlOiBib29sZWFuKSA9PiB2b2lkO1xuICB1cGRhdGVEaXJlY3RNZXNzYWdlRGV0YWlsczogKHBhcnRpY2lwYW50OiBQYXJ0aWNpcGFudCB8IG51bGwpID0+IHZvaWQ7XG4gIHVwZGF0ZVN0YXJ0RGlyZWN0TWVzc2FnZTogKHN0YXJ0OiBib29sZWFuKSA9PiB2b2lkO1xuICB1cGRhdGVQYXJ0aWNpcGFudHM6IChwYXJ0aWNpcGFudHM6IFBhcnRpY2lwYW50W10pID0+IHZvaWQ7XG5cbiAgLy9tZWRpYXNmdSBmdW5jdGlvbnNcbiAgZ2V0VXBkYXRlZEFsbFBhcmFtczogKCkgPT4gUGFydGljaXBhbnRzTW9kYWxQYXJhbWV0ZXJzO1xuICBba2V5OiBzdHJpbmddOiBhbnk7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgUGFydGljaXBhbnRzTW9kYWxPcHRpb25zIHtcbiAgaXNQYXJ0aWNpcGFudHNNb2RhbFZpc2libGU6IGJvb2xlYW47XG4gIG9uUGFydGljaXBhbnRzQ2xvc2U6ICgpID0+IHZvaWQ7XG4gIG9uUGFydGljaXBhbnRzRmlsdGVyQ2hhbmdlOiAoZmlsdGVyOiBzdHJpbmcpID0+IHZvaWQ7XG4gIHBhcnRpY2lwYW50c0NvdW50ZXI6IG51bWJlcjtcbiAgb25NdXRlUGFydGljaXBhbnRzPzogdHlwZW9mIE11dGVQYXJ0aWNpcGFudHM7XG4gIG9uTWVzc2FnZVBhcnRpY2lwYW50cz86IHR5cGVvZiBNZXNzYWdlUGFydGljaXBhbnRzO1xuICBvblJlbW92ZVBhcnRpY2lwYW50cz86IHR5cGVvZiBSZW1vdmVQYXJ0aWNpcGFudHM7XG4gIFJlbmRlclBhcnRpY2lwYW50TGlzdD86IEhUTUxFbGVtZW50O1xuICBSZW5kZXJQYXJ0aWNpcGFudExpc3RPdGhlcnM/OiBIVE1MRWxlbWVudDtcbiAgcGFyYW1ldGVyczogUGFydGljaXBhbnRzTW9kYWxQYXJhbWV0ZXJzO1xuICBiYWNrZ3JvdW5kQ29sb3I/OiBzdHJpbmc7XG4gIHBvc2l0aW9uPzogc3RyaW5nO1xufVxuXG5leHBvcnQgdHlwZSBQYXJ0aWNpcGFudHNNb2RhbFR5cGUgPSAob3B0aW9uczogUGFydGljaXBhbnRzTW9kYWxPcHRpb25zKSA9PiBIVE1MRWxlbWVudDtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLXBhcnRpY2lwYW50cy1tb2RhbCcsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEZvbnRBd2Vzb21lTW9kdWxlLCBQYXJ0aWNpcGFudExpc3QsIFBhcnRpY2lwYW50TGlzdE90aGVyc10sXG4gIHRlbXBsYXRlVXJsOiAnLi9wYXJ0aWNpcGFudHMtbW9kYWwuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9wYXJ0aWNpcGFudHMtbW9kYWwuY29tcG9uZW50LmNzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBQYXJ0aWNpcGFudHNNb2RhbCBpbXBsZW1lbnRzIE9uSW5pdCwgT25DaGFuZ2VzIHtcbiAgQElucHV0KCkgaXNQYXJ0aWNpcGFudHNNb2RhbFZpc2libGUgPSBmYWxzZTtcbiAgQElucHV0KCkgb25QYXJ0aWNpcGFudHNDbG9zZSE6ICgpID0+IHZvaWQ7XG4gIEBJbnB1dCgpIG9uUGFydGljaXBhbnRzRmlsdGVyQ2hhbmdlITogKGZpbHRlcjogc3RyaW5nKSA9PiB2b2lkO1xuICBASW5wdXQoKSBwYXJ0aWNpcGFudHNDb3VudGVyID0gMDtcbiAgQElucHV0KCkgb25NdXRlUGFydGljaXBhbnRzITogKG9wdGlvbnM6IE11dGVQYXJ0aWNpcGFudHNPcHRpb25zKSA9PiBQcm9taXNlPHZvaWQ+O1xuICBASW5wdXQoKSBvbk1lc3NhZ2VQYXJ0aWNpcGFudHMhOiAob3B0aW9uczogTWVzc2FnZVBhcnRpY2lwYW50c09wdGlvbnMpID0+IHZvaWQ7XG4gIEBJbnB1dCgpIG9uUmVtb3ZlUGFydGljaXBhbnRzITogKG9wdGlvbnM6IFJlbW92ZVBhcnRpY2lwYW50c09wdGlvbnMpID0+IFByb21pc2U8dm9pZD47XG4gIEBJbnB1dCgpIHBhcmFtZXRlcnM6IFBhcnRpY2lwYW50c01vZGFsUGFyYW1ldGVycyA9IHt9IGFzIFBhcnRpY2lwYW50c01vZGFsUGFyYW1ldGVycztcbiAgQElucHV0KCkgcG9zaXRpb24gPSAndG9wUmlnaHQnO1xuICBASW5wdXQoKSBiYWNrZ3JvdW5kQ29sb3IgPSAnIzgzYzBlOSc7XG5cbiAgcGFydGljaXBhbnRfczogUGFydGljaXBhbnRbXSA9IFtdO1xuICBwYXJ0aWNpcGFudHNDb3VudGVyX3MgPSAwO1xuICByZVJlbmRlciA9IGZhbHNlO1xuXG4gIGZhVGltZXMgPSBmYVRpbWVzO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgbXV0ZVBhcnRpY2lwYW50c1NlcnZpY2U6IE11dGVQYXJ0aWNpcGFudHMsXG4gICAgcHJpdmF0ZSBtZXNzYWdlUGFydGljaXBhbnRzU2VydmljZTogTWVzc2FnZVBhcnRpY2lwYW50cyxcbiAgICBwcml2YXRlIHJlbW92ZVBhcnRpY2lwYW50c1NlcnZpY2U6IFJlbW92ZVBhcnRpY2lwYW50cyxcbiAgKSB7fVxuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMudXBkYXRlUGFydGljaXBhbnRzRGF0YSgpO1xuICAgIGlmICghdGhpcy5vbk11dGVQYXJ0aWNpcGFudHMpIHtcbiAgICAgIHRoaXMub25NdXRlUGFydGljaXBhbnRzID0gdGhpcy5tdXRlUGFydGljaXBhbnRzU2VydmljZS5tdXRlUGFydGljaXBhbnRzLmJpbmQoXG4gICAgICAgIHRoaXMubXV0ZVBhcnRpY2lwYW50c1NlcnZpY2UsXG4gICAgICApO1xuICAgIH1cbiAgICBpZiAoIXRoaXMub25NZXNzYWdlUGFydGljaXBhbnRzKSB7XG4gICAgICB0aGlzLm9uTWVzc2FnZVBhcnRpY2lwYW50cyA9IHRoaXMubWVzc2FnZVBhcnRpY2lwYW50c1NlcnZpY2UubWVzc2FnZVBhcnRpY2lwYW50cy5iaW5kKFxuICAgICAgICB0aGlzLm1lc3NhZ2VQYXJ0aWNpcGFudHNTZXJ2aWNlLFxuICAgICAgKTtcbiAgICB9XG4gICAgaWYgKCF0aGlzLm9uUmVtb3ZlUGFydGljaXBhbnRzKSB7XG4gICAgICB0aGlzLm9uUmVtb3ZlUGFydGljaXBhbnRzID0gdGhpcy5yZW1vdmVQYXJ0aWNpcGFudHNTZXJ2aWNlLnJlbW92ZVBhcnRpY2lwYW50cy5iaW5kKFxuICAgICAgICB0aGlzLnJlbW92ZVBhcnRpY2lwYW50c1NlcnZpY2UsXG4gICAgICApO1xuICAgIH1cbiAgfVxuXG4gIG5nT25DaGFuZ2VzKGNoYW5nZXM6IFNpbXBsZUNoYW5nZXMpIHtcbiAgICBpZiAoY2hhbmdlc1sncGFyYW1ldGVycyddIHx8IGNoYW5nZXNbJ3BhcnRpY2lwYW50c0NvdW50ZXInXSkge1xuICAgICAgdGhpcy51cGRhdGVQYXJ0aWNpcGFudHNEYXRhKCk7XG4gICAgfVxuICB9XG5cbiAgdXBkYXRlUGFydGljaXBhbnRzRGF0YSgpIHtcbiAgICBsZXQgeyBnZXRVcGRhdGVkQWxsUGFyYW1zIH0gPSB0aGlzLnBhcmFtZXRlcnM7XG4gICAgdGhpcy5wYXJhbWV0ZXJzID0gZ2V0VXBkYXRlZEFsbFBhcmFtcygpO1xuICAgIHRoaXMucGFydGljaXBhbnRfcyA9IHRoaXMucGFyYW1ldGVycy5maWx0ZXJlZFBhcnRpY2lwYW50cztcbiAgICB0aGlzLnBhcnRpY2lwYW50c0NvdW50ZXJfcyA9IHRoaXMucGFyYW1ldGVycy5maWx0ZXJlZFBhcnRpY2lwYW50cy5sZW5ndGg7XG4gIH1cblxuICBoYW5kbGVGaWx0ZXJDaGFuZ2UoZXZlbnQ6IEV2ZW50KSB7XG4gICAgY29uc3QgaW5wdXRFbGVtZW50ID0gZXZlbnQudGFyZ2V0IGFzIEhUTUxJbnB1dEVsZW1lbnQ7XG4gICAgY29uc3QgZmlsdGVyVmFsdWUgPSBpbnB1dEVsZW1lbnQudmFsdWU7XG4gICAgdGhpcy5vblBhcnRpY2lwYW50c0ZpbHRlckNoYW5nZShmaWx0ZXJWYWx1ZSk7XG4gICAgdGhpcy5yZVJlbmRlciA9ICF0aGlzLnJlUmVuZGVyO1xuICB9XG5cbiAgaGFuZGxlQ2xvc2UoKSB7XG4gICAgdGhpcy5vblBhcnRpY2lwYW50c0Nsb3NlKCk7XG4gIH1cblxuICBjYW5TaG93UGFydGljaXBhbnRMaXN0KCkge1xuICAgIGNvbnN0IHBhcnRpY2lwYW50c1ZhbHVlID0gdGhpcy5wYXJhbWV0ZXJzLmNvSG9zdFJlc3BvbnNpYmlsaXR5Py5maW5kKFxuICAgICAgKGl0ZW06IGFueSkgPT4gaXRlbS5uYW1lID09PSAncGFydGljaXBhbnRzJyxcbiAgICApPy52YWx1ZTtcbiAgICByZXR1cm4gKFxuICAgICAgdGhpcy5wYXJhbWV0ZXJzLmlzbGV2ZWwgPT09ICcyJyB8fFxuICAgICAgKHRoaXMucGFyYW1ldGVycy5jb0hvc3QgPT09IHRoaXMucGFyYW1ldGVycy5tZW1iZXIgJiYgcGFydGljaXBhbnRzVmFsdWUgPT09IHRydWUpXG4gICAgKTtcbiAgfVxufVxuIiwiPGRpdiAqbmdJZj1cImlzUGFydGljaXBhbnRzTW9kYWxWaXNpYmxlXCIgY2xhc3M9XCJtb2RhbC1jb250YWluZXJcIiBbbmdTdHlsZV09XCJ7J2JhY2tncm91bmQtY29sb3InOiAncmdiYSgwLCAwLCAwLCAwLjUpJ31cIj5cclxuICA8ZGl2IGNsYXNzPVwibW9kYWwtY29udGVudFwiIFtuZ1N0eWxlXT1cInsnYmFja2dyb3VuZC1jb2xvcic6IGJhY2tncm91bmRDb2xvciwgJ3RvcCc6IHBvc2l0aW9uLmluY2x1ZGVzKCd0b3AnKSA/ICcxMHB4JyA6ICdhdXRvJywgJ2JvdHRvbSc6IHBvc2l0aW9uLmluY2x1ZGVzKCdib3R0b20nKSA/ICcxMHB4JyA6ICdhdXRvJywgJ2xlZnQnOiBwb3NpdGlvbi5pbmNsdWRlcygnTGVmdCcpID8gJzEwcHgnIDogJ2F1dG8nLCAncmlnaHQnOiBwb3NpdGlvbi5pbmNsdWRlcygnUmlnaHQnKSA/ICcxMHB4JyA6ICdhdXRvJ31cIj5cclxuICAgIDxkaXYgY2xhc3M9XCJtb2RhbC1oZWFkZXJcIj5cclxuICAgICAgPGRpdj5cclxuICAgICAgICBQYXJ0aWNpcGFudHMgPHNwYW4gY2xhc3M9XCJiYWRnZVwiPnt7IHBhcnRpY2lwYW50c0NvdW50ZXJfcyB9fTwvc3Bhbj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJjbG9zZS1pY29uXCIgKGNsaWNrKT1cImhhbmRsZUNsb3NlKClcIj5cclxuICAgICAgICA8ZmEtaWNvbiBbaWNvbl09XCJmYVRpbWVzXCIgc2l6ZT1cInhsXCI+PC9mYS1pY29uPlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cIm1vZGFsLWJvZHlcIj5cclxuICAgICAgPGlucHV0IHR5cGU9XCJ0ZXh0XCIgY2xhc3M9XCJmaWx0ZXItaW5wdXRcIiBwbGFjZWhvbGRlcj1cIlNlYXJjaCAuLi5cIiAoaW5wdXQpPVwiaGFuZGxlRmlsdGVyQ2hhbmdlKCRldmVudClcIj5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInBhcmFtZXRlcnMucGFydGljaXBhbnRzXCI+XHJcbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImNhblNob3dQYXJ0aWNpcGFudExpc3QoKVwiPlxyXG4gICAgICAgICAgPGFwcC1wYXJ0aWNpcGFudC1saXN0XHJcbiAgICAgICAgICAgIFtwYXJ0aWNpcGFudHNdPVwicGFydGljaXBhbnRfc1wiXHJcbiAgICAgICAgICAgIFtpc0Jyb2FkY2FzdF09XCJwYXJhbWV0ZXJzLmV2ZW50VHlwZSA9PT0gJ2Jyb2FkY2FzdCdcIlxyXG4gICAgICAgICAgICBbb25NdXRlUGFydGljaXBhbnRzXT1cIm9uTXV0ZVBhcnRpY2lwYW50c1wiXHJcbiAgICAgICAgICAgIFtvbk1lc3NhZ2VQYXJ0aWNpcGFudHNdPVwib25NZXNzYWdlUGFydGljaXBhbnRzXCJcclxuICAgICAgICAgICAgW29uUmVtb3ZlUGFydGljaXBhbnRzXT1cIm9uUmVtb3ZlUGFydGljaXBhbnRzXCJcclxuICAgICAgICAgICAgW3NvY2tldF09XCJwYXJhbWV0ZXJzLnNvY2tldFwiXHJcbiAgICAgICAgICAgIFtjb0hvc3RSZXNwb25zaWJpbGl0eV09XCJwYXJhbWV0ZXJzLmNvSG9zdFJlc3BvbnNpYmlsaXR5XCJcclxuICAgICAgICAgICAgW2NvSG9zdF09XCJwYXJhbWV0ZXJzLmNvSG9zdFwiXHJcbiAgICAgICAgICAgIFttZW1iZXJdPVwicGFyYW1ldGVycy5tZW1iZXJcIlxyXG4gICAgICAgICAgICBbaXNsZXZlbF09XCJwYXJhbWV0ZXJzLmlzbGV2ZWxcIlxyXG4gICAgICAgICAgICBbcm9vbU5hbWVdPVwicGFyYW1ldGVycy5yb29tTmFtZVwiXHJcbiAgICAgICAgICAgIFt1cGRhdGVJc01lc3NhZ2VzTW9kYWxWaXNpYmxlXT1cInBhcmFtZXRlcnMudXBkYXRlSXNNZXNzYWdlc01vZGFsVmlzaWJsZVwiXHJcbiAgICAgICAgICAgIFt1cGRhdGVTdGFydERpcmVjdE1lc3NhZ2VdPVwicGFyYW1ldGVycy51cGRhdGVTdGFydERpcmVjdE1lc3NhZ2VcIlxyXG4gICAgICAgICAgICBbdXBkYXRlRGlyZWN0TWVzc2FnZURldGFpbHNdPVwicGFyYW1ldGVycy51cGRhdGVEaXJlY3RNZXNzYWdlRGV0YWlsc1wiXHJcbiAgICAgICAgICAgIFt1cGRhdGVQYXJ0aWNpcGFudHNdPVwicGFyYW1ldGVycy51cGRhdGVQYXJ0aWNpcGFudHNcIlxyXG4gICAgICAgICAgPlxyXG4gICAgICAgICAgPC9hcHAtcGFydGljaXBhbnQtbGlzdD5cclxuICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiIWNhblNob3dQYXJ0aWNpcGFudExpc3QoKVwiPlxyXG4gICAgICAgICAgPGFwcC1wYXJ0aWNpcGFudC1saXN0LW90aGVyc1xyXG4gICAgICAgICAgICBbcGFydGljaXBhbnRzXT1cInBhcnRpY2lwYW50X3NcIlxyXG4gICAgICAgICAgICBbY29Ib3N0XT1cInBhcmFtZXRlcnMuY29Ib3N0XCJcclxuICAgICAgICAgICAgW21lbWJlcl09XCJwYXJhbWV0ZXJzLm1lbWJlclwiXHJcbiAgICAgICAgICAgID5cclxuICAgICAgICAgIDwvYXBwLXBhcnRpY2lwYW50LWxpc3Qtb3RoZXJzPlxyXG4gICAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgPGRpdiAqbmdJZj1cIiFwYXJhbWV0ZXJzLnBhcnRpY2lwYW50c1wiPk5vIHBhcnRpY2lwYW50czwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=