React 16.6 was released a couple of days and and it brings a couple of new features.
One of these is React.lazy() which is something that requires a separate post in itself along with React Suspense.
The other one, which we will talk about in this post is React.memo().
It is similar in functionality to PureComponent which helps us have a finer control over the rendering of our component. The only difference is that React.memo() brings that to functional components whereas PureComponent was applicable to classes only.
The default behavior of a component declared using React.memo is that it renders only if the props have changed. It does a shallow comparison of the props to check that but there is an option to override that as well.
Memoization is a technique in which we cache the result of a function call if we know that it is going to be excessively used. This is generally applied to expensive functional calls but since we are doing something similar with respect to memoization when deciding whether to render the component or not, it makes sense to call it React.memo(). Here’s Dan Abramov giving a similar logic on twitter:
const reactMemoComponent = React.memo((props) => {
/* renders only if props changed */
});
JavaScriptThis helps boost the performance by avoiding re-rendering if not needed.
Since React.memo is a higher order component, you can wrap existing functional components using it as well.
const existingComponent= (props) => { /* component definition */ };
const memoizedComponent = React.memo(existingComponent);
JavaScriptIf you want to use your own comparison function instead of the default shallow comparison function, React.memo provides that functionality as well. You can pass in your own comparison function as a second argument to the method to do so. This method needs to return a boolean value to conditionally evaluate if the component should re-render or not.
const customReactMemoComponent = React.memo((props) => { /* definition */ }, (prevProps, newProps) => {
// custom comparison logic
});
JavaScriptI have created a very small demo for this using create-react-app. There is a greeting component which displays a welcome text message. The App component’s state is being changed every one second, forcing it to re-render every second. As a result the Greeting component also gets re-rendered every second since it is present in the App component.
On creating a memoized component using React.memo() from the Greeting component, it gets rendered only once even though the App component is still being rendered every second.
This can be verified from the console logs, which show the log only once for the Memo component and multiple ones for the Greeting component:
And that is all you need to know about the new React.memo. Go ahead and start creating functional pure components! No need for classes anymore
Let us know your thoughts in the comments section and if you think this is a valuable addition to the react API.
I recently switched completely to the Brave browser and have set ad blocking to aggressive…
I was preparing a slide deck for a hackathon and decided to put in a…
I have been using npx a lot lately, especially whenever I want to use a…
Manually copy-pasting the output of a terminal command with a mouse/trackpad feels tedious. It is…
While working on a project, I wanted to do an integrity check of a file…
Popovers have been a problem that was typically solved by using a third-party solution. But…