gab-social/app/javascript/gabsocial/components/modal/modal_base.js

147 lines
4.0 KiB
JavaScript
Raw Normal View History

2020-02-24 21:56:07 +00:00
import { Fragment } from 'react'
import { injectIntl, FormattedMessage, defineMessages } from 'react-intl'
import classNames from 'classnames/bind'
import { openModal } from '../../actions/modal'
import { cancelReplyCompose } from '../../actions/compose'
const messages = defineMessages({
confirm: { id: 'confirmations.delete.confirm', defaultMessage: 'Delete' },
2020-02-24 21:56:07 +00:00
})
const mapStateToProps = state => ({
2019-08-23 00:05:20 +01:00
composeId: state.getIn(['compose', 'id']),
composeText: state.getIn(['compose', 'text']),
2020-02-24 21:56:07 +00:00
})
const mapDispatchToProps = (dispatch) => ({
onOpenModal(type, opts) {
2020-02-24 21:56:07 +00:00
dispatch(openModal(type, opts))
},
onCancelReplyCompose() {
2020-02-24 21:56:07 +00:00
dispatch(cancelReplyCompose())
},
2020-02-24 21:56:07 +00:00
})
const cx = classNames.bind(_s)
2020-02-25 16:04:44 +00:00
export default
@connect(mapStateToProps, mapDispatchToProps)
@injectIntl
class ModalBase extends PureComponent {
static propTypes = {
children: PropTypes.node,
onClose: PropTypes.func.isRequired,
onOpenModal: PropTypes.func.isRequired,
onCancelReplyCompose: PropTypes.func.isRequired,
intl: PropTypes.object.isRequired,
2019-08-23 00:05:20 +01:00
composeId: PropTypes.string,
composeText: PropTypes.string,
type: PropTypes.string,
2020-02-24 21:56:07 +00:00
}
state = {
revealed: !!this.props.children,
2020-02-24 21:56:07 +00:00
}
2020-02-24 21:56:07 +00:00
activeElement = this.state.revealed ? document.activeElement : null
handleKeyUp = (e) => {
if ((e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27)
&& !!this.props.children) {
2020-02-24 21:56:07 +00:00
this.handleOnClose()
}
}
handleOnClose = () => {
2020-02-24 21:56:07 +00:00
const { onOpenModal, composeText, composeId, onClose, intl, type, onCancelReplyCompose } = this.props
2019-08-23 00:05:20 +01:00
if (!composeId && composeText && type == 'COMPOSE') {
onOpenModal('CONFIRM', {
message: <FormattedMessage id='confirmations.delete.message' defaultMessage='Are you sure you want to delete this status?' />,
confirm: intl.formatMessage(messages.confirm),
onConfirm: () => onCancelReplyCompose(),
onCancel: () => onOpenModal('COMPOSE'),
2020-02-24 21:56:07 +00:00
})
} else {
2020-02-24 21:56:07 +00:00
onClose()
}
2020-02-24 21:56:07 +00:00
}
componentDidMount () {
2020-02-24 21:56:07 +00:00
window.addEventListener('keyup', this.handleKeyUp, false)
}
componentWillReceiveProps (nextProps) {
if (!!nextProps.children && !this.props.children) {
2020-02-24 21:56:07 +00:00
this.activeElement = document.activeElement
2020-02-24 21:56:07 +00:00
this.getSiblings().forEach(sibling => sibling.setAttribute('inert', true))
} else if (!nextProps.children) {
2020-02-24 21:56:07 +00:00
this.setState({ revealed: false })
}
if (!nextProps.children && !!this.props.children) {
2020-02-24 21:56:07 +00:00
this.activeElement.focus()
this.activeElement = null
}
}
componentDidUpdate (prevProps) {
if (!this.props.children && !!prevProps.children) {
2020-02-24 21:56:07 +00:00
this.getSiblings().forEach(sibling => sibling.removeAttribute('inert'))
}
if (this.props.children) {
requestAnimationFrame(() => {
2020-02-24 21:56:07 +00:00
this.setState({ revealed: true })
})
}
}
componentWillUnmount () {
2020-02-24 21:56:07 +00:00
window.removeEventListener('keyup', this.handleKeyUp)
}
getSiblings = () => {
2020-02-24 21:56:07 +00:00
return Array(...this.node.parentElement.childNodes).filter(node => node !== this.node)
}
setRef = ref => {
2020-02-24 21:56:07 +00:00
this.node = ref
}
render () {
2020-02-24 21:56:07 +00:00
const { children } = this.props
const visible = !!children
2020-02-24 21:56:07 +00:00
const containerClasses = cx({
default: 1,
z4: 1,
displayNone: !visible,
})
return (
2020-02-24 21:56:07 +00:00
<div ref={this.setRef} className={containerClasses}>
{
!!visible &&
<Fragment>
<div
role='presentation'
className={[_s.default, _s.backgroundColorPrimaryOpaque, _s.positionFixed, _s.z3, _s.top0, _s.right0, _s.bottom0, _s.left0].join(' ')}
onClick={this.handleOnClose}
/>
<div
role='dialog'
className={[_s.default, _s.positionFixed, _s.alignItemsCenter, _s.justifyContentCenter, _s.z4, _s.width100PC, _s.height100PC, _s.pointerEventsNone, _s.top0, _s.rightAuto, _s.bottomAuto, _s.left0].join(' ')}
>
{children}
</div>
</Fragment>
}
</div>
2020-02-24 21:56:07 +00:00
)
}
}