2017-06-04 03:12:04 +00:00
|
|
|
import { API_ID } from '../../../modules/API/constants';
|
|
|
|
import {
|
2018-04-12 19:58:20 +00:00
|
|
|
PostMessageTransportBackend,
|
|
|
|
Transport
|
|
|
|
} from '../../../modules/transport';
|
|
|
|
|
2018-08-06 15:24:59 +00:00
|
|
|
import { createDeviceChangedEvent, sendAnalytics } from '../analytics';
|
2018-04-12 19:58:20 +00:00
|
|
|
import {
|
2019-05-07 08:53:01 +00:00
|
|
|
getDeviceLabelById,
|
2017-06-04 03:12:04 +00:00
|
|
|
setAudioInputDevice,
|
2018-08-06 15:24:59 +00:00
|
|
|
setAudioOutputDeviceId,
|
2017-06-04 03:12:04 +00:00
|
|
|
setVideoInputDevice
|
|
|
|
} from '../base/devices';
|
|
|
|
import { i18next } from '../base/i18n';
|
2018-08-06 15:24:59 +00:00
|
|
|
import { updateSettings } from '../base/settings';
|
2017-04-09 21:20:37 +00:00
|
|
|
|
2017-06-04 03:12:04 +00:00
|
|
|
import { SET_DEVICE_SELECTION_POPUP_DATA } from './actionTypes';
|
2019-03-28 16:29:30 +00:00
|
|
|
import { getDeviceSelectionDialogProps, processExternalDeviceRequest } from './functions';
|
2017-06-04 03:12:04 +00:00
|
|
|
|
2018-08-06 15:24:59 +00:00
|
|
|
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
|
|
|
|
2017-06-04 03:12:04 +00:00
|
|
|
/**
|
|
|
|
* Opens a popup window with the device selection dialog in it.
|
|
|
|
*
|
|
|
|
* @returns {Function}
|
|
|
|
*/
|
2018-06-20 20:19:53 +00:00
|
|
|
export function openDeviceSelectionPopup() {
|
2017-06-04 03:12:04 +00:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const { popupDialogData } = getState()['features/device-selection'];
|
|
|
|
|
|
|
|
if (popupDialogData) {
|
|
|
|
popupDialogData.popup.focus();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// API_ID will always be defined because the iframe api is enabled
|
|
|
|
const scope = `dialog_${API_ID}`;
|
2017-06-09 18:16:03 +00:00
|
|
|
const url = `${
|
|
|
|
window.location.origin}/static/deviceSelectionPopup.html#scope=${
|
2017-10-02 23:08:07 +00:00
|
|
|
encodeURIComponent(JSON.stringify(scope))}`;
|
2017-06-04 03:12:04 +00:00
|
|
|
const popup
|
|
|
|
= window.open(
|
|
|
|
url,
|
|
|
|
'device-selection-popup',
|
|
|
|
'toolbar=no,scrollbars=no,resizable=no,width=720,height=458');
|
|
|
|
|
|
|
|
popup.addEventListener('DOMContentLoaded', () => {
|
|
|
|
popup.init(i18next);
|
|
|
|
});
|
|
|
|
|
|
|
|
const transport = new Transport({
|
|
|
|
backend: new PostMessageTransportBackend({
|
|
|
|
postisOptions: {
|
|
|
|
scope,
|
|
|
|
window: popup
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
transport.on('request',
|
2019-03-28 16:29:30 +00:00
|
|
|
processExternalDeviceRequest.bind(undefined, dispatch, getState));
|
2017-06-04 03:12:04 +00:00
|
|
|
transport.on('event', event => {
|
|
|
|
if (event.type === 'devices-dialog' && event.name === 'close') {
|
|
|
|
popup.close();
|
|
|
|
transport.dispose();
|
|
|
|
dispatch(_setDeviceSelectionPopupData());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
dispatch(_setDeviceSelectionPopupData({
|
|
|
|
popup,
|
|
|
|
transport
|
|
|
|
}));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets information about device selection popup in the store.
|
|
|
|
*
|
|
|
|
* @param {Object} popupDialogData - Information about the popup.
|
|
|
|
* @param {Object} popupDialog.popup - The popup object returned from
|
|
|
|
* window.open.
|
|
|
|
* @param {Object} popupDialogData.transport - The transport instance used for
|
|
|
|
* communication with the popup window.
|
|
|
|
* @returns {{
|
|
|
|
* type: SET_DEVICE_SELECTION_POPUP_DATA,
|
|
|
|
* popupDialogData: Object
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
function _setDeviceSelectionPopupData(popupDialogData) {
|
|
|
|
return {
|
|
|
|
type: SET_DEVICE_SELECTION_POPUP_DATA,
|
|
|
|
popupDialogData
|
2017-04-09 21:20:37 +00:00
|
|
|
};
|
|
|
|
}
|
2018-06-20 20:19:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Submits the settings related to device selection.
|
|
|
|
*
|
|
|
|
* @param {Object} newState - The new settings.
|
|
|
|
* @returns {Function}
|
|
|
|
*/
|
|
|
|
export function submitDeviceSelectionTab(newState) {
|
|
|
|
return (dispatch, getState) => {
|
|
|
|
const currentState = getDeviceSelectionDialogProps(getState());
|
|
|
|
|
|
|
|
if (newState.selectedVideoInputId
|
|
|
|
&& newState.selectedVideoInputId
|
|
|
|
!== currentState.selectedVideoInputId) {
|
2018-08-06 15:24:59 +00:00
|
|
|
dispatch(updateSettings({
|
2019-05-07 08:53:01 +00:00
|
|
|
userSelectedCameraDeviceId: newState.selectedVideoInputId,
|
|
|
|
userSelectedCameraDeviceLabel:
|
|
|
|
getDeviceLabelById(getState(), newState.selectedVideoInputId, 'videoInput')
|
2018-08-06 15:24:59 +00:00
|
|
|
}));
|
|
|
|
|
2018-06-20 20:19:53 +00:00
|
|
|
dispatch(
|
|
|
|
setVideoInputDevice(newState.selectedVideoInputId));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newState.selectedAudioInputId
|
|
|
|
&& newState.selectedAudioInputId
|
|
|
|
!== currentState.selectedAudioInputId) {
|
2018-08-06 15:24:59 +00:00
|
|
|
dispatch(updateSettings({
|
2019-05-07 08:53:01 +00:00
|
|
|
userSelectedMicDeviceId: newState.selectedAudioInputId,
|
|
|
|
userSelectedMicDeviceLabel:
|
|
|
|
getDeviceLabelById(getState(), newState.selectedAudioInputId, 'audioInput')
|
2018-08-06 15:24:59 +00:00
|
|
|
}));
|
|
|
|
|
2018-06-20 20:19:53 +00:00
|
|
|
dispatch(
|
|
|
|
setAudioInputDevice(newState.selectedAudioInputId));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newState.selectedAudioOutputId
|
|
|
|
&& newState.selectedAudioOutputId
|
|
|
|
!== currentState.selectedAudioOutputId) {
|
2018-08-06 15:24:59 +00:00
|
|
|
sendAnalytics(createDeviceChangedEvent('audio', 'output'));
|
|
|
|
|
|
|
|
setAudioOutputDeviceId(
|
|
|
|
newState.selectedAudioOutputId,
|
2019-05-01 14:13:25 +00:00
|
|
|
dispatch,
|
2019-05-07 08:53:01 +00:00
|
|
|
true,
|
|
|
|
getDeviceLabelById(getState(), newState.selectedAudioOutputId, 'audioOutput'))
|
2018-08-06 15:24:59 +00:00
|
|
|
.then(() => logger.log('changed audio output device'))
|
|
|
|
.catch(err => {
|
|
|
|
logger.warn(
|
|
|
|
'Failed to change audio output device.',
|
|
|
|
'Default or previously set audio output device will',
|
|
|
|
' be used instead.',
|
|
|
|
err);
|
|
|
|
});
|
2018-06-20 20:19:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|