mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
fee1606fad
* Fix #20305 - Show the network name in Delete Network modal * Update app/_locales/en/messages.json Co-authored-by: George Marshall <george.marshall@consensys.net> * Add unit test --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
26 lines
869 B
JavaScript
26 lines
869 B
JavaScript
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 };
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
removeNetworkConfiguration: (target) =>
|
|
dispatch(removeNetworkConfiguration(target)),
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withModalProps,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmDeleteNetwork);
|