accounts-frontend/src/components/ui/popup/PopupStack.jsx

72 lines
1.9 KiB
React
Raw Normal View History

import React, { Component, PropTypes } from 'react';
2016-06-04 01:08:59 +05:30
import ReactCSSTransitionGroup from 'react-addons-css-transition-group';
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,
props: PropTypes.oneOfType([PropTypes.object, PropTypes.func])
})),
destroy: PropTypes.func.isRequired
};
render() {
2016-05-11 10:56:44 +05:30
const {popups} = this.props;
return (
2016-06-04 01:08:59 +05:30
<ReactCSSTransitionGroup
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}
>
{popups.map((popup, index) => {
2016-07-26 10:10:45 +05:30
const {Popup} = popup;
return (
2016-07-26 10:10:45 +05:30
<div className={styles.overlay} key={index}
onClick={this.onOverlayClick(popup)}
>
<Popup onClose={this.onClose(popup)} />
</div>
);
})}
2016-06-04 01:08:59 +05:30
</ReactCSSTransitionGroup>
);
}
onClose(popup) {
return this.props.destroy.bind(null, popup);
}
2016-07-26 10:10:45 +05:30
onOverlayClick(popup) {
return (event) => {
2016-07-26 10:10:45 +05:30
if (event.target !== event.currentTarget || popup.disableOverlayClose) {
return;
}
event.preventDefault();
this.props.destroy(popup);
};
}
}
import { connect } from 'react-redux';
import { destroy } from 'components/ui/popup/actions';
export default connect((state) => ({
...state.popup
}), {
destroy
})(PopupStack);