2021-06-23 05:37:08 -04:00
|
|
|
import { useCallback } from 'react'
|
2021-01-05 05:57:45 -05:00
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import { Modal } from 'react-bootstrap'
|
|
|
|
|
|
|
|
// a bootstrap Modal with its `aria-hidden` attribute removed. Visisble modals
|
|
|
|
// should not have their `aria-hidden` attribute set but that's a bug in our
|
|
|
|
// version of react-bootstrap.
|
|
|
|
function AccessibleModal({ show, ...otherProps }) {
|
|
|
|
// use a callback ref to track the modal. This will re-run the function
|
|
|
|
// when the element node or any of the dependencies are updated
|
|
|
|
const setModalRef = useCallback(
|
|
|
|
element => {
|
|
|
|
if (!element) return
|
|
|
|
|
|
|
|
const modalNode = element._modal && element._modal.modalNode
|
|
|
|
if (!modalNode) return
|
|
|
|
|
|
|
|
if (show) {
|
|
|
|
modalNode.removeAttribute('aria-hidden')
|
|
|
|
} else {
|
|
|
|
modalNode.setAttribute('aria-hidden', 'true')
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// `show` is necessary as a dependency, but eslint thinks it is not
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
[show]
|
|
|
|
)
|
|
|
|
|
|
|
|
return <Modal show={show} {...otherProps} ref={setModalRef} />
|
|
|
|
}
|
|
|
|
|
|
|
|
AccessibleModal.propTypes = {
|
2021-04-27 03:52:58 -04:00
|
|
|
show: PropTypes.bool,
|
2021-01-05 05:57:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default AccessibleModal
|