a3398843c2
Frequently used; top in perf profile Most of the time, you already have the claim object in the current context. `selectClaimIsMineForUri` will retrieve the claim again, which is wasteful, even if it is memoized (looking up the cache still takes time). Break apart the logic and added the alternative `selectClaimIsMine` for faster lookup. Co-authored-by: infinite-persistence <inf.persistence@gmail.com>
17 lines
619 B
JavaScript
17 lines
619 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectClaimForUri } from 'redux/selectors/claims';
|
|
import { doFetchViewCount, selectViewCountForUri } from 'lbryinc';
|
|
import { doAnalyticsView } from 'redux/actions/app';
|
|
import FileViewCount from './view';
|
|
|
|
const select = (state, props) => ({
|
|
claim: selectClaimForUri(state, props.uri),
|
|
viewCount: selectViewCountForUri(state, props.uri),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
fetchViewCount: (claimId) => dispatch(doFetchViewCount(claimId)),
|
|
doAnalyticsView: (uri) => dispatch(doAnalyticsView(uri)),
|
|
});
|
|
|
|
export default connect(select, perform)(FileViewCount);
|