lbry-desktop/ui/js/page/discover/index.js

21 lines
624 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { connect } from "react-redux";
import { doFetchFeaturedUris, doCancelAllResolvingUris } from "actions/content";
2017-04-23 11:56:50 +02:00
import {
2017-05-07 09:39:13 +02:00
selectFeaturedUris,
selectFetchingFeaturedUris,
2017-06-06 23:19:12 +02:00
} from "selectors/content";
import DiscoverPage from "./view";
2017-04-23 11:56:50 +02:00
2017-06-06 06:21:55 +02:00
const select = state => ({
2017-05-04 05:44:08 +02:00
featuredUris: selectFeaturedUris(state),
2017-05-07 09:39:13 +02:00
fetchingFeaturedUris: selectFetchingFeaturedUris(state),
2017-06-06 06:21:55 +02:00
});
2017-04-23 11:56:50 +02:00
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
2017-06-06 23:19:12 +02:00
fetchFeaturedUris: () => dispatch(doFetchFeaturedUris()),
cancelResolvingUris: () => dispatch(doCancelAllResolvingUris()),
2017-06-06 06:21:55 +02:00
});
2017-04-23 11:56:50 +02:00
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(DiscoverPage);