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';
|
2022-07-07 16:48:42 -04:00
|
|
|
import {
|
|
|
|
selectDownloadProgress,
|
|
|
|
selectDownloadComplete,
|
|
|
|
selectUpgradeDownloadPath,
|
|
|
|
selectUpgradeInitialized,
|
|
|
|
selectUpgradeFailedInstallation,
|
|
|
|
} from 'redux/selectors/app';
|
2017-12-21 18:08:54 -03:00
|
|
|
import ModalDownloading from './view';
|
2017-04-07 12:15:22 +07:00
|
|
|
|
2022-07-07 16:48:42 -04: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),
|
2022-07-07 16:48:42 -04:00
|
|
|
upgradeInitialized: selectUpgradeInitialized(state),
|
|
|
|
failedInstallation: selectUpgradeFailedInstallation(state),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-04-07 12:15:22 +07:00
|
|
|
|
2022-07-07 16:48:42 -04: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
|
|
|
|
2022-07-07 16:48:42 -04:00
|
|
|
export default connect(select, perform)(ModalDownloading);
|