1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/pages/mobile-sync/mobile-sync.container.js

38 lines
1.1 KiB
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2020-11-03 00:41:28 +01:00
import {
displayWarning,
requestRevealSeedWords,
fetchInfoToSync,
exportAccounts,
hideWarning,
} from '../../store/actions';
import { getMostRecentOverviewPage } from '../../ducks/history/history';
import { getMetaMaskKeyrings } from '../../selectors';
import MobileSyncPage from './mobile-sync.component';
const mapDispatchToProps = (dispatch) => {
return {
2020-11-03 00:41:28 +01:00
requestRevealSeedWords: (password) =>
dispatch(requestRevealSeedWords(password)),
fetchInfoToSync: () => dispatch(fetchInfoToSync()),
displayWarning: (message) => dispatch(displayWarning(message || null)),
2020-11-03 00:41:28 +01:00
exportAccounts: (password, addresses) =>
dispatch(exportAccounts(password, addresses)),
hideWarning: () => dispatch(hideWarning()),
};
};
2020-02-15 21:34:12 +01:00
const mapStateToProps = (state) => {
const {
2020-11-03 00:41:28 +01:00
metamask: { selectedAddress },
} = state;
return {
mostRecentOverviewPage: getMostRecentOverviewPage(state),
selectedAddress,
keyrings: getMetaMaskKeyrings(state),
};
};
export default connect(mapStateToProps, mapDispatchToProps)(MobileSyncPage);