jiti-meet/react/features/mobile/picture-in-picture/actions.js

44 lines
1.5 KiB
JavaScript

// @flow
import { NativeModules } from 'react-native';
import type { Dispatch } from 'redux';
import { getAppProp } from '../../base/app';
import { Platform } from '../../base/react';
import { ENTER_PICTURE_IN_PICTURE } from './actionTypes';
const logger = require('jitsi-meet-logger').getLogger(__filename);
/**
* Enters (or rather initiates entering) picture-in-picture.
* Helper function to enter PiP mode. This is triggered by user request
* (either pressing the button in the toolbox or the home button on Android)
* ans this triggers the PiP mode, iff it's available and we are in a
* conference.
*
* @public
* @returns {Function}
*/
export function enterPictureInPicture() {
return (dispatch: Dispatch<any>, getState: Function) => {
// XXX At the time of this writing this action can only be dispatched by
// the button which is on the conference view, which means that it's
// fine to enter PiP mode.
if (getAppProp(getState, 'pictureInPictureEnabled')) {
const { PictureInPicture } = NativeModules;
const p
= Platform.OS === 'android'
? PictureInPicture
? PictureInPicture.enterPictureInPicture()
: Promise.reject(
new Error('Picture-in-Picture not supported'))
: Promise.resolve();
p.then(
() => dispatch({ type: ENTER_PICTURE_IN_PICTURE }),
e => logger.warn(`Error entering PiP mode: ${e}`));
}
};
}