2018-04-20 09:58:36 -04:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2018-07-27 05:09:33 -04:00
|
|
|
import createHistory from 'history/createBrowserHistory';
|
2018-04-20 09:58:36 -04:00
|
|
|
|
|
|
|
export default class ModalRoot extends React.PureComponent {
|
2018-07-27 05:09:33 -04:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
2018-04-20 09:58:36 -04:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
children: PropTypes.node,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
2018-05-11 16:42:32 -04:00
|
|
|
noEsc: PropTypes.bool,
|
2018-04-20 09:58:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
|
|
|
revealed: !!this.props.children,
|
|
|
|
};
|
|
|
|
|
|
|
|
activeElement = this.state.revealed ? document.activeElement : null;
|
|
|
|
|
|
|
|
handleKeyUp = (e) => {
|
|
|
|
if ((e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27)
|
2018-05-11 16:42:32 -04:00
|
|
|
&& !!this.props.children && !this.props.noEsc) {
|
2018-04-20 09:58:36 -04:00
|
|
|
this.props.onClose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-06 05:59:28 -04:00
|
|
|
handleKeyDown = (e) => {
|
|
|
|
if (e.key === 'Tab') {
|
|
|
|
const focusable = Array.from(this.node.querySelectorAll('button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])')).filter((x) => window.getComputedStyle(x).display !== 'none');
|
|
|
|
const index = focusable.indexOf(e.target);
|
|
|
|
|
|
|
|
let element;
|
|
|
|
|
|
|
|
if (e.shiftKey) {
|
|
|
|
element = focusable[index - 1] || focusable[focusable.length - 1];
|
|
|
|
} else {
|
|
|
|
element = focusable[index + 1] || focusable[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (element) {
|
|
|
|
element.focus();
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-20 09:58:36 -04:00
|
|
|
componentDidMount () {
|
|
|
|
window.addEventListener('keyup', this.handleKeyUp, false);
|
2019-08-06 05:59:28 -04:00
|
|
|
window.addEventListener('keydown', this.handleKeyDown, false);
|
2018-07-27 05:09:33 -04:00
|
|
|
this.history = this.context.router ? this.context.router.history : createHistory();
|
2018-04-20 09:58:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (!!nextProps.children && !this.props.children) {
|
|
|
|
this.activeElement = document.activeElement;
|
|
|
|
|
|
|
|
this.getSiblings().forEach(sibling => sibling.setAttribute('inert', true));
|
|
|
|
} else if (!nextProps.children) {
|
|
|
|
this.setState({ revealed: false });
|
|
|
|
}
|
2018-12-21 12:40:50 -05:00
|
|
|
if (!nextProps.children && !!this.props.children) {
|
2019-04-16 12:45:04 -04:00
|
|
|
this.activeElement.focus({ preventScroll: true });
|
2018-12-21 12:40:50 -05:00
|
|
|
this.activeElement = null;
|
|
|
|
}
|
2018-04-20 09:58:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps) {
|
|
|
|
if (!this.props.children && !!prevProps.children) {
|
|
|
|
this.getSiblings().forEach(sibling => sibling.removeAttribute('inert'));
|
2018-07-27 05:09:33 -04:00
|
|
|
this.handleModalClose();
|
2018-04-20 09:58:36 -04:00
|
|
|
}
|
|
|
|
if (this.props.children) {
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
this.setState({ revealed: true });
|
|
|
|
});
|
2018-07-27 05:09:33 -04:00
|
|
|
if (!prevProps.children) this.handleModalOpen();
|
2018-04-20 09:58:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('keyup', this.handleKeyUp);
|
2019-08-06 05:59:28 -04:00
|
|
|
window.removeEventListener('keydown', this.handleKeyDown);
|
2018-04-20 09:58:36 -04:00
|
|
|
}
|
|
|
|
|
2018-07-27 05:09:33 -04:00
|
|
|
handleModalClose () {
|
|
|
|
this.unlistenHistory();
|
|
|
|
|
|
|
|
const state = this.history.location.state;
|
|
|
|
if (state && state.mastodonModalOpen) {
|
|
|
|
this.history.goBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModalOpen () {
|
|
|
|
const history = this.history;
|
|
|
|
const state = {...history.location.state, mastodonModalOpen: true};
|
|
|
|
history.push(history.location.pathname, state);
|
|
|
|
this.unlistenHistory = history.listen(() => {
|
|
|
|
this.props.onClose();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-20 09:58:36 -04:00
|
|
|
getSiblings = () => {
|
|
|
|
return Array(...this.node.parentElement.childNodes).filter(node => node !== this.node);
|
|
|
|
}
|
|
|
|
|
|
|
|
setRef = ref => {
|
|
|
|
this.node = ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
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: 0 }} />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='modal-root' ref={this.setRef} style={{ opacity: revealed ? 1 : 0 }}>
|
|
|
|
<div style={{ pointerEvents: visible ? 'auto' : 'none' }}>
|
|
|
|
<div role='presentation' className='modal-root__overlay' onClick={onClose} />
|
|
|
|
<div role='dialog' className='modal-root__container'>{children}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|