deno.land / x / jotai@v1.8.4 / tests / utils / atomWithDefault.test.tsx

atomWithDefault.test.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import { StrictMode, Suspense } from 'react'import { fireEvent, render } from '@testing-library/react'import { atom, useAtom } from 'jotai'import { RESET, atomWithDefault } from 'jotai/utils'import { getTestProvider } from '../testUtils'
const Provider = getTestProvider()
it('simple sync get default', async () => { const count1Atom = atom(1) const count2Atom = atomWithDefault((get) => get(count1Atom) * 2)
const Counter = () => { const [count1, setCount1] = useAtom(count1Atom) const [count2, setCount2] = useAtom(count2Atom) return ( <> <div> count1: {count1}, count2: {count2} </div> <button onClick={() => setCount1((c) => c + 1)}>button1</button> <button onClick={() => setCount2((c) => c + 1)}>button2</button> </> ) }
const { findByText, getByText } = render( <StrictMode> <Provider> <Counter /> </Provider> </StrictMode> )
await findByText('count1: 1, count2: 2')
fireEvent.click(getByText('button1')) await findByText('count1: 2, count2: 4')
fireEvent.click(getByText('button2')) await findByText('count1: 2, count2: 5')
fireEvent.click(getByText('button1')) await findByText('count1: 3, count2: 5')})
it('simple async get default', async () => { const count1Atom = atom(1) const count2Atom = atomWithDefault(async (get) => { await new Promise((r) => setTimeout(r, 100)) return get(count1Atom) * 2 })
const Counter = () => { const [count1, setCount1] = useAtom(count1Atom) const [count2, setCount2] = useAtom(count2Atom) return ( <> <div> count1: {count1}, count2: {count2} </div> <button onClick={() => setCount1((c) => c + 1)}>button1</button> <button onClick={() => setCount2((c) => c + 1)}>button2</button> </> ) }
const { findByText, getByText } = render( <StrictMode> <Provider> <Suspense fallback="loading"> <Counter /> </Suspense> </Provider> </StrictMode> )
await findByText('loading') await findByText('count1: 1, count2: 2')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('button1')) await findByText('loading') await findByText('count1: 2, count2: 4')
fireEvent.click(getByText('button2')) await findByText('count1: 2, count2: 5')
fireEvent.click(getByText('button1')) await findByText('count1: 3, count2: 5')})
it('refresh sync atoms to default values', async () => { const count1Atom = atom(1) const count2Atom = atomWithDefault((get) => get(count1Atom) * 2)
const Counter = () => { const [count1, setCount1] = useAtom(count1Atom) const [count2, setCount2] = useAtom(count2Atom) return ( <> <div> count1: {count1}, count2: {count2} </div> <button onClick={() => setCount1((c) => c + 1)}>button1</button> <button onClick={() => setCount2((c) => c + 1)}>button2</button> <button onClick={() => setCount2(RESET)}>Refresh count2</button> </> ) }
const { findByText, getByText } = render( <StrictMode> <Provider> <Counter /> </Provider> </StrictMode> )
await findByText('count1: 1, count2: 2')
fireEvent.click(getByText('button1')) await findByText('count1: 2, count2: 4')
fireEvent.click(getByText('button2')) await findByText('count1: 2, count2: 5')
fireEvent.click(getByText('button1')) await findByText('count1: 3, count2: 5')
fireEvent.click(getByText('Refresh count2')) await findByText('count1: 3, count2: 6')
fireEvent.click(getByText('button1')) await findByText('count1: 4, count2: 8')})
it('refresh async atoms to default values', async () => { const count1Atom = atom(1) const count2Atom = atomWithDefault(async (get) => { await new Promise((r) => setTimeout(r, 100)) return get(count1Atom) * 2 })
const Counter = () => { const [count1, setCount1] = useAtom(count1Atom) const [count2, setCount2] = useAtom(count2Atom) return ( <> <div> count1: {count1}, count2: {count2} </div> <button onClick={() => setCount1((c) => c + 1)}>button1</button> <button onClick={() => setCount2((c) => c + 1)}>button2</button> <button onClick={() => setCount2(RESET)}>Refresh count2</button> </> ) }
const { findByText, getByText } = render( <StrictMode> <Provider> <Suspense fallback="loading"> <Counter /> </Suspense> </Provider> </StrictMode> )
await findByText('loading') await findByText('count1: 1, count2: 2')
await new Promise((r) => setTimeout(r, 100)) fireEvent.click(getByText('button1')) await findByText('loading') await findByText('count1: 2, count2: 4')
fireEvent.click(getByText('button2')) await findByText('count1: 2, count2: 5')
fireEvent.click(getByText('button1')) await findByText('count1: 3, count2: 5')
fireEvent.click(getByText('Refresh count2')) await findByText('count1: 3, count2: 6')
fireEvent.click(getByText('button1')) await findByText('count1: 4, count2: 8')})
jotai

Version Info

Tagged at
a year ago