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

18 lines
580 B
JavaScript
Raw Normal View History

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