ref(audio-popup) Replace InlineDialog with Popover (#12466)

This commit is contained in:
Robert Pintilii 2022-10-27 11:03:28 +03:00 committed by GitHub
parent 9f5a56bbc7
commit b5065306e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 10 deletions

View File

@ -1,6 +1,5 @@
// @flow
import InlineDialog from '@atlaskit/inline-dialog';
import React from 'react';
import { areAudioLevelsEnabled } from '../../../../base/config/functions';
@ -10,6 +9,7 @@ import {
setAudioInputDeviceAndUpdateSettings,
setAudioOutputDevice as setAudioOutputDeviceAction
} from '../../../../base/devices';
import Popover from '../../../../base/popover/components/Popover.web';
import { connect } from '../../../../base/redux';
import { SMALL_MOBILE_WIDTH } from '../../../../base/responsive-ui/constants';
import {
@ -24,17 +24,17 @@ import AudioSettingsContent, { type Props as AudioSettingsContentProps } from '.
type Props = AudioSettingsContentProps & {
/**
/**
* Component's children (the audio button).
*/
children: React$Node,
/**
/**
* Flag controlling the visibility of the popup.
*/
isOpen: boolean,
/**
/**
* Callback executed when the popup closes.
*/
onClose: Function,
@ -65,7 +65,7 @@ function AudioSettingsPopup({
}: Props) {
return (
<div className = 'audio-preview'>
<InlineDialog
<Popover
content = { <AudioSettingsContent
currentMicDeviceId = { currentMicDeviceId }
currentOutputDeviceId = { currentOutputDeviceId }
@ -74,11 +74,12 @@ function AudioSettingsPopup({
outputDevices = { outputDevices }
setAudioInputDevice = { setAudioInputDevice }
setAudioOutputDevice = { setAudioOutputDevice } /> }
isOpen = { isOpen }
onClose = { onClose }
placement = { popupPlacement }>
onPopoverClose = { onClose }
position = { popupPlacement }
trigger = 'click'
visible = { isOpen }>
{children}
</InlineDialog>
</Popover>
</div>
);
}
@ -93,7 +94,7 @@ function mapStateToProps(state) {
const { clientWidth } = state['features/base/responsive-ui'];
return {
popupPlacement: clientWidth <= SMALL_MOBILE_WIDTH ? 'auto' : 'top-start',
popupPlacement: clientWidth <= SMALL_MOBILE_WIDTH ? 'auto' : 'top-end',
currentMicDeviceId: getCurrentMicDeviceId(state),
currentOutputDeviceId: getCurrentOutputDeviceId(state),
isOpen: getAudioSettingsVisibility(state),