-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add connect-to-state-with-url-hash.md
* Remove docs from persisting-store-data.md
- Loading branch information
1 parent
961452c
commit 8273c5a
Showing
2 changed files
with
48 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--- | ||
title: Connect to state with URL hash | ||
nav: 15 | ||
--- | ||
|
||
## State is connected with URL hash | ||
|
||
If you want to connect state of a store to URL hash, you can create your own hash storage. | ||
|
||
```ts | ||
import create from 'zustand' | ||
import { persist, StateStorage } from 'zustand/middleware' | ||
|
||
const hashStorage: StateStorage = { | ||
getItem: (key): string => { | ||
const searchParams = new URLSearchParams(location.hash.slice(1)) | ||
const storedValue = searchParams.get(key) | ||
return JSON.parse(storedValue) | ||
}, | ||
setItem: (key, newValue): void => { | ||
const searchParams = new URLSearchParams(location.hash.slice(1)) | ||
searchParams.set(key, JSON.stringify(newValue)) | ||
location.hash = searchParams.toString() | ||
}, | ||
removeItem: (key): void => { | ||
const searchParams = new URLSearchParams(location.hash.slice(1)) | ||
searchParams.delete(key) | ||
location.hash = searchParams.toString() | ||
}, | ||
} | ||
|
||
export const useBoundStore = create( | ||
persist( | ||
(set, get) => ({ | ||
fishes: 0, | ||
addAFish: () => set({ fishes: get().fishes + 1 }), | ||
}), | ||
{ | ||
name: 'food-storage', // unique name | ||
getStorage: () => hashStorage, | ||
} | ||
) | ||
) | ||
``` | ||
|
||
## CodeSandbox Demo | ||
|
||
https://codesandbox.io/s/silly-fire-gsjbc7?file=/src/App.tsx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters