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

25 lines
947 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { connect } from "react-redux";
import { selectPageTitle } from "selectors/navigation";
import { selectUser } from "selectors/user";
import { doCheckUpgradeAvailable, doAlertError } from "actions/app";
import { doRecordScroll } from "actions/navigation";
2017-07-30 00:56:08 +02:00
import { doFetchRewardedContent } from "actions/content";
2017-06-06 23:19:12 +02:00
import { doUpdateBalance } from "actions/wallet";
import App from "./view";
2017-04-07 07:15:22 +02:00
2017-07-28 03:13:12 +02:00
const select = (state, props) => ({
pageTitle: selectPageTitle(state),
2017-07-28 03:13:12 +02:00
user: selectUser(state),
});
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
2017-06-06 23:19:12 +02:00
alertError: errorList => dispatch(doAlertError(errorList)),
2017-04-07 07:15:22 +02:00
checkUpgradeAvailable: () => dispatch(doCheckUpgradeAvailable()),
2017-06-06 23:19:12 +02:00
updateBalance: balance => dispatch(doUpdateBalance(balance)),
2017-07-30 00:56:08 +02:00
fetchRewardedContent: () => dispatch(doFetchRewardedContent()),
recordScroll: scrollPosition => dispatch(doRecordScroll(scrollPosition)),
2017-06-06 06:21:55 +02:00
});
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(App);