mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
21 lines
631 B
TypeScript
21 lines
631 B
TypeScript
import { openDialog } from '../base/dialog/actions';
|
|
|
|
import DesktopPicker from './components/DesktopPicker';
|
|
|
|
/**
|
|
* Signals to open a dialog with the DesktopPicker component.
|
|
*
|
|
* @param {Object} options - Desktop sharing settings.
|
|
* @param {Function} onSourceChoose - The callback to invoke when
|
|
* a DesktopCapturerSource has been chosen.
|
|
* @returns {Object}
|
|
*/
|
|
export function showDesktopPicker(options: { desktopSharingSources?: any; } = {}, onSourceChoose: Function) {
|
|
const { desktopSharingSources } = options;
|
|
|
|
return openDialog(DesktopPicker, {
|
|
desktopSharingSources,
|
|
onSourceChoose
|
|
});
|
|
}
|