Coder Social home page Coder Social logo

create-react-app React performance with SVG as ReactComponent and eslint with React.memo missing display name about why-did-you-render HOT 7 CLOSED

welldone-software avatar welldone-software commented on May 21, 2024
create-react-app React performance with SVG as ReactComponent and eslint with React.memo missing display name

from why-did-you-render.

Comments (7)

ljosberinn avatar ljosberinn commented on May 21, 2024 2

Yes, that's correct, the function passed as 2nd argument to useMemo() is usually called areEqual, thus it semantically makes sense to not re-render if areEqual returns true.
See https://reactjs.org/docs/react-api.html#reactmemo for reference.

You can fix the eslint/display-name with

const PureProfileIcon = PureComponent(ProfileIcon);
PureProfileIcon.displayName = 'PureProfileIcon';

but that rule is purely useful during development as production will have names minified anyways so.

from why-did-you-render.

vzaidman avatar vzaidman commented on May 21, 2024

whats the point of

React.memo(props => <WrappedComponent {...props} />, () => true);

?
it makes it so every props, no metter what, would cause WrappedComponent to be recreated.

EDIT: i got it, it means it should never re-render because "areEqual" returns "true"

from why-did-you-render.

frederikhors avatar frederikhors commented on May 21, 2024

Sorry, I don't understand. I'm using React.memo to avoid re-render and the second argument is a callback which if true skip the props check.

Am I right?

from why-did-you-render.

frederikhors avatar frederikhors commented on May 21, 2024

I think something like shouldComponentUpdate() { return false }.

Am I right?

from why-did-you-render.

vzaidman avatar vzaidman commented on May 21, 2024

i got it, it means it should never re-render because "areEqual" returns "true"

from why-did-you-render.

vzaidman avatar vzaidman commented on May 21, 2024

for the warning:
"Re-rendered because the props object itself changed but it's values are all equal"
using React.memo should be enough:

export default WrappedComponent =>
  React.memo(props => <WrappedComponent {...props} />); // no () => true

unless you dont want the component to ever re-render. then you indeed can add () => true like you did:

export default WrappedComponent =>
  React.memo(props => <WrappedComponent {...props} />, () => true);

I wouldn't call it "PureComponent" though.

If you want a pure component, use React.memo in the first way.

If a component never re-renders, you can call it:
StaticComponent or even NeverReRender or something.

from why-did-you-render.

frederikhors avatar frederikhors commented on May 21, 2024

@vzaidman, @ljosberinn thanks.

from why-did-you-render.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.