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