theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

26 lines
753 B
TypeScript

import { openDialog } from '../base/dialog/actions';
import { DesktopSharingSourceType } from '../base/tracks/types';
import DesktopPicker from './components/DesktopPicker';
type Options = {
desktopSharingSources?: Array<DesktopSharingSourceType>;
};
/**
* 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: Options = {}, onSourceChoose: Function) {
const { desktopSharingSources } = options;
return openDialog(DesktopPicker, {
desktopSharingSources,
onSourceChoose
});
}