2024-05-16 22:43:23 +08:00
|
|
|
import useMeeting from '../../core/hooks/useMeeting';
|
2022-02-07 21:22:52 +08:00
|
|
|
|
2024-05-16 22:43:23 +08:00
|
|
|
export function useDisabledFeatures() {
|
|
|
|
const { data: meetingData } = useMeeting((m) => ({
|
|
|
|
disabledFeatures: m.disabledFeatures,
|
|
|
|
}));
|
|
|
|
const disabledFeatures = meetingData?.disabledFeatures || [];
|
|
|
|
return disabledFeatures;
|
|
|
|
}
|
|
|
|
|
2024-05-17 21:37:32 +08:00
|
|
|
export function useIsScreenSharingEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('screenshare') === -1 && window.meetingClientSettings.public.kurento.enableScreensharing;
|
|
|
|
}
|
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsLearningDashboardEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('learningDashboard') === -1;
|
2022-03-09 02:05:24 +08:00
|
|
|
}
|
2022-03-09 21:33:18 +08:00
|
|
|
|
2024-05-16 22:43:23 +08:00
|
|
|
export function useIsPollingEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('polls') === -1 && window.meetingClientSettings.public.poll.enabled;
|
|
|
|
}
|
|
|
|
|
2024-06-13 22:48:15 +08:00
|
|
|
export function useIsPresentationEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('presentation') === -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useIsExternalVideoEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('externalVideos') === -1 && window.meetingClientSettings.public.externalVideoPlayer.enabled;
|
|
|
|
}
|
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsChatEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('chat') === -1 && window.meetingClientSettings.public.chat.enabled;
|
2022-03-10 03:23:38 +08:00
|
|
|
}
|
2022-03-11 02:02:20 +08:00
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsSharedNotesEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('sharedNotes') === -1 && window.meetingClientSettings.public.notes.enabled;
|
2022-03-11 02:02:20 +08:00
|
|
|
}
|
2022-03-15 02:30:41 +08:00
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsLiveTranscriptionEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('liveTranscription') === -1 && window.meetingClientSettings.public.app.audioCaptions.enabled;
|
2022-12-17 04:04:14 +08:00
|
|
|
}
|
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsBreakoutRoomsEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('breakoutRooms') === -1;
|
2022-03-15 02:30:41 +08:00
|
|
|
}
|
2022-03-19 02:46:45 +08:00
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsLayoutsEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('layouts') === -1;
|
2022-03-15 21:40:02 +08:00
|
|
|
}
|
2022-03-23 03:01:27 +08:00
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsVirtualBackgroundsEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('virtualBackgrounds') === -1 && window.meetingClientSettings.public.virtualBackgrounds.enabled;
|
2022-03-23 03:01:27 +08:00
|
|
|
}
|
2022-07-09 04:01:57 +08:00
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsCustomVirtualBackgroundsEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('customVirtualBackgrounds') === -1;
|
2023-08-01 04:03:29 +08:00
|
|
|
}
|
|
|
|
|
2024-06-12 23:16:00 +08:00
|
|
|
export function useIsDownloadPresentationWithAnnotationsEnabled() {
|
2024-06-14 21:30:48 +08:00
|
|
|
return useDisabledFeatures().indexOf('downloadPresentationWithAnnotations') === -1 && window.meetingClientSettings.public.presentation.allowDownloadWithAnnotations;
|
2023-08-25 22:37:32 +08:00
|
|
|
}
|
|
|
|
|
2024-06-12 23:16:00 +08:00
|
|
|
export function useIsDownloadPresentationConvertedToPdfEnabled() {
|
2024-06-14 21:30:48 +08:00
|
|
|
return useDisabledFeatures().indexOf('downloadPresentationConvertedToPdf') === -1;
|
2022-07-13 00:58:56 +08:00
|
|
|
}
|
|
|
|
|
2024-06-12 23:16:00 +08:00
|
|
|
export function useIsDownloadPresentationOriginalFileEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('downloadPresentationOriginalFile') === -1 && window.meetingClientSettings.public.presentation.allowDownloadOriginal;
|
|
|
|
}
|
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsSnapshotOfCurrentSlideEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('snapshotOfCurrentSlide') === -1 && window.meetingClientSettings.public.presentation.allowSnapshotOfCurrentSlide;
|
2023-04-03 21:13:54 +08:00
|
|
|
}
|
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsImportPresentationWithAnnotationsFromBreakoutRoomsEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('importPresentationWithAnnotationsFromBreakoutRooms') === -1;
|
2022-07-13 00:58:56 +08:00
|
|
|
}
|
2022-09-20 23:43:13 +08:00
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsImportSharedNotesFromBreakoutRoomsEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('importSharedNotesFromBreakoutRooms') === -1;
|
2023-05-26 05:05:50 +08:00
|
|
|
}
|
2023-05-26 21:33:38 +08:00
|
|
|
|
2024-05-17 21:37:32 +08:00
|
|
|
export function useIsReactionsEnabled() {
|
|
|
|
const USER_REACTIONS_ENABLED = window.meetingClientSettings.public.userReaction.enabled;
|
|
|
|
const REACTIONS_BUTTON_ENABLED = window.meetingClientSettings.public.app.reactionsButton.enabled;
|
|
|
|
|
|
|
|
return useDisabledFeatures().indexOf('reactions') === -1 && USER_REACTIONS_ENABLED && REACTIONS_BUTTON_ENABLED;
|
|
|
|
}
|
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsTimerFeatureEnabled() {
|
|
|
|
return useDisabledFeatures().indexOf('timer') === -1 && window.meetingClientSettings.public.timer.enabled;
|
2023-06-15 03:47:57 +08:00
|
|
|
}
|
|
|
|
|
2024-06-14 21:30:48 +08:00
|
|
|
export function useIsCameraAsContentEnabled() {
|
2023-06-15 03:47:57 +08:00
|
|
|
return (
|
2024-06-14 21:30:48 +08:00
|
|
|
useDisabledFeatures().indexOf('cameraAsContent') === -1
|
2024-03-26 19:57:28 +08:00
|
|
|
&& window.meetingClientSettings.public.app.enableCameraAsContent
|
2023-06-15 03:47:57 +08:00
|
|
|
);
|
2023-03-02 00:30:30 +08:00
|
|
|
}
|