2018-07-18 21:48:30 +02:00
|
|
|
import { connect } from 'react-redux';
|
2019-08-20 14:29:59 +02:00
|
|
|
import { doWalletUnlock, selectWalletUnlockSucceeded } from 'lbry-redux';
|
2019-08-28 04:35:07 +02:00
|
|
|
import { doQuit, doHideModal } from 'redux/actions/app';
|
2018-07-18 21:48:30 +02:00
|
|
|
import ModalWalletUnlock from './view';
|
|
|
|
|
|
|
|
const select = state => ({
|
|
|
|
walletUnlockSucceded: selectWalletUnlockSucceeded(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
2018-10-29 18:23:53 +01:00
|
|
|
closeModal: () => dispatch(doHideModal()),
|
2018-07-18 21:48:30 +02:00
|
|
|
quit: () => dispatch(doQuit()),
|
|
|
|
unlockWallet: password => dispatch(doWalletUnlock(password)),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(ModalWalletUnlock);
|