Compare commits

...

2 Commits

Author SHA1 Message Date
tmoldovan8x8 8d928ad315 fix(rn, recording) adds _toggleScreenshotCapture function to AbstractStartRecordingDialog 2021-12-20 08:44:45 +02:00
Saúl Ibarra Corretgé ef9913c1c7 fix(rn) fix broken mobile build
Importing the entire feature triggers web UI imports.
2021-12-11 15:22:03 +01:00
2 changed files with 10 additions and 4 deletions

View File

@ -13,7 +13,7 @@ import {
showWarningNotification
} from '../../notifications';
import { isForceMuted } from '../../participants-pane/functions';
import { isScreenMediaShared } from '../../screen-share';
import { isScreenMediaShared } from '../../screen-share/functions';
import { SET_AUDIO_ONLY, setAudioOnly } from '../audio-only';
import { isRoomValid, SET_ROOM } from '../conference';
import { getLocalParticipant } from '../participants';

View File

@ -339,11 +339,17 @@ class AbstractStartRecordingDialog extends Component<Props, State> {
return true;
}
/**
* To be overwritten by web component.
*/
_toggleScreenshotCapture:() => void;
/**
* Toggles screenshot capture feature.
*
* @returns {void}
*/
_toggleScreenshotCapture() {
// To be implemented by subclass.
}
/**
* Renders the platform specific dialog content.
*