2017-01-16 06:04:02 -05:00
|
|
|
import { connect } from 'react-redux';
|
2017-04-01 16:11:28 -04:00
|
|
|
import { closeModal } from '../../../actions/modal';
|
|
|
|
import ModalRoot from '../components/modal_root';
|
2016-10-24 12:07:40 -04:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
2017-04-01 16:11:28 -04:00
|
|
|
type: state.get('modal').modalType,
|
2017-05-20 11:31:47 -04:00
|
|
|
props: state.get('modal').modalProps,
|
2016-10-24 12:07:40 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
2017-04-01 16:11:28 -04:00
|
|
|
onClose () {
|
2016-10-24 12:07:40 -04:00
|
|
|
dispatch(closeModal());
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);
|