pull/1969/head
Audric Ackermann 4 years ago
parent 87e7cc5ebf
commit 30a234158f
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -384,12 +384,16 @@ export const InConversationCallContainer = () => {
</InConvoCallWindowControls> </InConvoCallWindowControls>
<VideoInputMenu <VideoInputMenu
triggerId={videoTriggerId} triggerId={videoTriggerId}
onUnmute={() => setVideoMuted(false)} onUnmute={() => {
setVideoMuted(false);
}}
camerasList={currentConnectedCameras} camerasList={currentConnectedCameras}
/> />
<AudioInputMenu <AudioInputMenu
triggerId={audioTriggerId} triggerId={audioTriggerId}
onUnmute={() => setAudioMuted(false)} onUnmute={() => {
setAudioMuted(false);
}}
audioInputsList={currentConnectedAudioInputs} audioInputsList={currentConnectedAudioInputs}
/> />
</RelativeCallWindow> </RelativeCallWindow>

@ -12,7 +12,7 @@ type SProps = {
}; };
const StyledRoundedButton = styled.div<{ isMuted: boolean }>` const StyledRoundedButton = styled.div<{ isMuted: boolean }>`
background-color: ${props => (props.isMuted ? 'black' : 'white')}; background-color: ${props => (props.isMuted ? 'hsl(0,0%,40%)' : 'white')};
color: ${props => (props.isMuted ? 'white' : 'black')}; color: ${props => (props.isMuted ? 'white' : 'black')};
border-radius: 50%; border-radius: 50%;
cursor: pointer; cursor: pointer;

@ -83,11 +83,13 @@ async function getConnectedDevices(type: 'videoinput' | 'audioinput') {
} }
// Listen for changes to media devices and update the list accordingly // Listen for changes to media devices and update the list accordingly
navigator.mediaDevices.addEventListener('devicechange', async () => { // tslint:disable-next-line: no-typeof-undefined
await updateInputLists(); if (typeof navigator !== 'undefined') {
callVideoListener(); navigator.mediaDevices.addEventListener('devicechange', async () => {
}); await updateInputLists();
callVideoListener();
});
}
async function updateInputLists() { async function updateInputLists() {
// Get the set of cameras connected // Get the set of cameras connected
const videoCameras = await getConnectedDevices('videoinput'); const videoCameras = await getConnectedDevices('videoinput');

Loading…
Cancel
Save