fcr-ui-scene 3.4.2 → 3.4.4
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.
- package/lib/common/device-store.d.ts +23 -14
- package/lib/common/device-store.js +361 -252
- package/lib/common/device-stream-store.d.ts +8 -14
- package/lib/common/device-stream-store.js +254 -116
- package/lib/common/event-store.d.ts +35 -10
- package/lib/common/event-store.js +64 -13
- package/lib/common/security-store.d.ts +47 -39
- package/lib/common/security-store.js +335 -379
- package/lib/electron/app.js +1 -0
- package/lib/modules/action-bar/action-bar-collapes-items.d.ts +4 -1
- package/lib/modules/action-bar/action-bar-collapes-items.js +38 -21
- package/lib/modules/action-bar/components/apps/useWidgetList.d.ts +7 -0
- package/lib/modules/action-bar/components/apps/useWidgetList.js +43 -0
- package/lib/modules/action-bar/components/leave/assign-host.d.ts +8 -1
- package/lib/modules/action-bar/components/leave/assign-host.js +1 -1
- package/lib/modules/action-bar/components/leave/leave-meeting.d.ts +16 -1
- package/lib/modules/action-bar/smaller.js +5 -5
- package/lib/modules/chat/chat-bar/index.css +6 -0
- package/lib/modules/chat/chat-bar/index.d.ts +3 -3
- package/lib/modules/chat/chat-bar/index.js +51 -39
- package/lib/modules/chat/chat-select/index.css +27 -7
- package/lib/modules/chat/chat-select/index.d.ts +1 -1
- package/lib/modules/chat/chat-select/index.js +18 -4
- package/lib/modules/chat/chat.d.ts +1 -2
- package/lib/modules/chat/chat.js +196 -128
- package/lib/modules/chat/components/chat-select/select-input/index.d.ts +7 -0
- package/lib/modules/chat/components/chat-select/select-input/index.js +35 -0
- package/lib/modules/chat/components/chat-select/select-item/index.d.ts +12 -0
- package/lib/modules/chat/components/chat-select/select-item/index.js +153 -0
- package/lib/modules/chat/components/chat-tabs/index.d.ts +2 -0
- package/lib/modules/chat/components/chat-tabs/index.js +61 -0
- package/lib/modules/chat/components/message-list/chat-empty/index.d.ts +2 -0
- package/lib/modules/chat/components/message-list/chat-empty/index.js +26 -0
- package/lib/modules/chat/components/message-list/history-unread-message-button/index.d.ts +7 -0
- package/lib/modules/chat/components/message-list/history-unread-message-button/index.js +55 -0
- package/lib/modules/chat/components/message-list/message-item/index.d.ts +15 -0
- package/lib/modules/chat/components/message-list/message-item/index.js +279 -0
- package/lib/modules/chat/components/message-list/scroll-bottom-button/index.d.ts +9 -0
- package/lib/modules/chat/components/message-list/scroll-bottom-button/index.js +67 -0
- package/lib/modules/chat/message-list.js +68 -51
- package/lib/modules/components/dialog-container/component/body.js +1 -2
- package/lib/modules/components/dialog-container/index.d.ts +2 -2
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.d.ts +6 -0
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +36 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.d.ts +40 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +170 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.d.ts +11 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +105 -0
- package/lib/modules/components/member-window/components/member-actions/components/layout/index.d.ts +9 -0
- package/lib/modules/components/member-window/components/member-actions/components/layout/index.js +42 -0
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.d.ts +11 -0
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +159 -0
- package/lib/modules/components/member-window/components/member-actions/components/share-status.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-actions/components/share-status.js +32 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-info.d.ts +16 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-info.js +130 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-tag.d.ts +12 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-tag.js +57 -0
- package/lib/modules/components/member-window/components/member-actions/index.d.ts +3 -0
- package/lib/modules/components/member-window/components/member-actions/index.js +122 -0
- package/lib/modules/components/member-window/components/member-actions/libs/index.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-actions/libs/index.js +24 -0
- package/lib/modules/components/member-window/components/member-actions/provider.d.ts +21 -0
- package/lib/modules/components/member-window/components/member-actions/provider.js +77 -0
- package/lib/modules/components/member-window/components/member-actions/store.d.ts +48 -0
- package/lib/modules/components/member-window/components/member-actions/store.js +306 -0
- package/lib/modules/components/member-window/components/member-board.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-board.js +63 -0
- package/lib/modules/components/member-window/components/mic-volume.d.ts +2 -0
- package/lib/modules/components/member-window/components/mic-volume.js +23 -0
- package/lib/modules/components/member-window/components/video-player/components/local-video-player.d.ts +4 -0
- package/lib/modules/components/member-window/components/video-player/components/local-video-player.js +40 -0
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.d.ts +8 -0
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +62 -0
- package/lib/modules/components/member-window/components/video-player/index.d.ts +9 -0
- package/lib/modules/components/member-window/components/video-player/index.js +38 -0
- package/lib/modules/components/member-window/types.d.ts +78 -0
- package/lib/modules/components/member-window/types.js +6 -0
- package/lib/modules/connection-gateway/components/tabs/index.js +2 -1
- package/lib/modules/control-bar/components/meeting-details/index.js +7 -15
- package/lib/modules/control-bar/components/more-actions/index.js +5 -15
- package/lib/modules/dialog/components/system-preference/assets/bg1.png +0 -0
- package/lib/modules/dialog/components/system-preference/assets/bg2.png +0 -0
- package/lib/modules/dialog/components/system-preference/assets/fcr_png_host.png +0 -0
- package/lib/modules/dialog/components/widget/electron.d.ts +5 -0
- package/lib/modules/dialog/components/widget/electron.js +41 -0
- package/lib/modules/dialog/components/widget/index.d.ts +6 -0
- package/lib/modules/dialog/components/widget/index.js +41 -0
- package/lib/modules/dialog/type.d.ts +84 -0
- package/lib/modules/dialog/type.js +6 -0
- package/lib/modules/invite/components/pstn-invite.js +4 -13
- package/lib/modules/invite/pstn-invite.js +7 -9
- package/lib/modules/invite/store.d.ts +2 -0
- package/lib/modules/invite/store.js +6 -0
- package/lib/modules/invite/voip-invite.js +5 -6
- package/lib/modules/layout/member-window/index.css +116 -18
- package/lib/modules/layout/member-window/index.d.ts +10 -3
- package/lib/modules/layout/member-window/index.js +227 -115
- package/lib/modules/participant/attendee/index.css +0 -51
- package/lib/modules/participant/attendee/index.d.ts +8 -5
- package/lib/modules/participant/attendee/index.js +61 -15
- package/lib/modules/participant/components/attendee/components/interpreter-tag/index.d.ts +3 -0
- package/lib/modules/participant/components/attendee/components/interpreter-tag/index.js +48 -0
- package/lib/modules/participant/components/confirm-input/index.d.ts +6 -0
- package/lib/modules/participant/components/confirm-input/index.js +49 -0
- package/lib/modules/participant/components/drop-menu/util.d.ts +5 -0
- package/lib/modules/participant/components/drop-menu/util.js +28 -0
- package/lib/modules/participant/components/participants/components/footer/components/buttons.d.ts +6 -0
- package/lib/modules/participant/components/participants/components/footer/components/buttons.js +52 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +60 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +166 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.js +28 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +13 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +242 -0
- package/lib/modules/participant/components/participants/components/footer/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/index.js +47 -0
- package/lib/modules/participant/components/participants/components/merge/index.d.ts +11 -0
- package/lib/modules/participant/components/participants/components/merge/index.js +49 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +191 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.d.ts +4 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +204 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +49 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +219 -0
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +70 -0
- package/lib/modules/participant/components/participants/components/participants/index.css +104 -0
- package/lib/modules/participant/components/participants/components/participants/index.d.ts +3 -0
- package/lib/modules/participant/components/participants/components/participants/index.js +110 -0
- package/lib/modules/participant/components/participants/components/render-tab/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/render-tab/index.js +49 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.d.ts +3 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +48 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.d.ts +6 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +28 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.d.ts +7 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.js +39 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +69 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +135 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.d.ts +7 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.js +31 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.d.ts +12 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +82 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.d.ts +4 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.js +26 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +75 -0
- package/lib/modules/participant/components/participants/components/render-user/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/render-user/index.js +21 -0
- package/lib/modules/participant/components/participants/render-tab/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/render-tab/index.js +49 -0
- package/lib/modules/participant/components/participants/render-user/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/render-user/index.js +21 -0
- package/lib/modules/participant/components/participants/types.d.ts +96 -0
- package/lib/modules/participant/components/participants/types.js +37 -0
- package/lib/modules/participant/components/user-action/audio-button/index.d.ts +7 -0
- package/lib/modules/participant/components/user-action/audio-button/index.js +31 -0
- package/lib/modules/participant/components/user-action/move-actions-popover/index.d.ts +12 -0
- package/lib/modules/participant/components/user-action/move-actions-popover/index.js +82 -0
- package/lib/modules/participant/components/user-action/move-to-mainroom-button/index.d.ts +4 -0
- package/lib/modules/participant/components/user-action/move-to-mainroom-button/index.js +26 -0
- package/lib/modules/share-screen/selection/index.css +4 -0
- package/lib/modules/share-screen/selection/index.js +126 -129
- package/lib/modules/share-screen/share-state-bar/index.js +1 -1
- package/lib/modules/state-bar/meeting-details.js +29 -34
- package/lib/modules/video-window/components/deviceState/index.d.ts +7 -0
- package/lib/modules/video-window/components/deviceState/index.js +75 -0
- package/lib/modules/video-window/components/members/index.css +51 -0
- package/lib/modules/video-window/components/members/index.d.ts +2 -0
- package/lib/modules/video-window/components/members/index.js +130 -0
- package/lib/modules/video-window/components/speaking/index.css +86 -0
- package/lib/modules/video-window/components/speaking/index.d.ts +3 -0
- package/lib/modules/video-window/components/speaking/index.js +48 -0
- package/lib/modules/video-window/components/topControl/index.css +35 -0
- package/lib/modules/video-window/components/topControl/index.d.ts +3 -0
- package/lib/modules/video-window/components/topControl/index.js +79 -0
- package/lib/modules/widget/index.css +17 -0
- package/lib/modules/widget/index.d.ts +10 -0
- package/lib/modules/widget/index.js +114 -0
- package/lib/modules/widget/sdk.d.ts +30 -0
- package/lib/modules/widget/sdk.js +221 -0
- package/lib/modules/widget/store.d.ts +14 -0
- package/lib/modules/widget/store.js +28 -0
- package/lib/modules/widget/type.d.ts +155 -0
- package/lib/modules/widget/type.js +6 -0
- package/lib/modules/widget/view.d.ts +2 -0
- package/lib/modules/widget/view.js +47 -0
- package/lib/modules/widget/web-widget.d.ts +29 -0
- package/lib/modules/widget/web-widget.js +234 -0
- package/lib/providers/ability-provider.d.ts +24 -0
- package/lib/providers/ability-provider.js +36 -0
- package/lib/providers/widget-provider.d.ts +44 -0
- package/lib/providers/widget-provider.js +167 -0
- package/lib/schema.d.ts +114 -0
- package/lib/schema.js +77 -0
- package/lib/shared-data-source/member-data.d.ts +126 -0
- package/lib/shared-data-source/member-data.js +465 -0
- package/lib/translations/enUS.d.ts +5 -0
- package/lib/translations/enUS.js +9 -3
- package/lib/translations/zhCN.d.ts +5 -0
- package/lib/translations/zhCN.js +13 -7
- package/lib/utilities/extract.d.ts +1 -1
- package/lib/utilities/logger.d.ts +8 -0
- package/lib/utilities/logger.js +42 -0
- package/lib/utilities/meeting-detail.d.ts +2 -0
- package/lib/utilities/meeting-detail.js +56 -0
- package/lib/utilities/validate-params.d.ts +2 -0
- package/lib/utilities/validate-params.js +16 -0
- package/lib/widget-sdk.d.ts +2 -0
- package/lib/widget-sdk.js +13 -0
- package/package.json +5 -5
|
@@ -0,0 +1,465 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.symbol.js");
|
|
4
|
+
require("core-js/modules/es.symbol.description.js");
|
|
5
|
+
require("core-js/modules/es.symbol.iterator.js");
|
|
6
|
+
require("core-js/modules/es.symbol.to-primitive.js");
|
|
7
|
+
require("core-js/modules/es.error.cause.js");
|
|
8
|
+
require("core-js/modules/es.error.to-string.js");
|
|
9
|
+
require("core-js/modules/es.array.is-array.js");
|
|
10
|
+
require("core-js/modules/es.array.slice.js");
|
|
11
|
+
require("core-js/modules/es.date.to-primitive.js");
|
|
12
|
+
require("core-js/modules/es.date.to-string.js");
|
|
13
|
+
require("core-js/modules/es.function.bind.js");
|
|
14
|
+
require("core-js/modules/es.function.name.js");
|
|
15
|
+
require("core-js/modules/es.number.constructor.js");
|
|
16
|
+
require("core-js/modules/es.object.create.js");
|
|
17
|
+
require("core-js/modules/es.object.define-properties.js");
|
|
18
|
+
require("core-js/modules/es.object.define-property.js");
|
|
19
|
+
require("core-js/modules/es.object.get-own-property-descriptor.js");
|
|
20
|
+
require("core-js/modules/es.object.get-own-property-descriptors.js");
|
|
21
|
+
require("core-js/modules/es.object.keys.js");
|
|
22
|
+
require("core-js/modules/es.regexp.exec.js");
|
|
23
|
+
require("core-js/modules/es.regexp.test.js");
|
|
24
|
+
require("core-js/modules/es.regexp.to-string.js");
|
|
25
|
+
require("core-js/modules/esnext.function.metadata.js");
|
|
26
|
+
require("core-js/modules/esnext.symbol.metadata.js");
|
|
27
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
28
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
29
|
+
Object.defineProperty(exports, "__esModule", {
|
|
30
|
+
value: true
|
|
31
|
+
});
|
|
32
|
+
exports.FcrUIMemberSharedDataSourceImpl = void 0;
|
|
33
|
+
require("core-js/modules/es.array.filter.js");
|
|
34
|
+
require("core-js/modules/es.array.find.js");
|
|
35
|
+
require("core-js/modules/es.array.for-each.js");
|
|
36
|
+
require("core-js/modules/es.array.from.js");
|
|
37
|
+
require("core-js/modules/es.array.includes.js");
|
|
38
|
+
require("core-js/modules/es.array.iterator.js");
|
|
39
|
+
require("core-js/modules/es.array.map.js");
|
|
40
|
+
require("core-js/modules/es.array.push.js");
|
|
41
|
+
require("core-js/modules/es.map.js");
|
|
42
|
+
require("core-js/modules/es.object.to-string.js");
|
|
43
|
+
require("core-js/modules/es.set.js");
|
|
44
|
+
require("core-js/modules/es.string.includes.js");
|
|
45
|
+
require("core-js/modules/es.string.iterator.js");
|
|
46
|
+
require("core-js/modules/es.weak-map.js");
|
|
47
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
48
|
+
require("core-js/modules/esnext.async-iterator.find.js");
|
|
49
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
50
|
+
require("core-js/modules/esnext.async-iterator.map.js");
|
|
51
|
+
require("core-js/modules/esnext.iterator.constructor.js");
|
|
52
|
+
require("core-js/modules/esnext.iterator.filter.js");
|
|
53
|
+
require("core-js/modules/esnext.iterator.find.js");
|
|
54
|
+
require("core-js/modules/esnext.iterator.for-each.js");
|
|
55
|
+
require("core-js/modules/esnext.iterator.map.js");
|
|
56
|
+
require("core-js/modules/esnext.map.delete-all.js");
|
|
57
|
+
require("core-js/modules/esnext.map.emplace.js");
|
|
58
|
+
require("core-js/modules/esnext.map.every.js");
|
|
59
|
+
require("core-js/modules/esnext.map.filter.js");
|
|
60
|
+
require("core-js/modules/esnext.map.find.js");
|
|
61
|
+
require("core-js/modules/esnext.map.find-key.js");
|
|
62
|
+
require("core-js/modules/esnext.map.includes.js");
|
|
63
|
+
require("core-js/modules/esnext.map.key-of.js");
|
|
64
|
+
require("core-js/modules/esnext.map.map-keys.js");
|
|
65
|
+
require("core-js/modules/esnext.map.map-values.js");
|
|
66
|
+
require("core-js/modules/esnext.map.merge.js");
|
|
67
|
+
require("core-js/modules/esnext.map.reduce.js");
|
|
68
|
+
require("core-js/modules/esnext.map.some.js");
|
|
69
|
+
require("core-js/modules/esnext.map.update.js");
|
|
70
|
+
require("core-js/modules/esnext.set.add-all.js");
|
|
71
|
+
require("core-js/modules/esnext.set.delete-all.js");
|
|
72
|
+
require("core-js/modules/esnext.set.difference.v2.js");
|
|
73
|
+
require("core-js/modules/esnext.set.difference.js");
|
|
74
|
+
require("core-js/modules/esnext.set.every.js");
|
|
75
|
+
require("core-js/modules/esnext.set.filter.js");
|
|
76
|
+
require("core-js/modules/esnext.set.find.js");
|
|
77
|
+
require("core-js/modules/esnext.set.intersection.v2.js");
|
|
78
|
+
require("core-js/modules/esnext.set.intersection.js");
|
|
79
|
+
require("core-js/modules/esnext.set.is-disjoint-from.v2.js");
|
|
80
|
+
require("core-js/modules/esnext.set.is-disjoint-from.js");
|
|
81
|
+
require("core-js/modules/esnext.set.is-subset-of.v2.js");
|
|
82
|
+
require("core-js/modules/esnext.set.is-subset-of.js");
|
|
83
|
+
require("core-js/modules/esnext.set.is-superset-of.v2.js");
|
|
84
|
+
require("core-js/modules/esnext.set.is-superset-of.js");
|
|
85
|
+
require("core-js/modules/esnext.set.join.js");
|
|
86
|
+
require("core-js/modules/esnext.set.map.js");
|
|
87
|
+
require("core-js/modules/esnext.set.reduce.js");
|
|
88
|
+
require("core-js/modules/esnext.set.some.js");
|
|
89
|
+
require("core-js/modules/esnext.set.symmetric-difference.v2.js");
|
|
90
|
+
require("core-js/modules/esnext.set.symmetric-difference.js");
|
|
91
|
+
require("core-js/modules/esnext.set.union.v2.js");
|
|
92
|
+
require("core-js/modules/esnext.set.union.js");
|
|
93
|
+
require("core-js/modules/esnext.weak-map.delete-all.js");
|
|
94
|
+
require("core-js/modules/esnext.weak-map.emplace.js");
|
|
95
|
+
require("core-js/modules/web.dom-collections.for-each.js");
|
|
96
|
+
require("core-js/modules/web.dom-collections.iterator.js");
|
|
97
|
+
require("core-js/modules/web.timers.js");
|
|
98
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
99
|
+
var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
|
|
100
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
101
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
102
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
103
|
+
var _mobx = require("mobx");
|
|
104
|
+
var _memberListDataSource = require("../modules/participant/member-list-data-source");
|
|
105
|
+
var _fcrCore = require("fcr-core");
|
|
106
|
+
var _base = require("../base");
|
|
107
|
+
var _logger = require("agora-foundation/lib/logger");
|
|
108
|
+
var _type = require("fcr-core/lib/type");
|
|
109
|
+
var _decorator = require("agora-foundation/lib/decorator");
|
|
110
|
+
var _FcrUIMemberSharedDataSourceImpl;
|
|
111
|
+
var _initProto, _init_serverPushTotalUserCount, _init__audioVolumeMap, _init__isLocalUserInPstn, _init__interpreterInputLanguageList, _setIsLocalUserInPstnDecs, _forceAddLocalUserWithControlDecs, _handleAllUserCountUpdatedDecs, _initUserListDecs, _handleUserInfoUpdatedDecs, _syncParticipantsDecs, _onAudioVolumeUpdatedDecs, _handleRemoteUserJoinedDecs, _handleRemoteUserLeftDecs, _handleStreamsAddedDecs, _handleStreamsUpdatedDecs, _handleStreamsRemovedDecs, _updateMemberListWithBoardStateDecs, _ref;
|
|
112
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
113
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
114
|
+
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
115
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
116
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
117
|
+
function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
|
|
118
|
+
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
|
|
119
|
+
function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
|
|
120
|
+
function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
|
|
121
|
+
function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); }
|
|
122
|
+
function _applyDecs(e, t, r, n, o, a) { function i(e, t, r) { return function (n, o) { return r && r(n), e[t].call(n, o); }; } function c(e, t) { for (var r = 0; r < e.length; r++) e[r].call(t); return t; } function s(e, t, r, n) { if ("function" != typeof e && (n || void 0 !== e)) throw new TypeError(t + " must " + (r || "be") + " a function" + (n ? "" : " or undefined")); return e; } function applyDec(e, t, r, n, o, a, c, u, l, f, p, d, h) { function m(e) { if (!h(e)) throw new TypeError("Attempted to access private element on non-instance"); } var y, v = t[0], g = t[3], b = !u; if (!b) { r || Array.isArray(v) || (v = [v]); var w = {}, S = [], A = 3 === o ? "get" : 4 === o || d ? "set" : "value"; f ? (p || d ? w = { get: _setFunctionName(function () { return g(this); }, n, "get"), set: function set(e) { t[4](this, e); } } : w[A] = g, p || _setFunctionName(w[A], n, 2 === o ? "" : A)) : p || (w = Object.getOwnPropertyDescriptor(e, n)); } for (var P = e, j = v.length - 1; j >= 0; j -= r ? 2 : 1) { var D = v[j], E = r ? v[j - 1] : void 0, I = {}, O = { kind: ["field", "accessor", "method", "getter", "setter", "class"][o], name: n, metadata: a, addInitializer: function (e, t) { if (e.v) throw Error("attempted to call addInitializer after decoration was finished"); s(t, "An initializer", "be", !0), c.push(t); }.bind(null, I) }; try { if (b) (y = s(D.call(E, P, O), "class decorators", "return")) && (P = y);else { var k, F; O["static"] = l, O["private"] = f, f ? 2 === o ? k = function k(e) { return m(e), w.value; } : (o < 4 && (k = i(w, "get", m)), 3 !== o && (F = i(w, "set", m))) : (k = function k(e) { return e[n]; }, (o < 2 || 4 === o) && (F = function F(e, t) { e[n] = t; })); var N = O.access = { has: f ? h.bind() : function (e) { return n in e; } }; if (k && (N.get = k), F && (N.set = F), P = D.call(E, d ? { get: w.get, set: w.set } : w[A], O), d) { if ("object" == _typeof(P) && P) (y = s(P.get, "accessor.get")) && (w.get = y), (y = s(P.set, "accessor.set")) && (w.set = y), (y = s(P.init, "accessor.init")) && S.push(y);else if (void 0 !== P) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0"); } else s(P, (p ? "field" : "method") + " decorators", "return") && (p ? S.push(P) : w[A] = P); } } finally { I.v = !0; } } return (p || d) && u.push(function (e, t) { for (var r = S.length - 1; r >= 0; r--) t = S[r].call(e, t); return t; }), p || b || (f ? d ? u.push(i(w, "get"), i(w, "set")) : u.push(2 === o ? w[A] : i.call.bind(w[A])) : Object.defineProperty(e, n, w)), P; } function u(e, t) { return Object.defineProperty(e, Symbol.metadata || Symbol["for"]("Symbol.metadata"), { configurable: !0, enumerable: !0, value: t }); } if (arguments.length >= 6) var l = a[Symbol.metadata || Symbol["for"]("Symbol.metadata")]; var f = Object.create(null == l ? null : l), p = function (e, t, r, n) { var o, a, i = [], s = function s(t) { return _checkInRHS(t) === e; }, u = new Map(); function l(e) { e && i.push(c.bind(null, e)); } for (var f = 0; f < t.length; f++) { var p = t[f]; if (Array.isArray(p)) { var d = p[1], h = p[2], m = p.length > 3, y = 16 & d, v = !!(8 & d), g = 0 == (d &= 7), b = h + "/" + v; if (!g && !m) { var w = u.get(b); if (!0 === w || 3 === w && 4 !== d || 4 === w && 3 !== d) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + h); u.set(b, !(d > 2) || d); } applyDec(v ? e : e.prototype, p, y, m ? "#" + h : _toPropertyKey(h), d, n, v ? a = a || [] : o = o || [], i, v, m, g, 1 === d, v && m ? s : r); } } return l(o), l(a), i; }(e, t, o, f); return r.length || u(e, f), { e: p, get c() { var t = []; return r.length && [u(applyDec(e, [r], n, e.name, 5, f, t), f), c.bind(null, t, e)]; } }; }
|
|
123
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
124
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
125
|
+
function _setFunctionName(e, t, n) { "symbol" == _typeof(t) && (t = (t = t.description) ? "[" + t + "]" : ""); try { Object.defineProperty(e, "name", { configurable: !0, value: n ? n + " " + t : t }); } catch (e) {} return e; }
|
|
126
|
+
function _checkInRHS(e) { if (Object(e) !== e) throw TypeError("right-hand side of 'in' should be an object, got " + (null !== e ? _typeof(e) : "null")); return e; }
|
|
127
|
+
var _A = /*#__PURE__*/new WeakMap();
|
|
128
|
+
var _B = /*#__PURE__*/new WeakMap();
|
|
129
|
+
var _C = /*#__PURE__*/new WeakMap();
|
|
130
|
+
var _D = /*#__PURE__*/new WeakMap();
|
|
131
|
+
_ref = (_setIsLocalUserInPstnDecs = [_mobx.action, _mobx.action.bound], _forceAddLocalUserWithControlDecs = [_mobx.action, _mobx.action.bound], _handleAllUserCountUpdatedDecs = [_mobx.action, _mobx.action.bound], _initUserListDecs = [_mobx.action, _mobx.action.bound], _handleUserInfoUpdatedDecs = [_mobx.action, _mobx.action.bound], _syncParticipantsDecs = (0, _decorator.debounced)(800), _onAudioVolumeUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleRemoteUserJoinedDecs = [_mobx.action, _mobx.action.bound], _handleRemoteUserLeftDecs = [_mobx.action, _mobx.action.bound], _handleStreamsAddedDecs = [_mobx.action, _mobx.action.bound], _handleStreamsUpdatedDecs = [_mobx.action, _mobx.action.bound], _handleStreamsRemovedDecs = [_mobx.action, _mobx.action.bound], _updateMemberListWithBoardStateDecs = [_mobx.action, _mobx.action.bound], "_dataSource");
|
|
132
|
+
var FcrUIMemberSharedDataSourceImpl = exports.FcrUIMemberSharedDataSourceImpl = /*#__PURE__*/function () {
|
|
133
|
+
function FcrUIMemberSharedDataSourceImpl(_mainRoomUserControl, _streamControl, _whiteBoardControl) {
|
|
134
|
+
var _this = this;
|
|
135
|
+
(0, _classCallCheck2["default"])(this, FcrUIMemberSharedDataSourceImpl);
|
|
136
|
+
(0, _defineProperty2["default"])(this, _ref, (_initProto(this), new _memberListDataSource.FcrUIMemberListDataSourceImpl()));
|
|
137
|
+
(0, _defineProperty2["default"])(this, "logger", (0, _logger.getLogger)());
|
|
138
|
+
(0, _defineProperty2["default"])(this, "_disposers", []);
|
|
139
|
+
(0, _defineProperty2["default"])(this, "_userObserver", {
|
|
140
|
+
onRemoteUsersJoined: this._handleRemoteUserJoined,
|
|
141
|
+
onRemoteUsersLeft: this._handleRemoteUserLeft,
|
|
142
|
+
onUserInfoUpdated: this._handleUserInfoUpdated,
|
|
143
|
+
onAllUserCountUpdated: this._handleAllUserCountUpdated
|
|
144
|
+
});
|
|
145
|
+
(0, _defineProperty2["default"])(this, "_streamsObserver", {
|
|
146
|
+
onStreamsAdded: this._handleStreamsAdded,
|
|
147
|
+
onStreamsUpdated: this._handleStreamsUpdated,
|
|
148
|
+
onStreamVolumeIndicationUpdated: this._onAudioVolumeUpdated,
|
|
149
|
+
onStreamsRemoved: this._handleStreamsRemoved
|
|
150
|
+
});
|
|
151
|
+
_classPrivateFieldInitSpec(this, _A, _init_serverPushTotalUserCount(this, 1));
|
|
152
|
+
_classPrivateFieldInitSpec(this, _B, _init__audioVolumeMap(this, new Map()));
|
|
153
|
+
_classPrivateFieldInitSpec(this, _C, _init__isLocalUserInPstn(this, false));
|
|
154
|
+
_classPrivateFieldInitSpec(this, _D, _init__interpreterInputLanguageList(this, []));
|
|
155
|
+
this._mainRoomUserControl = _mainRoomUserControl;
|
|
156
|
+
this._streamControl = _streamControl;
|
|
157
|
+
this._whiteBoardControl = _whiteBoardControl;
|
|
158
|
+
this._mainRoomUserControl.addObserver(this._userObserver);
|
|
159
|
+
this._streamControl.addObserver(this._streamsObserver);
|
|
160
|
+
this._initUserList();
|
|
161
|
+
this.updateMemberListWithBoardState();
|
|
162
|
+
this._disposers.push((0, _mobx.reaction)(function () {
|
|
163
|
+
return _this.memberList.length;
|
|
164
|
+
}, function () {
|
|
165
|
+
return _this._syncParticipants();
|
|
166
|
+
}));
|
|
167
|
+
}
|
|
168
|
+
return (0, _createClass2["default"])(FcrUIMemberSharedDataSourceImpl, [{
|
|
169
|
+
key: "serverPushTotalUserCount",
|
|
170
|
+
get: function get() {
|
|
171
|
+
return _classPrivateFieldGet(_A, this);
|
|
172
|
+
},
|
|
173
|
+
set: function set(v) {
|
|
174
|
+
_classPrivateFieldSet(_A, this, v);
|
|
175
|
+
}
|
|
176
|
+
}, {
|
|
177
|
+
key: "_audioVolumeMap",
|
|
178
|
+
get: function get() {
|
|
179
|
+
return _classPrivateFieldGet(_B, this);
|
|
180
|
+
},
|
|
181
|
+
set: function set(v) {
|
|
182
|
+
_classPrivateFieldSet(_B, this, v);
|
|
183
|
+
}
|
|
184
|
+
}, {
|
|
185
|
+
key: "_isLocalUserInPstn",
|
|
186
|
+
get: function get() {
|
|
187
|
+
return _classPrivateFieldGet(_C, this);
|
|
188
|
+
},
|
|
189
|
+
set: function set(v) {
|
|
190
|
+
_classPrivateFieldSet(_C, this, v);
|
|
191
|
+
}
|
|
192
|
+
}, {
|
|
193
|
+
key: "_interpreterInputLanguageList",
|
|
194
|
+
get: function get() {
|
|
195
|
+
return _classPrivateFieldGet(_D, this);
|
|
196
|
+
},
|
|
197
|
+
set: function set(v) {
|
|
198
|
+
_classPrivateFieldSet(_D, this, v);
|
|
199
|
+
}
|
|
200
|
+
}, {
|
|
201
|
+
key: "totalUserCount",
|
|
202
|
+
get: function get() {
|
|
203
|
+
return this.memberList.length;
|
|
204
|
+
}
|
|
205
|
+
}, {
|
|
206
|
+
key: "hasOwnPstnStream",
|
|
207
|
+
get: function get() {
|
|
208
|
+
return this._isLocalUserInPstn;
|
|
209
|
+
}
|
|
210
|
+
}, {
|
|
211
|
+
key: "interpreterInputLanguageList",
|
|
212
|
+
get: function get() {
|
|
213
|
+
return this._interpreterInputLanguageList;
|
|
214
|
+
}
|
|
215
|
+
}, {
|
|
216
|
+
key: "audioVolumeMap",
|
|
217
|
+
get: function get() {
|
|
218
|
+
return this._audioVolumeMap;
|
|
219
|
+
}
|
|
220
|
+
}, {
|
|
221
|
+
key: "setIsLocalUserInPstn",
|
|
222
|
+
value: function setIsLocalUserInPstn() {
|
|
223
|
+
var streams = this._streamControl.getStreamsByUserId(this.localUserId);
|
|
224
|
+
var pstnStream = streams.find(function (_ref2) {
|
|
225
|
+
var connectorType = _ref2.connectorType;
|
|
226
|
+
return connectorType === _fcrCore.FcrRoomConnectorType.PSTN;
|
|
227
|
+
});
|
|
228
|
+
this._isLocalUserInPstn = !!pstnStream;
|
|
229
|
+
}
|
|
230
|
+
}, {
|
|
231
|
+
key: "localUserMemberData",
|
|
232
|
+
get: function get() {
|
|
233
|
+
var localUserMemberData = this._getLocalUserInPureList();
|
|
234
|
+
if (!localUserMemberData) {
|
|
235
|
+
this._forceAddLocalUserWithControl();
|
|
236
|
+
return this._getLocalUserInPureList();
|
|
237
|
+
}
|
|
238
|
+
return localUserMemberData;
|
|
239
|
+
}
|
|
240
|
+
}, {
|
|
241
|
+
key: "localUser",
|
|
242
|
+
get: function get() {
|
|
243
|
+
return this.localUserMemberData.userInfo;
|
|
244
|
+
}
|
|
245
|
+
}, {
|
|
246
|
+
key: "_forceAddLocalUserWithControl",
|
|
247
|
+
value: function _forceAddLocalUserWithControl() {
|
|
248
|
+
var userInfo = this._mainRoomUserControl.getLocalUser();
|
|
249
|
+
this._dataSource.add(userInfo, this._streamControl.getStreamsByUserId(userInfo.userId), true);
|
|
250
|
+
}
|
|
251
|
+
}, {
|
|
252
|
+
key: "_handleAllUserCountUpdated",
|
|
253
|
+
value: function _handleAllUserCountUpdated(_roomId, count) {
|
|
254
|
+
this.serverPushTotalUserCount = count;
|
|
255
|
+
}
|
|
256
|
+
}, {
|
|
257
|
+
key: "_getLocalUserInPureList",
|
|
258
|
+
value: function _getLocalUserInPureList() {
|
|
259
|
+
var _this2 = this;
|
|
260
|
+
return this.memberList.find(function (user) {
|
|
261
|
+
return user.userId === _this2._mainRoomUserControl.getLocalUser().userId;
|
|
262
|
+
});
|
|
263
|
+
}
|
|
264
|
+
}, {
|
|
265
|
+
key: "localUserId",
|
|
266
|
+
get: function get() {
|
|
267
|
+
return this.localUser.userId || '';
|
|
268
|
+
}
|
|
269
|
+
}, {
|
|
270
|
+
key: "localUserRole",
|
|
271
|
+
get: function get() {
|
|
272
|
+
var _this$localUser$userR;
|
|
273
|
+
return (_this$localUser$userR = this.localUser.userRole) !== null && _this$localUser$userR !== void 0 ? _this$localUser$userR : _fcrCore.FcrUserRole.PARTICIPANT;
|
|
274
|
+
}
|
|
275
|
+
}, {
|
|
276
|
+
key: "localUserRoleString",
|
|
277
|
+
get: function get() {
|
|
278
|
+
var _FcrUserRoleToStringM;
|
|
279
|
+
return (_FcrUserRoleToStringM = _type.FcrUserRoleToStringMap[this.localUser.userRole]) !== null && _FcrUserRoleToStringM !== void 0 ? _FcrUserRoleToStringM : _type.FcrUserRoleToStringMap[_fcrCore.FcrUserRole.PARTICIPANT];
|
|
280
|
+
}
|
|
281
|
+
}, {
|
|
282
|
+
key: "isLocalUserHost",
|
|
283
|
+
get: function get() {
|
|
284
|
+
return [_fcrCore.FcrUserRole.HOST, _fcrCore.FcrUserRole.COHOST].includes(this.localUserRole);
|
|
285
|
+
}
|
|
286
|
+
}, {
|
|
287
|
+
key: "remoteMembers",
|
|
288
|
+
get: function get() {
|
|
289
|
+
var _this3 = this;
|
|
290
|
+
return this.memberList.filter(function (user) {
|
|
291
|
+
return user.userInfo.userId !== _this3.localUserId;
|
|
292
|
+
});
|
|
293
|
+
}
|
|
294
|
+
}, {
|
|
295
|
+
key: "remoteMembersUserInfosList",
|
|
296
|
+
get: function get() {
|
|
297
|
+
return this.remoteMembers.map(function (memberData) {
|
|
298
|
+
return memberData.userInfo;
|
|
299
|
+
});
|
|
300
|
+
}
|
|
301
|
+
}, {
|
|
302
|
+
key: "_initUserList",
|
|
303
|
+
value: function _initUserList() {
|
|
304
|
+
var users = this._mainRoomUserControl.getUserList();
|
|
305
|
+
var infos = [];
|
|
306
|
+
var _iterator = _createForOfIteratorHelper(users),
|
|
307
|
+
_step;
|
|
308
|
+
try {
|
|
309
|
+
for (_iterator.s(); !(_step = _iterator.n()).done;) {
|
|
310
|
+
var userInfo = _step.value;
|
|
311
|
+
infos.push(new _memberListDataSource.FcrUIMemberDataImpl(userInfo, this._streamControl.getStreamsByUserId(userInfo.userId), this.localUserId === userInfo.userId));
|
|
312
|
+
}
|
|
313
|
+
} catch (err) {
|
|
314
|
+
_iterator.e(err);
|
|
315
|
+
} finally {
|
|
316
|
+
_iterator.f();
|
|
317
|
+
}
|
|
318
|
+
this._dataSource.init(infos);
|
|
319
|
+
}
|
|
320
|
+
}, {
|
|
321
|
+
key: "memberList",
|
|
322
|
+
get: function get() {
|
|
323
|
+
return this._dataSource.list;
|
|
324
|
+
}
|
|
325
|
+
}, {
|
|
326
|
+
key: "memberUserInfoList",
|
|
327
|
+
get: function get() {
|
|
328
|
+
return this.memberList.map(function (memberData) {
|
|
329
|
+
return memberData.userInfo;
|
|
330
|
+
});
|
|
331
|
+
}
|
|
332
|
+
}, {
|
|
333
|
+
key: "_handleUserInfoUpdated",
|
|
334
|
+
value: function _handleUserInfoUpdated(roomId, event) {
|
|
335
|
+
var targetUser = event.modifiedUser;
|
|
336
|
+
this._dataSource.updateUserInfo(targetUser, true);
|
|
337
|
+
}
|
|
338
|
+
}, {
|
|
339
|
+
key: "_syncParticipants",
|
|
340
|
+
value: function _syncParticipants() {
|
|
341
|
+
var _this4 = this;
|
|
342
|
+
var syncTimber = setTimeout(function () {
|
|
343
|
+
_this4.logger.warn('[FcrUIMemberSharedDataSourceImpl] _syncParticipants: start sync');
|
|
344
|
+
var mainRoomUsersCount = _this4._mainRoomUserControl.getAllUserCount();
|
|
345
|
+
var pureListLen = _this4.memberList.length;
|
|
346
|
+
if (mainRoomUsersCount !== pureListLen || _this4.totalUserCount !== pureListLen) {
|
|
347
|
+
_this4.logger.warn('[FcrUIMemberSharedDataSourceImpl] _syncParticipants: need sync');
|
|
348
|
+
// 有差异,优先进行以userControl内列表的遍历补充
|
|
349
|
+
var controlUserList = _this4._mainRoomUserControl.getUserList();
|
|
350
|
+
var storeUserListIds = Array.from(new Set(_this4.memberList.map(function (participant) {
|
|
351
|
+
return participant.userId;
|
|
352
|
+
})));
|
|
353
|
+
controlUserList.forEach(function (userInfo) {
|
|
354
|
+
if (userInfo.userId && !storeUserListIds.includes(userInfo.userId)) {
|
|
355
|
+
_this4._dataSource.add(userInfo, _this4._streamControl.getStreamsByUserId(userInfo.userId), userInfo.userId === _this4.localUserId);
|
|
356
|
+
}
|
|
357
|
+
});
|
|
358
|
+
clearTimeout(syncTimber);
|
|
359
|
+
}
|
|
360
|
+
}, 1000);
|
|
361
|
+
}
|
|
362
|
+
}, {
|
|
363
|
+
key: "_onAudioVolumeUpdated",
|
|
364
|
+
value: function _onAudioVolumeUpdated(roomId, streamId, volume) {
|
|
365
|
+
var stream = this._streamControl.getStreamByStreamId(streamId);
|
|
366
|
+
if (!stream) {
|
|
367
|
+
return;
|
|
368
|
+
}
|
|
369
|
+
this._audioVolumeMap.set(stream.owner.userId, Math.floor(volume / 255 * 100));
|
|
370
|
+
}
|
|
371
|
+
}, {
|
|
372
|
+
key: "_handleRemoteUserJoined",
|
|
373
|
+
value: function _handleRemoteUserJoined(roomId, events) {
|
|
374
|
+
var _this5 = this;
|
|
375
|
+
events.forEach(function (event) {
|
|
376
|
+
var userInfo = event.userInfo;
|
|
377
|
+
_this5._dataSource.add(userInfo, _this5._streamControl.getStreamsByUserId(userInfo.userId), userInfo.userId === _this5.localUserId);
|
|
378
|
+
});
|
|
379
|
+
this.updateMemberListWithBoardState();
|
|
380
|
+
}
|
|
381
|
+
}, {
|
|
382
|
+
key: "_handleRemoteUserLeft",
|
|
383
|
+
value: function _handleRemoteUserLeft(roomId, events) {
|
|
384
|
+
var _this6 = this;
|
|
385
|
+
events.forEach(function (event) {
|
|
386
|
+
var userInfo = event.userInfo;
|
|
387
|
+
_this6._dataSource["delete"](userInfo);
|
|
388
|
+
});
|
|
389
|
+
this.updateMemberListWithBoardState();
|
|
390
|
+
}
|
|
391
|
+
}, {
|
|
392
|
+
key: "_handleStreamsAdded",
|
|
393
|
+
value: function _handleStreamsAdded(roomId, events) {
|
|
394
|
+
var _this7 = this;
|
|
395
|
+
(0, _mobx.runInAction)(function () {
|
|
396
|
+
events.forEach(function (e) {
|
|
397
|
+
var modifiedStream = e.modifiedStream;
|
|
398
|
+
_this7._dataSource.updateWithStreamAdd(modifiedStream);
|
|
399
|
+
});
|
|
400
|
+
_this7.setIsLocalUserInPstn();
|
|
401
|
+
});
|
|
402
|
+
}
|
|
403
|
+
}, {
|
|
404
|
+
key: "_handleStreamsUpdated",
|
|
405
|
+
value: function _handleStreamsUpdated(roomId, events) {
|
|
406
|
+
var _this8 = this;
|
|
407
|
+
(0, _mobx.runInAction)(function () {
|
|
408
|
+
events.forEach(function (e) {
|
|
409
|
+
var modifiedStream = e.modifiedStream;
|
|
410
|
+
_this8._dataSource.updateStreamInfo(modifiedStream);
|
|
411
|
+
});
|
|
412
|
+
_this8.setIsLocalUserInPstn();
|
|
413
|
+
});
|
|
414
|
+
}
|
|
415
|
+
}, {
|
|
416
|
+
key: "_handleStreamsRemoved",
|
|
417
|
+
value: function _handleStreamsRemoved(roomId, events) {
|
|
418
|
+
var _this9 = this;
|
|
419
|
+
(0, _mobx.runInAction)(function () {
|
|
420
|
+
events.forEach(function (e) {
|
|
421
|
+
var modifiedStream = e.modifiedStream;
|
|
422
|
+
_this9._dataSource.updateWithStreamRemove(modifiedStream);
|
|
423
|
+
});
|
|
424
|
+
_this9.setIsLocalUserInPstn();
|
|
425
|
+
});
|
|
426
|
+
}
|
|
427
|
+
}, {
|
|
428
|
+
key: "updateMemberListWithBoardState",
|
|
429
|
+
value: function updateMemberListWithBoardState() {
|
|
430
|
+
var _this10 = this;
|
|
431
|
+
(0, _mobx.runInAction)(function () {
|
|
432
|
+
if (_this10._whiteBoardControl) {
|
|
433
|
+
var boardInfo = _this10._whiteBoardControl.getBoardActiveInfo();
|
|
434
|
+
var isActive = boardInfo.isActive,
|
|
435
|
+
ownerUserId = boardInfo.ownerUserId;
|
|
436
|
+
_this10._dataSource.list.forEach(function (user) {
|
|
437
|
+
var isBoardActive = isActive && user.userId === ownerUserId;
|
|
438
|
+
user.setUserInfo(_objectSpread(_objectSpread({}, user.userInfo), {}, {
|
|
439
|
+
isBoardActive: isBoardActive
|
|
440
|
+
}));
|
|
441
|
+
});
|
|
442
|
+
_this10._dataSource.list = (0, _toConsumableArray2["default"])(_this10._dataSource.list);
|
|
443
|
+
}
|
|
444
|
+
});
|
|
445
|
+
}
|
|
446
|
+
}, {
|
|
447
|
+
key: "release",
|
|
448
|
+
value: function release() {
|
|
449
|
+
this._disposers.forEach(function (disposer) {
|
|
450
|
+
return disposer();
|
|
451
|
+
});
|
|
452
|
+
this._disposers = [];
|
|
453
|
+
this._mainRoomUserControl.removeObserver(this._userObserver);
|
|
454
|
+
this._streamControl.removeObserver(this._streamsObserver);
|
|
455
|
+
}
|
|
456
|
+
}]);
|
|
457
|
+
}();
|
|
458
|
+
_FcrUIMemberSharedDataSourceImpl = FcrUIMemberSharedDataSourceImpl;
|
|
459
|
+
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUIMemberSharedDataSourceImpl, [[_mobx.observable, 1, "serverPushTotalUserCount"], [_mobx.observable, 1, "_audioVolumeMap"], [_mobx.observable, 1, "_isLocalUserInPstn"], [_mobx.observable, 1, "_interpreterInputLanguageList"], [_mobx.computed, 3, "hasOwnPstnStream"], [_mobx.computed, 3, "interpreterInputLanguageList"], [_mobx.computed, 3, "audioVolumeMap"], [_setIsLocalUserInPstnDecs, 18, "setIsLocalUserInPstn"], [_forceAddLocalUserWithControlDecs, 18, "_forceAddLocalUserWithControl"], [_handleAllUserCountUpdatedDecs, 18, "_handleAllUserCountUpdated"], [_mobx.computed, 3, "isLocalUserHost"], [_mobx.computed, 3, "remoteMembers"], [_mobx.computed, 3, "remoteMembersUserInfosList"], [_initUserListDecs, 18, "_initUserList"], [_mobx.computed, 3, "memberList"], [_mobx.computed, 3, "memberUserInfoList"], [_handleUserInfoUpdatedDecs, 18, "_handleUserInfoUpdated"], [_syncParticipantsDecs, 2, "_syncParticipants"], [_onAudioVolumeUpdatedDecs, 18, "_onAudioVolumeUpdated"], [_handleRemoteUserJoinedDecs, 18, "_handleRemoteUserJoined"], [_handleRemoteUserLeftDecs, 18, "_handleRemoteUserLeft"], [_handleStreamsAddedDecs, 18, "_handleStreamsAdded"], [_handleStreamsUpdatedDecs, 18, "_handleStreamsUpdated"], [_handleStreamsRemovedDecs, 18, "_handleStreamsRemoved"], [_updateMemberListWithBoardStateDecs, 18, "updateMemberListWithBoardState"]], []).e, 5);
|
|
460
|
+
_init_serverPushTotalUserCount = _applyDecs$e[0];
|
|
461
|
+
_init__audioVolumeMap = _applyDecs$e[1];
|
|
462
|
+
_init__isLocalUserInPstn = _applyDecs$e[2];
|
|
463
|
+
_init__interpreterInputLanguageList = _applyDecs$e[3];
|
|
464
|
+
_initProto = _applyDecs$e[4];
|
|
465
|
+
(0, _base.registerDependency)('sharedMemberDataSource');
|
|
@@ -1481,6 +1481,7 @@ export declare const enUs: {
|
|
|
1481
1481
|
fmt_interpretation_setting_popup_controller_option_change_comfirm: string;
|
|
1482
1482
|
fmt_interpretation_popup_toast_interpretation_online: string;
|
|
1483
1483
|
fmt_interpretation_popup_toast_interpreter_set_by_controller: string;
|
|
1484
|
+
fmt_interpretation_popup_toast_interpreter_set_by_co_controller: string;
|
|
1484
1485
|
fmt_interpretation_sidebar_button_interpret: string;
|
|
1485
1486
|
fmt_interpretation_sidebar_toast_choose_language: string;
|
|
1486
1487
|
fmt_interpretation_sidebar_toast_hover_choose_language: string;
|
|
@@ -1871,4 +1872,8 @@ export declare const enUs: {
|
|
|
1871
1872
|
fmt_h_label_tempor_hide_white_board: string;
|
|
1872
1873
|
fmt_h_tips_host_enabled_waiting_room: string;
|
|
1873
1874
|
fmt_h_tips_tap_to_play: string;
|
|
1875
|
+
fmt_pc_room_not_exist_error: string;
|
|
1876
|
+
fmt_lock_error: string;
|
|
1877
|
+
fmt_end_error: string;
|
|
1878
|
+
fmt_host_leave_error: string;
|
|
1874
1879
|
};
|
package/lib/translations/enUS.js
CHANGED
|
@@ -161,7 +161,7 @@ var enUs = exports.enUs = {
|
|
|
161
161
|
fmt_popup_tips_leavenow: 'Are you sure you want to leave the meeting now?',
|
|
162
162
|
fmt_popup_label_expression: 'expression',
|
|
163
163
|
fmt_popup_tips_alreadycopied: 'Already copied on the clipboard',
|
|
164
|
-
fmt_popup_button_meetinginfor: 'Copy
|
|
164
|
+
fmt_popup_button_meetinginfor: 'Copy Details',
|
|
165
165
|
fmt_popup_button_activatewaitingroom: 'Activate waiting room',
|
|
166
166
|
fmt_popup_button_openvideo: 'Open video',
|
|
167
167
|
fmt_popup_button_drag: 'Drag',
|
|
@@ -1512,7 +1512,8 @@ var enUs = exports.enUs = {
|
|
|
1512
1512
|
fmt_interpretation_setting_popup_controller_option_stop_interpretation: 'Stop interpretation',
|
|
1513
1513
|
fmt_interpretation_setting_popup_controller_option_change_comfirm: 'Comfirmation of changes',
|
|
1514
1514
|
fmt_interpretation_popup_toast_interpretation_online: 'Simultaneous Interpretation has been activated',
|
|
1515
|
-
fmt_interpretation_popup_toast_interpreter_set_by_controller: 'The
|
|
1515
|
+
fmt_interpretation_popup_toast_interpreter_set_by_controller: 'The Moderator {reason1} designated {yyyy} and other {reason3} individuals as interpreters.',
|
|
1516
|
+
fmt_interpretation_popup_toast_interpreter_set_by_co_controller: 'The Co-Moderator {reason1} designated {yyyy} and other {reason3} individuals as interpreters.',
|
|
1516
1517
|
fmt_interpretation_sidebar_button_interpret: 'Interpret',
|
|
1517
1518
|
fmt_interpretation_sidebar_toast_choose_language: 'Different language channels are available for simultaneous interpretation',
|
|
1518
1519
|
fmt_interpretation_sidebar_toast_hover_choose_language: 'Choose your language channel',
|
|
@@ -1910,5 +1911,10 @@ var enUs = exports.enUs = {
|
|
|
1910
1911
|
fmt_h_label_tempor_hide_screen_share: 'When sharing the screen, other participants will be temporarily hidden.',
|
|
1911
1912
|
fmt_h_label_tempor_hide_white_board: 'When sharing the whiteboard, other participants will be temporarily hidden.',
|
|
1912
1913
|
fmt_h_tips_host_enabled_waiting_room: 'The host has enabled the waiting room, and you cannot join the meeting at the moment.',
|
|
1913
|
-
fmt_h_tips_tap_to_play: 'Tap to play'
|
|
1914
|
+
fmt_h_tips_tap_to_play: 'Tap to play',
|
|
1915
|
+
//****************** 错误信息 ******************
|
|
1916
|
+
fmt_pc_room_not_exist_error: 'The room does not exist or the password is wrong',
|
|
1917
|
+
fmt_lock_error: 'The host has locked the meeting and no one else can join',
|
|
1918
|
+
fmt_end_error: 'The meeting has ended',
|
|
1919
|
+
fmt_host_leave_error: 'The moderator is not in the meeting'
|
|
1914
1920
|
};
|
|
@@ -1478,6 +1478,7 @@ export declare const zhCn: {
|
|
|
1478
1478
|
fmt_interpretation_setting_popup_controller_option_change_comfirm: string;
|
|
1479
1479
|
fmt_interpretation_popup_toast_interpretation_online: string;
|
|
1480
1480
|
fmt_interpretation_popup_toast_interpreter_set_by_controller: string;
|
|
1481
|
+
fmt_interpretation_popup_toast_interpreter_set_by_co_controller: string;
|
|
1481
1482
|
fmt_interpretation_sidebar_button_interpret: string;
|
|
1482
1483
|
fmt_interpretation_sidebar_toast_choose_language: string;
|
|
1483
1484
|
fmt_interpretation_sidebar_toast_hover_choose_language: string;
|
|
@@ -1868,4 +1869,8 @@ export declare const zhCn: {
|
|
|
1868
1869
|
fmt_h_label_tempor_hide_white_board: string;
|
|
1869
1870
|
fmt_h_tips_host_enabled_waiting_room: string;
|
|
1870
1871
|
fmt_h_tips_tap_to_play: string;
|
|
1872
|
+
fmt_pc_room_not_exist_error: string;
|
|
1873
|
+
fmt_lock_error: string;
|
|
1874
|
+
fmt_end_error: string;
|
|
1875
|
+
fmt_host_leave_error: string;
|
|
1871
1876
|
};
|
package/lib/translations/zhCN.js
CHANGED
|
@@ -161,7 +161,7 @@ var zhCn = exports.zhCn = {
|
|
|
161
161
|
fmt_popup_tips_leavenow: '确定现在离开会议吗?',
|
|
162
162
|
fmt_popup_label_expression: '表情',
|
|
163
163
|
fmt_popup_tips_alreadycopied: '已复制在粘贴板',
|
|
164
|
-
fmt_popup_button_meetinginfor: '
|
|
164
|
+
fmt_popup_button_meetinginfor: '复制全部信息',
|
|
165
165
|
fmt_popup_button_activatewaitingroom: '启用等候室',
|
|
166
166
|
fmt_popup_button_openvideo: '开启视频',
|
|
167
167
|
fmt_popup_button_drag: '拖动',
|
|
@@ -681,7 +681,7 @@ var zhCn = exports.zhCn = {
|
|
|
681
681
|
fmt_meetinginfo_my_name_label: '我的名字',
|
|
682
682
|
fmt_meetinginfo_room_topic: '会议主题',
|
|
683
683
|
fmt_meetinginfo_duration_reservation: '持续时间/预约时间',
|
|
684
|
-
fmt_meetinginfo_dialog_title_meeting_info: '
|
|
684
|
+
fmt_meetinginfo_dialog_title_meeting_info: '会议详情',
|
|
685
685
|
fmt_meetinginfo_duration_1: '%1$d分钟',
|
|
686
686
|
fmt_meetinginfo_duration_2: '%1$d小时%2$d分钟',
|
|
687
687
|
fmt_meetinginfo_duration_2_no_min: '%1$d小时',
|
|
@@ -1509,7 +1509,8 @@ var zhCn = exports.zhCn = {
|
|
|
1509
1509
|
fmt_interpretation_setting_popup_controller_option_stop_interpretation: '停止传译',
|
|
1510
1510
|
fmt_interpretation_setting_popup_controller_option_change_comfirm: '确认更改',
|
|
1511
1511
|
fmt_interpretation_popup_toast_interpretation_online: '同声传译已启用',
|
|
1512
|
-
fmt_interpretation_popup_toast_interpreter_set_by_controller: '
|
|
1512
|
+
fmt_interpretation_popup_toast_interpreter_set_by_controller: '主持人{reason1}指定了{reason2}等{reason3}个人为翻译官',
|
|
1513
|
+
fmt_interpretation_popup_toast_interpreter_set_by_co_controller: '联席主持{reason1}指定了{reason2}等{reason3}个人为翻译官',
|
|
1513
1514
|
fmt_interpretation_sidebar_button_interpret: '同声传译',
|
|
1514
1515
|
fmt_interpretation_sidebar_toast_choose_language: '正在进行同声传译,可选择不同的语言频道收听',
|
|
1515
1516
|
fmt_interpretation_sidebar_toast_hover_choose_language: '可选择不同的语言频道收听',
|
|
@@ -1627,7 +1628,7 @@ var zhCn = exports.zhCn = {
|
|
|
1627
1628
|
fmt_meeting_creatpage_label_join_agree_service: '同意《灵动会议用户服务协议》和《灵动会议隐私政策》',
|
|
1628
1629
|
fmt_meeting_creatpage_popup_label_wrong_room_password: '房间不存在或者密码错误',
|
|
1629
1630
|
fmt_meeting_mainwindow_topbar_left_button_meeting_detail: '会议详情 {reason1}',
|
|
1630
|
-
fmt_meeting_mainwindow_topbar_left_popup_toast_copy_information: '
|
|
1631
|
+
fmt_meeting_mainwindow_topbar_left_popup_toast_copy_information: '点击复制全部信息',
|
|
1631
1632
|
fmt_meeting_mainwindow_topbar_left_popup_toast_copy_done: '会议信息已复制到剪贴板',
|
|
1632
1633
|
fmt_meeting_mainwindow_topbar_left_popup_label_share: '分享会议号或邀请链接',
|
|
1633
1634
|
fmt_meeting_mainwindow_topbar_left_popup_label_room_name: '{reason1}(房间名)',
|
|
@@ -1635,7 +1636,7 @@ var zhCn = exports.zhCn = {
|
|
|
1635
1636
|
fmt_meeting_mainwindow_topbar_left_popup_label_meeting_password: '会议密码 {reason1}',
|
|
1636
1637
|
fmt_meeting_mainwindow_topbar_left_popup_label_link: '邀请链接 {reason1}',
|
|
1637
1638
|
fmt_meeting_mainwindow_topbar_left_popup_label_all_info: '复制全部信息',
|
|
1638
|
-
fmt_meeting_call_voice_call_button_copy_info: '
|
|
1639
|
+
fmt_meeting_call_voice_call_button_copy_info: '复制全部信息',
|
|
1639
1640
|
fmt_link_invitation: '{reason1} 邀请您参加会议',
|
|
1640
1641
|
fmt_link_invitation_topic: '会议主题为:{reason1}',
|
|
1641
1642
|
fmt_link_invitation_time: '会议时间:{reason1}',
|
|
@@ -1801,7 +1802,7 @@ var zhCn = exports.zhCn = {
|
|
|
1801
1802
|
fmt_group_mainwindow_end_breakout_room_popup_button_continue: '继续讨论',
|
|
1802
1803
|
fmt_group_mainwindow_end_breakout_room_popup_button_end: '立即结束',
|
|
1803
1804
|
fmt_group_mainwindow_label_continue_by_host: '主持人已继续延时分组功能',
|
|
1804
|
-
fmt_group_mainwindow_label_continue_by_co_host: '
|
|
1805
|
+
fmt_group_mainwindow_label_continue_by_co_host: '联席主持人已继续延时分组功能',
|
|
1805
1806
|
fmt_group_mainwindow_label_end_by_host: '主持人已结束分组功能',
|
|
1806
1807
|
fmt_group_mainwindow_label_end_by_co_host: '联席主持人已结束分组功能',
|
|
1807
1808
|
fmt_group_mainwindow_label_times_up_auto_end_group: '时间到,已自动结束分组',
|
|
@@ -1907,5 +1908,10 @@ var zhCn = exports.zhCn = {
|
|
|
1907
1908
|
fmt_h_label_tempor_hide_screen_share: '在屏幕共享时,会暂时隐藏其它参会者',
|
|
1908
1909
|
fmt_h_label_tempor_hide_white_board: '在白板共享时,会暂时隐藏其他参会者',
|
|
1909
1910
|
fmt_h_tips_host_enabled_waiting_room: '管理员已开启等候室,暂时无法加入会议',
|
|
1910
|
-
fmt_h_tips_tap_to_play: '轻触进行播放'
|
|
1911
|
+
fmt_h_tips_tap_to_play: '轻触进行播放',
|
|
1912
|
+
//****************** 错误信息 ******************
|
|
1913
|
+
fmt_pc_room_not_exist_error: '房间不存在或密码错误',
|
|
1914
|
+
fmt_lock_error: '主持人锁定了会议,其他人不可入会',
|
|
1915
|
+
fmt_end_error: '会议已结束',
|
|
1916
|
+
fmt_host_leave_error: '主持人不在会议中'
|
|
1911
1917
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FcrStreamInfo, FcrUserInfo } from '
|
|
1
|
+
import { FcrStreamInfo, FcrUserInfo } from 'fcr-core/lib/type';
|
|
2
2
|
import { AgoraRteVideoSourceType } from 'agora-rte-sdk/lib/type';
|
|
3
3
|
export declare const extractUserStreams: (users: Map<string, FcrUserInfo>, streamByUid: Map<string, FcrStreamInfo>, sourceTypes: AgoraRteVideoSourceType[]) => Set<FcrStreamInfo>;
|
|
4
4
|
export declare const getVideoStreams: (streamByUid: Map<string, FcrStreamInfo>, sourceTypes: AgoraRteVideoSourceType[]) => Set<FcrStreamInfo>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { getLogger as _getLogger } from 'agora-foundation/lib/logger';
|
|
2
|
+
export declare const getLogger: () => import("agora-foundation/lib/logger").Logger;
|
|
3
|
+
export declare const createLogger: (opts: {
|
|
4
|
+
prefix: string;
|
|
5
|
+
database?: boolean;
|
|
6
|
+
}) => import("agora-foundation/lib/logger").Logger;
|
|
7
|
+
export declare const trace: (originalMethod: any, context: ClassMethodDecoratorContext) => void;
|
|
8
|
+
export declare const generateLogObserver: <T>(logger: ReturnType<typeof _getLogger>, callbackMethods: (keyof T)[]) => T;
|