You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
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 { ASSET_TYPES } 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(ASSET_TYPES.TOKEN, id.toString()));
|
|
await dispatch(clearConfirmTransaction());
|
|
await dispatch(showSendTokenPage());
|
|
},
|
|
};
|
|
};
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmSendToken);
|
|
|