d3791cca0c
* Refactor shouldUpdateScroll passing So far, shouldUpdateScroll has been manually passed down from the very top of the React component hierarchy even though it is a static function common to all ScrollContainer instances, so replaced that with a custom class extending ScrollContainer. * Generalize “press back to close modal” to any modal and to public pages * Fix boost confirmation modal closing media modal
16 lines
459 B
JavaScript
16 lines
459 B
JavaScript
import { connect } from 'react-redux';
|
|
import { closeModal } from '../../../actions/modal';
|
|
import ModalRoot from '../components/modal_root';
|
|
|
|
const mapStateToProps = state => ({
|
|
type: state.getIn(['modal', 0, 'modalType'], null),
|
|
props: state.getIn(['modal', 0, 'modalProps'], {}),
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
onClose () {
|
|
dispatch(closeModal());
|
|
},
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);
|