2017-08-23 00:19:50 +05:30
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React, { Component } from 'react';
|
2016-05-01 23:20:55 +05:30
|
|
|
|
2017-06-08 00:30:00 +05:30
|
|
|
import { CSSTransitionGroup } from 'react-transition-group';
|
2017-05-26 00:41:57 +05:30
|
|
|
import { browserHistory } from 'services/history';
|
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 {
|
|
|
|
static displayName = 'PopupStack';
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
popups: PropTypes.arrayOf(PropTypes.shape({
|
2016-05-11 10:56:44 +05:30
|
|
|
type: PropTypes.func,
|
2016-05-01 23:20:55 +05:30
|
|
|
props: PropTypes.oneOfType([PropTypes.object, PropTypes.func])
|
|
|
|
})),
|
|
|
|
destroy: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
2016-07-26 10:50:37 +05:30
|
|
|
componentWillMount() {
|
|
|
|
document.addEventListener('keyup', this.onKeyPress);
|
2017-05-26 00:41:57 +05:30
|
|
|
this.unlistenTransition = browserHistory.listen(this.onRouteLeave);
|
2016-07-26 10:50:37 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
document.removeEventListener('keyup', this.onKeyPress);
|
2016-07-27 00:58:58 +05:30
|
|
|
this.unlistenTransition();
|
2016-07-26 10:50:37 +05:30
|
|
|
}
|
|
|
|
|
2016-05-01 23:20:55 +05:30
|
|
|
render() {
|
2016-05-11 10:56:44 +05:30
|
|
|
const {popups} = this.props;
|
2016-05-01 23:20:55 +05:30
|
|
|
|
|
|
|
return (
|
2017-06-08 00:30:00 +05:30
|
|
|
<CSSTransitionGroup
|
2016-06-04 01:08:59 +05:30
|
|
|
transitionName={{
|
|
|
|
enter: styles.trEnter,
|
2016-06-04 11:31:10 +05:30
|
|
|
enterActive: styles.trEnterActive,
|
|
|
|
leave: styles.trLeave,
|
|
|
|
leaveActive: styles.trLeaveActive
|
2016-06-04 01:08:59 +05:30
|
|
|
}}
|
|
|
|
transitionEnterTimeout={500}
|
|
|
|
transitionLeaveTimeout={500}
|
|
|
|
>
|
2016-05-01 23:20:55 +05:30
|
|
|
{popups.map((popup, index) => {
|
2016-07-26 10:10:45 +05:30
|
|
|
const {Popup} = popup;
|
2016-05-01 23:20:55 +05:30
|
|
|
|
|
|
|
return (
|
2016-07-26 10:10:45 +05:30
|
|
|
<div className={styles.overlay} key={index}
|
|
|
|
onClick={this.onOverlayClick(popup)}
|
|
|
|
>
|
|
|
|
<Popup onClose={this.onClose(popup)} />
|
2016-05-01 23:20:55 +05:30
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
2017-06-08 00:30:00 +05:30
|
|
|
</CSSTransitionGroup>
|
2016-05-01 23:20:55 +05:30
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
onClose(popup) {
|
|
|
|
return this.props.destroy.bind(null, popup);
|
|
|
|
}
|
2016-06-03 00:42:20 +05:30
|
|
|
|
2016-07-26 10:10:45 +05:30
|
|
|
onOverlayClick(popup) {
|
2016-06-03 00:42:20 +05:30
|
|
|
return (event) => {
|
2016-07-26 10:10:45 +05:30
|
|
|
if (event.target !== event.currentTarget || popup.disableOverlayClose) {
|
2016-06-03 00:42:20 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
this.props.destroy(popup);
|
|
|
|
};
|
|
|
|
}
|
2016-07-26 10:50:37 +05:30
|
|
|
|
2016-07-27 00:58:58 +05:30
|
|
|
popStack() {
|
|
|
|
const popup = this.props.popups.slice(-1)[0];
|
|
|
|
|
|
|
|
if (popup && !popup.disableOverlayClose) {
|
|
|
|
this.props.destroy(popup);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-26 10:50:37 +05:30
|
|
|
onKeyPress = (event) => {
|
|
|
|
if (event.which === 27) { // ESC key
|
2016-07-27 00:58:58 +05:30
|
|
|
this.popStack();
|
|
|
|
}
|
|
|
|
};
|
2016-07-26 10:50:37 +05:30
|
|
|
|
2016-07-27 00:58:58 +05:30
|
|
|
onRouteLeave = (nextLocation) => {
|
|
|
|
if (nextLocation) {
|
|
|
|
this.popStack();
|
2016-07-26 10:50:37 +05:30
|
|
|
}
|
|
|
|
};
|
2016-05-01 23:20:55 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { destroy } from 'components/ui/popup/actions';
|
|
|
|
|
|
|
|
export default connect((state) => ({
|
|
|
|
...state.popup
|
|
|
|
}), {
|
|
|
|
destroy
|
|
|
|
})(PopupStack);
|