lbry-desktop/src/renderer/page/fileListPublished/index.js

25 lines
843 B
JavaScript
Raw Normal View History

import React from 'react';
import rewards from 'rewards';
import { connect } from 'react-redux';
import { doFetchClaimListMine } from 'redux/actions/content';
import {
2017-07-08 10:03:12 +02:00
selectMyClaimsWithoutChannels,
selectIsFetchingClaimListMine,
} from 'redux/selectors/claims';
import { doClaimRewardType } from 'redux/actions/rewards';
import { doNavigate } from 'redux/actions/navigation';
import FileListPublished from './view';
2017-06-06 06:21:55 +02:00
const select = state => ({
2017-07-08 10:03:12 +02:00
claims: selectMyClaimsWithoutChannels(state),
isFetching: selectIsFetchingClaimListMine(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)),
fetchClaims: () => dispatch(doFetchClaimListMine()),
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);