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

16 lines
506 B
JavaScript
Raw Normal View History

2020-01-06 19:32:35 +01:00
import { connect } from 'react-redux';
import { doFetchViewCount, makeSelectViewCountForUri } from 'lbryinc';
2020-01-06 19:32:35 +01:00
import FileViewCount from './view';
import { makeSelectClaimForUri } from 'lbry-redux';
2020-01-06 19:32:35 +01:00
const select = (state, props) => ({
claim: makeSelectClaimForUri(props.uri)(state),
2020-01-06 19:32:35 +01:00
viewCount: makeSelectViewCountForUri(props.uri)(state),
});
const perform = dispatch => ({
fetchViewCount: claimId => dispatch(doFetchViewCount(claimId)),
});
export default connect(select, perform)(FileViewCount);