Better Programming

Advice for programmers.

Follow publication

You're unable to read via this Friend Link since it's expired. Learn more

Member-only story

React Functional Components and Lodash High-Order Functions

Vinicius De Antoni
Better Programming
Published in
2 min readJun 17, 2020
Photo by Bernard Hermant on Unsplash.

Although modern browsers keep adding support to utility functions (thus rendering Lodash not as useful), you may still find yourself in a situation where you need/want to use Lodash for whatever reason.

And with React being one of the most popular front-end libraries, it’s very likely that you will eventually need to use both in conjunction. It might seem like a trivial task (and it is), but when we put functional components and hooks together in the mix, there can be some pitfalls. I hope this article helps you avoid them.

This article applies to all the high-order utility functions provided by Lodash, but we’ll focus on debounce and throttle.

Table Of Contents

· TL;DR
Module/file scope function
Component scope function
· Debounce
· Throttle
· Conclusion

TL;DR

The most important thing is to avoid defining the function more than once.

Module/file scope function

If the function doesn’t need access to the component’s scope, you can simply define it outside of the component:

Component scope function

We can use useCallback to ensure that the debounced function is created only once and is reused throughout the component’s lifecycle if it needs access to the component’s scope:

Debounce

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

No responses yet

Write a response