-
-
Notifications
You must be signed in to change notification settings - Fork 190
/
use-local-store.tsx
53 lines (48 loc) · 919 Bytes
/
use-local-store.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { useLocalStore, Action, action } from 'easy-peasy';
interface StoreModel {
count: number;
inc: Action<StoreModel>;
}
const [state, actions, store] = useLocalStore<StoreModel>(() => ({
count: 0,
inc: action((state) => {
state.count += 1;
}),
}));
state.count + 1;
actions.inc();
store.getState().count + 1;
useLocalStore<StoreModel>(
() => ({
count: 0,
inc: action((state) => {
state.count += 1;
}),
}),
['foo', 123],
);
useLocalStore<StoreModel>(
(prevState) => {
if (prevState != null) {
prevState.count + 1;
}
return {
count: 0,
inc: action((state) => {
state.count += 1;
}),
};
},
['foo', 123],
(prevState, prevConfig) => {
if (prevState != null) {
prevState.count + 1;
}
if (prevConfig != null) {
`${prevConfig.name}foo`;
}
return {
name: 'MyLocalStore',
};
},
);