2017-08-23 00:19:50 +05:30
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React, { Component } from 'react';
|
2019-06-30 19:02:50 +05:30
|
|
|
import { TransitionGroup, CSSTransition } from 'react-transition-group';
|
2017-05-26 00:41:57 +05:30
|
|
|
import { browserHistory } from 'services/history';
|
2019-06-30 19:02:50 +05:30
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { destroy } from 'components/ui/popup/actions';
|
2016-06-04 01:08:59 +05:30
|
|
|
|
2016-05-01 23:20:55 +05:30
|
|
|
import styles from './popup.scss';
|
|
|
|
|
|
|
|
export class PopupStack extends Component {
|
2019-11-27 14:33:32 +05:30
|
|
|
static propTypes = {
|
|
|
|
popups: PropTypes.arrayOf(
|
|
|
|
PropTypes.shape({
|
|
|
|
type: PropTypes.func,
|
|
|
|
props: PropTypes.oneOfType([PropTypes.object, PropTypes.func]),
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
destroy: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
componentWillMount() {
|
|
|
|
document.addEventListener('keyup', this.onKeyPress);
|
|
|
|
this.unlistenTransition = browserHistory.listen(this.onRouteLeave);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
document.removeEventListener('keyup', this.onKeyPress);
|
|
|
|
this.unlistenTransition();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { popups } = this.props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<TransitionGroup>
|
|
|
|
{popups.map((popup, index) => {
|
|
|
|
const { Popup } = popup;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<CSSTransition
|
|
|
|
key={index}
|
|
|
|
classNames={{
|
|
|
|
enter: styles.trEnter,
|
|
|
|
enterActive: styles.trEnterActive,
|
|
|
|
exit: styles.trExit,
|
|
|
|
exitActive: styles.trExitActive,
|
|
|
|
}}
|
|
|
|
timeout={500}
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
className={styles.overlay}
|
|
|
|
onClick={this.onOverlayClick(popup)}
|
|
|
|
>
|
|
|
|
<Popup onClose={this.onClose(popup)} />
|
|
|
|
</div>
|
|
|
|
</CSSTransition>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</TransitionGroup>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
onClose(popup) {
|
|
|
|
return this.props.destroy.bind(null, popup);
|
|
|
|
}
|
|
|
|
|
|
|
|
onOverlayClick(popup) {
|
|
|
|
return event => {
|
|
|
|
if (event.target !== event.currentTarget || popup.disableOverlayClose) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
this.props.destroy(popup);
|
2016-05-01 23:20:55 +05:30
|
|
|
};
|
2019-11-27 14:33:32 +05:30
|
|
|
}
|
2016-05-01 23:20:55 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
popStack() {
|
|
|
|
const popup = this.props.popups.slice(-1)[0];
|
2016-07-26 10:50:37 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
if (popup && !popup.disableOverlayClose) {
|
|
|
|
this.props.destroy(popup);
|
2016-07-26 10:50:37 +05:30
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
}
|
2016-07-26 10:50:37 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
onKeyPress = event => {
|
|
|
|
if (event.which === 27) {
|
|
|
|
// ESC key
|
|
|
|
this.popStack();
|
2016-05-01 23:20:55 +05:30
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
};
|
2016-05-01 23:20:55 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
onRouteLeave = nextLocation => {
|
|
|
|
if (nextLocation) {
|
|
|
|
this.popStack();
|
2016-05-01 23:20:55 +05:30
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
};
|
2016-05-01 23:20:55 +05:30
|
|
|
}
|
|
|
|
|
2019-06-30 19:02:50 +05:30
|
|
|
export default connect(
|
2019-11-27 14:33:32 +05:30
|
|
|
state => ({
|
|
|
|
...state.popup,
|
|
|
|
}),
|
|
|
|
{
|
|
|
|
destroy,
|
|
|
|
},
|
2019-06-30 19:02:50 +05:30
|
|
|
)(PopupStack);
|