2018-03-24 07:52:26 -04:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2019-11-04 07:03:44 -05:00
|
|
|
import 'wicg-inert';
|
2021-07-13 09:45:17 -04:00
|
|
|
import { createBrowserHistory } from 'history';
|
2020-12-06 20:32:27 -05:00
|
|
|
import { multiply } from 'color-blend';
|
2018-03-24 07:52:26 -04:00
|
|
|
|
|
|
|
export default class ModalRoot extends React.PureComponent {
|
|
|
|
|
2021-07-17 11:06:52 -04:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
2018-03-24 07:52:26 -04:00
|
|
|
static propTypes = {
|
|
|
|
children: PropTypes.node,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
2020-11-26 21:24:11 -05:00
|
|
|
backgroundColor: PropTypes.shape({
|
|
|
|
r: PropTypes.number,
|
|
|
|
g: PropTypes.number,
|
|
|
|
b: PropTypes.number,
|
|
|
|
}),
|
2022-02-24 18:51:01 -05:00
|
|
|
ignoreFocus: PropTypes.bool,
|
2018-03-24 07:52:26 -04:00
|
|
|
};
|
|
|
|
|
2020-11-21 17:54:36 -05:00
|
|
|
activeElement = this.props.children ? document.activeElement : null;
|
2018-03-24 07:52:26 -04:00
|
|
|
|
|
|
|
handleKeyUp = (e) => {
|
|
|
|
if ((e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27)
|
|
|
|
&& !!this.props.children) {
|
|
|
|
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-03-24 07:52:26 -04:00
|
|
|
componentDidMount () {
|
|
|
|
window.addEventListener('keyup', this.handleKeyUp, false);
|
2019-08-06 05:59:28 -04:00
|
|
|
window.addEventListener('keydown', this.handleKeyDown, false);
|
2021-07-13 09:45:17 -04:00
|
|
|
this.history = this.context.router ? this.context.router.history : createBrowserHistory();
|
2018-03-24 07:52:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (!!nextProps.children && !this.props.children) {
|
|
|
|
this.activeElement = document.activeElement;
|
|
|
|
|
|
|
|
this.getSiblings().forEach(sibling => sibling.setAttribute('inert', true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps) {
|
|
|
|
if (!this.props.children && !!prevProps.children) {
|
|
|
|
this.getSiblings().forEach(sibling => sibling.removeAttribute('inert'));
|
2019-11-30 12:19:47 -05:00
|
|
|
|
|
|
|
// Because of the wicg-inert polyfill, the activeElement may not be
|
|
|
|
// immediately selectable, we have to wait for observers to run, as
|
|
|
|
// described in https://github.com/WICG/inert#performance-and-gotchas
|
|
|
|
Promise.resolve().then(() => {
|
2022-02-24 18:51:01 -05:00
|
|
|
if (!this.props.ignoreFocus) {
|
|
|
|
this.activeElement.focus({ preventScroll: true });
|
|
|
|
}
|
2019-11-30 12:19:47 -05:00
|
|
|
this.activeElement = null;
|
2020-11-26 21:24:11 -05:00
|
|
|
}).catch(console.error);
|
2021-07-13 09:45:17 -04:00
|
|
|
|
|
|
|
this._handleModalClose();
|
|
|
|
}
|
|
|
|
if (this.props.children && !prevProps.children) {
|
|
|
|
this._handleModalOpen();
|
|
|
|
}
|
|
|
|
if (this.props.children) {
|
|
|
|
this._ensureHistoryBuffer();
|
2018-03-24 07:52:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('keyup', this.handleKeyUp);
|
2019-08-06 05:59:28 -04:00
|
|
|
window.removeEventListener('keydown', this.handleKeyDown);
|
2018-03-24 07:52:26 -04:00
|
|
|
}
|
|
|
|
|
2021-07-13 09:45:17 -04:00
|
|
|
_handleModalOpen () {
|
|
|
|
this._modalHistoryKey = Date.now();
|
|
|
|
this.unlistenHistory = this.history.listen((_, action) => {
|
|
|
|
if (action === 'POP') {
|
|
|
|
this.props.onClose();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_handleModalClose () {
|
|
|
|
if (this.unlistenHistory) {
|
|
|
|
this.unlistenHistory();
|
|
|
|
}
|
|
|
|
const { state } = this.history.location;
|
|
|
|
if (state && state.mastodonModalKey === this._modalHistoryKey) {
|
|
|
|
this.history.goBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_ensureHistoryBuffer () {
|
|
|
|
const { pathname, state } = this.history.location;
|
|
|
|
if (!state || state.mastodonModalKey !== this._modalHistoryKey) {
|
|
|
|
this.history.push(pathname, { ...state, mastodonModalKey: this._modalHistoryKey });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-24 07:52:26 -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 visible = !!children;
|
|
|
|
|
|
|
|
if (!visible) {
|
|
|
|
return (
|
|
|
|
<div className='modal-root' ref={this.setRef} style={{ opacity: 0 }} />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-26 21:24:11 -05:00
|
|
|
let backgroundColor = null;
|
|
|
|
|
|
|
|
if (this.props.backgroundColor) {
|
2020-12-06 20:32:27 -05:00
|
|
|
backgroundColor = multiply({ ...this.props.backgroundColor, a: 1 }, { r: 0, g: 0, b: 0, a: 0.7 });
|
2020-11-26 21:24:11 -05:00
|
|
|
}
|
|
|
|
|
2018-03-24 07:52:26 -04:00
|
|
|
return (
|
2020-11-21 17:54:36 -05:00
|
|
|
<div className='modal-root' ref={this.setRef}>
|
2018-03-24 07:52:26 -04:00
|
|
|
<div style={{ pointerEvents: visible ? 'auto' : 'none' }}>
|
2020-11-26 21:24:11 -05:00
|
|
|
<div role='presentation' className='modal-root__overlay' onClick={onClose} style={{ backgroundColor: backgroundColor ? `rgba(${backgroundColor.r}, ${backgroundColor.g}, ${backgroundColor.b}, 0.7)` : null }} />
|
2018-03-24 07:52:26 -04:00
|
|
|
<div role='dialog' className='modal-root__container'>{children}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|