-
-
Save gragland/1ed713a68c770ea414c3b92ccf2bdd2f to your computer and use it in GitHub Desktop.
import { useState, useEffect, useRef } from 'react'; | |
// Usage | |
function App() { | |
// State value and setter for our example | |
const [count, setCount] = useState(0); | |
// Get the previous value (was passed into hook on last render) | |
const prevCount = usePrevious(count); | |
// Display both current and previous count value | |
return ( | |
<div> | |
<h1>Now: {count}, before: {prevCount}</h1> | |
<button onClick={() => setCount(count + 1)}>Increment</button> | |
</div> | |
); | |
} | |
// Hook | |
function usePrevious(value) { | |
// The ref object is a generic container whose current property is mutable ... | |
// ... and can hold any value, similar to an instance property on a class | |
const ref = useRef(); | |
// Store current value in ref | |
useEffect(() => { | |
ref.current = value; | |
}, [value]); // Only re-run if value changes | |
// Return previous value (happens before update in useEffect above) | |
return ref.current; | |
} |
Clean up
function usePrevious(value) {
// The ref object is a generic container whose current property is mutable ...
// ... and can hold any value, similar to an instance property on a class
const ref = useRef();
// Store current value in ref
useEffect(() => {
ref.current = value;
// Clean Up
return () => {
ref.current = null;
}
}, [value]); // Only re-run if value changes
(cc @amaankulshreshtha )
The function doesn't quite do what I expected it to do. If another state changes and renders the component again, ref.current === value
applies.
I have adapted the function so that it reacts as I expect it to:
function usePrevious(value) {
const ref = useRef({ v: value, prev: undefined });
// update `ref` only, if the value really changes,
// the previous value is kept persistent in `prev`,
// so it also contains the previous value for
// further renders with the same `value`.
if (ref.current.v !== value) {
ref.current = {
prev: ref.current.v,
v: value
};
}
return ref.current.prev;
}
import { useState, useEffect, useRef } from 'react';
to
import React, { useState, useEffect, useRef } from 'react';
Any reason why we need the useEffect? Would this be cheaper?:
function usePrevious(value){
const ref = useRef()
const previous = ref.current
ref.current = value
return previous
}
@thebiltheory Why is cleanup necessary? Haven't seen any examples that set a ref value back to null on cleanup and it's not mentioned in https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state
@PutziSan That should be handled by the dependency array no?
@deadlyicon @PutziSan From what I've read it's not concurrent mode safe to update a ref in the body like that, so could cause bugs in the future when concurrent mode is used.
Good to know. Thanks @gragland
It's a fancy hook, but I'm wondering why is the ref not been initialized at the the 1st rendering.
export default function usePrevious(value) {
const ref = useRef(value);
// ...
}
Would this be better?
It's a fancy hook, but I'm wondering why is the ref not been initialized at the the 1st rendering.
Because technically it had no previous value on the first render and you may need to know that in your components.
A better version with support for initialValue
. Backward compatible with previous version.
function usePrevious<T>(value: T, initialValue?: T): T {
const ref = useRef(initialValue);
useEffect(() => {
ref.current = value;
}, [value]);
return ref.current;
}
hmmm why would you need an initialValue for a usePrevious? it was undefined previously.
This seems to handle all the cases discussed in this thread*:
function usePrevious(value){
const ref = useRef();
useEffect(
() => { ref.current = value; },
[value]
);
return ref.current;
}
* except for initialValue
hmmm why would you need an initialValue for a usePrevious? it was undefined previously.
I have a side effect which calls an API if the current value changes and is different from the previous value. Without initial value, the change is always triggered after first render.
@manzoorwanijk can you give some example code?
…are you doing something like?:
function Image({ src, ...props }){
const prevSrc = usePrevious(src)
useEffect(
()=> {
console.log(`src changed`, {to: src, was: prevSrc})
},
[src]
)
return <img {...props} src={src}/>
}
export default function usePrevious(value) {
// ref value will always be like [prev, state]
let ref = useRef([null, null]);
// storing prev, state values
ref.current.shift()
ref.current.push(value)
// Return previous value
return ref.current[0];
}
@manikanta-kotha it seems like this could be simpler and work the same:
export default function usePrevious(value) {
const ref = useRef();
const prev = ref.current
ref.current = value
return prev;
}
…but it might be nice to always return the previous value. Even on subsequent renders. Like this:
export default function usePrevious(value) {
const ref = useRef();
if (ref.current !== value){
ref.previous = ref.current
ref.current = value
}
return ref.previous;
}
I wrote the following alternative which (even if it looks a bit complicated) can get around with just a single useState and should increase performance a lot because it does not need to check if the effect needs to run on every render.