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

24 lines
701 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { doStartUpgrade, doCancelUpgrade, doHideModal } from 'redux/actions/app';
2019-05-07 23:38:29 +02:00
import { selectDownloadProgress, selectDownloadComplete, selectUpgradeDownloadPath } from 'redux/selectors/app';
import ModalDownloading from './view';
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
const select = state => ({
2017-04-07 07:15:22 +02:00
downloadProgress: selectDownloadProgress(state),
downloadComplete: selectDownloadComplete(state),
downloadItem: selectUpgradeDownloadPath(state),
2017-06-06 06:21:55 +02:00
});
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
2017-04-07 07:15:22 +02:00
startUpgrade: () => dispatch(doStartUpgrade()),
cancelUpgrade: () => {
dispatch(doHideModal());
dispatch(doCancelUpgrade());
},
2017-06-06 06:21:55 +02:00
});
2017-04-07 07:15:22 +02:00
export default connect(
select,
perform
)(ModalDownloading);