ece2312ec5
## Issue `normalizeUri` | `parseURI` is expensive and has been causing sluggish operations when called repeatedly or within a loop. ## Change Since I'm not confident enough to remove the call entirely from makeSelectClaimIsMine (although I've yet to find a scenario that the uri is not already normalized), we'll try caching the calls instead. ## Results - in a simple test of toggling between 2 category pages, we saved 20ms from `parseURI` calls alone. - in a test of opening all categories one time, the memory usage remained similar. This makes sense since we removed a `makeSelect*` (which creates a selector for each call + not memoizing), and replaced that with a cached selector that's actually memoizing.
30 lines
1.3 KiB
JavaScript
30 lines
1.3 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import Comment from './view';
|
|
import { selectClaimIsMineForUri, makeSelectClaimForUri } from 'redux/selectors/claims';
|
|
import { doResolveUri } from 'redux/actions/claims';
|
|
import { doToast } from 'redux/actions/notifications';
|
|
import { selectMyReactsForComment, selectOthersReactsForComment } from 'redux/selectors/comments';
|
|
import { doCommentReact } from 'redux/actions/comments';
|
|
import { selectActiveChannelClaim } from 'redux/selectors/app';
|
|
|
|
const select = (state, props) => {
|
|
const activeChannelClaim = selectActiveChannelClaim(state);
|
|
const activeChannelId = activeChannelClaim && activeChannelClaim.claim_id;
|
|
const reactionKey = activeChannelId ? `${props.commentId}:${activeChannelId}` : props.commentId;
|
|
|
|
return {
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
claimIsMine: selectClaimIsMineForUri(state, props.uri),
|
|
myReacts: selectMyReactsForComment(state, reactionKey),
|
|
othersReacts: selectOthersReactsForComment(state, reactionKey),
|
|
activeChannelId,
|
|
};
|
|
};
|
|
|
|
const perform = (dispatch) => ({
|
|
resolve: (uri) => dispatch(doResolveUri(uri)),
|
|
react: (commentId, type) => dispatch(doCommentReact(commentId, type)),
|
|
doToast: (params) => dispatch(doToast(params)),
|
|
});
|
|
|
|
export default connect(select, perform)(Comment);
|