2020-01-06 13:32:35 -05:00
|
|
|
import { connect } from 'react-redux';
|
2022-01-25 18:16:28 -05:00
|
|
|
import { selectClaimIdForUri } from 'redux/selectors/claims';
|
2021-12-31 12:52:26 -05:00
|
|
|
import { doFetchViewCount, selectViewCountForUri } from 'lbryinc';
|
2021-04-14 11:40:36 -04:00
|
|
|
import { doAnalyticsView } from 'redux/actions/app';
|
2020-01-06 13:32:35 -05:00
|
|
|
import FileViewCount from './view';
|
|
|
|
|
2022-01-25 18:16:28 -05:00
|
|
|
const select = (state, props) => {
|
|
|
|
const claimId = selectClaimIdForUri(state, props.uri);
|
|
|
|
return {
|
|
|
|
claimId,
|
|
|
|
viewCount: selectViewCountForUri(state, props.uri),
|
|
|
|
};
|
|
|
|
};
|
2020-01-06 13:32:35 -05:00
|
|
|
|
2021-04-14 11:40:36 -04:00
|
|
|
const perform = (dispatch) => ({
|
|
|
|
fetchViewCount: (claimId) => dispatch(doFetchViewCount(claimId)),
|
|
|
|
doAnalyticsView: (uri) => dispatch(doAnalyticsView(uri)),
|
2020-04-01 14:43:50 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, perform)(FileViewCount);
|