deno.land / x / jotai@v1.8.4 / docs / guides / debugging.mdx

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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
---title: Debuggingnav: 3.02---
In basic apps, `console.log` can be our best friend for debugging atoms, but when applications get bigger and we have more atoms to use, logging would not be a good way of debugging atoms.Jotai provides two ways of debugging atoms, **React Dev Tools** and **Redux Dev tools**. For reading values and simple debugging, React Dev Tools might suit you, but for more complicated tasks like Time-travelling and setting values, Redux Dev Tools would be a better option.
## Debug labels
It is worth mentioning that we have a concept called **Debug labels** in Jotai which may help us with debugging.By default each Jotai state has the label like `1:<no debugLabel>` with number being internal `key` assigned to each atom automatically. But you can add labels to atoms to help you distinguish them more easily with `debugLabel`.
```jsconst countAtom = atom(0)// countAtom's debugLabel by default is 'atom1'if (process.env.NODE_ENV !== 'production') { countAtom.debugLabel = 'count' // debugLabel is 'count' now}```
> Jotai provides a babel plugin that adds a debugLabel automatically to every atom, which makes things easier for us. for more info check out [jotai/babel](https://github.com/pmndrs/jotai/blob/main/docs/api/babel.mdx#plugin-debug-label)## Using React Dev Tools
You can use [React Dev Tools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi)to inspect Jotai state. To achieve that [useDebugValue](https://reactjs.org/docs/hooks-reference.html#usedebugvalue)is used inside custom hooks. Keep in mind that it only works in dev mode(such as `NODE_ENV === 'development'`).
### useAtom
`useAtom` calls `useDebugValue` for atom values, so if you select the component that consumes Jotai atoms in React Dev Tools, you would see "Atom" hooks for each atom that is used in the component along with the value it has right now.
### useAtomsDebugValue
`useAtomsDebugValue` catches all atoms in a component tree under Provider (or an entire tree for Provider-less mode), and `useDebugValue` for all atoms values.If you navigate to the component that has `useAtomsDebugValue` in the React Dev Tools, we can see a custom hook "AtomsDebugValue" which allows you to see all atom values and their dependents.
One use case is to put the hook just under the `Provider` component:
```jsxconst DebugAtoms = () => { useAtomsDebugValue() return null}
const Root = () => ( <Provider> <DebugAtoms /> <App /> </Provider>)```
## Using Redux DevTools
You can also use [Redux DevTools](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd)to inspect atoms, with many features like Time-travelling and value dispatching.
### [useAtomDevtools](https://jotai.org/docs/api/devtools#use-atom-devtools)
> `useAtomDevtools` is a React hook that manages ReduxDevTools integration for a particular atom.If you have a specific atom in mind that you may want to debug, `useAtomDevtools` can be a good option.
```jsconst countAtom = atom(0)// setting countAtom.debugLabel is recommended if we have more atoms
function Counter() { const [count, setCount] = useAtom(countAtom) useAtomDevtools(countAtom)```
Now if we try `setCount`, we can see that the Redux Dev Tools logs those changes immediately.
![](https://cdn.discordapp.com/attachments/688751221464367186/930857764719329290/unknown.png)#### Time travel
Sometimes we need to switch to a specific value of our atoms' state, with Time travelling this is possible.You can hover on each action you see in the devtools and see the **Jump** option there, with clicking it you'd be able to switch to that specific value.
#### Pause
If we don't record changes on atoms, we can stop watching those using the **Pausing** feature.
![](https://cdn.discordapp.com/attachments/688751221464367186/930893033925378118/unknown.png)#### Dispatch
It's possible to set values on atoms with the **Dispatch** feature. You can do that by clicking on the **Show Dispatcher** button.![](https://cdn.discordapp.com/attachments/688751221464367186/930895694846361680/unknown.png)This would set the `countAtoms`'s value to `5`.
> We should note that the value will be parsed by JSON.parse, so pass supported values.### [useAtomsDevtools](https://jotai.org/docs/api/devtools#use-atoms-devtools)
> `useAtomsDevtools` is a catch-all version of `useAtomDevtools` where it shows all atoms in the store instead of showing a specific one.We'd recommend this hook if you want to keep track of all of your atoms in one place. It means every action on every atom that is placed in the bottom of this hook (in the React tree) will be catched by the Redux Dev Tools.
Every feature of `useAtomDevtools` is supported in this hook, but there's an extra feature, which includes giving more information about atoms dependents like:
```json{ "values": { "atom1:count": 0, "atom2:doubleCount": 0, "atom3:half": 0, "atom4:sum": 0 }, "dependents": { "atom1:count": ["atom1:count", "atom2:doubleCount", "atom4:sum"], "atom2:doubleCount": ["atom3:half", "atom4:sum"], "atom3:half": ["atom4:sum"], "atom4:sum": [] }}```
## Frozen Atoms
To find bugs where you accidentally tried to mutate objects stored in atoms youcould use [`freezeAtom`](../utils/freeze-atom.mdx) or[`freezeAtomCreator`](../utils/freeze-atom-creator.mdx#) from `jotai/utils` bundle.Which returns atoms value that is deeply freezed with `Object.freeze`.
jotai

Version Info

Tagged at
a year ago