1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/ui/components/app/modals/confirm-delete-network/confirm-delete-network.container.js

26 lines
869 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { compose } from 'redux';
import withModalProps from '../../../../helpers/higher-order-components/with-modal-props';
import { removeNetworkConfiguration } from '../../../../store/actions';
import { getNetworkConfigurations } from '../../../../selectors';
import ConfirmDeleteNetwork from './confirm-delete-network.component';
const mapStateToProps = (state, ownProps) => {
const networkConfigurations = getNetworkConfigurations(state);
const networkNickname = networkConfigurations[ownProps.target].nickname;
return { networkNickname };
};
2020-02-15 21:34:12 +01:00
const mapDispatchToProps = (dispatch) => {
return {
removeNetworkConfiguration: (target) =>
dispatch(removeNetworkConfiguration(target)),
};
};
export default compose(
withModalProps,
connect(mapStateToProps, mapDispatchToProps),
)(ConfirmDeleteNetwork);