You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
901 B
27 lines
901 B
import { connect } from 'react-redux'; |
|
import { openModal, closeModal } from '../../../actions/modal'; |
|
import ModalRoot from '../components/modal_root'; |
|
|
|
const mapStateToProps = state => ({ |
|
ignoreFocus: state.getIn(['modal', 'ignoreFocus']), |
|
type: state.getIn(['modal', 'stack', 0, 'modalType'], null), |
|
props: state.getIn(['modal', 'stack', 0, 'modalProps'], {}), |
|
}); |
|
|
|
const mapDispatchToProps = dispatch => ({ |
|
onClose (confirmationMessage, ignoreFocus = false) { |
|
if (confirmationMessage) { |
|
dispatch( |
|
openModal('CONFIRM', { |
|
message: confirmationMessage.message, |
|
confirm: confirmationMessage.confirm, |
|
onConfirm: () => dispatch(closeModal(undefined, { ignoreFocus })), |
|
}), |
|
); |
|
} else { |
|
dispatch(closeModal(undefined, { ignoreFocus })); |
|
} |
|
}, |
|
}); |
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);
|
|
|