fcr-ui-scene 3.8.1-alpha → 3.8.1

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 (226) hide show
  1. package/lib/base.js +2 -2
  2. package/lib/creator/provider-initializer.browser.js +8 -7
  3. package/lib/creator/provider-initializer.electron.js +8 -8
  4. package/lib/electron/asar-validation.d.ts +12 -0
  5. package/lib/electron/asar-validation.js +115 -0
  6. package/lib/electron/bootstrap-sdk.js +20 -12
  7. package/lib/electron/default-options.js +2 -1
  8. package/lib/electron/env.d.ts +1 -0
  9. package/lib/electron/env.js +6 -4
  10. package/lib/electron/exit-codes.js +11 -11
  11. package/lib/electron/hang-detection/manager.js +4 -4
  12. package/lib/electron/ipc-protocol.js +12 -12
  13. package/lib/electron/process-manager/event-manager.js +30 -30
  14. package/lib/electron/process-manager/index.js +88 -88
  15. package/lib/electron/process-manager/state-manager.js +57 -57
  16. package/lib/electron/process-manager/types.js +16 -16
  17. package/lib/electron/sdk-helper.js +3 -3
  18. package/lib/electron/window-proxy/browser-window-proxy.js +13 -13
  19. package/lib/electron/window-proxy/main-process-handler.js +14 -14
  20. package/lib/fragments/annotation/style.css +9 -9
  21. package/lib/fragments/annotation/toolbar/components/item/style.css +45 -45
  22. package/lib/fragments/annotation/toolbar/components/panel/style.css +24 -24
  23. package/lib/fragments/annotation/toolbar/components/tips/style.css +19 -19
  24. package/lib/fragments/annotation/toolbar/style.css +55 -55
  25. package/lib/fragments/whiteboard/cursor.css +77 -77
  26. package/lib/fragments/whiteboard/style.css +4 -4
  27. package/lib/global.css +62 -62
  28. package/lib/global.d.ts +27 -27
  29. package/lib/index.js +9 -1
  30. package/lib/modules/action-bar/components/chat/index.css +88 -88
  31. package/lib/modules/action-bar/components/more/index.css +114 -114
  32. package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.css +58 -58
  33. package/lib/modules/action-bar/components/notification-bar/components/virtual-image/index.css +56 -56
  34. package/lib/modules/action-bar/components/notification-bar/index.css +74 -74
  35. package/lib/modules/action-bar/components/participants/index.css +21 -21
  36. package/lib/modules/action-bar/components/record/index.css +39 -39
  37. package/lib/modules/action-bar/components/trigger-output-language/index.css +86 -86
  38. package/lib/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +22 -22
  39. package/lib/modules/action-bar/index.css +358 -358
  40. package/lib/modules/action-bar/main-scene/store.base.d.ts +3 -2
  41. package/lib/modules/action-bar/main-scene/store.base.js +29 -57
  42. package/lib/modules/action-bar/main-scene/view.js +3 -3
  43. package/lib/modules/audio-stream/index.js +3 -3
  44. package/lib/modules/caption/draggable-container/index.css +10 -10
  45. package/lib/modules/caption/view.css +158 -158
  46. package/lib/modules/chat/components/chat-bar/index.css +89 -89
  47. package/lib/modules/chat/components/chat-select/index.css +185 -185
  48. package/lib/modules/chat/index.css +124 -124
  49. package/lib/modules/components/apps/app-item/index.css +49 -49
  50. package/lib/modules/components/apps/index.css +9 -9
  51. package/lib/modules/components/caption-menu/index.css +58 -58
  52. package/lib/modules/components/caption-menu/steps/index.css +73 -73
  53. package/lib/modules/components/control-bar/components/loading/index.css +76 -76
  54. package/lib/modules/components/control-bar/components/progress/style.css +51 -51
  55. package/lib/modules/components/control-bar/components/switch-theme/index.css +101 -101
  56. package/lib/modules/components/control-bar/index.css +99 -99
  57. package/lib/modules/components/device-control/index.css +177 -177
  58. package/lib/modules/components/leave-meeting/components/index.css +151 -151
  59. package/lib/modules/components/leave-meeting/style.css +9 -9
  60. package/lib/modules/components/member-window/components/member-actions/store.js +22 -22
  61. package/lib/modules/components/member-window/index.css +502 -502
  62. package/lib/modules/components/security-menu/index.css +42 -42
  63. package/lib/modules/components/tab-frame/index.css +40 -40
  64. package/lib/modules/components/toolbar/components/item/style.css +94 -94
  65. package/lib/modules/components/toolbar/components/panel/style.css +86 -86
  66. package/lib/modules/components/toolbar/style.css +85 -85
  67. package/lib/modules/connection-gateway/components/computer/index.css +12 -12
  68. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +36 -36
  69. package/lib/modules/connection-gateway/components/phone/components/calling/index.css +72 -72
  70. package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +10 -10
  71. package/lib/modules/connection-gateway/components/phone/components/useing/index.css +46 -46
  72. package/lib/modules/connection-gateway/components/phone/index.css +49 -49
  73. package/lib/modules/connection-gateway/index.css +6 -6
  74. package/lib/modules/control-bar/components/meeting-details/index.css +133 -133
  75. package/lib/modules/control-bar/components/more-actions/index.css +103 -103
  76. package/lib/modules/control-bar/components/share-audio/index.css +90 -90
  77. package/lib/modules/control-bar/components/share-state-nav/index.css +79 -79
  78. package/lib/modules/control-bar/index.css +340 -340
  79. package/lib/modules/control-bar/index.js +4 -4
  80. package/lib/modules/device-pretest/index.css +123 -123
  81. package/lib/modules/dialog/components/confirm/index.css +24 -24
  82. package/lib/modules/dialog/components/dialog-container/index.css +112 -112
  83. package/lib/modules/dialog/dialogs/confirm/index.css +24 -24
  84. package/lib/modules/dialog/dialogs/connection-gateway/tabs.d.ts +1 -0
  85. package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +27 -14
  86. package/lib/modules/dialog/dialogs/device-setting/index.css +26 -26
  87. package/lib/modules/dialog/dialogs/interpreter/index.css +30 -30
  88. package/lib/modules/dialog/dialogs/mute-all/index.css +20 -20
  89. package/lib/modules/dialog/dialogs/system-preference/index.css +52 -52
  90. package/lib/modules/dialog/dialogs/widget/index.js +4 -4
  91. package/lib/modules/dialog/index.css +56 -56
  92. package/lib/modules/event-toast/index.css +25 -25
  93. package/lib/modules/interpreter/action/add-btn/index.css +4 -4
  94. package/lib/modules/interpreter/action/delete-btn/index.css +14 -14
  95. package/lib/modules/interpreter/action/switch-btn/index.css +3 -3
  96. package/lib/modules/interpreter/dialog-content/index.css +33 -33
  97. package/lib/modules/interpreter/footer/index.css +11 -11
  98. package/lib/modules/interpreter/index.css +4 -4
  99. package/lib/modules/interpreter/interpreter-list/index.css +8 -8
  100. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.css +46 -46
  101. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.css +46 -46
  102. package/lib/modules/interpreter/interpreter-list/interpreter-item/index.css +32 -32
  103. package/lib/modules/interpreter/loading-wrapper/index.css +53 -53
  104. package/lib/modules/invite/components/pstn-invite.js +1 -1
  105. package/lib/modules/invite/components/voip-invite.css +26 -26
  106. package/lib/modules/invite/index.css +331 -331
  107. package/lib/modules/layout/components/CommonVideoRenderer.js +4 -4
  108. package/lib/modules/layout/components/index.css +653 -653
  109. package/lib/modules/layout/index.css +59 -59
  110. package/lib/modules/layout/store.base.js +5 -5
  111. package/lib/modules/layout/type.js +5 -5
  112. package/lib/modules/notification/index.css +77 -77
  113. package/lib/modules/notification/interpreter-status/index.css +76 -76
  114. package/lib/modules/participant/components/confirm-input/index.css +4 -4
  115. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +83 -83
  116. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +87 -87
  117. package/lib/modules/participant/index.css +102 -102
  118. package/lib/modules/participant/store.base.js +175 -175
  119. package/lib/modules/pc-audio-connect/index.css +12 -12
  120. package/lib/modules/pc-audio-connect/main-scene/index.d.ts +2 -1
  121. package/lib/modules/pc-audio-connect/main-scene/index.js +5 -4
  122. package/lib/modules/pc-audio-connect/main-scene/store.d.ts +3 -0
  123. package/lib/modules/pc-audio-connect/main-scene/store.js +44 -7
  124. package/lib/modules/phone-audio-connect/components/callinfo/index.css +36 -36
  125. package/lib/modules/phone-audio-connect/components/calling/index.css +72 -72
  126. package/lib/modules/phone-audio-connect/components/remeber/index.css +10 -10
  127. package/lib/modules/phone-audio-connect/components/useing/index.css +46 -46
  128. package/lib/modules/phone-audio-connect/index.css +56 -56
  129. package/lib/modules/secondary-window/store.js +7 -7
  130. package/lib/modules/setting/audio-settings/index.css +195 -195
  131. package/lib/modules/setting/audio-whiteList/audio-device-adaptation.js +14 -14
  132. package/lib/modules/setting/audio-whiteList/audio-whiteList-manager.js +6 -6
  133. package/lib/modules/setting/caption_and_transcribing/index.css +88 -88
  134. package/lib/modules/setting/general-settings/index.css +41 -41
  135. package/lib/modules/setting/index.css +112 -112
  136. package/lib/modules/setting/minutes-settings/index.css +65 -65
  137. package/lib/modules/setting/state/index.css +207 -207
  138. package/lib/modules/setting/storage-settings/index.css +91 -91
  139. package/lib/modules/setting/translate-settings/index.css +47 -47
  140. package/lib/modules/setting/video-settings/index.css +357 -357
  141. package/lib/modules/share-screen/components/control-bar/index.css +75 -75
  142. package/lib/modules/share-screen/components/selection/index.css +73 -73
  143. package/lib/modules/share-screen/components/share-state-bar/index.css +76 -76
  144. package/lib/modules/share-screen/index.js +10 -10
  145. package/lib/modules/share-screen/store.base.js +2 -2
  146. package/lib/modules/state-bar/assets/fcr_grid_big.svg +3 -3
  147. package/lib/modules/state-bar/assets/fcr_listontop_big.svg +3 -3
  148. package/lib/modules/state-bar/index.css +706 -706
  149. package/lib/modules/state-bar/main-scene/store.base.js +2 -2
  150. package/lib/modules/state-bar/meeting-detail.css +137 -137
  151. package/lib/modules/state-bar/meeting-network-state.css +150 -150
  152. package/lib/modules/state-bar/waiting-scene/store.base.js +2 -2
  153. package/lib/modules/subtitles-history/components/settings/index.css +5 -5
  154. package/lib/modules/subtitles-history/index.css +129 -129
  155. package/lib/modules/video-window/components/members/index.css +51 -51
  156. package/lib/modules/video-window/components/speaking/index.css +86 -86
  157. package/lib/modules/video-window/components/topControl/index.css +35 -35
  158. package/lib/modules/video-window/index.css +21 -21
  159. package/lib/modules/video-window/popover-watcher.js +3 -3
  160. package/lib/modules/video-window/store.js +10 -10
  161. package/lib/modules/waiting-room-layout/index.css +96 -96
  162. package/lib/modules/whiteboard/components/control-bar/index.css +52 -52
  163. package/lib/modules/whiteboard/components/loading/index.css +76 -76
  164. package/lib/modules/whiteboard/components/multi-window/index.css +63 -63
  165. package/lib/modules/whiteboard/components/pagination/index.css +228 -228
  166. package/lib/modules/whiteboard/components/progress/style.css +51 -51
  167. package/lib/modules/whiteboard/components/switch-theme/index.css +99 -99
  168. package/lib/modules/whiteboard/components/toolbar/style.css +591 -591
  169. package/lib/modules/whiteboard/style.css +140 -140
  170. package/lib/modules/widget/index.css +9 -9
  171. package/lib/modules/widget/index.d.ts +1 -0
  172. package/lib/modules/widget/index.js +16 -1
  173. package/lib/modules/widget/store.base.d.ts +1 -0
  174. package/lib/modules/widget/store.base.js +12 -0
  175. package/lib/modules/widget/store.electron.js +5 -0
  176. package/lib/modules/widget/web-widget.d.ts +6 -1
  177. package/lib/modules/widget/web-widget.js +66 -22
  178. package/lib/object-manager.js +8 -8
  179. package/lib/plugins/module-dev-plugin.js +11 -11
  180. package/lib/providers/ability-provider.js +17 -17
  181. package/lib/providers/app-list-provider.d.ts +1 -1
  182. package/lib/providers/app-list-provider.js +9 -7
  183. package/lib/providers/board-share/bar-control/base.d.ts +1 -1
  184. package/lib/providers/board-share/bar-control/browser.d.ts +1 -1
  185. package/lib/providers/board-share/bar-control/electron.d.ts +1 -1
  186. package/lib/providers/board-share/struct.js +6 -6
  187. package/lib/providers/device-stream-provider.d.ts +1 -1
  188. package/lib/providers/dialog/provider.base.js +2 -2
  189. package/lib/providers/dialog/type.js +3 -3
  190. package/lib/providers/multi-display-provider.js +4 -4
  191. package/lib/providers/privilege-provider.js +7 -7
  192. package/lib/providers/screen-share/provider.base.js +23 -23
  193. package/lib/providers/screen-share/stream-state-sync.js +18 -18
  194. package/lib/providers/screen-share/struct.js +24 -24
  195. package/lib/providers/widget-provider.d.ts +13 -2
  196. package/lib/providers/widget-provider.js +60 -9
  197. package/lib/providers/window/main-window.js +2 -2
  198. package/lib/providers/window/provider.js +5 -5
  199. package/lib/providers/window/renderer-window.js +2 -2
  200. package/lib/scenes/main-scene.js +1 -0
  201. package/lib/schema.js +26 -26
  202. package/lib/shared-data/app-list-data.d.ts +0 -3
  203. package/lib/shared-data/app-list-data.js +3 -30
  204. package/lib/shared-data/meeting-time.js +8 -8
  205. package/lib/shared-data/setting.js +3 -3
  206. package/lib/shared-data/video-window.d.ts +1 -1
  207. package/lib/shared-data/video-window.js +1 -1
  208. package/lib/shared-data/widget-data.d.ts +0 -1
  209. package/lib/type.d.ts +1 -0
  210. package/lib/type.js +23 -21
  211. package/lib/ui-scene-switch.js +2 -2
  212. package/lib/utilities/constant.js +6 -6
  213. package/lib/utilities/renderer.js +8 -8
  214. package/lib/utilities/shared-storage.js +2 -2
  215. package/lib/utilities/tools.js +14 -14
  216. package/package.json +82 -77
  217. package/public/assets/fcr_chat_reddot.svg +5 -5
  218. package/public/assets/fcr_grid_big.svg +3 -3
  219. package/public/assets/fcr_leave2.svg +58 -58
  220. package/public/assets/fcr_listontop_big.svg +3 -3
  221. package/public/assets/step-gradient.svg +10 -10
  222. package/public/fragment.html +10 -10
  223. package/public/index.html +107 -183
  224. package/public/index.vite.html +109 -0
  225. package/public/js/init.js +75 -0
  226. package/public/{meeting-manager.js → js/meeting-manager.js} +405 -405
@@ -31,6 +31,7 @@ import { FcrUISharedLayoutDataSource } from '../../../shared-data/layout-data';
31
31
  import { FcrUIFacilityProvider } from '../../../providers/facility/type';
32
32
  import { FcrUIBoardShareProvider } from '../../../providers/board-share/type';
33
33
  import { FcrUISharedSettingDataSource } from '../../../shared-data/setting';
34
+ import { FcrUISharedWidgetDataSource } from '../../../shared-data/widget-data';
34
35
  export declare abstract class ActionBarMainSceneStoreBase implements FcrUIManagedObject {
35
36
  protected logger: import("agora-foundation/lib/logger").Logger;
36
37
  protected _roomProvider: FcrUIRoomProvider;
@@ -60,6 +61,7 @@ export declare abstract class ActionBarMainSceneStoreBase implements FcrUIManage
60
61
  protected _eventProvider: FcrUIEventProvider;
61
62
  protected _facilityProvider: FcrUIFacilityProvider;
62
63
  protected _sharedSettingDataSource: FcrUISharedSettingDataSource;
64
+ protected _sharedWidgetDataSource: FcrUISharedWidgetDataSource;
63
65
  private _userObserver;
64
66
  private _roomObserver;
65
67
  private _mainRoomObserver;
@@ -87,7 +89,7 @@ export declare abstract class ActionBarMainSceneStoreBase implements FcrUIManage
87
89
  get endMeetingPopoverOpened(): boolean;
88
90
  get checkedStateMap(): FcrSecurityCheckedStateType;
89
91
  setCheckedStateMap(val: FcrSecurityCheckedStateType): void;
90
- get registeredWidgetConfigs(): FcrUIWebWidgetConfig[];
92
+ get supportedWidgetConfigs(): FcrUIWebWidgetConfig[];
91
93
  get appItemOptions(): import("../../components/apps/types").AppItemProps[];
92
94
  get supportedLanguages(): FcrLanguage[];
93
95
  get users(): FcrUserInfo[];
@@ -232,6 +234,5 @@ export declare abstract class ActionBarMainSceneStoreBase implements FcrUIManage
232
234
  clickWidget(widgetConfig: FcrUIWebWidgetConfig): void;
233
235
  closeWidget(widgetId: string): void;
234
236
  private _handleApplistItemClick;
235
- private _checkIsWidgetSupportedRole;
236
237
  }
237
238
  export declare const ActionBarContext: import("react").Context<ActionBarMainSceneStoreBase>;
@@ -43,7 +43,6 @@ exports.ActionBarMainSceneStoreBase = exports.ActionBarContext = void 0;
43
43
  var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
44
44
  require("core-js/modules/es.array.find.js");
45
45
  require("core-js/modules/es.array.for-each.js");
46
- require("core-js/modules/es.array.includes.js");
47
46
  require("core-js/modules/es.array.iterator.js");
48
47
  require("core-js/modules/es.array.push.js");
49
48
  require("core-js/modules/es.array.reduce.js");
@@ -51,7 +50,6 @@ require("core-js/modules/es.array.some.js");
51
50
  require("core-js/modules/es.function.bind.js");
52
51
  require("core-js/modules/es.object.to-string.js");
53
52
  require("core-js/modules/es.object.values.js");
54
- require("core-js/modules/es.string.includes.js");
55
53
  require("core-js/modules/es.string.iterator.js");
56
54
  require("core-js/modules/es.weak-map.js");
57
55
  require("core-js/modules/esnext.iterator.constructor.js");
@@ -190,6 +188,7 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
190
188
  this._sharedSecurityDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_SECURITY_DATA_SOURCE);
191
189
  this._sharedScreenShareSharedDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_SCREEN_SHARE_DATA_SOURCE);
192
190
  this._sharedSettingDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_SETTING_DATA_SOURCE);
191
+ this._sharedWidgetDataSource = objectManager.getObject(_objectManager.FcrUIObjectKeys.S_SHARED_WIDGET_DATA_SOURCE);
193
192
  this._abilityProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_ABILITY_PROVIDER);
194
193
  this._applistProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_APPLIST_PROVIDER);
195
194
  this._facilityProvider = objectManager.getObject(_objectManager.FcrUIObjectKeys.P_FACILITY_PROVIDER);
@@ -208,17 +207,6 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
208
207
  this._eventProvider.addObserver(this._uiEventObserver);
209
208
  this._dialogProvider.addObserver(this._dialogObserver);
210
209
  this._disposers.push((0, _mobx.reaction)(function () {
211
- return _this.localUserRole;
212
- }, function (role) {
213
- _this._widgetProvider.openedWidgets.forEach(function (_widget, widgetId) {
214
- var widgetConfig = _this._widgetProvider.registeredWidgetConfigs.get(widgetId);
215
- if (widgetConfig) {
216
- if (!_this._checkIsWidgetSupportedRole(widgetConfig, role)) {
217
- _this.closeWidget(widgetId);
218
- }
219
- }
220
- });
221
- }), (0, _mobx.reaction)(function () {
222
210
  return _this.chatVisible;
223
211
  }, function (chatVisible) {
224
212
  if (chatVisible) {
@@ -368,16 +356,9 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
368
356
  this._sharedSecurityDataSource.setCheckedStateMap(val);
369
357
  }
370
358
  }, {
371
- key: "registeredWidgetConfigs",
359
+ key: "supportedWidgetConfigs",
372
360
  get: function get() {
373
- var _this2 = this;
374
- var widgetConfigs = [];
375
- this._widgetProvider.registeredWidgetConfigs.forEach(function (widgetConfig) {
376
- if (_this2._checkIsWidgetSupportedRole(widgetConfig, _this2.localUserRole)) {
377
- widgetConfigs.push(widgetConfig);
378
- }
379
- });
380
- return widgetConfigs;
361
+ return this._widgetProvider.supportedWidgetConfigs;
381
362
  }
382
363
  }, {
383
364
  key: "appItemOptions",
@@ -1017,13 +998,13 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1017
998
  }, {
1018
999
  key: "setShowArrow",
1019
1000
  value: function setShowArrow(show) {
1020
- var _this3 = this;
1001
+ var _this2 = this;
1021
1002
  if (this._hideBarArrowTimer) clearTimeout(this._hideBarArrowTimer);
1022
1003
  if (show) {
1023
1004
  this.showArrow = true;
1024
1005
  } else {
1025
1006
  this._hideBarArrowTimer = setTimeout(function () {
1026
- return _this3.showArrow = false;
1007
+ return _this2.showArrow = false;
1027
1008
  }, 1000);
1028
1009
  }
1029
1010
  }
@@ -1031,7 +1012,7 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1031
1012
  key: "setEnableWaitingRoom",
1032
1013
  value: function () {
1033
1014
  var _setEnableWaitingRoom = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee(enable, isNeedShowDialog) {
1034
- var _this4 = this;
1015
+ var _this3 = this;
1035
1016
  var dialogId;
1036
1017
  return _regenerator["default"].wrap(function (_context) {
1037
1018
  while (1) switch (_context.prev = _context.next) {
@@ -1050,18 +1031,18 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1050
1031
  reason1: this._sharedWaitingRoomDataSource.totalWaitingRoomUser
1051
1032
  }),
1052
1033
  onCancel: function onCancel() {
1053
- _this4.setCheckedStateMap(_objectSpread(_objectSpread({}, _this4.checkedStateMap), {
1034
+ _this3.setCheckedStateMap(_objectSpread(_objectSpread({}, _this3.checkedStateMap), {
1054
1035
  enableWaitingRoom: false
1055
1036
  }));
1056
- _this4._eventProvider.sendEvent(_constant.FcrUIAction.MOVE_TO_MAIN_ROOM_ALL_MEMBER, false);
1057
- _this4._dialogProvider.closeDialogById(dialogId);
1037
+ _this3._eventProvider.sendEvent(_constant.FcrUIAction.MOVE_TO_MAIN_ROOM_ALL_MEMBER, false);
1038
+ _this3._dialogProvider.closeDialogById(dialogId);
1058
1039
  },
1059
1040
  onOk: function onOk() {
1060
- _this4.setCheckedStateMap(_objectSpread(_objectSpread({}, _this4.checkedStateMap), {
1041
+ _this3.setCheckedStateMap(_objectSpread(_objectSpread({}, _this3.checkedStateMap), {
1061
1042
  enableWaitingRoom: false
1062
1043
  }));
1063
- _this4._eventProvider.sendEvent(_constant.FcrUIAction.MOVE_TO_MAIN_ROOM_ALL_MEMBER, true);
1064
- _this4._dialogProvider.closeDialogById(dialogId);
1044
+ _this3._eventProvider.sendEvent(_constant.FcrUIAction.MOVE_TO_MAIN_ROOM_ALL_MEMBER, true);
1045
+ _this3._dialogProvider.closeDialogById(dialogId);
1065
1046
  },
1066
1047
  okText: (0, _i18n.transI18n)('fmt_waitingroom_mobile_setting_popup_button_admit_all'),
1067
1048
  cancelText: (0, _i18n.transI18n)('fmt_waitingroom_mobile_setting_popup_button_cancel'),
@@ -1150,7 +1131,7 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1150
1131
  }, {
1151
1132
  key: "_interceptShareScreen",
1152
1133
  value: function _interceptShareScreen() {
1153
- var _this5 = this;
1134
+ var _this4 = this;
1154
1135
  // const isOtherSharingBoard =
1155
1136
  // this.boardOwnerUser && this.boardOwnerUser.userId !== this.localUserId;
1156
1137
 
@@ -1169,7 +1150,7 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1169
1150
  okText: (0, _i18n.transI18n)('fmt_group_popup_creat_next_sidpop_label_setting'),
1170
1151
  cancelText: (0, _i18n.transI18n)('fmt_group_popup_creat_next_sidpop_button_help_ignore'),
1171
1152
  onCancel: function onCancel() {
1172
- _this5._dialogProvider.closeConfirmDialog(dialogId);
1153
+ _this4._dialogProvider.closeConfirmDialog(dialogId);
1173
1154
  },
1174
1155
  onOk: function () {
1175
1156
  var _onOk = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee4() {
@@ -1177,12 +1158,12 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1177
1158
  while (1) switch (_context4.prev = _context4.next) {
1178
1159
  case 0:
1179
1160
  _context4.next = 1;
1180
- return _this5._facilityProvider.checkScreenCapturePermission();
1161
+ return _this4._facilityProvider.checkScreenCapturePermission();
1181
1162
  case 1:
1182
- if (_this5._facilityProvider.hasDeniedScreenCapturePermission()) {
1183
- _this5._facilityProvider.openSystemPreferences(_struct.FcrUISystemPereferencesType.Sharing);
1163
+ if (_this4._facilityProvider.hasDeniedScreenCapturePermission()) {
1164
+ _this4._facilityProvider.openSystemPreferences(_struct.FcrUISystemPereferencesType.Sharing);
1184
1165
  }
1185
- _this5._dialogProvider.closeConfirmDialog(dialogId);
1166
+ _this4._dialogProvider.closeConfirmDialog(dialogId);
1186
1167
  case 2:
1187
1168
  case "end":
1188
1169
  return _context4.stop();
@@ -1215,10 +1196,10 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1215
1196
  alignCenter: true,
1216
1197
  onOk: function onOk() {
1217
1198
  // this._screenShareProvider.bootstrap();
1218
- _this5._dialogProvider.closeDialogById(_dialogId);
1199
+ _this4._dialogProvider.closeDialogById(_dialogId);
1219
1200
  },
1220
1201
  onCancel: function onCancel() {
1221
- _this5._dialogProvider.closeDialogById(_dialogId);
1202
+ _this4._dialogProvider.closeDialogById(_dialogId);
1222
1203
  }
1223
1204
  });
1224
1205
  return false;
@@ -1231,7 +1212,7 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1231
1212
  }, {
1232
1213
  key: "_interceptShareBoard",
1233
1214
  value: function _interceptShareBoard() {
1234
- var _this6 = this;
1215
+ var _this5 = this;
1235
1216
  if (this.isBoardActive && !this.isMeSharingBoard) {
1236
1217
  var dialogId = this._dialogProvider.openConfirmDialog({
1237
1218
  icon: _type4.FcrIconType.FCR_SCREENSHARING,
@@ -1241,10 +1222,10 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1241
1222
  closable: false,
1242
1223
  showCancel: false,
1243
1224
  onOk: function onOk() {
1244
- _this6._dialogProvider.closeDialogById(dialogId);
1225
+ _this5._dialogProvider.closeDialogById(dialogId);
1245
1226
  },
1246
1227
  onCancel: function onCancel() {
1247
- _this6._dialogProvider.closeDialogById(dialogId);
1228
+ _this5._dialogProvider.closeDialogById(dialogId);
1248
1229
  }
1249
1230
  });
1250
1231
  return false;
@@ -1389,14 +1370,14 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1389
1370
  value: function () {
1390
1371
  var _setOutputLanguage = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee6(language) {
1391
1372
  var _this$_interpreterPro2,
1392
- _this7 = this;
1373
+ _this6 = this;
1393
1374
  return _regenerator["default"].wrap(function (_context6) {
1394
1375
  while (1) switch (_context6.prev = _context6.next) {
1395
1376
  case 0:
1396
1377
  _context6.next = 1;
1397
1378
  return (_this$_interpreterPro2 = this._interpreterProvider) === null || _this$_interpreterPro2 === void 0 ? void 0 : _this$_interpreterPro2.setOutputLanguage(language, function () {
1398
- if (!_this7._deviceProvider.microphoneEnabled) {
1399
- _this7._messageProvider.showToast({
1379
+ if (!_this6._deviceProvider.microphoneEnabled) {
1380
+ _this6._messageProvider.showToast({
1400
1381
  type: 'info',
1401
1382
  message: (0, _i18n.transI18n)('fmt_interpretation_interpreter_toast_label_open_micro')
1402
1383
  });
@@ -1463,9 +1444,9 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1463
1444
  key: "getOfflineUserExistenceState",
1464
1445
  value: function getOfflineUserExistenceState() {
1465
1446
  var _this$_interpreterPro5,
1466
- _this8 = this;
1447
+ _this7 = this;
1467
1448
  var isOffLine = (_this$_interpreterPro5 = this._interpreterProvider) === null || _this$_interpreterPro5 === void 0 || (_this$_interpreterPro5 = _this$_interpreterPro5.getInterpreterList()) === null || _this$_interpreterPro5 === void 0 ? void 0 : _this$_interpreterPro5.some(function (ele) {
1468
- return !_this8._userControl.getUserList().find(function (item) {
1449
+ return !_this7._userControl.getUserList().find(function (item) {
1469
1450
  return item.userId === ele.userId;
1470
1451
  });
1471
1452
  });
@@ -1490,19 +1471,10 @@ var ActionBarMainSceneStoreBase = exports.ActionBarMainSceneStoreBase = /*#__PUR
1490
1471
  value: function _handleApplistItemClick() {
1491
1472
  this.setAppActionbarPopoverVisible(false);
1492
1473
  }
1493
- }, {
1494
- key: "_checkIsWidgetSupportedRole",
1495
- value: function _checkIsWidgetSupportedRole(widgetConfig, _role) {
1496
- var _widgetConfig$support;
1497
- if (!widgetConfig.supportedRoles || widgetConfig.supportedRoles.length === 0 || (_widgetConfig$support = widgetConfig.supportedRoles) !== null && _widgetConfig$support !== void 0 && _widgetConfig$support.includes(this.localUserRole)) {
1498
- return true;
1499
- }
1500
- return false;
1501
- }
1502
1474
  }]);
1503
1475
  }();
1504
1476
  _ActionBarMainSceneStoreBase = ActionBarMainSceneStoreBase;
1505
- var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ActionBarMainSceneStoreBase, [[_mobx.observable, 1, "newMessageTooltipVisible"], [_mobx.observable, 1, "totalWaitingRoomUser"], [_mobx.observable, 1, "liveStreamingState"], [_mobx.observable, 1, "currentMenuIs"], [_mobx.observable, 1, "cloudRecordingState"], [_mobx.observable, 1, "connectionSettingVisible"], [_mobx.observable, 1, "folded"], [_mobx.observable, 1, "showArrow"], [_mobx.observable, 1, "phoneMicEnabled"], [_mobx.observable, 1, "chatTabIndex"], [_mobx.observable, 1, "hasOfflineUserExistence"], [_mobx.observable, 1, "connectionState"], [_mobx.observable, 1, "appActionbarPopoverVisible"], [_mobx.observable, 1, "stateBarLeaveMeeting"], [_mobx.computed, 3, "endMeetingPopoverOpened"], [_mobx.computed, 3, "checkedStateMap"], [_setCheckedStateMapDecs, 18, "setCheckedStateMap"], [_mobx.computed, 3, "registeredWidgetConfigs"], [_mobx.computed, 3, "asideLayout"], [_mobx.computed, 3, "chatRenderAt"], [_mobx.computed, 3, "participantsRenderAt"], [_mobx.computed, 3, "participantVisible"], [_mobx.computed, 3, "chatVisible"], [_mobx.computed, 3, "subtitlesHistoryRenderAt"], [_mobx.computed, 3, "subtitlesHistoryVisible"], [_mobx.computed, 3, "hasStartScreenSharePermission"], [_mobx.computed, 3, "hasEnableStartScreenSharePermission"], [_mobx.computed, 3, "hasStartLiveStreamingPermission"], [_mobx.computed, 3, "hasEnableStartAudioPermission"], [_mobx.computed, 3, "hasEnableChangeNamePermission"], [_mobx.computed, 3, "hasEnableStartVideoPermission"], [_mobx.computed, 3, "hasLockRoomPermission"], [_mobx.computed, 3, "hasEnableJoinWithAudioPermission"], [_mobx.computed, 3, "hasWaitingRoomPermission"], [_mobx.computed, 3, "hasWatermarkDisablePermission"], [_mobx.computed, 3, "hasEnableStartSharePermission"], [_mobx.computed, 3, "hasAllowWriteBoardPermission"], [_mobx.computed, 3, "hasAllowScreenShareAndBoardPermission"], [_mobx.computed, 3, "hasAllowChatPermission"], [_mobx.computed, 3, "hasStartCloudRecordingPermission"], [_mobx.computed, 3, "hasAssignHostBeforeLeavingPermission"], [_mobx.computed, 3, "hasEndRoomPermission"], [_mobx.computed, 3, "isScreenShareAndBoardEnabled"], [_mobx.computed, 3, "isBoardWriteEnabled"], [_mobx.computed, 3, "isWaterMarkEnabled"], [_mobx.computed, 3, "isMulti"], [_mobx.computed, 3, "hasEnableInterpreterPermission"], [_mobx.computed, 3, "hasDisableInterpreterPermission"], [_mobx.computed, 3, "microphoneEnabled"], [_mobx.computed, 3, "allNewMessage"], [_mobx.computed, 3, "isMainRoom"], [_mobx.computed, 3, "hasAllowChangeNamePromission"], [_mobx.computed, 3, "hasDisallowChangeNamePromission"], [_mobx.computed, 3, "newMessageCount"], [_mobx.computed, 3, "isRemoteUserScreenSharing"], [_mobx.computed, 3, "isLocalUserScreenSharing"], [_setStateBarLeaveMeetingDecs, 18, "setStateBarLeaveMeeting"], [_setPopoverOpenedDecs, 18, "setPopoverOpened"], [_pauseCloudRecordingDecs, 2, "pauseCloudRecording"], [_resumeCloudRecordingDecs, 2, "resumeCloudRecording"], [_stopCloudRecordingDecs, 2, "stopCloudRecording"], [_decorator.bound, 2, "startCloudRecording"], [_showLockedRoomToastDecs, 18, "showLockedRoomToast"], [_toggleLayoutBarLockDecs, 18, "toggleLayoutBarLock"], [_showNewMessageTooltipDecs, 18, "showNewMessageTooltip"], [_hideNewMessageTooltipDecs, 18, "hideNewMessageTooltip"], [_switchMenuDecs, 18, "switchMenu"], [_mobx.computed, 3, "isLocked"], [_decorator.bound, 2, "isWaitingRoomEnabled"], [_decorator.bound, 2, "isAllowJoinWithAudioEnabled"], [_decorator.bound, 2, "enableMicrophone"], [_decorator.bound, 2, "setAllowWriteBoard"], [_decorator.bound, 2, "setAllowAnnotation"], [_decorator.bound, 2, "setAllowScreenShare"], [_decorator.bound, 2, "setAllowJoinWithMuteAudio"], [_decorator.bound, 2, "isLockRoomEnabled"], [_decorator.bound, 2, "setLockRoomEnabled"], [_decorator.bound, 2, "setAllowShareScreen"], [_decorator.bound, 2, "allowWriteBoard"], [_decorator.bound, 2, "allowChat"], [_decorator.bound, 2, "setAllowChat"], [_decorator.bound, 2, "allowUnmuteSelfAudio"], [_decorator.bound, 2, "setAllowUnmuteSelfAudio"], [_decorator.bound, 2, "allowUnmuteSelfVideo"], [_decorator.bound, 2, "setAllowUnmuteSelfVideo"], [_decorator.bound, 2, "allowChangeName"], [_decorator.bound, 2, "toggleChat"], [_decorator.bound, 2, "openChat"], [_decorator.bound, 2, "closeChat"], [_decorator.bound, 2, "toggleParticipants"], [_decorator.bound, 2, "openParticipants"], [_decorator.bound, 2, "closeParticipants"], [_decorator.bound, 2, "openDeviceSettingDialog"], [_decorator.bound, 2, "startScreenShare"], [_decorator.bound, 2, "openInterpreterDialog"], [_decorator.bound, 2, "openWhiteboard"], [_decorator.bound, 2, "closeWhiteboard"], [_decorator.bound, 2, "closeShareScreen"], [_decorator.bound, 2, "openLiveStreamingDialog"], [_decorator.bound, 2, "toggleConnection"], [_decorator.bound, 2, "openConnection"], [_decorator.bound, 2, "closeConnection"], [_handleJoinWaitingRoomDecs, 18, "_handleJoinWaitingRoom"], [_toggleFoldDecs, 18, "toggleFold"], [_setShowArrowDecs, 18, "setShowArrow"], [_setEnableWaitingRoomDecs, 18, "setEnableWaitingRoom"], [_kickOutWaitingRoomAllMemberDecs, 18, "kickOutWaitingRoomAllMember"], [_moveToMainRoomAllMemberDecs, 18, "moveToMainRoomAllMember"], [_decorator.bound, 2, "_interceptShareScreen"], [_decorator.bound, 2, "_interceptShareBoard"], [_handleRemoteUsersJoinedDecs, 18, "_handleRemoteUsersJoined"], [_handleRemoteUsersLeftDecs, 18, "_handleRemoteUsersLeft"], [_handleLiveStreamingStateUpdatedDecs, 18, "_handleLiveStreamingStateUpdated"], [_handleChatVisibleDecs, 18, "_handleChatVisible"], [_setAppActionbarPopoverVisibleDecs, 18, "setAppActionbarPopoverVisible"], [_decorator.bound, 2, "setAllowWaterMark"], [_decorator.bound, 2, "setWaterMarkLineType"], [_decorator.bound, 2, "setAlllowChangeName"], [_decorator.bound, 2, "_handleDialogOpen"], [_decorator.bound, 2, "_handleDialogClose"], [_decorator.bound, 2, "_onEvent"], [_operateWaitingRoomDecs, 18, "_operateWaitingRoom"], [_handleCloudRecordingStateUpdatedDecs, 18, "_handleCloudRecordingStateUpdated"], [_setOutputLanguageDecs, 18, "setOutputLanguage"], [_setEndMeetingPopoverOpenedDecs, 18, "setEndMeetingPopoverOpened"], [_subscribeLanguageDecs, 18, "subscribeLanguage"], [_subscribeExtraOriginLanguageDecs, 18, "subscribeExtraOriginLanguage"], [_getOfflineUserExistenceStateDecs, 18, "getOfflineUserExistenceState"], [_clickWidgetDecs, 18, "clickWidget"], [_closeWidgetDecs, 18, "closeWidget"]], []).e, 15);
1477
+ var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_ActionBarMainSceneStoreBase, [[_mobx.observable, 1, "newMessageTooltipVisible"], [_mobx.observable, 1, "totalWaitingRoomUser"], [_mobx.observable, 1, "liveStreamingState"], [_mobx.observable, 1, "currentMenuIs"], [_mobx.observable, 1, "cloudRecordingState"], [_mobx.observable, 1, "connectionSettingVisible"], [_mobx.observable, 1, "folded"], [_mobx.observable, 1, "showArrow"], [_mobx.observable, 1, "phoneMicEnabled"], [_mobx.observable, 1, "chatTabIndex"], [_mobx.observable, 1, "hasOfflineUserExistence"], [_mobx.observable, 1, "connectionState"], [_mobx.observable, 1, "appActionbarPopoverVisible"], [_mobx.observable, 1, "stateBarLeaveMeeting"], [_mobx.computed, 3, "endMeetingPopoverOpened"], [_mobx.computed, 3, "checkedStateMap"], [_setCheckedStateMapDecs, 18, "setCheckedStateMap"], [_mobx.computed, 3, "supportedWidgetConfigs"], [_mobx.computed, 3, "asideLayout"], [_mobx.computed, 3, "chatRenderAt"], [_mobx.computed, 3, "participantsRenderAt"], [_mobx.computed, 3, "participantVisible"], [_mobx.computed, 3, "chatVisible"], [_mobx.computed, 3, "subtitlesHistoryRenderAt"], [_mobx.computed, 3, "subtitlesHistoryVisible"], [_mobx.computed, 3, "hasStartScreenSharePermission"], [_mobx.computed, 3, "hasEnableStartScreenSharePermission"], [_mobx.computed, 3, "hasStartLiveStreamingPermission"], [_mobx.computed, 3, "hasEnableStartAudioPermission"], [_mobx.computed, 3, "hasEnableChangeNamePermission"], [_mobx.computed, 3, "hasEnableStartVideoPermission"], [_mobx.computed, 3, "hasLockRoomPermission"], [_mobx.computed, 3, "hasEnableJoinWithAudioPermission"], [_mobx.computed, 3, "hasWaitingRoomPermission"], [_mobx.computed, 3, "hasWatermarkDisablePermission"], [_mobx.computed, 3, "hasEnableStartSharePermission"], [_mobx.computed, 3, "hasAllowWriteBoardPermission"], [_mobx.computed, 3, "hasAllowScreenShareAndBoardPermission"], [_mobx.computed, 3, "hasAllowChatPermission"], [_mobx.computed, 3, "hasStartCloudRecordingPermission"], [_mobx.computed, 3, "hasAssignHostBeforeLeavingPermission"], [_mobx.computed, 3, "hasEndRoomPermission"], [_mobx.computed, 3, "isScreenShareAndBoardEnabled"], [_mobx.computed, 3, "isBoardWriteEnabled"], [_mobx.computed, 3, "isWaterMarkEnabled"], [_mobx.computed, 3, "isMulti"], [_mobx.computed, 3, "hasEnableInterpreterPermission"], [_mobx.computed, 3, "hasDisableInterpreterPermission"], [_mobx.computed, 3, "microphoneEnabled"], [_mobx.computed, 3, "allNewMessage"], [_mobx.computed, 3, "isMainRoom"], [_mobx.computed, 3, "hasAllowChangeNamePromission"], [_mobx.computed, 3, "hasDisallowChangeNamePromission"], [_mobx.computed, 3, "newMessageCount"], [_mobx.computed, 3, "isRemoteUserScreenSharing"], [_mobx.computed, 3, "isLocalUserScreenSharing"], [_setStateBarLeaveMeetingDecs, 18, "setStateBarLeaveMeeting"], [_setPopoverOpenedDecs, 18, "setPopoverOpened"], [_pauseCloudRecordingDecs, 2, "pauseCloudRecording"], [_resumeCloudRecordingDecs, 2, "resumeCloudRecording"], [_stopCloudRecordingDecs, 2, "stopCloudRecording"], [_decorator.bound, 2, "startCloudRecording"], [_showLockedRoomToastDecs, 18, "showLockedRoomToast"], [_toggleLayoutBarLockDecs, 18, "toggleLayoutBarLock"], [_showNewMessageTooltipDecs, 18, "showNewMessageTooltip"], [_hideNewMessageTooltipDecs, 18, "hideNewMessageTooltip"], [_switchMenuDecs, 18, "switchMenu"], [_mobx.computed, 3, "isLocked"], [_decorator.bound, 2, "isWaitingRoomEnabled"], [_decorator.bound, 2, "isAllowJoinWithAudioEnabled"], [_decorator.bound, 2, "enableMicrophone"], [_decorator.bound, 2, "setAllowWriteBoard"], [_decorator.bound, 2, "setAllowAnnotation"], [_decorator.bound, 2, "setAllowScreenShare"], [_decorator.bound, 2, "setAllowJoinWithMuteAudio"], [_decorator.bound, 2, "isLockRoomEnabled"], [_decorator.bound, 2, "setLockRoomEnabled"], [_decorator.bound, 2, "setAllowShareScreen"], [_decorator.bound, 2, "allowWriteBoard"], [_decorator.bound, 2, "allowChat"], [_decorator.bound, 2, "setAllowChat"], [_decorator.bound, 2, "allowUnmuteSelfAudio"], [_decorator.bound, 2, "setAllowUnmuteSelfAudio"], [_decorator.bound, 2, "allowUnmuteSelfVideo"], [_decorator.bound, 2, "setAllowUnmuteSelfVideo"], [_decorator.bound, 2, "allowChangeName"], [_decorator.bound, 2, "toggleChat"], [_decorator.bound, 2, "openChat"], [_decorator.bound, 2, "closeChat"], [_decorator.bound, 2, "toggleParticipants"], [_decorator.bound, 2, "openParticipants"], [_decorator.bound, 2, "closeParticipants"], [_decorator.bound, 2, "openDeviceSettingDialog"], [_decorator.bound, 2, "startScreenShare"], [_decorator.bound, 2, "openInterpreterDialog"], [_decorator.bound, 2, "openWhiteboard"], [_decorator.bound, 2, "closeWhiteboard"], [_decorator.bound, 2, "closeShareScreen"], [_decorator.bound, 2, "openLiveStreamingDialog"], [_decorator.bound, 2, "toggleConnection"], [_decorator.bound, 2, "openConnection"], [_decorator.bound, 2, "closeConnection"], [_handleJoinWaitingRoomDecs, 18, "_handleJoinWaitingRoom"], [_toggleFoldDecs, 18, "toggleFold"], [_setShowArrowDecs, 18, "setShowArrow"], [_setEnableWaitingRoomDecs, 18, "setEnableWaitingRoom"], [_kickOutWaitingRoomAllMemberDecs, 18, "kickOutWaitingRoomAllMember"], [_moveToMainRoomAllMemberDecs, 18, "moveToMainRoomAllMember"], [_decorator.bound, 2, "_interceptShareScreen"], [_decorator.bound, 2, "_interceptShareBoard"], [_handleRemoteUsersJoinedDecs, 18, "_handleRemoteUsersJoined"], [_handleRemoteUsersLeftDecs, 18, "_handleRemoteUsersLeft"], [_handleLiveStreamingStateUpdatedDecs, 18, "_handleLiveStreamingStateUpdated"], [_handleChatVisibleDecs, 18, "_handleChatVisible"], [_setAppActionbarPopoverVisibleDecs, 18, "setAppActionbarPopoverVisible"], [_decorator.bound, 2, "setAllowWaterMark"], [_decorator.bound, 2, "setWaterMarkLineType"], [_decorator.bound, 2, "setAlllowChangeName"], [_decorator.bound, 2, "_handleDialogOpen"], [_decorator.bound, 2, "_handleDialogClose"], [_decorator.bound, 2, "_onEvent"], [_operateWaitingRoomDecs, 18, "_operateWaitingRoom"], [_handleCloudRecordingStateUpdatedDecs, 18, "_handleCloudRecordingStateUpdated"], [_setOutputLanguageDecs, 18, "setOutputLanguage"], [_setEndMeetingPopoverOpenedDecs, 18, "setEndMeetingPopoverOpened"], [_subscribeLanguageDecs, 18, "subscribeLanguage"], [_subscribeExtraOriginLanguageDecs, 18, "subscribeExtraOriginLanguage"], [_getOfflineUserExistenceStateDecs, 18, "getOfflineUserExistenceState"], [_clickWidgetDecs, 18, "clickWidget"], [_closeWidgetDecs, 18, "closeWidget"]], []).e, 15);
1506
1478
  _init_newMessageTooltipVisible = _applyDecs$e[0];
1507
1479
  _init_totalWaitingRoomUser = _applyDecs$e[1];
1508
1480
  _init_liveStreamingState = _applyDecs$e[2];
@@ -25,9 +25,9 @@ var _deviceControl = _interopRequireDefault(require("../../components/device-con
25
25
  var _leave = require("../components/leave");
26
26
  var _constants = require("../constants");
27
27
  var _jsxRuntime = require("react/jsx-runtime");
28
- /**
29
- * @param toggleFold 用于点击折叠底部操作栏
30
- * @returns
28
+ /**
29
+ * @param toggleFold 用于点击折叠底部操作栏
30
+ * @returns
31
31
  */var ToggleToolbarBtn = function ToggleToolbarBtn(_ref) {
32
32
  var className = _ref.className,
33
33
  toggleFold = _ref.toggleFold,
@@ -265,9 +265,9 @@ var AudioStreamUIModule = exports.AudioStreamUIModule = /*#__PURE__*/function (_
265
265
  };
266
266
  });
267
267
  (0, _defineProperty2["default"])(_this, "_setMainRoomStreamVolume", function (volume) {
268
- /**
269
- * TODO 待音量增益的逻辑调整后,再使用
270
- * const speakerVolume = (volume / 100) * this._deviceProvider.speakerVolume;
268
+ /**
269
+ * TODO 待音量增益的逻辑调整后,再使用
270
+ * const speakerVolume = (volume / 100) * this._deviceProvider.speakerVolume;
271
271
  */
272
272
  var speakerVolume = volume;
273
273
  var mainStreamControl = _this._streamControl;
@@ -1,10 +1,10 @@
1
- .fcr-draggable-subtitles-container {
2
- width: calc(100% - 10px);
3
- /* height: calc(100% - 34px - 55px); */
4
- position: absolute;
5
- /* top: 34px;
6
- bottom: 55px; */
7
- left: 5px;
8
- right: 5px;
9
- margin: auto 0;
10
- }
1
+ .fcr-draggable-subtitles-container {
2
+ width: calc(100% - 10px);
3
+ /* height: calc(100% - 34px - 55px); */
4
+ position: absolute;
5
+ /* top: 34px;
6
+ bottom: 55px; */
7
+ left: 5px;
8
+ right: 5px;
9
+ margin: auto 0;
10
+ }
@@ -1,158 +1,158 @@
1
- .fcr-caption-viewport {
2
- position: relative;
3
- min-height: 92px;
4
- max-height: 132px;
5
- height: 100%;
6
- width: 100%;
7
- overflow: hidden;
8
- background: var(--fcr_ui_scene_black6);
9
- border-radius: var(--fcr_cornerradius_l);
10
- transition: all 0.3s ease;
11
- box-sizing: border-box;
12
- }
13
-
14
- .fcr-caption-viewport.fcr-caption-hovered {
15
- background: var(--fcr_ui_scene_black8);
16
- outline: 2px solid var(--fcr_ui_scene_ramp_brand6);
17
- }
18
-
19
- .fcr-caption-message-item {
20
- /* position: absolute; */
21
- transition: all 0.5s ease;
22
- /* width: 100%; */
23
- display: flex;
24
- /* height: 100%; */
25
- padding: 15px 20px;
26
- align-items: start;
27
- }
28
-
29
- .fcr-caption-tips-container {
30
- position: absolute;
31
- top: 50%;
32
- left: 50%;
33
- transform: translate(-50%, -50%);
34
- font-size: 12px;
35
- font-weight: 400;
36
- line-height: 16px;
37
- font-size: 500;
38
- color: var(--fcr_ui_scene_white8);
39
- color: var(--fcr_ui_scene_white10);
40
- display: flex;
41
- justify-content: center;
42
- align-items: center;
43
- gap: 10px;
44
- }
45
-
46
- .fcr-caption-loading-icon {
47
- animation: spin 1s linear infinite;
48
- }
49
-
50
- .fcr-caption-entering {
51
- animation: enterAnimation 0.5s forwards;
52
- }
53
-
54
- .fcr-caption-exiting {
55
- animation: exitAnimation 0.5s forwards;
56
- }
57
-
58
- @keyframes enterAnimation {
59
- 0% {
60
- transform: translateY(100%);
61
- opacity: 0;
62
- }
63
- 100% {
64
- transform: translateY(0);
65
- opacity: 1;
66
- }
67
- }
68
-
69
- @keyframes exitAnimation {
70
- 0% {
71
- transform: translateY(0);
72
- opacity: 1;
73
- }
74
- 100% {
75
- transform: translateY(-100%);
76
- opacity: 0;
77
- }
78
- }
79
-
80
- .fcr-caption-avatar-container {
81
- margin-right: 11px;
82
- display: flex;
83
- align-items: center;
84
- }
85
- .fcr-caption-avatar-container .fcr-avatar {
86
- border-radius: var(--fcr_cornerradius_xs);
87
- }
88
-
89
- .fcr-caption-avatar {
90
- width: 30px;
91
- height: 30px;
92
- border-radius: 50%;
93
- object-fit: cover;
94
- border: 1px solid #eee;
95
- font-size: 12px;
96
- }
97
-
98
- .fcr-caption-content-container {
99
- flex: 1;
100
- text-align: left;
101
- }
102
-
103
- .fcr-caption-username {
104
- font-weight: 400;
105
- color: #2c3e50;
106
- margin-bottom: 5px;
107
- font-size: 12px;
108
- color: var(--fcr_app_white10, rgba(255, 255, 255, 1));
109
- }
110
-
111
- .fcr-caption-text-content {
112
- font-size: 14px;
113
- line-height: 1.3;
114
- font-size: 500;
115
- }
116
-
117
- .fcr-caption-original-text {
118
- color: var(--fcr_app_white10, rgba(255, 255, 255, 1));
119
- margin-bottom: 5px;
120
- }
121
-
122
- .fcr-caption-translated-text {
123
- color: var(--fcr_ui_scene_ramp_2yellow6, rgba(255, 199, 0, 1));
124
- }
125
-
126
- .fcr-caption-action-buttons {
127
- position: absolute;
128
- top: 5px;
129
- right: 5px;
130
- display: flex;
131
- gap: 12px;
132
- z-index: 1;
133
- }
134
-
135
- .fcr-caption-icon-button {
136
- display: flex;
137
- align-items: center;
138
- justify-content: center;
139
- cursor: pointer;
140
- transition: all 0.2s ease;
141
- font-size: 14px;
142
- color: #7f8c8d;
143
- }
144
-
145
- .fcr-caption-icon-button:hover {
146
- background: var(--fcr_ui_scene_white2,);
147
- border-radius: var(--fcr_cornerradius_s);
148
- }
149
- .fcr-caption-icon-button-close:hover {
150
- border-radius: var(--fcr_cornerradius_s);
151
- background: var(--fcr_homepage_red_6, rgba(245, 101, 92, 1));
152
- }
153
-
154
- .fcr-caption-button-hovered {
155
- background-color: #4a90e2;
156
- color: white;
157
- border-color: #4a90e2;
158
- }
1
+ .fcr-caption-viewport {
2
+ position: relative;
3
+ min-height: 92px;
4
+ max-height: 132px;
5
+ height: 100%;
6
+ width: 100%;
7
+ overflow: hidden;
8
+ background: var(--fcr_ui_scene_black6);
9
+ border-radius: var(--fcr_cornerradius_l);
10
+ transition: all 0.3s ease;
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ .fcr-caption-viewport.fcr-caption-hovered {
15
+ background: var(--fcr_ui_scene_black8);
16
+ outline: 2px solid var(--fcr_ui_scene_ramp_brand6);
17
+ }
18
+
19
+ .fcr-caption-message-item {
20
+ /* position: absolute; */
21
+ transition: all 0.5s ease;
22
+ /* width: 100%; */
23
+ display: flex;
24
+ /* height: 100%; */
25
+ padding: 15px 20px;
26
+ align-items: start;
27
+ }
28
+
29
+ .fcr-caption-tips-container {
30
+ position: absolute;
31
+ top: 50%;
32
+ left: 50%;
33
+ transform: translate(-50%, -50%);
34
+ font-size: 12px;
35
+ font-weight: 400;
36
+ line-height: 16px;
37
+ font-size: 500;
38
+ color: var(--fcr_ui_scene_white8);
39
+ color: var(--fcr_ui_scene_white10);
40
+ display: flex;
41
+ justify-content: center;
42
+ align-items: center;
43
+ gap: 10px;
44
+ }
45
+
46
+ .fcr-caption-loading-icon {
47
+ animation: spin 1s linear infinite;
48
+ }
49
+
50
+ .fcr-caption-entering {
51
+ animation: enterAnimation 0.5s forwards;
52
+ }
53
+
54
+ .fcr-caption-exiting {
55
+ animation: exitAnimation 0.5s forwards;
56
+ }
57
+
58
+ @keyframes enterAnimation {
59
+ 0% {
60
+ transform: translateY(100%);
61
+ opacity: 0;
62
+ }
63
+ 100% {
64
+ transform: translateY(0);
65
+ opacity: 1;
66
+ }
67
+ }
68
+
69
+ @keyframes exitAnimation {
70
+ 0% {
71
+ transform: translateY(0);
72
+ opacity: 1;
73
+ }
74
+ 100% {
75
+ transform: translateY(-100%);
76
+ opacity: 0;
77
+ }
78
+ }
79
+
80
+ .fcr-caption-avatar-container {
81
+ margin-right: 11px;
82
+ display: flex;
83
+ align-items: center;
84
+ }
85
+ .fcr-caption-avatar-container .fcr-avatar {
86
+ border-radius: var(--fcr_cornerradius_xs);
87
+ }
88
+
89
+ .fcr-caption-avatar {
90
+ width: 30px;
91
+ height: 30px;
92
+ border-radius: 50%;
93
+ object-fit: cover;
94
+ border: 1px solid #eee;
95
+ font-size: 12px;
96
+ }
97
+
98
+ .fcr-caption-content-container {
99
+ flex: 1;
100
+ text-align: left;
101
+ }
102
+
103
+ .fcr-caption-username {
104
+ font-weight: 400;
105
+ color: #2c3e50;
106
+ margin-bottom: 5px;
107
+ font-size: 12px;
108
+ color: var(--fcr_app_white10, rgba(255, 255, 255, 1));
109
+ }
110
+
111
+ .fcr-caption-text-content {
112
+ font-size: 14px;
113
+ line-height: 1.3;
114
+ font-size: 500;
115
+ }
116
+
117
+ .fcr-caption-original-text {
118
+ color: var(--fcr_app_white10, rgba(255, 255, 255, 1));
119
+ margin-bottom: 5px;
120
+ }
121
+
122
+ .fcr-caption-translated-text {
123
+ color: var(--fcr_ui_scene_ramp_2yellow6, rgba(255, 199, 0, 1));
124
+ }
125
+
126
+ .fcr-caption-action-buttons {
127
+ position: absolute;
128
+ top: 5px;
129
+ right: 5px;
130
+ display: flex;
131
+ gap: 12px;
132
+ z-index: 1;
133
+ }
134
+
135
+ .fcr-caption-icon-button {
136
+ display: flex;
137
+ align-items: center;
138
+ justify-content: center;
139
+ cursor: pointer;
140
+ transition: all 0.2s ease;
141
+ font-size: 14px;
142
+ color: #7f8c8d;
143
+ }
144
+
145
+ .fcr-caption-icon-button:hover {
146
+ background: var(--fcr_ui_scene_white2,);
147
+ border-radius: var(--fcr_cornerradius_s);
148
+ }
149
+ .fcr-caption-icon-button-close:hover {
150
+ border-radius: var(--fcr_cornerradius_s);
151
+ background: var(--fcr_homepage_red_6, rgba(245, 101, 92, 1));
152
+ }
153
+
154
+ .fcr-caption-button-hovered {
155
+ background-color: #4a90e2;
156
+ color: white;
157
+ border-color: #4a90e2;
158
+ }