We can use the following approach in ReactJS to store multiple cache data in ReactJS. We can store multiple cache data in the browser and use it in our application whenever needed. Caching is a technique that helps us to store a copy of a given resource into our browser and serves it back when requested.
Approach: Follow these simple steps in order to store multiple cache data in ReactJS. We have created our addMultipleCacheData function which takes the user data list and stores it in the browser cache. When we click on the button, the function is triggered and data gets stored in the cache, and we see an alert popup. In the following example, we are trying to store multiple caches named CacheOne, CacheTwo, and CacheThree using our defined function.
Creating React Application:
Step 1: Create a React application using the following command:
npx create-react-app foldername
Step 2: After creating your project folder i.e. folder name, move to it using the following command:
cd foldername
Project Structure: It will look like the following.
Example: Now write down the following code in the App.js file. Here, App is our default component where we have written our code.
Filename: App.js
javascript
import * as React from 'react' ; export default function App() { // Function to add our give multiple cache data const addMultipleCacheData = async (cacheList) => { for (let i = 0; i < cacheList.length; i++) { // Converting our response into Actual Response form const data = new Response(JSON.stringify(cacheList[i].cacheData)); if ( 'caches' in window) { // Opening given cache and putting our data into it let cache = await caches.open(cacheList[i].cacheName) cache.put(cacheList[i].url, data); } } alert( 'Multiple Cache Stored!' ) }; const CacheToBeStored = [ { cacheName: 'CacheOne' , cacheData: '1 CacheData' , }, { cacheName: 'CacheTwo' , cacheData: '2 CacheData' , }, { cacheName: 'CacheThree' , cacheData: '3rd CacheData' , }, ] return ( <div style={{ height: 500, width: '80%' }}> <h4>How to store multiple cache data in ReactJS?</h4> <button onClick={() => addMultipleCacheData(CacheToBeStored)} > Add Multiple Caches</button> </div> ); } |
Step to Run Application: Run the application using the following command from the root directory of the project:
npm start
Output: Now open your browser and go to http://localhost:3000/, you will see the following output: