feat(context-menu) Show participants context menu overlaid in a portal

This commit is contained in:
hmuresan
2021-10-06 12:53:27 +03:00
committed by Horatiu Muresan
parent 9ef71e3b15
commit 9f7a4f86d8
9 changed files with 374 additions and 121 deletions

View File

@@ -13,7 +13,6 @@ import { Popover } from '../../../base/popover';
import { connect } from '../../../base/redux';
import { setParticipantContextMenuOpen } from '../../../base/responsive-ui/actions';
import { requestRemoteControl, stopController } from '../../../remote-control';
import { hideToolboxOnTileView } from '../../../toolbox/actions';
import { getCurrentLayout, LAYOUTS } from '../../../video-layout';
import { renderConnectionStatus } from '../../actions.web';
@@ -234,7 +233,6 @@ class RemoteVideoMenuTriggerButton extends Component<Props> {
*/
_onPopoverOpen() {
this.props.dispatch(setParticipantContextMenuOpen(true));
this.props.dispatch(hideToolboxOnTileView());
}
_onPopoverClose: () => void;