@adamldoyle/reduxjs-toolkit-monitored-slice
v1.1.1
Published
Allow easy creation of a monitored slice that's compatible with @reduxjs/toolkit. A monitored slice automatically manages the lifecycle of provided data by tracking when it's stale, when it's loading, or when it's available.
Downloads
7
Readme
reduxjs-toolkit-monitored-slice
Allow easy creation of a monitored slice that's compatible with @reduxjs/toolkit. A monitored slice automatically manages the lifecycle of provided data by tracking when it's stale, when it's loading, or when it's available.
Features
- If data is marked as stale, it's only reloaded if actively being monitored via
useMonitoredData
hook orContextProvider
component (both returned during slice creation). - Optional input params for loader function are provided by a redux selector, and the loader will automatically be called if the result from the selector ever changes. This allows making your slice data dependent on other redux store data without having to manually manage that dependency.
- Can configure if you want to return old data while slice is actively stale/loading or you can return something else instead (e.g. an empty array).
- Data/actions are provided via selectors/slice actions as well as hook results, so you can use whatever is most convenient.
- Multiple components can monitor the same slice and data will only be loaded once and shared across all of them.
Installation
yarn add @adamldoyle/reduxjs-toolkit-monitored-slice
Examples
Multiple examples provided via Storybook
- https://adamldoyle-reduxjs-toolkit-monitored-slice-storybook.netlify.app/
OR
yarn storybook
Development
yarn install
yarn build
Contributors
License
MIT