lbry-desktop/ui/modal/modalWalletEncrypt/index.js

21 lines
670 B
JavaScript
Raw Normal View History

2018-07-18 21:48:30 +02:00
import { connect } from 'react-redux';
2019-08-20 14:29:59 +02:00
import { doWalletStatus, doWalletEncrypt, selectWalletEncryptSucceeded, selectWalletEncryptResult } from 'lbry-redux';
2019-08-28 04:35:07 +02:00
import { doHideModal } from 'redux/actions/app';
2018-07-18 21:48:30 +02:00
import ModalWalletEncrypt from './view';
const select = state => ({
walletEncryptSucceded: selectWalletEncryptSucceeded(state),
walletEncryptResult: selectWalletEncryptResult(state),
});
const perform = dispatch => ({
closeModal: () => dispatch(doHideModal()),
2018-07-18 21:48:30 +02:00
encryptWallet: password => dispatch(doWalletEncrypt(password)),
updateWalletStatus: () => dispatch(doWalletStatus()),
});
export default connect(
select,
perform
)(ModalWalletEncrypt);