2021-02-04 19:15:23 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { compose } from 'redux';
|
|
|
|
import { withRouter } from 'react-router-dom';
|
2021-09-10 19:37:19 +02:00
|
|
|
import { rejectWatchAsset, acceptWatchAsset } from '../../store/actions';
|
2021-02-04 19:15:23 +01:00
|
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history';
|
|
|
|
import ConfirmAddSuggestedToken from './confirm-add-suggested-token.component';
|
2018-08-07 02:03:49 +02:00
|
|
|
|
2020-06-01 19:54:32 +02:00
|
|
|
const mapStateToProps = (state) => {
|
2020-11-03 00:41:28 +01:00
|
|
|
const {
|
2021-09-10 19:37:19 +02:00
|
|
|
metamask: { suggestedAssets, tokens },
|
2021-02-04 19:15:23 +01:00
|
|
|
} = state;
|
2018-08-07 02:03:49 +02:00
|
|
|
|
|
|
|
return {
|
2020-06-01 19:54:32 +02:00
|
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
2021-09-10 19:37:19 +02:00
|
|
|
suggestedAssets,
|
2020-02-14 21:32:56 +01:00
|
|
|
tokens,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
};
|
2018-08-07 02:03:49 +02:00
|
|
|
|
2020-02-15 21:34:12 +01:00
|
|
|
const mapDispatchToProps = (dispatch) => {
|
2018-08-07 02:03:49 +02:00
|
|
|
return {
|
2021-09-10 19:37:19 +02:00
|
|
|
rejectWatchAsset: (suggestedAssetID) =>
|
|
|
|
dispatch(rejectWatchAsset(suggestedAssetID)),
|
|
|
|
acceptWatchAsset: (suggestedAssetID) =>
|
|
|
|
dispatch(acceptWatchAsset(suggestedAssetID)),
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
};
|
2018-08-07 02:03:49 +02:00
|
|
|
|
2018-08-16 23:28:07 +02:00
|
|
|
export default compose(
|
|
|
|
withRouter,
|
2020-07-14 17:20:41 +02:00
|
|
|
connect(mapStateToProps, mapDispatchToProps),
|
2021-02-04 19:15:23 +01:00
|
|
|
)(ConfirmAddSuggestedToken);
|