I am trying to create a component that shouldn't when a certain property is true, but should perform a shallow compare (the default for PureComponent
).
I've tried doing the following behavior:
export default class ContentsListView extends PureComponent<Props> {
shouldComponentUpdate(props: Props) {
if (props.selecting) {
return false;
}
return super.shouldComponentUpdate(props);
}
render() {
}
}
However, super.shouldComponentUpdate
is not defined. Is there some way to "tap into" the shallow compare of PureComponent
without writing my own?
from Specialized shouldComponentUpdate on PureComponent
No comments:
Post a Comment