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