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

20 lines
609 B
JavaScript
Raw Normal View History

2017-06-06 17:19:12 -04:00
import React from "react";
import { connect } from "react-redux";
2017-04-07 12:15:22 +07:00
2017-06-06 17:19:12 -04:00
import { selectCurrentModal } from "selectors/app";
import { doCheckUpgradeAvailable, doAlertError } from "actions/app";
import { doUpdateBalance } from "actions/wallet";
import App 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
modal: selectCurrentModal(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-06-06 17:19:12 -04:00
alertError: errorList => dispatch(doAlertError(errorList)),
2017-04-07 12:15:22 +07:00
checkUpgradeAvailable: () => dispatch(doCheckUpgradeAvailable()),
2017-06-06 17:19:12 -04:00
updateBalance: balance => dispatch(doUpdateBalance(balance)),
2017-06-05 21:21:55 -07:00
});
2017-04-07 12:15:22 +07:00
2017-06-05 21:21:55 -07:00
export default connect(select, perform)(App);