Iterate PR

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-06-23 10:27:51 +02:00
parent 58151d71c5
commit 6c9e0e54e9
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 9 additions and 9 deletions

View File

@ -42,12 +42,12 @@ export default class MediaDeviceHandler extends EventEmitter {
return MediaDeviceHandler.internalInstance; return MediaDeviceHandler.internalInstance;
} }
static async hasAnyLabeledDevices(): Promise<boolean> { public static async hasAnyLabeledDevices(): Promise<boolean> {
const devices = await navigator.mediaDevices.enumerateDevices(); const devices = await navigator.mediaDevices.enumerateDevices();
return devices.some(d => Boolean(d.label)); return devices.some(d => Boolean(d.label));
} }
static async getDevices(): Promise<IMediaDevices> { public static async getDevices(): Promise<IMediaDevices> {
// Only needed for Electron atm, though should work in modern browsers // Only needed for Electron atm, though should work in modern browsers
// once permission has been granted to the webapp // once permission has been granted to the webapp
@ -76,7 +76,7 @@ export default class MediaDeviceHandler extends EventEmitter {
} }
} }
static loadDevices() { public static loadDevices(): void {
const audioDeviceId = SettingsStore.getValue("webrtc_audioinput"); const audioDeviceId = SettingsStore.getValue("webrtc_audioinput");
const videoDeviceId = SettingsStore.getValue("webrtc_videoinput"); const videoDeviceId = SettingsStore.getValue("webrtc_videoinput");
@ -84,32 +84,32 @@ export default class MediaDeviceHandler extends EventEmitter {
setMatrixCallVideoInput(videoDeviceId); setMatrixCallVideoInput(videoDeviceId);
} }
public setAudioOutput(deviceId: string) { public setAudioOutput(deviceId: string): void {
SettingsStore.setValue("webrtc_audiooutput", null, SettingLevel.DEVICE, deviceId); SettingsStore.setValue("webrtc_audiooutput", null, SettingLevel.DEVICE, deviceId);
this.emit(MediaDeviceHandlerEvent.AudioOutputChanged, deviceId); this.emit(MediaDeviceHandlerEvent.AudioOutputChanged, deviceId);
} }
public setAudioInput(deviceId: string) { public setAudioInput(deviceId: string): void {
SettingsStore.setValue("webrtc_audioinput", null, SettingLevel.DEVICE, deviceId); SettingsStore.setValue("webrtc_audioinput", null, SettingLevel.DEVICE, deviceId);
setMatrixCallAudioInput(deviceId); setMatrixCallAudioInput(deviceId);
this.emit(MediaDeviceHandlerEvent.AudioInputChanged, deviceId); this.emit(MediaDeviceHandlerEvent.AudioInputChanged, deviceId);
} }
public setVideoInput(deviceId: string) { public setVideoInput(deviceId: string): void {
SettingsStore.setValue("webrtc_videoinput", null, SettingLevel.DEVICE, deviceId); SettingsStore.setValue("webrtc_videoinput", null, SettingLevel.DEVICE, deviceId);
setMatrixCallVideoInput(deviceId); setMatrixCallVideoInput(deviceId);
this.emit(MediaDeviceHandlerEvent.VideoInputChanged, deviceId); this.emit(MediaDeviceHandlerEvent.VideoInputChanged, deviceId);
} }
static getAudioOutput(): string { public static getAudioOutput(): string {
return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_audiooutput"); return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_audiooutput");
} }
static getAudioInput(): string { public static getAudioInput(): string {
return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_audioinput"); return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_audioinput");
} }
static getVideoInput(): string { public static getVideoInput(): string {
return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_videoinput"); return SettingsStore.getValueAt(SettingLevel.DEVICE, "webrtc_videoinput");
} }
} }