120 lines
2.7 KiB
JavaScript
120 lines
2.7 KiB
JavaScript
// @flow
|
|
import React, { Component } from 'react';
|
|
import closeIcon from 'assets/images/icon-x.svg';
|
|
|
|
import './Modal.scss';
|
|
|
|
type Props = {
|
|
isOpen?: boolean,
|
|
title: string,
|
|
buttons: {
|
|
text: string,
|
|
type?:
|
|
| 'default'
|
|
| 'primary'
|
|
| 'success'
|
|
| 'info'
|
|
| 'warning'
|
|
| 'danger'
|
|
| 'link',
|
|
disabled?: boolean,
|
|
onClick?: () => void
|
|
}[],
|
|
handleClose: () => void,
|
|
disableButtons?: boolean,
|
|
children: any
|
|
};
|
|
|
|
export default class Modal extends Component {
|
|
props: Props;
|
|
|
|
componentDidMount() {
|
|
this.updateBodyClass();
|
|
document.addEventListener('keydown', this._escapeListner);
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.updateBodyClass();
|
|
}
|
|
|
|
updateBodyClass() {
|
|
// $FlowFixMe
|
|
document.body.classList.toggle('no-scroll', !!this.props.isOpen);
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
document.removeEventListener('keydown', this._escapeListner);
|
|
// $FlowFixMe
|
|
document.body.classList.remove('no-scroll');
|
|
}
|
|
|
|
_escapeListner = (ev: KeyboardEvent) => {
|
|
// Don't trigger if they hit escape while on an input
|
|
if (ev.target) {
|
|
if (
|
|
ev.target.tagName === 'INPUT' ||
|
|
ev.target.tagName === 'SELECT' ||
|
|
ev.target.tagName === 'TEXTAREA' ||
|
|
ev.target.isContentEditable
|
|
) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (ev.key === 'Escape' || ev.keyCode === 27) {
|
|
this.props.handleClose();
|
|
}
|
|
};
|
|
|
|
_renderButtons = () => {
|
|
const { disableButtons, buttons } = this.props;
|
|
|
|
return buttons.map((btn, idx) => {
|
|
let btnClass = 'Modal-footer-btn btn';
|
|
|
|
if (btn.type) {
|
|
btnClass += ` btn-${btn.type}`;
|
|
}
|
|
|
|
return (
|
|
<button
|
|
className={btnClass}
|
|
onClick={btn.onClick}
|
|
key={idx}
|
|
disabled={disableButtons || btn.disabled}
|
|
>
|
|
{btn.text}
|
|
</button>
|
|
);
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const { isOpen, title, children, buttons, handleClose } = this.props;
|
|
const hasButtons = buttons && buttons.length;
|
|
|
|
return (
|
|
<div>
|
|
<div className={`Modalshade ${isOpen ? 'is-open' : ''}`} />
|
|
<div className={`Modal ${isOpen ? 'is-open' : ''}`}>
|
|
<div className="Modal-header">
|
|
<h2 className="Modal-header-title">
|
|
{title}
|
|
</h2>
|
|
<button className="Modal-header-close" onClick={handleClose}>
|
|
<img className="Modal-header-close-icon" src={closeIcon} />
|
|
</button>
|
|
</div>
|
|
<div className="Modal-content">
|
|
{isOpen && children}
|
|
</div>
|
|
{hasButtons &&
|
|
<div className="Modal-footer">
|
|
{this._renderButtons()}
|
|
</div>}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|