ee9f63a161
bugfix wip flow fix cleaning clean
17 lines
599 B
JavaScript
17 lines
599 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doWalletUnlock } from 'redux/actions/wallet';
|
|
import { selectWalletUnlockSucceeded } from 'redux/selectors/wallet';
|
|
import { doQuit, doHideModal } from 'redux/actions/app';
|
|
import ModalWalletUnlock from './view';
|
|
|
|
const select = (state) => ({
|
|
walletUnlockSucceded: selectWalletUnlockSucceeded(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
closeModal: () => dispatch(doHideModal()),
|
|
quit: () => dispatch(doQuit()),
|
|
unlockWallet: (password) => dispatch(doWalletUnlock(password)),
|
|
});
|
|
|
|
export default connect(select, perform)(ModalWalletUnlock);
|