onClose: PropTypes.func.isRequired,
};
- state = {
- revealed: !!this.props.children,
- };
-
- activeElement = this.state.revealed ? document.activeElement : null;
+ activeElement = this.props.children ? document.activeElement : null;
handleKeyUp = (e) => {
if ((e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27)
this.activeElement = document.activeElement;
this.getSiblings().forEach(sibling => sibling.setAttribute('inert', true));
- } else if (!nextProps.children) {
- this.setState({ revealed: false });
}
}
console.error(error);
});
}
- if (this.props.children) {
- requestAnimationFrame(() => {
- this.setState({ revealed: true });
- });
- }
}
componentWillUnmount () {
render () {
const { children, onClose } = this.props;
- const { revealed } = this.state;
const visible = !!children;
if (!visible) {
}
return (
- <div className='modal-root' ref={this.setRef} style={{ opacity: revealed ? 1 : 0 }}>
+ <div className='modal-root' ref={this.setRef}>
<div style={{ pointerEvents: visible ? 'auto' : 'none' }}>
<div role='presentation' className='modal-root__overlay' onClick={onClose} />
<div role='dialog' className='modal-root__container'>{children}</div>