jiti-meet/react/features/base/tracks/actions.native.ts

89 lines
3.0 KiB
TypeScript
Raw Normal View History

import { IReduxState, IStore } from '../../app/types';
// eslint-disable-next-line lines-around-comment
// @ts-ignore
import { setPictureInPictureEnabled } from '../../mobile/picture-in-picture/functions';
import { setAudioOnly } from '../audio-only/actions';
import JitsiMeetJS from '../lib-jitsi-meet';
import {
setScreenshareMuted,
setVideoMuted
} from '../media/actions';
import {
MEDIA_TYPE,
VIDEO_MUTISM_AUTHORITY
} from '../media/constants';
import { addLocalTrack, replaceLocalTrack } from './actions.any';
import { getLocalDesktopTrack, getTrackState, isLocalVideoTrackDesktop } from './functions.native';
export * from './actions.any';
/* eslint-disable @typescript-eslint/no-unused-vars */
/**
* Signals that the local participant is ending screensharing or beginning the screensharing flow.
*
* @param {boolean} enabled - The state to toggle screen sharing to.
* @param {boolean} _ignore1 - Ignored.
* @param {any} _ignore2 - Ignored.
* @returns {Function}
*/
export function toggleScreensharing(enabled: boolean, _ignore1?: boolean, _ignore2?: any) {
2022-10-13 09:53:15 +00:00
return (dispatch: IStore['dispatch'], getState: IStore['getState']) => {
const state = getState();
2022-10-13 09:53:15 +00:00
if (enabled) {
const isSharing = isLocalVideoTrackDesktop(state);
2022-10-13 09:53:15 +00:00
if (!isSharing) {
_startScreenSharing(dispatch, state);
}
} else {
dispatch(setScreenshareMuted(true));
dispatch(setVideoMuted(false, MEDIA_TYPE.VIDEO, VIDEO_MUTISM_AUTHORITY.SCREEN_SHARE));
2022-10-13 09:53:15 +00:00
setPictureInPictureEnabled(true);
}
2022-10-13 09:53:15 +00:00
};
}
/* eslint-enable @typescript-eslint/no-unused-vars */
/**
* Creates desktop track and replaces the local one.
*
* @private
* @param {Dispatch} dispatch - The redux {@code dispatch} function.
* @param {Object} state - The redux state.
* @returns {void}
*/
async function _startScreenSharing(dispatch: Function, state: IReduxState) {
setPictureInPictureEnabled(false);
try {
const tracks: any[] = await JitsiMeetJS.createLocalTracks({ devices: [ 'desktop' ] });
const track = tracks[0];
const currentLocalDesktopTrack = getLocalDesktopTrack(getTrackState(state));
const currentJitsiTrack = currentLocalDesktopTrack?.jitsiTrack;
// The first time the user shares the screen we add the track and create the transceiver.
// Afterwards, we just replace the old track, so the transceiver will be reused.
if (currentJitsiTrack) {
dispatch(replaceLocalTrack(currentJitsiTrack, track));
} else {
dispatch(addLocalTrack(track));
}
dispatch(setVideoMuted(true, MEDIA_TYPE.VIDEO, VIDEO_MUTISM_AUTHORITY.SCREEN_SHARE));
const { enabled: audioOnly } = state['features/base/audio-only'];
if (audioOnly) {
dispatch(setAudioOnly(false));
}
} catch (error: any) {
console.log('ERROR creating ScreeSharing stream ', error);
setPictureInPictureEnabled(true);
}
}