context-cache-provider
Alert! This package is using experimental React features.
Use React context to cache data and manager fetch resources on React Applications.
In example folder you will see a complete application example using hooks and zero class components.
Provider component don't share cache between other Provides components, so you can use same name of resources for differents Providers.
Install
npm install --save context-cache-provider
Usage
Setting the react-context-cache provider
import React createContext from 'react'import Provider from 'context-cache-provider' const context = ;; { return ;} { return <Provider = => children </Provider>;}
Using the context to bring resources inside of your components
import React Suspense useContext from 'react' import context from './provider-items' { const getResource = ; { const data = ; return <ul> data
You can have many Providers you want each one with your own resources.
Api
getResource
Return the function resource
getResource(resourceName:String, invalidateCacheItem:Boolean):Function
clearCache
Clean cache from component provider
clearCache()
Knowledge
Provider
Provider is a cache component using context that map resources.
When you get resource and call him, the provider will throw the promise returned by resource, then react will suspense the render if your component was wrapper by Suspense React Component.
Context
It's a component where you can bring resources to your components
Resources
It's a function that return a promise or an observable.
Run example
To run example you should install all deps.
cd example
yarn
yarn start
License
MIT © stvkoch