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>
15 lines
505 B
JavaScript
15 lines
505 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
makeSelectClaimForUri,
|
|
selectTotalStakedAmountForChannelUri,
|
|
selectStakedLevelForChannelUri,
|
|
} from 'redux/selectors/claims';
|
|
import ChannelStakedIndicator from './view';
|
|
|
|
const select = (state, props) => ({
|
|
channelClaim: makeSelectClaimForUri(props.uri)(state),
|
|
amount: selectTotalStakedAmountForChannelUri(state, props.uri),
|
|
level: selectStakedLevelForChannelUri(state, props.uri),
|
|
});
|
|
|
|
export default connect(select)(ChannelStakedIndicator);
|