mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:35:35 +08:00
464863acd6
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
65 lines
2.4 KiB
JavaScript
65 lines
2.4 KiB
JavaScript
/*
|
|
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import UserSettingsStore from './UserSettingsStore';
|
|
import * as Matrix from 'matrix-js-sdk';
|
|
|
|
export default {
|
|
getDevices: function() {
|
|
// Only needed for Electron atm, though should work in modern browsers
|
|
// once permission has been granted to the webapp
|
|
return navigator.mediaDevices.enumerateDevices().then(function(devices) {
|
|
const audioIn = [];
|
|
const videoIn = [];
|
|
|
|
if (devices.some((device) => !device.label)) return false;
|
|
|
|
devices.forEach((device) => {
|
|
switch (device.kind) {
|
|
case 'audioinput': audioIn.push(device); break;
|
|
case 'videoinput': videoIn.push(device); break;
|
|
}
|
|
});
|
|
|
|
// console.log("Loaded WebRTC Devices", mediaDevices);
|
|
return {
|
|
audioinput: audioIn,
|
|
videoinput: videoIn,
|
|
};
|
|
}, (error) => { console.log('Unable to refresh WebRTC Devices: ', error); });
|
|
},
|
|
|
|
loadDevices: function() {
|
|
// this.getDevices().then((devices) => {
|
|
const localSettings = UserSettingsStore.getLocalSettings();
|
|
// // if deviceId is not found, automatic fallback is in spec
|
|
// // recall previously stored inputs if any
|
|
Matrix.setMatrixCallAudioInput(localSettings['webrtc_audioinput']);
|
|
Matrix.setMatrixCallVideoInput(localSettings['webrtc_videoinput']);
|
|
// });
|
|
},
|
|
|
|
setAudioInput: function(deviceId) {
|
|
UserSettingsStore.setLocalSetting('webrtc_audioinput', deviceId);
|
|
Matrix.setMatrixCallAudioInput(deviceId);
|
|
},
|
|
|
|
setVideoInput: function(deviceId) {
|
|
UserSettingsStore.setLocalSetting('webrtc_videoinput', deviceId);
|
|
Matrix.setMatrixCallVideoInput(deviceId);
|
|
},
|
|
};
|