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

26 lines
882 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
2017-06-08 23:15:34 +02:00
import rewards from "rewards";
2017-06-06 23:19:12 +02:00
import { connect } from "react-redux";
import { doFetchFileInfosAndPublishedClaims } from "actions/file_info";
import {
selectFileInfosPublished,
2017-06-06 23:19:12 +02:00
selectFileListDownloadedOrPublishedIsPending,
} from "selectors/file_info";
2017-06-08 23:15:34 +02:00
import { doClaimRewardType } from "actions/rewards";
2017-06-06 23:19:12 +02:00
import { doNavigate } from "actions/app";
import FileListPublished from "./view";
2017-06-06 06:21:55 +02:00
const select = state => ({
fileInfos: selectFileInfosPublished(state),
isPending: selectFileListDownloadedOrPublishedIsPending(state),
2017-06-06 06:21:55 +02:00
});
2017-06-06 06:21:55 +02:00
const perform = dispatch => ({
2017-06-06 23:19:12 +02:00
navigate: path => dispatch(doNavigate(path)),
fetchFileListPublished: () => dispatch(doFetchFileInfosAndPublishedClaims()),
2017-06-08 23:15:34 +02:00
claimFirstPublishReward: () =>
dispatch(doClaimRewardType(rewards.TYPE_FIRST_PUBLISH)),
2017-06-06 06:21:55 +02:00
});
2017-06-06 06:21:55 +02:00
export default connect(select, perform)(FileListPublished);