Introduction
In this lab, we will learn about the usePersistedState hook in React, which allows us to persist a stateful value in localStorage. We will explore how to initialize and update the stored value, as well as how to handle changes to the key name. By the end of this lab, you will be able to use this hook in your React applications to ensure that certain data is stored and can be retrieved even after a page refresh.
React usePersistedState Hook
index.htmlandscript.jshave already been provided in the VM. In general, you only need to add code toscript.jsandstyle.css.
This hook returns a stateful value that is persisted in localStorage, along with a function that can be used to update it. To use it, follow these steps:
- Use the
useState()hook to initialize thevaluetodefaultValue. - Use the
useRef()hook to create a ref that will hold thenameof the value inWindow.localStorage. - Use 3 instances of the
useEffect()hook for initialization,valuechange, andnamechange respectively. - When the component is first mounted, use
Storage.getItem()to updatevalueif there's a stored value, orStorage.setItem()to persist the current value. - When
valueis updated, useStorage.setItem()to store the new value. - When
nameis updated, useStorage.setItem()to create the new key, update thenameRef, and useStorage.removeItem()to remove the previous key fromWindow.localStorage. - Note that the hook is meant for use with primitive values (i.e. not objects) and doesn't account for changes to
Window.localStoragedue to other code. Both of these issues can be easily handled (e.g. JSON serialization and handling the'storage'event).
Here is the code:
const usePersistedState = (name, defaultValue) => {
const [value, setValue] = React.useState(defaultValue);
const nameRef = React.useRef(name);
React.useEffect(() => {
try {
const storedValue = localStorage.getItem(name);
if (storedValue !== null) {
setValue(storedValue);
} else {
localStorage.setItem(name, defaultValue);
}
} catch {
setValue(defaultValue);
}
}, []);
React.useEffect(() => {
try {
localStorage.setItem(nameRef.current, value);
} catch {}
}, [value]);
React.useEffect(() => {
const lastName = nameRef.current;
if (name !== lastName) {
try {
localStorage.setItem(name, value);
nameRef.current = name;
localStorage.removeItem(lastName);
} catch {}
}
}, [name]);
return [value, setValue];
};
const MyComponent = ({ name }) => {
const [value, setValue] = usePersistedState(name, 10);
const handleInputChange = (event) => {
setValue(event.target.value);
};
return <input value={value} />;
};
const MyApp = () => {
const [name, setName] = React.useState("my-value");
const handleInputChange = (event) => {
setName(event.target.value);
};
return (
<>
<MyComponent name={name} />
<input value={name} />
</>
);
};
ReactDOM.createRoot(document.getElementById("root")).render(<MyApp />);
Please click on 'Go Live' in the bottom right corner to run the web service on port 8080. Then, you can refresh the Web 8080 Tab to preview the web page.
Summary
Congratulations! You have completed the React usePersistedState Hook lab. You can practice more labs in LabEx to improve your skills.