mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import { compose } from 'redux';
|
|
import { withRouter } from 'react-router-dom';
|
|
import { clearConfirmTransaction } from '../../ducks/confirm-transaction/confirm-transaction.duck';
|
|
import { showSendTokenPage } from '../../store/actions';
|
|
import { editExistingTransaction } from '../../ducks/send';
|
|
import { sendTokenTokenAmountAndToAddressSelector } from '../../selectors';
|
|
import { AssetType } from '../../../shared/constants/transaction';
|
|
import ConfirmSendToken from './confirm-send-token.component';
|
|
|
|
const mapStateToProps = (state) => {
|
|
const { tokenAmount } = sendTokenTokenAmountAndToAddressSelector(state);
|
|
|
|
return {
|
|
tokenAmount,
|
|
};
|
|
};
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
editExistingTransaction: async ({ txData }) => {
|
|
const { id } = txData;
|
|
await dispatch(editExistingTransaction(AssetType.token, id.toString()));
|
|
await dispatch(clearConfirmTransaction());
|
|
await dispatch(showSendTokenPage());
|
|
},
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmSendToken);
|