mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1be43911b4
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
import React, { useCallback } from 'react'
|
|
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 = {
|
|
show: PropTypes.bool,
|
|
}
|
|
|
|
export default AccessibleModal
|