Package Exports
- swr-global-state
- swr-global-state/dist/index.js
- swr-global-state/dist/swr-global-state.esm.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (swr-global-state) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
♻️ SWR Global State
Zero-setup & simple state management for React Components with SWR. So you can focus on your awesome React Project and not waste another afternoon on the setup & configuring your global state. 🌄
Table of Contents
Getting Started
Install
npm install swr-global-state
//or
yarn add swr-global-state
Usage
Create a store object
Create a new file for your global state on your root directory. Example: stores/app.js
// file: stores/app.js
export const APP_COUNT = {
key: "@app/count", // (Required) state key
initial: 0, // <- (Required) initial state
persist: false // <- (Optional) if you want to persist the state to local storage, then set it to true.
};
Using store on your component
// file: components/SetCountComponent.js
import { useStore } from "swr-global-state";
import { APP_COUNT } from "stores/app";
function SetCountComponent() {
const [count, setCount] = useStore(APP_COUNT);
return (
<div>
<button onClick={() => setCount(count - 1)}>
(-) Decrease Count
</button>
<button onClick={() => setCount(count + 1)}>
(+) Increase Count
</button>
</div>
);
}
export default SetCountComponent;
// file: components/GetCountComponent.js
import { useStore } from "swr-global-state";
import { APP_COUNT } from "stores/app";
function GetCountComponent() {
const [count] = useStore(APP_COUNT);
return (
<div>
<p>Current Count: {count}</p>
</div>
);
}
export default GetCountComponent;
TypeScript
// file: stores/app.ts
import type { Store } from "swr-global-state";
export const APP_COUNT: Store<number> = {
key: "@app/count",
initial: 0,
persist: false
};
// interface Store is generic type. It must be passed type parameter
Best Practice
Custom hooks
Instead of creating store object in stores/app.js
file, you can wrap it into custom hooks. Example: stores/count.js
.
// file: stores/count.js
import useStore from "swr-global-state";
const useCount = () => useStore({
key: "@app/count",
initial: 0,
persist: true
});
export default useCount;
Using store on your component
// file: components/SetCountComponent.js
import useCount from "stores/count";
function SetCountComponent() {
const [, setCount] = useCount(); // <- `[, ]` skipping first index of the array.
return (
<div>
<button onClick={() => setCount(prev => prev - 1)}>
(-) Decrease Count
</button>
<button onClick={() => setCount(prev => prev + 1)}>
(+) Increase Count
</button>
</div>
);
}
export default SetCountComponent;
// file: components/GetCountComponent.js
import useCount from "stores/count";
function GetCountComponent() {
const [count] = useCount();
return (
<div>
<p>Current Count: {count}</p>
</div>
);
}
export default GetCountComponent;
Demo
You can see demo repository here
Publishing
- Before pushing your changes to Github, make sure that
version
inpackage.json
is changed to newest version. Then runnpm install
for synchronize it topackage-lock.json
- After your changes have been merged on branch
main
, you can publish the packages by creating new Relase here: https://github.com/gadingnst/swr-global-state/releases/new - Create new
tag
, make sure thetag
name is same as theversion
inpackage.json
. - You can write Release title and notes here. Or you can use auto-generated release title and notes.
- Click
Publish Release
button, then wait the package to be published.