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