Latest Ref
Loading "Latest Ref"
Run locally for transcripts
π¨βπΌ In our exercise, we have a
useDebounce
function that isn't working the way
we want with hooks. We're going to need to "change the default" using the latest
ref pattern.debounce
is a pattern that's often used in user-input fields. For example, if
you've got a signup form where the user can select their username, you probably
want to validate for the user that the username is not taken. You want to do it
when the user's done typing but without requiring them to do anything to trigger
the validation. With a debounced function, you could say when the user stops
typing for 400ms you can trigger the validation. If they start typing again
after only 350ms then you want to start over and wait again until the user
pauses for 400ms.In this exercise, the
debounce
function is already written. Even the
useDebounce
hook is implemented for you. Your job is to implement the latest
ref pattern to fix its behavior.Our example here is a counter button that has a debounced increment function. We
want to make it so this works:
- The step is
1
- The user clicks the button
- The user updates the step value to
2
- The user clicks the button again (before the debounce timer completes)
- The debounce timer completes for both clicks
- The count value should be
2
(instead of1
)
(Keep in mind, the tests are there to help you know you got it right).
Before continuing here, please familiarize yourself with the code to know how
it's implemented... Got it? Great, let's continue.
Right now, you can play around with two different problems with the way our
exercise is implemented:
// option 1:
// ...
const increment = () => setCount(c => c + step)
const debouncedIncrement = useDebounce(increment, 3000)
// ...
The problem here is
useDebounce
list increment
in the dependency list for
useMemo
. For this reason, any time there's a state update, we create a new
debounced version of that function so the timer
in that debounce function's
closure is different from the previous which means we don't cancel that timeout.
Ultimate this is the bug our users experience:- The user clicks the button
- The user updates the step value
- The user clicks the button again
- The first debounce timer completes
- The count value is incremented by the step value at the time the first click happened
- The second debounce timer completes
- The count value is incremented by the step value at the time the second click happened
This is not what we want at all! And the reason it's a problem is because we're
not memoizing the callback that's going into our
useMemo
dependency list.So the alternative solution is we could change our
useDebounce
API to require
you pass a memoized callback:// option 2:
// ...
const increment = useCallback(() => setCount(c => c + step), [step])
const debouncedIncrement = useDebounce(increment, 3000)
// ...
But again, this callback function will be updated when the
step
value changes
which means we'll get another instance of the debouncedIncrement
. Dah! So the
user experience doesn't actually change with this adjustment and we have a
less fun API. The latest ref pattern will give us a nice API and we'll avoid
this problem.I've made the debounce value last
3000ms
to make it easier for you to observe
and test the behavior, but you can feel free to adjust that as you like. The
tests can also help you make sure you've got things working well.The debounce behavior means that this will make the tests a bit slow. Don't
worry though, the rest of the tests will be quite fast.