mediasfu-reactnative-expo
Version:
mediasfu-reactnative-expo – Expo-managed React Native WebRTC SDK for video conferencing, webinars, live streaming, broadcast, screen sharing, whiteboard, chat, recording, live subtitles, translation, and AI agent rooms on iOS, Android, and web. Prebuilt r
45 lines • 2.11 kB
JavaScript
import { checkScreenShare as sharedCheckScreenShare } from 'mediasfu-shared';
/**
* Checks the current screen sharing status and either stops or requests screen sharing based on the provided parameters.
*
* @param {CheckScreenShareOptions} options - The options for checking screen share.
* @param {Object} options.parameters - The parameters for screen sharing.
* @param {boolean} options.parameters.shared - Indicates if the screen is currently being shared.
* @param {Function} [options.parameters.showAlert] - Function to show alerts.
* @param {boolean} options.parameters.whiteboardStarted - Indicates if the whiteboard session has started.
* @param {boolean} options.parameters.whiteboardEnded - Indicates if the whiteboard session has ended.
* @param {boolean} options.parameters.breakOutRoomStarted - Indicates if the breakout room session has started.
* @param {boolean} options.parameters.breakOutRoomEnded - Indicates if the breakout room session has ended.
* @param {Function} options.parameters.stopShareScreen - Function to stop screen sharing.
* @param {Function} options.parameters.requestScreenShare - Function to request screen sharing.
*
* @returns {Promise<void>} A promise that resolves when the screen sharing status has been checked and the appropriate action has been taken.
*
* @throws Will log an error message if an error occurs during the process.
*
* @example
* const options = {
* parameters: {
* shared: false,
* showAlert: showAlertFunction,
* whiteboardStarted: false,
* whiteboardEnded: false,
* breakOutRoomStarted: false,
* breakOutRoomEnded: false,
* stopShareScreen: stopShareScreenFunction,
* requestScreenShare: requestScreenShareFunction,
* },
* };
*
* checkScreenShare(options)
* .then(() => {
* console.log('Screen share checked successfully');
* })
* .catch((error) => {
* console.error('Error checking screen share:', error);
* });
*/
export const checkScreenShare = async (options) => {
await sharedCheckScreenShare(options);
};
//# sourceMappingURL=checkScreenShare.js.map