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

21 lines
597 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { connect } from "react-redux";
2017-11-13 22:02:23 +01:00
import { doStartUpgrade, doCancelUpgrade } from "redux/actions/app";
import {
selectDownloadProgress,
selectDownloadComplete,
} from "redux/selectors/app";
2017-07-02 20:23:38 +02:00
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),
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()),
2017-06-06 23:19:12 +02:00
cancelUpgrade: () => dispatch(doCancelUpgrade()),
2017-06-06 06:21:55 +02:00
});
2017-04-07 07:15:22 +02:00
2017-07-02 20:23:38 +02:00
export default connect(select, perform)(ModalDownloading);