@tencentcloud/roomkit-electron-vue3 2.4.2 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/Chat/ChatEditor/useChatEditor.mjs +1 -1
- package/es/components/Chat/MessageList/index.vue.mjs +1 -1
- package/es/components/Chat/MessageList/index.vue2.mjs +5 -1
- package/es/components/Chat/MessageList/useMessageListHook.mjs +4 -3
- package/es/components/ManageMember/MemberControl/index.vue.mjs +1 -1
- package/es/components/ManageMember/MemberControl/index.vue2.mjs +36 -19
- package/es/components/ManageMember/MemberControl/useMemberControlHooks.d.ts +6 -1
- package/es/components/ManageMember/MemberControl/useMemberControlHooks.mjs +113 -17
- package/es/components/ManageMember/MemberItem/useMemberItemHooks.d.ts +1 -0
- package/es/components/ManageMember/MemberItem/useMemberItemHooks.mjs +8 -6
- package/es/components/ManageMember/MemberItemCommon/MemberInfo.vue.mjs +1 -1
- package/es/components/ManageMember/MemberItemCommon/MemberInfo.vue2.mjs +7 -3
- package/es/components/ManageMember/index.vue.mjs +1 -1
- package/es/components/ManageMember/index.vue2.mjs +58 -7
- package/es/components/ManageMember/useIndexHooks.mjs +63 -14
- package/es/components/RoomContent/StreamContainer/index.vue.mjs +1 -1
- package/es/components/RoomContent/StreamContainer/index.vue2.mjs +10 -9
- package/es/components/RoomContent/StreamContainer/useStreamContainerHooks.d.ts +8 -0
- package/es/components/RoomContent/StreamContainer/useStreamContainerHooks.mjs +73 -29
- package/es/components/RoomContent/StreamRegion/index.vue.d.ts +5 -1
- package/es/components/RoomContent/StreamRegion/index.vue.mjs +1 -1
- package/es/components/RoomContent/StreamRegion/index.vue2.mjs +29 -5
- package/es/components/RoomFooter/ApplyControl/MasterApplyControl/index.vue.mjs +1 -1
- package/es/components/RoomFooter/ApplyControl/MasterApplyControl/index.vue2.mjs +10 -4
- package/es/components/RoomFooter/ApplyControl/MemberApplyControl.vue2.mjs +2 -2
- package/es/components/RoomFooter/AudioControl.vue2.mjs +2 -2
- package/es/components/RoomFooter/EndControl/index.vue.mjs +1 -1
- package/es/components/RoomFooter/EndControl/index.vue2.mjs +1 -1
- package/es/components/RoomFooter/EndControl/useEndControlHooks.mjs +16 -4
- package/es/components/RoomFooter/ScreenShareControl/Index.vue.mjs +1 -1
- package/es/components/RoomFooter/ScreenShareControl/Index.vue2.mjs +11 -3
- package/es/components/RoomFooter/VideoControl.vue.mjs +1 -1
- package/es/components/RoomFooter/VideoControl.vue2.mjs +8 -14
- package/es/components/RoomHeader/RoomInfo/index.vue2.mjs +2 -2
- package/es/components/RoomHeader/UserInfo/index.vue.d.ts +3 -11
- package/es/components/RoomHeader/UserInfo/index.vue.mjs +1 -1
- package/es/components/RoomHeader/UserInfo/index.vue2.mjs +9 -92
- package/es/components/RoomHeader/UserInfo/useUserInfoHooks.d.ts +2 -8
- package/es/components/RoomHeader/UserInfo/useUserInfoHooks.mjs +1 -18
- package/es/components/RoomHeader/index/NetworkInfo.vue2.mjs +2 -2
- package/es/components/RoomHome/RoomControl/index.vue.d.ts +10 -0
- package/es/components/RoomHome/RoomControl/index.vue.mjs +1 -1
- package/es/components/RoomHome/RoomControl/index.vue2.mjs +153 -120
- package/es/components/RoomInvite/index.vue2.mjs +2 -2
- package/es/components/RoomMore/index.vue2.mjs +2 -2
- package/es/components/RoomSidebar/useSideBarHooks.mjs +3 -2
- package/es/components/ScheduleConference/Contacts.vue.d.ts +22 -0
- package/es/components/ScheduleConference/Contacts.vue.mjs +7 -0
- package/es/components/ScheduleConference/Contacts.vue2.mjs +212 -0
- package/es/components/ScheduleConference/DurationTimePicker.vue.d.ts +18 -0
- package/es/components/ScheduleConference/DurationTimePicker.vue.mjs +67 -0
- package/es/components/ScheduleConference/DurationTimePicker.vue2.mjs +4 -0
- package/es/components/ScheduleConference/ScheduleConferencePanel.vue.d.ts +22 -0
- package/es/components/ScheduleConference/ScheduleConferencePanel.vue.mjs +7 -0
- package/es/components/ScheduleConference/ScheduleConferencePanel.vue2.mjs +613 -0
- package/es/components/ScheduleConference/ScheduleConferencePanel.vue3.mjs +1 -0
- package/es/components/ScheduleConference/ScheduleRoomControl.vue.d.ts +29 -0
- package/es/components/ScheduleConference/ScheduleRoomControl.vue.mjs +7 -0
- package/es/components/ScheduleConference/ScheduleRoomControl.vue2.mjs +464 -0
- package/es/components/ScheduleConference/ScheduleRoomControl.vue3.mjs +1 -0
- package/es/components/{common/base/Input.vue.d.ts → ScheduleConference/ScheduleRoomList.vue.d.ts} +11 -22
- package/es/components/ScheduleConference/ScheduleRoomList.vue.mjs +7 -0
- package/es/components/ScheduleConference/ScheduleRoomList.vue2.mjs +219 -0
- package/es/components/ScheduleConference/ScheduleRoomList.vue3.mjs +1 -0
- package/es/components/ScheduleConference/ShareLink.vue.d.ts +24 -0
- package/es/components/ScheduleConference/ShareLink.vue.mjs +7 -0
- package/es/components/ScheduleConference/ShareLink.vue2.mjs +113 -0
- package/es/components/ScheduleConference/ShareLink.vue3.mjs +1 -0
- package/es/components/ScheduleConference/TimezonePicker.vue.d.ts +18 -0
- package/es/components/ScheduleConference/TimezonePicker.vue.mjs +84 -0
- package/es/components/ScheduleConference/TimezonePicker.vue2.mjs +4 -0
- package/es/components/common/Avatar.vue.mjs +2 -2
- package/es/components/common/DeviceSelect.vue.mjs +1 -1
- package/es/components/common/DeviceSelect.vue2.mjs +58 -19
- package/es/components/common/Logo.vue.mjs +1 -1
- package/es/components/common/Logo.vue2.mjs +3 -3
- package/es/components/common/VideoProfile.vue2.mjs +2 -2
- package/es/components/common/base/Badge.vue.d.ts +1 -1
- package/es/components/common/base/Button.vue.d.ts +2 -2
- package/es/components/common/base/Checkbox.vue.d.ts +4 -2
- package/es/components/common/base/Checkbox.vue.mjs +2 -2
- package/es/components/common/base/Checkbox.vue2.mjs +12 -5
- package/es/components/common/base/Datepicker/Datepicker.vue.d.ts +18 -0
- package/es/components/common/base/Datepicker/Datepicker.vue.mjs +7 -0
- package/es/components/common/base/Datepicker/Datepicker.vue2.mjs +167 -0
- package/es/components/common/base/Datepicker/Datepicker.vue3.mjs +1 -0
- package/es/components/common/base/Datepicker/Timepicker.vue.d.ts +18 -0
- package/es/components/common/base/Datepicker/Timepicker.vue.mjs +66 -0
- package/es/components/common/base/Datepicker/Timepicker.vue2.mjs +4 -0
- package/es/components/common/base/Dialog/index.vue.d.ts +8 -4
- package/es/components/common/base/Dialog/index.vue.mjs +1 -1
- package/es/components/common/base/Dialog/index.vue2.mjs +17 -9
- package/es/components/common/base/Drawer.vue.d.ts +1 -1
- package/es/components/common/base/IconButton.vue.d.ts +2 -2
- package/es/components/common/base/Input/index.vue.d.ts +77 -0
- package/es/components/common/base/Input/index.vue.mjs +7 -0
- package/es/components/common/base/Input/index.vue2.mjs +140 -0
- package/es/components/common/base/Input/index.vue3.mjs +1 -0
- package/es/components/common/base/Message/Instance.mjs +1 -1
- package/es/components/common/base/Message/Message.vue.d.ts +4 -4
- package/es/components/common/base/MessageBox/index.d.ts +3 -2
- package/es/components/common/base/MessageBox/index.mjs +2 -1
- package/es/components/common/base/MessageBox/index.vue.d.ts +6 -1
- package/es/components/common/base/MessageBox/index.vue.mjs +1 -1
- package/es/components/common/base/MessageBox/index.vue2.mjs +60 -10
- package/es/components/common/base/Notification/index.vue.d.ts +2 -2
- package/es/components/common/base/Option.vue.d.ts +11 -1
- package/es/components/common/base/Option.vue.mjs +1 -1
- package/es/components/common/base/Option.vue2.mjs +16 -6
- package/es/components/common/base/Select.vue.d.ts +5 -1
- package/es/components/common/base/Select.vue.mjs +1 -1
- package/es/components/common/base/Select.vue2.mjs +12 -11
- package/es/components/common/base/index.d.ts +1 -1
- package/es/components/common/icons/AllMembersShareScreenIcon.vue.d.ts +2 -0
- package/es/components/common/icons/AllMembersShareScreenIcon.vue.mjs +22 -0
- package/es/components/common/icons/CalendarIcon.vue.d.ts +2 -0
- package/es/components/common/icons/CalendarIcon.vue.mjs +24 -0
- package/es/components/common/icons/CopyIcon.vue.mjs +2 -2
- package/es/components/common/icons/EditNameCardIcon.vue.d.ts +2 -0
- package/es/components/common/icons/EditNameCardIcon.vue.mjs +21 -0
- package/es/components/common/icons/EllipsisIcon.vue.d.ts +2 -0
- package/es/components/common/icons/EllipsisIcon.vue.mjs +34 -0
- package/es/components/common/icons/HostShareScreenIcon.vue.d.ts +2 -0
- package/es/components/common/icons/HostShareScreenIcon.vue.mjs +22 -0
- package/es/components/common/icons/LinkIcon.vue.d.ts +2 -0
- package/es/components/common/icons/LinkIcon.vue.mjs +36 -0
- package/es/components/common/icons/LoadingScheduleIcon.vue.d.ts +2 -0
- package/es/components/common/icons/LoadingScheduleIcon.vue.mjs +24 -0
- package/es/components/common/icons/ScheduleAttendees.vue.d.ts +6 -0
- package/es/components/common/icons/ScheduleAttendees.vue.mjs +25 -0
- package/es/components/common/icons/ScheduleAttendees.vue2.mjs +4 -0
- package/es/components/common/icons/ScheduleRoomIcon.vue.d.ts +2 -0
- package/es/components/common/icons/ScheduleRoomIcon.vue.mjs +24 -0
- package/es/components/common/icons/SuccessIcon.vue.d.ts +2 -0
- package/es/components/common/icons/SuccessIcon.vue.mjs +32 -0
- package/es/components/common/icons/WarningIcon.vue.d.ts +2 -0
- package/es/components/common/icons/WarningIcon.vue.mjs +29 -0
- package/es/conference.d.ts +2 -0
- package/es/conference.mjs +3 -0
- package/es/conference.vue.mjs +1 -1
- package/es/conference.vue2.mjs +9 -4
- package/es/directives/vDblTouch.d.ts +10 -0
- package/es/directives/vTap.d.ts +1 -0
- package/es/directives/vTap.mjs +30 -3
- package/es/extension/chatExtension.mjs +3 -3
- package/es/hooks/useDeviceManager.mjs +3 -3
- package/es/hooks/useMasterApplyControl.mjs +5 -5
- package/es/hooks/useRoomEngine.mjs +4 -4
- package/es/index.d.ts +1 -0
- package/es/index.mjs +2383 -1545
- package/es/locales/en-US.d.ts +75 -0
- package/es/locales/en-US.mjs +78 -1
- package/es/locales/zh-CN.d.ts +79 -0
- package/es/locales/zh-CN.mjs +83 -2
- package/es/preConference.vue.d.ts +10 -0
- package/es/preConference.vue.mjs +1 -1
- package/es/preConference.vue2.mjs +89 -13
- package/es/services/function/errorHandler.d.ts +10 -0
- package/es/services/function/errorHandler.mjs +158 -0
- package/es/services/function/virtualBackground.mjs +4 -3
- package/es/services/index.d.ts +1 -0
- package/es/services/manager/roomActionManager.d.ts +1 -0
- package/es/services/manager/roomActionManager.mjs +10 -18
- package/es/services/manager/scheduleConferenceManager.d.ts +113 -0
- package/es/services/manager/scheduleConferenceManager.mjs +141 -0
- package/es/services/manager/userManager.d.ts +2 -0
- package/es/services/manager/userManager.mjs +7 -3
- package/es/services/roomService.d.ts +8 -0
- package/es/services/roomService.mjs +42 -16
- package/es/services/types.d.ts +8 -0
- package/es/services/types.mjs +2 -0
- package/es/stores/basic.mjs +9 -3
- package/es/stores/room.d.ts +2 -0
- package/es/stores/room.mjs +55 -24
- package/es/utils/adapter.mjs +39 -3
- package/es/utils/utils.d.ts +3 -0
- package/es/utils/utils.mjs +64 -0
- package/lib/components/Chat/ChatEditor/useChatEditor.js +1 -1
- package/lib/components/Chat/MessageList/index.vue.js +1 -1
- package/lib/components/Chat/MessageList/index.vue2.js +5 -1
- package/lib/components/Chat/MessageList/useMessageListHook.js +2 -1
- package/lib/components/ManageMember/MemberControl/index.vue.js +1 -1
- package/lib/components/ManageMember/MemberControl/index.vue2.js +35 -18
- package/lib/components/ManageMember/MemberControl/useMemberControlHooks.d.ts +6 -1
- package/lib/components/ManageMember/MemberControl/useMemberControlHooks.js +113 -17
- package/lib/components/ManageMember/MemberItem/useMemberItemHooks.d.ts +1 -0
- package/lib/components/ManageMember/MemberItem/useMemberItemHooks.js +8 -6
- package/lib/components/ManageMember/MemberItemCommon/MemberInfo.vue.js +1 -1
- package/lib/components/ManageMember/MemberItemCommon/MemberInfo.vue2.js +5 -1
- package/lib/components/ManageMember/index.vue.js +1 -1
- package/lib/components/ManageMember/index.vue2.js +57 -6
- package/lib/components/ManageMember/useIndexHooks.js +63 -14
- package/lib/components/RoomContent/StreamContainer/index.vue.js +1 -1
- package/lib/components/RoomContent/StreamContainer/index.vue2.js +10 -9
- package/lib/components/RoomContent/StreamContainer/useStreamContainerHooks.d.ts +8 -0
- package/lib/components/RoomContent/StreamContainer/useStreamContainerHooks.js +72 -28
- package/lib/components/RoomContent/StreamRegion/index.vue.d.ts +5 -1
- package/lib/components/RoomContent/StreamRegion/index.vue.js +1 -1
- package/lib/components/RoomContent/StreamRegion/index.vue2.js +27 -3
- package/lib/components/RoomFooter/ApplyControl/MasterApplyControl/index.vue.js +1 -1
- package/lib/components/RoomFooter/ApplyControl/MasterApplyControl/index.vue2.js +8 -2
- package/lib/components/RoomFooter/EndControl/index.vue.js +1 -1
- package/lib/components/RoomFooter/EndControl/index.vue2.js +1 -1
- package/lib/components/RoomFooter/EndControl/useEndControlHooks.js +14 -2
- package/lib/components/RoomFooter/ScreenShareControl/Index.vue.js +1 -1
- package/lib/components/RoomFooter/ScreenShareControl/Index.vue2.js +9 -1
- package/lib/components/RoomFooter/VideoControl.vue.js +1 -1
- package/lib/components/RoomFooter/VideoControl.vue2.js +6 -12
- package/lib/components/RoomHeader/UserInfo/index.vue.d.ts +3 -11
- package/lib/components/RoomHeader/UserInfo/index.vue.js +1 -1
- package/lib/components/RoomHeader/UserInfo/index.vue2.js +6 -89
- package/lib/components/RoomHeader/UserInfo/useUserInfoHooks.d.ts +2 -8
- package/lib/components/RoomHeader/UserInfo/useUserInfoHooks.js +1 -18
- package/lib/components/RoomHome/RoomControl/index.vue.d.ts +10 -0
- package/lib/components/RoomHome/RoomControl/index.vue.js +1 -1
- package/lib/components/RoomHome/RoomControl/index.vue2.js +150 -117
- package/lib/components/RoomSidebar/useSideBarHooks.js +3 -2
- package/lib/components/ScheduleConference/Contacts.vue.d.ts +22 -0
- package/lib/components/ScheduleConference/Contacts.vue.js +7 -0
- package/lib/components/ScheduleConference/Contacts.vue2.js +212 -0
- package/lib/components/ScheduleConference/DurationTimePicker.vue.d.ts +18 -0
- package/lib/components/ScheduleConference/DurationTimePicker.vue.js +67 -0
- package/lib/components/ScheduleConference/DurationTimePicker.vue2.js +4 -0
- package/lib/components/ScheduleConference/ScheduleConferencePanel.vue.d.ts +22 -0
- package/lib/components/ScheduleConference/ScheduleConferencePanel.vue.js +7 -0
- package/lib/components/ScheduleConference/ScheduleConferencePanel.vue2.js +613 -0
- package/lib/components/ScheduleConference/ScheduleConferencePanel.vue3.js +1 -0
- package/lib/components/ScheduleConference/ScheduleRoomControl.vue.d.ts +29 -0
- package/lib/components/ScheduleConference/ScheduleRoomControl.vue.js +7 -0
- package/lib/components/ScheduleConference/ScheduleRoomControl.vue2.js +464 -0
- package/lib/components/ScheduleConference/ScheduleRoomControl.vue3.js +1 -0
- package/lib/components/{common/base/Input.vue.d.ts → ScheduleConference/ScheduleRoomList.vue.d.ts} +11 -22
- package/lib/components/ScheduleConference/ScheduleRoomList.vue.js +7 -0
- package/lib/components/ScheduleConference/ScheduleRoomList.vue2.js +219 -0
- package/lib/components/ScheduleConference/ScheduleRoomList.vue3.js +1 -0
- package/lib/components/ScheduleConference/ShareLink.vue.d.ts +24 -0
- package/lib/components/ScheduleConference/ShareLink.vue.js +7 -0
- package/lib/components/ScheduleConference/ShareLink.vue2.js +113 -0
- package/lib/components/ScheduleConference/ShareLink.vue3.js +1 -0
- package/lib/components/ScheduleConference/TimezonePicker.vue.d.ts +18 -0
- package/lib/components/ScheduleConference/TimezonePicker.vue.js +84 -0
- package/lib/components/ScheduleConference/TimezonePicker.vue2.js +4 -0
- package/lib/components/common/Avatar.vue.js +2 -2
- package/lib/components/common/DeviceSelect.vue.js +1 -1
- package/lib/components/common/DeviceSelect.vue2.js +57 -18
- package/lib/components/common/Logo.vue.js +1 -1
- package/lib/components/common/Logo.vue2.js +2 -2
- package/lib/components/common/base/Badge.vue.d.ts +1 -1
- package/lib/components/common/base/Button.vue.d.ts +2 -2
- package/lib/components/common/base/Checkbox.vue.d.ts +4 -2
- package/lib/components/common/base/Checkbox.vue.js +2 -2
- package/lib/components/common/base/Checkbox.vue2.js +11 -4
- package/lib/components/common/base/Datepicker/Datepicker.vue.d.ts +18 -0
- package/lib/components/common/base/Datepicker/Datepicker.vue.js +7 -0
- package/lib/components/common/base/Datepicker/Datepicker.vue2.js +167 -0
- package/lib/components/common/base/Datepicker/Datepicker.vue3.js +1 -0
- package/lib/components/common/base/Datepicker/Timepicker.vue.d.ts +18 -0
- package/lib/components/common/base/Datepicker/Timepicker.vue.js +66 -0
- package/lib/components/common/base/Datepicker/Timepicker.vue2.js +4 -0
- package/lib/components/common/base/Dialog/index.vue.d.ts +8 -4
- package/lib/components/common/base/Dialog/index.vue.js +1 -1
- package/lib/components/common/base/Dialog/index.vue2.js +16 -8
- package/lib/components/common/base/Drawer.vue.d.ts +1 -1
- package/lib/components/common/base/IconButton.vue.d.ts +2 -2
- package/lib/components/common/base/Input/index.vue.d.ts +77 -0
- package/lib/components/common/base/Input/index.vue.js +7 -0
- package/lib/components/common/base/Input/index.vue2.js +140 -0
- package/lib/components/common/base/Input/index.vue3.js +1 -0
- package/lib/components/common/base/Message/Instance.js +1 -1
- package/lib/components/common/base/Message/Message.vue.d.ts +4 -4
- package/lib/components/common/base/MessageBox/index.d.ts +3 -2
- package/lib/components/common/base/MessageBox/index.js +2 -1
- package/lib/components/common/base/MessageBox/index.vue.d.ts +6 -1
- package/lib/components/common/base/MessageBox/index.vue.js +1 -1
- package/lib/components/common/base/MessageBox/index.vue2.js +59 -9
- package/lib/components/common/base/Notification/index.vue.d.ts +2 -2
- package/lib/components/common/base/Option.vue.d.ts +11 -1
- package/lib/components/common/base/Option.vue.js +1 -1
- package/lib/components/common/base/Option.vue2.js +15 -5
- package/lib/components/common/base/Select.vue.d.ts +5 -1
- package/lib/components/common/base/Select.vue.js +1 -1
- package/lib/components/common/base/Select.vue2.js +11 -10
- package/lib/components/common/base/index.d.ts +1 -1
- package/lib/components/common/icons/AllMembersShareScreenIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/AllMembersShareScreenIcon.vue.js +22 -0
- package/lib/components/common/icons/CalendarIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/CalendarIcon.vue.js +24 -0
- package/lib/components/common/icons/CopyIcon.vue.js +2 -2
- package/lib/components/common/icons/EditNameCardIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/EditNameCardIcon.vue.js +21 -0
- package/lib/components/common/icons/EllipsisIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/EllipsisIcon.vue.js +34 -0
- package/lib/components/common/icons/HostShareScreenIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/HostShareScreenIcon.vue.js +22 -0
- package/lib/components/common/icons/LinkIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/LinkIcon.vue.js +36 -0
- package/lib/components/common/icons/LoadingScheduleIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/LoadingScheduleIcon.vue.js +24 -0
- package/lib/components/common/icons/ScheduleAttendees.vue.d.ts +6 -0
- package/lib/components/common/icons/ScheduleAttendees.vue.js +25 -0
- package/lib/components/common/icons/ScheduleAttendees.vue2.js +4 -0
- package/lib/components/common/icons/ScheduleRoomIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/ScheduleRoomIcon.vue.js +24 -0
- package/lib/components/common/icons/SuccessIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/SuccessIcon.vue.js +32 -0
- package/lib/components/common/icons/WarningIcon.vue.d.ts +2 -0
- package/lib/components/common/icons/WarningIcon.vue.js +29 -0
- package/lib/conference.d.ts +2 -0
- package/lib/conference.js +3 -0
- package/lib/conference.vue.js +1 -1
- package/lib/conference.vue2.js +9 -4
- package/lib/directives/vDblTouch.d.ts +10 -0
- package/lib/directives/vTap.d.ts +1 -0
- package/lib/directives/vTap.js +30 -3
- package/lib/extension/chatExtension.js +1 -1
- package/lib/hooks/useMasterApplyControl.js +3 -3
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2390 -1546
- package/lib/locales/en-US.d.ts +75 -0
- package/lib/locales/en-US.js +78 -1
- package/lib/locales/zh-CN.d.ts +79 -0
- package/lib/locales/zh-CN.js +83 -2
- package/lib/preConference.vue.d.ts +10 -0
- package/lib/preConference.vue.js +1 -1
- package/lib/preConference.vue2.js +88 -12
- package/lib/services/function/errorHandler.d.ts +10 -0
- package/lib/services/function/errorHandler.js +158 -0
- package/lib/services/function/virtualBackground.js +3 -2
- package/lib/services/index.d.ts +1 -0
- package/lib/services/manager/roomActionManager.d.ts +1 -0
- package/lib/services/manager/roomActionManager.js +10 -18
- package/lib/services/manager/scheduleConferenceManager.d.ts +113 -0
- package/lib/services/manager/scheduleConferenceManager.js +147 -0
- package/lib/services/manager/userManager.d.ts +2 -0
- package/lib/services/manager/userManager.js +4 -0
- package/lib/services/roomService.d.ts +8 -0
- package/lib/services/roomService.js +38 -12
- package/lib/services/types.d.ts +8 -0
- package/lib/services/types.js +2 -0
- package/lib/stores/basic.js +8 -2
- package/lib/stores/room.d.ts +2 -0
- package/lib/stores/room.js +55 -24
- package/lib/utils/adapter.js +39 -3
- package/lib/utils/utils.d.ts +3 -0
- package/lib/utils/utils.js +64 -0
- package/package.json +2 -2
- package/src/TUIRoom/assets/style/black-theme.scss +3 -1
- package/src/TUIRoom/assets/style/white-theme.scss +3 -1
- package/src/TUIRoom/components/Chat/ChatEditor/useChatEditor.ts +1 -1
- package/src/TUIRoom/components/Chat/MessageList/index.vue +5 -1
- package/src/TUIRoom/components/Chat/MessageList/useMessageListHook.ts +2 -1
- package/src/TUIRoom/components/ManageMember/MemberControl/index.vue +23 -7
- package/src/TUIRoom/components/ManageMember/MemberControl/useMemberControlHooks.ts +110 -14
- package/src/TUIRoom/components/ManageMember/MemberItem/useMemberItemHooks.ts +9 -4
- package/src/TUIRoom/components/ManageMember/MemberItemCommon/MemberInfo.vue +2 -1
- package/src/TUIRoom/components/ManageMember/index.vue +85 -5
- package/src/TUIRoom/components/ManageMember/useIndexHooks.ts +58 -9
- package/src/TUIRoom/components/RoomContent/StreamContainer/index.vue +7 -6
- package/src/TUIRoom/components/RoomContent/StreamContainer/useStreamContainerHooks.ts +90 -26
- package/src/TUIRoom/components/RoomContent/StreamRegion/index.vue +27 -3
- package/src/TUIRoom/components/RoomFooter/ApplyControl/MasterApplyControl/index.vue +2 -1
- package/src/TUIRoom/components/RoomFooter/EndControl/index.vue +1 -1
- package/src/TUIRoom/components/RoomFooter/EndControl/useEndControlHooks.ts +10 -3
- package/src/TUIRoom/components/RoomFooter/ScreenShareControl/Index.vue +11 -1
- package/src/TUIRoom/components/RoomFooter/VideoControl.vue +0 -7
- package/src/TUIRoom/components/RoomHeader/UserInfo/index.vue +19 -50
- package/src/TUIRoom/components/RoomHeader/UserInfo/useUserInfoHooks.ts +1 -28
- package/src/TUIRoom/components/RoomHome/RoomControl/index.vue +91 -73
- package/src/TUIRoom/components/RoomSidebar/useSideBarHooks.ts +3 -2
- package/src/TUIRoom/components/ScheduleConference/Contacts.vue +265 -0
- package/src/TUIRoom/components/ScheduleConference/DurationTimePicker.vue +54 -0
- package/src/TUIRoom/components/ScheduleConference/ScheduleConferencePanel.vue +731 -0
- package/src/TUIRoom/components/ScheduleConference/ScheduleRoomControl.vue +577 -0
- package/src/TUIRoom/components/ScheduleConference/ScheduleRoomList.vue +295 -0
- package/src/TUIRoom/components/ScheduleConference/ShareLink.vue +122 -0
- package/src/TUIRoom/components/ScheduleConference/TimezonePicker.vue +70 -0
- package/src/TUIRoom/components/common/DeviceSelect.vue +62 -20
- package/src/TUIRoom/components/common/Logo.vue +3 -3
- package/src/TUIRoom/components/common/base/Checkbox.vue +19 -11
- package/src/TUIRoom/components/common/base/Datepicker/Datepicker.vue +252 -0
- package/src/TUIRoom/components/common/base/Datepicker/Timepicker.vue +54 -0
- package/src/TUIRoom/components/common/base/Dialog/index.vue +17 -7
- package/src/TUIRoom/components/common/base/Input/index.vue +187 -0
- package/src/TUIRoom/components/common/base/Message/Instance.ts +2 -1
- package/src/TUIRoom/components/common/base/MessageBox/index.ts +4 -2
- package/src/TUIRoom/components/common/base/MessageBox/index.vue +57 -26
- package/src/TUIRoom/components/common/base/Option.vue +14 -4
- package/src/TUIRoom/components/common/base/Select.vue +18 -13
- package/src/TUIRoom/components/common/base/index.ts +1 -1
- package/src/TUIRoom/components/common/icons/AllMembersShareScreenIcon.vue +15 -0
- package/src/TUIRoom/components/common/icons/ArrowStrokeRightIcon.vue +8 -0
- package/src/TUIRoom/components/common/icons/CalendarIcon.vue +6 -0
- package/src/TUIRoom/components/common/icons/EditNameCardIcon.vue +13 -0
- package/src/TUIRoom/components/common/icons/EllipsisIcon.vue +8 -0
- package/src/TUIRoom/components/common/icons/HostShareScreenIcon.vue +13 -0
- package/src/TUIRoom/components/common/icons/LinkIcon.vue +10 -0
- package/src/TUIRoom/components/common/icons/LoadingScheduleIcon.vue +6 -0
- package/src/TUIRoom/components/common/icons/ScheduleAttendees.vue +13 -0
- package/src/TUIRoom/components/common/icons/ScheduleRoomIcon.vue +6 -0
- package/src/TUIRoom/components/common/icons/SuccessIcon.vue +8 -0
- package/src/TUIRoom/components/common/icons/WarningIcon.vue +13 -0
- package/src/TUIRoom/conference.ts +6 -0
- package/src/TUIRoom/conference.vue +16 -5
- package/src/TUIRoom/directives/vDblTouch.ts +41 -0
- package/src/TUIRoom/directives/vTap.ts +32 -3
- package/src/TUIRoom/extension/chatExtension.ts +1 -1
- package/src/TUIRoom/hooks/useMasterApplyControl.ts +2 -2
- package/src/TUIRoom/index.ts +1 -0
- package/src/TUIRoom/locales/en-US.ts +77 -0
- package/src/TUIRoom/locales/zh-CN.ts +82 -1
- package/src/TUIRoom/preConference.vue +97 -2
- package/src/TUIRoom/services/function/errorHandler.ts +169 -0
- package/src/TUIRoom/services/function/virtualBackground.ts +3 -3
- package/src/TUIRoom/services/index.ts +1 -0
- package/src/TUIRoom/services/manager/roomActionManager.ts +10 -18
- package/src/TUIRoom/services/manager/scheduleConferenceManager.ts +263 -0
- package/src/TUIRoom/services/manager/userManager.ts +6 -0
- package/src/TUIRoom/services/roomService.ts +41 -13
- package/src/TUIRoom/services/types.ts +8 -1
- package/src/TUIRoom/stores/basic.ts +9 -2
- package/src/TUIRoom/stores/room.ts +60 -19
- package/src/TUIRoom/utils/adapter.ts +44 -4
- package/src/TUIRoom/utils/utils.ts +42 -0
- package/es/components/common/base/Input.vue.mjs +0 -7
- package/es/components/common/base/Input.vue2.mjs +0 -34
- package/lib/components/common/base/Input.vue.js +0 -7
- package/lib/components/common/base/Input.vue2.js +0 -34
- package/src/TUIRoom/components/common/base/Input.vue +0 -61
- /package/es/components/{common/base/Input.vue3.mjs → ScheduleConference/Contacts.vue3.mjs} +0 -0
- /package/lib/components/{common/base/Input.vue3.js → ScheduleConference/Contacts.vue3.js} +0 -0
package/es/locales/en-US.d.ts
CHANGED
|
@@ -202,6 +202,8 @@ declare const _default: {
|
|
|
202
202
|
'Camera settings': string;
|
|
203
203
|
Copy: string;
|
|
204
204
|
'Copied successfully': string;
|
|
205
|
+
'Copied failure': string;
|
|
206
|
+
'This model does not support copying at this time': string;
|
|
205
207
|
'accepted the invitation to the stage': string;
|
|
206
208
|
'declined the invitation to the stage': string;
|
|
207
209
|
'All audios disabled': string;
|
|
@@ -305,6 +307,7 @@ declare const _default: {
|
|
|
305
307
|
}) => string;
|
|
306
308
|
'The stage is full, please contact the host': string;
|
|
307
309
|
'The stage is full': string;
|
|
310
|
+
'change name': string;
|
|
308
311
|
'quick conference': string;
|
|
309
312
|
Meeting: string;
|
|
310
313
|
'Meeting in progress': string;
|
|
@@ -320,5 +323,77 @@ declare const _default: {
|
|
|
320
323
|
'Failed to initiate meeting': string;
|
|
321
324
|
'Failed to enter the meeting': string;
|
|
322
325
|
'Failed to disable chat': string;
|
|
326
|
+
'All members can share screen': string;
|
|
327
|
+
'Screen sharing for host/admin only': string;
|
|
328
|
+
'Failed to initiate screen sharing, currently only host/admin can share screen.': string;
|
|
329
|
+
'Is it turned on that only the host/admin can share the screen?': string;
|
|
330
|
+
'Other member is sharing the screen is now, the member\'s sharing will be terminated after you turning on': string;
|
|
331
|
+
'Your screen sharing has been stopped': string;
|
|
332
|
+
'Your screen sharing has been stopped, Now only the host/admin can share the screen': string;
|
|
333
|
+
'I got it': string;
|
|
334
|
+
Attention: string;
|
|
335
|
+
'Audio playback failed. Click the "Confirm" to resume playback': string;
|
|
336
|
+
'view details': string;
|
|
337
|
+
'modify room': string;
|
|
338
|
+
'cancel room': string;
|
|
339
|
+
join: string;
|
|
340
|
+
'No room available for booking': string;
|
|
341
|
+
Ongoing: string;
|
|
342
|
+
finished: string;
|
|
343
|
+
'History room': string;
|
|
344
|
+
'sb temporary room': ({ named }: any) => string;
|
|
345
|
+
year: string;
|
|
346
|
+
month: string;
|
|
347
|
+
day: string;
|
|
348
|
+
Schedule: string;
|
|
349
|
+
'Modify Room': string;
|
|
350
|
+
'Room Name': string;
|
|
351
|
+
'please enter the room name': string;
|
|
352
|
+
'Room type': string;
|
|
353
|
+
'Starting time': string;
|
|
354
|
+
'Room duration': string;
|
|
355
|
+
'Time zone': string;
|
|
356
|
+
Attendees: string;
|
|
357
|
+
'Please enter the member name': string;
|
|
358
|
+
people: string;
|
|
359
|
+
'Scheduled meetings': string;
|
|
360
|
+
minute: string;
|
|
361
|
+
hour: string;
|
|
362
|
+
minutes: string;
|
|
363
|
+
hours: string;
|
|
364
|
+
'The start time cannot be earlier than the current time': string;
|
|
365
|
+
'Room Time': string;
|
|
366
|
+
Creator: string;
|
|
367
|
+
'Room Details': string;
|
|
368
|
+
'Enter Now': string;
|
|
369
|
+
'Invited members': string;
|
|
370
|
+
'The room is closed': string;
|
|
371
|
+
'Entry Time': string;
|
|
372
|
+
'Duration of participation': string;
|
|
373
|
+
'No cancellation': string;
|
|
374
|
+
'Other members will not be able to join after cancellation': string;
|
|
375
|
+
'Inviting members to join': string;
|
|
376
|
+
'Invitation by room ID': string;
|
|
377
|
+
'Invitation via room link': string;
|
|
378
|
+
'Copy the conference number and link': string;
|
|
379
|
+
'Schedule successful, invite members to join': string;
|
|
380
|
+
'Name changed successfully': string;
|
|
381
|
+
'schedule year': string;
|
|
382
|
+
'schedule month': string;
|
|
383
|
+
'schedule day': string;
|
|
384
|
+
'The room name cannot exceed 100 characters': string;
|
|
385
|
+
'The meeting is in progress and any meeting information cannot be modified': string;
|
|
386
|
+
'Schedule room loading': string;
|
|
387
|
+
'The user name cannot exceed 32 characters': string;
|
|
388
|
+
'sb invites you to join the conference': ({ named }: any) => string;
|
|
389
|
+
microphone: string;
|
|
390
|
+
camera: string;
|
|
391
|
+
'Unable to use the device': ({ named }: any) => string;
|
|
392
|
+
'media device failed to open, please check the media device and try again': ({ named }: any) => string;
|
|
393
|
+
'The current device is not authorized, please allow access to the device permissions': ({ named }: any) => string;
|
|
394
|
+
'The current device is occupied by other apps, try to close other apps or change the device': ({ named }: any) => string;
|
|
395
|
+
'Turn on device privileges': ({ named }: any) => string;
|
|
396
|
+
'You can go to "System Preferences - Security & Privacy - Device" to enable device permissions': ({ named }: any) => string;
|
|
397
|
+
'Go to Settings': string;
|
|
323
398
|
};
|
|
324
399
|
export default _default;
|
package/es/locales/en-US.mjs
CHANGED
|
@@ -199,6 +199,8 @@ const EN = {
|
|
|
199
199
|
"Camera settings": "Camera settings",
|
|
200
200
|
Copy: "Copy",
|
|
201
201
|
"Copied successfully": "Copied successfully",
|
|
202
|
+
"Copied failure": "Copied failure",
|
|
203
|
+
"This model does not support copying at this time": "This model does not support copying at this time",
|
|
202
204
|
"accepted the invitation to the stage": "accepted the invitation to the stage",
|
|
203
205
|
"declined the invitation to the stage": "declined the invitation to the stage",
|
|
204
206
|
"All audios disabled": "All audios disabled",
|
|
@@ -290,6 +292,7 @@ const EN = {
|
|
|
290
292
|
"and so on number people applying to stage": ({ named }) => `and so on ${named("number")} people applying to stage`,
|
|
291
293
|
"The stage is full, please contact the host": "The stage is full, please contact the host",
|
|
292
294
|
"The stage is full": "The stage is full",
|
|
295
|
+
"change name": "change name",
|
|
293
296
|
// Room Chat Fusion Card Translation
|
|
294
297
|
"quick conference": "quick conference",
|
|
295
298
|
Meeting: "Meeting",
|
|
@@ -305,7 +308,81 @@ const EN = {
|
|
|
305
308
|
"Currently in a meeting, please exit the current meeting before proceeding.": "Currently in a meeting, please exit the current meeting before proceeding.",
|
|
306
309
|
"Failed to initiate meeting": "Failed to initiate meeting",
|
|
307
310
|
"Failed to enter the meeting": "Failed to enter the meeting",
|
|
308
|
-
"Failed to disable chat": "Failed to disable chat"
|
|
311
|
+
"Failed to disable chat": "Failed to disable chat",
|
|
312
|
+
"All members can share screen": "All members can share screen",
|
|
313
|
+
"Screen sharing for host/admin only": "Screen sharing for host/admin only",
|
|
314
|
+
"Failed to initiate screen sharing, currently only host/admin can share screen.": "Failed to initiate screen sharing, currently only host/admin can share screen.",
|
|
315
|
+
"Is it turned on that only the host/admin can share the screen?": "Is it turned on that only the host/admin can share the screen?",
|
|
316
|
+
"Other member is sharing the screen is now, the member's sharing will be terminated after you turning on": "Other member is sharing the screen now, the member's sharing will be terminated after you turning on",
|
|
317
|
+
"Your screen sharing has been stopped": "Your screen sharing has been stopped",
|
|
318
|
+
"Your screen sharing has been stopped, Now only the host/admin can share the screen": "Your screen sharing has been stopped, Now only the host/admin can share the screen",
|
|
319
|
+
"I got it": "I got it",
|
|
320
|
+
Attention: "Attention",
|
|
321
|
+
'Audio playback failed. Click the "Confirm" to resume playback': 'Audio playback failed. Click the "Confirm" to resume playback.',
|
|
322
|
+
// Schedule Room
|
|
323
|
+
"view details": "view details",
|
|
324
|
+
"modify room": "modify room",
|
|
325
|
+
"cancel room": "cancel room",
|
|
326
|
+
join: "join",
|
|
327
|
+
"No room available for booking": "No room available for booking",
|
|
328
|
+
"Ongoing": "Ongoing",
|
|
329
|
+
finished: "finished",
|
|
330
|
+
"History room": "History room",
|
|
331
|
+
"sb temporary room": ({ named }) => `${named("name")}'s temporary room`,
|
|
332
|
+
year: "year",
|
|
333
|
+
month: "month",
|
|
334
|
+
day: "day",
|
|
335
|
+
Schedule: "Schedule",
|
|
336
|
+
"Modify Room": "Modify Room",
|
|
337
|
+
"Room Name": "Room Name",
|
|
338
|
+
"please enter the room name": "please enter the room name",
|
|
339
|
+
"Room type": "Room type",
|
|
340
|
+
"Starting time": "Starting time",
|
|
341
|
+
"Room duration": "Room duration",
|
|
342
|
+
"Time zone": "Time zone",
|
|
343
|
+
Attendees: "Attendees",
|
|
344
|
+
"Please enter the member name": "Please enter the member name",
|
|
345
|
+
people: "people",
|
|
346
|
+
"Scheduled meetings": "scheduled meetings",
|
|
347
|
+
minute: "minute",
|
|
348
|
+
hour: "hour",
|
|
349
|
+
minutes: "minutes",
|
|
350
|
+
hours: "hours",
|
|
351
|
+
"The start time cannot be earlier than the current time": "The start time cannot be earlier than the current time",
|
|
352
|
+
"Room Time": "Room Time",
|
|
353
|
+
"Creator": "Creator",
|
|
354
|
+
"Room Details": "Room Details",
|
|
355
|
+
"Enter Now": "Enter Now",
|
|
356
|
+
"Invited members": "Invited members",
|
|
357
|
+
"The room is closed": "The room is closed",
|
|
358
|
+
"Entry Time": "Entry Time",
|
|
359
|
+
"Duration of participation": "Duration of participation",
|
|
360
|
+
"No cancellation": "No cancellation",
|
|
361
|
+
"Other members will not be able to join after cancellation": "Other members will not be able to join after cancellation",
|
|
362
|
+
"Inviting members to join": "Inviting members to join",
|
|
363
|
+
"Invitation by room ID": "Invitation by room ID",
|
|
364
|
+
"Invitation via room link": "Invitation via room link",
|
|
365
|
+
"Copy the conference number and link": "Copy the conference number and link",
|
|
366
|
+
"Schedule successful, invite members to join": "Schedule successful, invite members to join",
|
|
367
|
+
"Name changed successfully": "Name changed successfully",
|
|
368
|
+
"schedule year": "/",
|
|
369
|
+
"schedule month": "/",
|
|
370
|
+
"schedule day": " ",
|
|
371
|
+
"The room name cannot exceed 100 characters": "The room name cannot exceed 100 characters",
|
|
372
|
+
"The meeting is in progress and any meeting information cannot be modified": "The meeting is in progress and any meeting information cannot be modified",
|
|
373
|
+
"Schedule room loading": "Schedule room loading...",
|
|
374
|
+
"The user name cannot exceed 32 characters": "The user name cannot exceed 32 characters",
|
|
375
|
+
"sb invites you to join the conference": ({ named }) => `${named("name")} invites you to join the conference`,
|
|
376
|
+
// media privilege
|
|
377
|
+
microphone: "microphone",
|
|
378
|
+
camera: "camera",
|
|
379
|
+
"Unable to use the device": ({ named }) => `Unable to use the ${named("deviceType")}`,
|
|
380
|
+
"media device failed to open, please check the media device and try again": ({ named }) => `${named("deviceType")} failed to open, please check the ${named("deviceType")} and try again`,
|
|
381
|
+
"The current device is not authorized, please allow access to the device permissions": ({ named }) => `The ${named("deviceType")} is not authorized, please allow access to the ${named("deviceType")} permissions`,
|
|
382
|
+
"The current device is occupied by other apps, try to close other apps or change the device": ({ named }) => `The ${named("deviceType")} is occupied by other apps, try to close other apps or change the device`,
|
|
383
|
+
"Turn on device privileges": ({ named }) => `Turn on ${named("deviceType")} privileges`,
|
|
384
|
+
'You can go to "System Preferences - Security & Privacy - Device" to enable device permissions': ({ named }) => `You can go to "System Preferences - Security & Privacy - ${named("deviceType")}" to enable device permissions.`,
|
|
385
|
+
"Go to Settings": "Go to Settings"
|
|
309
386
|
};
|
|
310
387
|
export {
|
|
311
388
|
EN as default
|
package/es/locales/zh-CN.d.ts
CHANGED
|
@@ -202,6 +202,8 @@ declare const _default: {
|
|
|
202
202
|
'Camera settings': string;
|
|
203
203
|
Copy: string;
|
|
204
204
|
'Copied successfully': string;
|
|
205
|
+
'Copied failure': string;
|
|
206
|
+
'This model does not support copying at this time': string;
|
|
205
207
|
'accepted the invitation to the stage': string;
|
|
206
208
|
'declined the invitation to the stage': string;
|
|
207
209
|
'All audios disabled': string;
|
|
@@ -305,6 +307,7 @@ declare const _default: {
|
|
|
305
307
|
}) => string;
|
|
306
308
|
'The stage is full, please contact the host': string;
|
|
307
309
|
'The stage is full': string;
|
|
310
|
+
'change name': string;
|
|
308
311
|
'quick conference': string;
|
|
309
312
|
Meeting: string;
|
|
310
313
|
'Meeting in progress': string;
|
|
@@ -320,5 +323,81 @@ declare const _default: {
|
|
|
320
323
|
'Failed to initiate meeting': string;
|
|
321
324
|
'Failed to enter the meeting': string;
|
|
322
325
|
'Failed to disable chat': string;
|
|
326
|
+
'All members can share screen': string;
|
|
327
|
+
'Screen sharing for host/admin only': string;
|
|
328
|
+
'Failed to initiate screen sharing, currently only host/admin can share screen.': string;
|
|
329
|
+
'Is it turned on that only the host/admin can share the screen?': string;
|
|
330
|
+
'Other member is sharing the screen is now, the member\'s sharing will be terminated after you turning on': string;
|
|
331
|
+
'Your screen sharing has been stopped': string;
|
|
332
|
+
'Your screen sharing has been stopped, Now only the host/admin can share the screen': string;
|
|
333
|
+
'I got it': string;
|
|
334
|
+
Attention: string;
|
|
335
|
+
'Audio playback failed. Click the "Confirm" to resume playback': string;
|
|
336
|
+
'view details': string;
|
|
337
|
+
'modify room': string;
|
|
338
|
+
'cancel room': string;
|
|
339
|
+
join: string;
|
|
340
|
+
'No room available for booking': string;
|
|
341
|
+
Ongoing: string;
|
|
342
|
+
finished: string;
|
|
343
|
+
'History room': string;
|
|
344
|
+
'sb temporary room': ({ named }: any) => string;
|
|
345
|
+
year: string;
|
|
346
|
+
month: string;
|
|
347
|
+
day: string;
|
|
348
|
+
Schedule: string;
|
|
349
|
+
'Modify Room': string;
|
|
350
|
+
'Room Name': string;
|
|
351
|
+
'please enter the room name': string;
|
|
352
|
+
'Room type': string;
|
|
353
|
+
'Starting time': string;
|
|
354
|
+
'Room duration': string;
|
|
355
|
+
'Time zone': string;
|
|
356
|
+
Attendees: string;
|
|
357
|
+
'Please enter the member name': string;
|
|
358
|
+
people: string;
|
|
359
|
+
Contacts: string;
|
|
360
|
+
'No relevant members found': string;
|
|
361
|
+
'Selected Contact': string;
|
|
362
|
+
'Scheduled meetings': string;
|
|
363
|
+
minute: string;
|
|
364
|
+
hour: string;
|
|
365
|
+
minutes: string;
|
|
366
|
+
hours: string;
|
|
367
|
+
'The start time cannot be earlier than the current time': string;
|
|
368
|
+
'Room Time': string;
|
|
369
|
+
Creator: string;
|
|
370
|
+
'Room Details': string;
|
|
371
|
+
'Enter Now': string;
|
|
372
|
+
'Invited members': string;
|
|
373
|
+
'The room is closed': string;
|
|
374
|
+
'Entry Time': string;
|
|
375
|
+
'Duration of participation': string;
|
|
376
|
+
'No cancellation': string;
|
|
377
|
+
'Cancellation of scheduled rooms': string;
|
|
378
|
+
'Other members will not be able to join after cancellation': string;
|
|
379
|
+
'Inviting members to join': string;
|
|
380
|
+
'Invitation by room ID': string;
|
|
381
|
+
'Invitation via room link': string;
|
|
382
|
+
'Copy the conference number and link': string;
|
|
383
|
+
'Schedule successful, invite members to join': string;
|
|
384
|
+
'Name changed successfully': string;
|
|
385
|
+
'schedule year': string;
|
|
386
|
+
'schedule month': string;
|
|
387
|
+
'schedule day': string;
|
|
388
|
+
'The room name cannot exceed 100 characters': string;
|
|
389
|
+
'The meeting is in progress and any meeting information cannot be modified': string;
|
|
390
|
+
'Schedule room loading': string;
|
|
391
|
+
'The user name cannot exceed 32 characters': string;
|
|
392
|
+
'sb invites you to join the conference': ({ named }: any) => string;
|
|
393
|
+
microphone: string;
|
|
394
|
+
camera: string;
|
|
395
|
+
'Unable to use the device': ({ named }: any) => string;
|
|
396
|
+
'media device failed to open, please check the media device and try again': ({ named }: any) => string;
|
|
397
|
+
'The current device is not authorized, please allow access to the device permissions': ({ named }: any) => string;
|
|
398
|
+
'The current device is occupied by other apps, try to close other apps or change the device': ({ named }: any) => string;
|
|
399
|
+
'Turn on device privileges': ({ named }: any) => string;
|
|
400
|
+
'You can go to "System Preferences - Security & Privacy - Device" to enable device permissions': ({ named }: any) => string;
|
|
401
|
+
'Go to Settings': string;
|
|
323
402
|
};
|
|
324
403
|
export default _default;
|
package/es/locales/zh-CN.mjs
CHANGED
|
@@ -3,7 +3,7 @@ const ZH = {
|
|
|
3
3
|
"Log out": "退出登录",
|
|
4
4
|
"Edit profile": "编辑资料",
|
|
5
5
|
"User Name": "用户名",
|
|
6
|
-
"Please input user name": "
|
|
6
|
+
"Please input user name": "请输入名称",
|
|
7
7
|
"Username length should be greater than 0": "昵称长度应该大于0",
|
|
8
8
|
Save: "保存",
|
|
9
9
|
Camera: "摄像头",
|
|
@@ -199,6 +199,8 @@ const ZH = {
|
|
|
199
199
|
"Camera settings": "摄像头设置",
|
|
200
200
|
Copy: "复制",
|
|
201
201
|
"Copied successfully": "复制成功",
|
|
202
|
+
"Copied failure": "复制失败",
|
|
203
|
+
"This model does not support copying at this time": "此机型暂不支持复制",
|
|
202
204
|
"accepted the invitation to the stage": "接受了上台邀请",
|
|
203
205
|
"declined the invitation to the stage": "拒绝了上台邀请",
|
|
204
206
|
"All audios disabled": "已开启全体静音",
|
|
@@ -290,6 +292,7 @@ const ZH = {
|
|
|
290
292
|
"and so on number people applying to stage": ({ named }) => `等 ${named("number")} 人正在申请上台`,
|
|
291
293
|
"The stage is full, please contact the host": "台上人数已满,请联系主持人",
|
|
292
294
|
"The stage is full": "台上人数已满",
|
|
295
|
+
"change name": "修改名称",
|
|
293
296
|
// Room Chat Fusion Card Translation
|
|
294
297
|
"quick conference": "快速会议",
|
|
295
298
|
Meeting: "会议",
|
|
@@ -305,7 +308,85 @@ const ZH = {
|
|
|
305
308
|
"Currently in a meeting, please exit the current meeting before proceeding.": "正在会议中,请先退出当前会议后再进行操作",
|
|
306
309
|
"Failed to initiate meeting": "发起会议失败",
|
|
307
310
|
"Failed to enter the meeting": "进入会议失败",
|
|
308
|
-
"Failed to disable chat": "禁言失败"
|
|
311
|
+
"Failed to disable chat": "禁言失败",
|
|
312
|
+
"All members can share screen": "全体成员可共享屏幕",
|
|
313
|
+
"Screen sharing for host/admin only": "仅房主/管理员可共享屏幕",
|
|
314
|
+
"Failed to initiate screen sharing, currently only host/admin can share screen.": "发起共享失败,当前仅房主/管理员可以共享",
|
|
315
|
+
"Is it turned on that only the host/admin can share the screen?": "是否开启仅房主/管理员可共享屏幕?",
|
|
316
|
+
"Other member is sharing the screen is now, the member's sharing will be terminated after you turning on": "当前有成员正在共享屏幕, 开启后该成员的共享将会被终止",
|
|
317
|
+
"Your screen sharing has been stopped": "共享屏幕停止",
|
|
318
|
+
"Your screen sharing has been stopped, Now only the host/admin can share the screen": "已停止您的共享,当前仅房主/管理员可以共享屏幕",
|
|
319
|
+
"I got it": "我知道了",
|
|
320
|
+
Attention: "注意",
|
|
321
|
+
'Audio playback failed. Click the "Confirm" to resume playback': "音频播放失败。单击 “确认 ”恢复播放。",
|
|
322
|
+
// Schedule Room
|
|
323
|
+
"view details": "查看详情",
|
|
324
|
+
"modify room": "修改房间",
|
|
325
|
+
"cancel room": "取消房间",
|
|
326
|
+
join: "加入",
|
|
327
|
+
"No room available for booking": "暂无预订房间",
|
|
328
|
+
"Ongoing": "进行中",
|
|
329
|
+
finished: "已结束",
|
|
330
|
+
"History room": "历史房间",
|
|
331
|
+
"sb temporary room": ({ named }) => `${named("name")}的临时房间`,
|
|
332
|
+
year: "年",
|
|
333
|
+
month: "月",
|
|
334
|
+
day: "日",
|
|
335
|
+
Schedule: "预订房间",
|
|
336
|
+
"Modify Room": "修改房间",
|
|
337
|
+
"Room Name": "房间名称",
|
|
338
|
+
"please enter the room name": "请输入房间名称",
|
|
339
|
+
"Room type": "房间类型",
|
|
340
|
+
"Starting time": "开始时间",
|
|
341
|
+
"Room duration": "房间时长",
|
|
342
|
+
"Time zone": "时区",
|
|
343
|
+
Attendees: "参与成员",
|
|
344
|
+
"Please enter the member name": "请输入成员名称",
|
|
345
|
+
people: "人",
|
|
346
|
+
Contacts: "联系人",
|
|
347
|
+
"No relevant members found": "暂无相关成员",
|
|
348
|
+
"Selected Contact": "已选联系人",
|
|
349
|
+
"Scheduled meetings": "预订的会议",
|
|
350
|
+
minute: "分钟",
|
|
351
|
+
hour: "小时",
|
|
352
|
+
minutes: "分钟",
|
|
353
|
+
hours: "小时",
|
|
354
|
+
"The start time cannot be earlier than the current time": "开始时间不能早于当前时间",
|
|
355
|
+
"Room Time": "房间时间",
|
|
356
|
+
"Creator": "发起人",
|
|
357
|
+
"Room Details": "房间详情",
|
|
358
|
+
"Enter Now": "立即进入",
|
|
359
|
+
"Invited members": "邀请成员",
|
|
360
|
+
"The room is closed": "房间已结束",
|
|
361
|
+
"Entry Time": "进房时间",
|
|
362
|
+
"Duration of participation": "参会时长",
|
|
363
|
+
"No cancellation": "暂不取消",
|
|
364
|
+
"Cancellation of scheduled rooms": "取消已预订的房间",
|
|
365
|
+
"Other members will not be able to join after cancellation": "取消后其他成员将无法加入",
|
|
366
|
+
"Inviting members to join": "邀请成员加入",
|
|
367
|
+
"Invitation by room ID": "通过房间号邀请",
|
|
368
|
+
"Invitation via room link": "通过房间链接邀请",
|
|
369
|
+
"Copy the conference number and link": "复制会议号与链接",
|
|
370
|
+
"Schedule successful, invite members to join": "预订成功,邀请成员加入",
|
|
371
|
+
"Name changed successfully": "名称修改成功",
|
|
372
|
+
"schedule year": "年",
|
|
373
|
+
"schedule month": "月",
|
|
374
|
+
"schedule day": "日",
|
|
375
|
+
"The room name cannot exceed 100 characters": "房间名称不能超过100个字节",
|
|
376
|
+
"The meeting is in progress and any meeting information cannot be modified": "进行中的会议,不能修改任何会议信息",
|
|
377
|
+
"Schedule room loading": "预定房间加载中...",
|
|
378
|
+
"The user name cannot exceed 32 characters": "用户名称不能超过32个字节",
|
|
379
|
+
"sb invites you to join the conference": ({ named }) => `${named("name")} 邀请您加入会议`,
|
|
380
|
+
// media privilege
|
|
381
|
+
microphone: "麦克风",
|
|
382
|
+
camera: "摄像头",
|
|
383
|
+
"Unable to use the device": ({ named }) => `无法使用${named("deviceType")}`,
|
|
384
|
+
"media device failed to open, please check the media device and try again": ({ named }) => `打开${named("deviceType")}失败, 请检查${named("deviceType")}设备并重试`,
|
|
385
|
+
"The current device is not authorized, please allow access to the device permissions": ({ named }) => `${named("deviceType")}设备未授权, 请允许访问${named("deviceType")}权限`,
|
|
386
|
+
"The current device is occupied by other apps, try to close other apps or change the device": ({ named }) => `当前${named("deviceType")}被其他应用程序占用,请尝试关闭其他应用程序或更换${named("deviceType")}`,
|
|
387
|
+
"Turn on device privileges": ({ named }) => `打开${named("deviceType")}权限`,
|
|
388
|
+
'You can go to "System Preferences - Security & Privacy - Device" to enable device permissions': ({ named }) => `你可前往"系统设置 - 隐私与安全性 - ${named("deviceType")}"开启设备权限。`,
|
|
389
|
+
"Go to Settings": "前往设置"
|
|
309
390
|
};
|
|
310
391
|
export {
|
|
311
392
|
ZH as default
|
|
@@ -6,6 +6,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
6
6
|
};
|
|
7
7
|
showEditNameInPc: boolean;
|
|
8
8
|
roomId: string;
|
|
9
|
+
enableScheduledConference: boolean;
|
|
10
|
+
isShowLogo?: boolean | undefined;
|
|
9
11
|
}>, {
|
|
10
12
|
userInfo: () => {
|
|
11
13
|
userId: string;
|
|
@@ -14,6 +16,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
14
16
|
};
|
|
15
17
|
showEditNameInPc: boolean;
|
|
16
18
|
roomId: string;
|
|
19
|
+
enableScheduledConference: boolean;
|
|
20
|
+
isShowLogo: boolean;
|
|
17
21
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
22
|
"on-create-room": (...args: any[]) => void;
|
|
19
23
|
"on-enter-room": (...args: any[]) => void;
|
|
@@ -27,6 +31,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
31
|
};
|
|
28
32
|
showEditNameInPc: boolean;
|
|
29
33
|
roomId: string;
|
|
34
|
+
enableScheduledConference: boolean;
|
|
35
|
+
isShowLogo?: boolean | undefined;
|
|
30
36
|
}>, {
|
|
31
37
|
userInfo: () => {
|
|
32
38
|
userId: string;
|
|
@@ -35,6 +41,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
35
41
|
};
|
|
36
42
|
showEditNameInPc: boolean;
|
|
37
43
|
roomId: string;
|
|
44
|
+
enableScheduledConference: boolean;
|
|
45
|
+
isShowLogo: boolean;
|
|
38
46
|
}>>> & {
|
|
39
47
|
"onOn-create-room"?: ((...args: any[]) => any) | undefined;
|
|
40
48
|
"onOn-enter-room"?: ((...args: any[]) => any) | undefined;
|
|
@@ -47,7 +55,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
47
55
|
userName: string;
|
|
48
56
|
avatarUrl: string;
|
|
49
57
|
};
|
|
58
|
+
enableScheduledConference: boolean;
|
|
50
59
|
showEditNameInPc: boolean;
|
|
60
|
+
isShowLogo: boolean;
|
|
51
61
|
}, {}>;
|
|
52
62
|
export default _default;
|
|
53
63
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
package/es/preConference.vue.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import _sfc_main from "./preConference.vue2.mjs";
|
|
|
2
2
|
import "./preConference.vue3.mjs";
|
|
3
3
|
import "./preConference.vue4.mjs";
|
|
4
4
|
import _export_sfc from "./_virtual/_plugin-vue_export-helper.mjs";
|
|
5
|
-
const preConference = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
5
|
+
const preConference = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-69284f4e"]]);
|
|
6
6
|
export {
|
|
7
7
|
preConference as default
|
|
8
8
|
};
|
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
import { defineComponent, ref, openBlock, createElementBlock, createElementVNode, createVNode } from "vue";
|
|
1
|
+
import { defineComponent, ref, computed, onMounted, onUnmounted, openBlock, createElementBlock, normalizeClass, createElementVNode, createVNode, unref, createBlock, withDirectives, vShow } from "vue";
|
|
2
2
|
import UserInfo from "./components/RoomHeader/UserInfo/index.vue.mjs";
|
|
3
3
|
import RoomHomeControl from "./components/RoomHome/RoomControl/index.vue.mjs";
|
|
4
4
|
import _sfc_main$2 from "./components/common/Language.vue.mjs";
|
|
5
5
|
import _sfc_main$1 from "./components/common/SwitchTheme.vue.mjs";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
import "./services/main.mjs";
|
|
7
|
+
import { roomService } from "./services/roomService.mjs";
|
|
8
|
+
import { EventType } from "./services/types.mjs";
|
|
9
|
+
import "./locales/index.mjs";
|
|
10
|
+
import "@tencentcloud/tuiroom-engine-electron";
|
|
11
|
+
import "mitt";
|
|
12
|
+
import "./services/manager/roomActionManager.mjs";
|
|
13
|
+
import ScheduleRoomList from "./components/ScheduleConference/ScheduleRoomList.vue.mjs";
|
|
14
|
+
import Logo from "./components/common/Logo.vue.mjs";
|
|
15
|
+
import MessageBox from "./components/common/base/MessageBox/index.mjs";
|
|
16
|
+
import renderMsg from "./components/common/base/Message/Message.mjs";
|
|
17
|
+
import { isMobile } from "./utils/environment.mjs";
|
|
18
|
+
const _hoisted_1 = { class: "header" };
|
|
19
|
+
const _hoisted_2 = { class: "left-header" };
|
|
20
|
+
const _hoisted_3 = { class: "right-header" };
|
|
21
|
+
const _hoisted_4 = {
|
|
22
|
+
key: 1,
|
|
23
|
+
class: "pre-home-control"
|
|
24
|
+
};
|
|
25
|
+
const _hoisted_5 = { class: "pre-home-control-container" };
|
|
10
26
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
11
27
|
__name: "preConference",
|
|
12
28
|
props: {
|
|
@@ -16,13 +32,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
16
32
|
avatarUrl: ""
|
|
17
33
|
}) },
|
|
18
34
|
showEditNameInPc: { type: Boolean, default: false },
|
|
19
|
-
roomId: { default: "" }
|
|
35
|
+
roomId: { default: "" },
|
|
36
|
+
enableScheduledConference: { type: Boolean, default: true },
|
|
37
|
+
isShowLogo: { type: Boolean, default: true }
|
|
20
38
|
},
|
|
21
39
|
emits: ["on-create-room", "on-enter-room", "on-update-user-name", "on-logout"],
|
|
22
40
|
setup(__props, { emit: __emit }) {
|
|
23
41
|
const roomControlRef = ref();
|
|
24
42
|
const props = __props;
|
|
25
43
|
const emits = __emit;
|
|
44
|
+
const tuiRoomThemeClass = computed(() => `tui-theme-${roomService.basicStore.defaultTheme}`);
|
|
26
45
|
async function handleCreateRoom(roomOption) {
|
|
27
46
|
emits("on-create-room", roomOption);
|
|
28
47
|
}
|
|
@@ -35,13 +54,49 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
35
54
|
async function handleLogOut() {
|
|
36
55
|
emits("on-logout");
|
|
37
56
|
}
|
|
57
|
+
const showMessageBox = (data) => {
|
|
58
|
+
const {
|
|
59
|
+
message,
|
|
60
|
+
title = roomService.t("Note"),
|
|
61
|
+
cancelButtonText,
|
|
62
|
+
confirmButtonText = roomService.t("Sure"),
|
|
63
|
+
callback = () => {
|
|
64
|
+
}
|
|
65
|
+
} = data;
|
|
66
|
+
MessageBox({
|
|
67
|
+
title,
|
|
68
|
+
message,
|
|
69
|
+
cancelButtonText,
|
|
70
|
+
confirmButtonText,
|
|
71
|
+
callback
|
|
72
|
+
});
|
|
73
|
+
};
|
|
74
|
+
const showMessage = (data) => {
|
|
75
|
+
const { type, message, duration } = data;
|
|
76
|
+
renderMsg({
|
|
77
|
+
type,
|
|
78
|
+
message,
|
|
79
|
+
duration
|
|
80
|
+
});
|
|
81
|
+
};
|
|
82
|
+
onMounted(() => {
|
|
83
|
+
roomService.on(EventType.ROOM_NOTICE_MESSAGE, showMessage);
|
|
84
|
+
roomService.on(EventType.ROOM_NOTICE_MESSAGE_BOX, showMessageBox);
|
|
85
|
+
});
|
|
86
|
+
onUnmounted(() => {
|
|
87
|
+
roomService.off(EventType.ROOM_NOTICE_MESSAGE, showMessage);
|
|
88
|
+
roomService.off(EventType.ROOM_NOTICE_MESSAGE_BOX, showMessageBox);
|
|
89
|
+
});
|
|
38
90
|
return (_ctx, _cache) => {
|
|
39
|
-
return openBlock(), createElementBlock("div",
|
|
40
|
-
|
|
41
|
-
|
|
91
|
+
return openBlock(), createElementBlock("div", {
|
|
92
|
+
id: "pre-conference-container",
|
|
93
|
+
class: normalizeClass(["pre-conference-container", tuiRoomThemeClass.value])
|
|
94
|
+
}, [
|
|
95
|
+
createElementVNode("div", _hoisted_1, [
|
|
96
|
+
createElementVNode("div", _hoisted_2, [
|
|
42
97
|
createVNode(_sfc_main$1, { class: "header-item" })
|
|
43
98
|
]),
|
|
44
|
-
createElementVNode("div",
|
|
99
|
+
createElementVNode("div", _hoisted_3, [
|
|
45
100
|
createVNode(_sfc_main$2, { class: "header-item language" }),
|
|
46
101
|
createVNode(UserInfo, {
|
|
47
102
|
class: "header-item user-info",
|
|
@@ -54,7 +109,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
54
109
|
}, null, 8, ["user-id", "user-name", "avatar-url", "is-show-edit-name"])
|
|
55
110
|
])
|
|
56
111
|
]),
|
|
57
|
-
|
|
112
|
+
unref(isMobile) ? (openBlock(), createBlock(RoomHomeControl, {
|
|
113
|
+
key: 0,
|
|
58
114
|
ref_key: "roomControlRef",
|
|
59
115
|
ref: roomControlRef,
|
|
60
116
|
"given-room-id": props.roomId,
|
|
@@ -62,8 +118,28 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
62
118
|
onCreateRoom: handleCreateRoom,
|
|
63
119
|
onEnterRoom: handleEnterRoom,
|
|
64
120
|
onUpdateUserName: handleUpdateUserName
|
|
65
|
-
}, null, 8, ["given-room-id", "user-name"])
|
|
66
|
-
|
|
121
|
+
}, null, 8, ["given-room-id", "user-name"])) : (openBlock(), createElementBlock("div", _hoisted_4, [
|
|
122
|
+
withDirectives(createVNode(Logo, { class: "logo" }, null, 512), [
|
|
123
|
+
[vShow, props.isShowLogo]
|
|
124
|
+
]),
|
|
125
|
+
createElementVNode("div", _hoisted_5, [
|
|
126
|
+
createVNode(RoomHomeControl, {
|
|
127
|
+
ref_key: "roomControlRef",
|
|
128
|
+
ref: roomControlRef,
|
|
129
|
+
"given-room-id": props.roomId,
|
|
130
|
+
"user-name": props.userInfo.userName,
|
|
131
|
+
"enable-scheduled-conference": props.enableScheduledConference,
|
|
132
|
+
onCreateRoom: handleCreateRoom,
|
|
133
|
+
onEnterRoom: handleEnterRoom,
|
|
134
|
+
onUpdateUserName: handleUpdateUserName
|
|
135
|
+
}, null, 8, ["given-room-id", "user-name", "enable-scheduled-conference"]),
|
|
136
|
+
createVNode(ScheduleRoomList, {
|
|
137
|
+
"is-show-scheduled-conference": props.enableScheduledConference,
|
|
138
|
+
onJoinConference: handleEnterRoom
|
|
139
|
+
}, null, 8, ["is-show-scheduled-conference"])
|
|
140
|
+
])
|
|
141
|
+
]))
|
|
142
|
+
], 2);
|
|
67
143
|
};
|
|
68
144
|
}
|
|
69
145
|
});
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class ErrorHandler {
|
|
2
|
+
private service;
|
|
3
|
+
private handlerMap;
|
|
4
|
+
private mediaDeviceErrorHandler;
|
|
5
|
+
constructor(service: any);
|
|
6
|
+
handleError(error: any, functionName: string): void;
|
|
7
|
+
private handleEnterRoomError;
|
|
8
|
+
private handleCreateRoomError;
|
|
9
|
+
private handleOnError;
|
|
10
|
+
}
|