mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
33 lines
1000 B
JavaScript
33 lines
1000 B
JavaScript
import { connect } from 'react-redux'
|
|
import { compose } from 'redux'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { addToken, removeSuggestedTokens } from '../../store/actions'
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history'
|
|
import ConfirmAddSuggestedToken from './confirm-add-suggested-token.component'
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
metamask: { pendingTokens, suggestedTokens, tokens },
|
|
} = state
|
|
const params = { ...pendingTokens, ...suggestedTokens }
|
|
|
|
return {
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
pendingTokens: params,
|
|
tokens,
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
addToken: ({ address, symbol, decimals, image }) =>
|
|
dispatch(addToken(address, symbol, Number(decimals), image)),
|
|
removeSuggestedTokens: () => dispatch(removeSuggestedTokens()),
|
|
}
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps),
|
|
)(ConfirmAddSuggestedToken)
|