mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
c1e3c229bc
See [`import/order`](https://eslint.org/docs/rules/import/order) for more information. This change enables `import/order` and fixes the issues raised by the rule.
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
import { connect } from 'react-redux'
|
|
import { displayWarning, requestRevealSeedWords, fetchInfoToSync, exportAccounts } from '../../store/actions'
|
|
import { getMostRecentOverviewPage } from '../../ducks/history/history'
|
|
import { getMetaMaskKeyrings } from '../../selectors'
|
|
import MobileSyncPage from './mobile-sync.component'
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
requestRevealSeedWords: (password) => dispatch(requestRevealSeedWords(password)),
|
|
fetchInfoToSync: () => dispatch(fetchInfoToSync()),
|
|
displayWarning: (message) => dispatch(displayWarning(message || null)),
|
|
exportAccounts: (password, addresses) => dispatch(exportAccounts(password, addresses)),
|
|
}
|
|
}
|
|
|
|
const mapStateToProps = (state) => {
|
|
const {
|
|
metamask: {
|
|
selectedAddress,
|
|
},
|
|
} = state
|
|
|
|
return {
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
selectedAddress,
|
|
keyrings: getMetaMaskKeyrings(state),
|
|
}
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(MobileSyncPage)
|