1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 20:32:02 +02:00
metamask-extension/ui/app/helpers/higher-order-components/with-modal-props/with-modal-props.js

22 lines
485 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { hideModal } from '../../../store/actions';
2018-09-17 19:12:31 +02:00
2020-02-15 21:34:12 +01:00
const mapStateToProps = (state) => {
const { appState } = state;
const { props: modalProps } = appState.modal.modalState;
2018-09-17 19:12:31 +02:00
return {
...modalProps,
};
};
2018-09-17 19:12:31 +02:00
2020-02-15 21:34:12 +01:00
const mapDispatchToProps = (dispatch) => {
2018-09-17 19:12:31 +02:00
return {
hideModal: () => dispatch(hideModal()),
};
};
2018-09-17 19:12:31 +02:00
2020-11-03 00:41:28 +01:00
export default function withModalProps(Component) {
return connect(mapStateToProps, mapDispatchToProps)(Component);
2018-09-17 19:12:31 +02:00
}