About
Main concept
Resources is global state management module. This module includes
- Global state management
- API to send HTTP request and store data in Redux without writing own actions and reducers
- API to change store data without writing own actions and reducers
- Cache and persist data from localstorage
- GraphQL support
- HOC's to work with Forms.
- HOC's to work with Infinity lists
- HOK's and Hooks to send HTTP requests on component mount.
- Common logic to abort pending HTTP requests on component unmount
- API to implement different scenarios while sending HTTP requests.
Why do we need this module:
- Standardized state management
- Write less code
import { usePrefetchResource } from '@cranium/resource'
export function MyComponent() {
// GET /users on component mount, and automatically abort request on unmount
const { data, errors, isLoading, fetch, clear } = usePrefetchResource('users')
}
- 1 module to send REST and GraphQL requests
- Easy to debug with redux devtools
- Use all power of Redux without writing any actions and reducers
- Share data across components
- There are a lot of different HOCs/Hooks that implements most common tasks. That will give you more time to focus on UI/UX.
Usage
import { ResourcesProvider } from '@cranium/resource';
const MyApp() {
<ResourcesProvider>
...
</ResourcesProvider>
}
Define Api module
import { ResourcesProvider } from '@cranium/resource';
import { API } from '@cranium/api'
const api = new API({
baseURL: '/api/v2/',
})
const MyApp() {
<ResourcesProvider api={api}>
...
</ResourcesProvider>
}
Define 401/403 Global handlers
import { ResourcesProvider } from '@cranium/resource';
import { API } from '@cranium/api'
const api = new API({
baseURL: '/api/v2/',
})
const MyApp() {
<ResourcesProvider api={api}>
<SessionHandler>
...
</SessionHandler>
</ResourcesProvider>
}
function SessionHandler() {
const clearAll = useClearAll();
useEffect(()=>{
/*
* add interceptor to handle 401 response and clear user info
*/
return api.interceptors.response.use({
onError(error: any) {
if (get(error, 'status') === 401) {
//clear local session data
setSession({});
//clear Resources in-memory data
clearAll()
}
return Promise.reject(error);
}
});
},[])
}
tip
For access managment you can use @cranium/access
module ;)