Improve premeeting screens ux (#9726)

* feat(prejoin) move invite to toolbar section

* feat(premeeting) redesign prejoin and lobby screens

* code review changes

* fix prejoin flicker and avatar id

* fix password error message and native lobby dialog close position
This commit is contained in:
Avram Tudor
2021-08-20 11:53:11 +03:00
committed by hmuresan
parent 068cf132bd
commit 45e51c1e8c
56 changed files with 866 additions and 808 deletions

View File

@@ -6,6 +6,7 @@ import { IconVirtualBackground } from '../../base/icons';
import { connect } from '../../base/redux';
import { AbstractButton } from '../../base/toolbox/components';
import type { AbstractButtonProps } from '../../base/toolbox/components';
import { checkBlurSupport } from '../functions';
import { VirtualBackgroundDialog } from './index';
@@ -72,7 +73,8 @@ class VideoBackgroundButton extends AbstractButton<Props, *> {
function _mapStateToProps(state): Object {
return {
_isBackgroundEnabled: Boolean(state['features/virtual-background'].backgroundEffectEnabled)
_isBackgroundEnabled: Boolean(state['features/virtual-background'].backgroundEffectEnabled),
visible: checkBlurSupport()
};
}