26f89b3ec9
`makeSelectDataForUri` always returns a new reference, so `ClaimPreview` was constantly being rendered. It's pretty expensive since `ClaimPreview`'s rendering checks against a huge blocklist, which is another issue on it's own. - This commit tests the usage of `re-reselect` as the solution to the multi-instance memoization problem (https://github.com/toomuchdesign/re-reselect/blob/master/examples/1-join-selectors.md)
11 lines
450 B
JavaScript
11 lines
450 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectDateForUri } from 'redux/selectors/claims';
|
|
import * as SETTINGS from 'constants/settings';
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
|
import DateTime from './view';
|
|
|
|
const select = (state, props) => ({
|
|
date: props.date || selectDateForUri(state, props.uri),
|
|
clock24h: makeSelectClientSetting(SETTINGS.CLOCK_24H)(state),
|
|
});
|
|
export default connect(select)(DateTime);
|