deno.land / x / jotai@v1.8.4 / tests / optics / focus-lens.test.tsx

focus-lens.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import { StrictMode, Suspense } from 'react'import { fireEvent, render } from '@testing-library/react'import * as O from 'optics-ts'import { atom, useAtom } from 'jotai'import type { SetStateAction } from 'jotai'import { focusAtom } from 'jotai/optics'import { getTestProvider } from '../testUtils'
const Provider = getTestProvider()
const succ = (input: number) => input + 1
it('basic derivation using focus works', async () => { const bigAtom = atom({ a: 0 }) const focusFunction = (optic: O.OpticFor<{ a: number }>) => optic.prop('a')
const Counter = () => { const [count, setCount] = useAtom(focusAtom(bigAtom, focusFunction)) const [bigAtomValue] = useAtom(bigAtom) return ( <> <div>bigAtom: {JSON.stringify(bigAtomValue)}</div> <div>count: {count}</div> <button onClick={() => setCount(succ)}>incr</button> <button onClick={() => setCount(0)}>set zero</button> </> ) }
const { getByText, findByText } = render( <StrictMode> <Provider> <Counter /> </Provider> </StrictMode> )
await findByText('count: 0') await findByText('bigAtom: {"a":0}')
fireEvent.click(getByText('incr')) await findByText('count: 1') await findByText('bigAtom: {"a":1}')
fireEvent.click(getByText('incr')) await findByText('count: 2') await findByText('bigAtom: {"a":2}')
fireEvent.click(getByText('set zero')) await findByText('count: 0') await findByText('bigAtom: {"a":0}')})
it('focus on an atom works', async () => { const bigAtom = atom({ a: 0 }) const focusFunction = (optic: O.OpticFor<{ a: number }>) => optic.prop('a')
const Counter = () => { const [count, setCount] = useAtom(focusAtom(bigAtom, focusFunction)) const [bigAtomValue] = useAtom(bigAtom) return ( <> <div>bigAtom: {JSON.stringify(bigAtomValue)}</div> <div>count: {count}</div> <button onClick={() => setCount(succ)}>button</button> </> ) }
const { getByText, findByText } = render( <StrictMode> <Provider> <Counter /> </Provider> </StrictMode> )
await findByText('count: 0') await findByText('bigAtom: {"a":0}')
fireEvent.click(getByText('button')) await findByText('count: 1') await findByText('bigAtom: {"a":1}')})
it('double-focus on an atom works', async () => { const bigAtom = atom({ a: { b: 0 } }) const atomA = focusAtom(bigAtom, (optic) => optic.prop('a')) const atomB = focusAtom(atomA, (optic) => optic.prop('b'))
const Counter = () => { const [bigAtomValue, setBigAtom] = useAtom(bigAtom) const [atomAValue, setAtomA] = useAtom(atomA) const [atomBValue, setAtomB] = useAtom(atomB) return ( <> <div>bigAtom: {JSON.stringify(bigAtomValue)}</div> <div>atomA: {JSON.stringify(atomAValue)}</div> <div>atomB: {JSON.stringify(atomBValue)}</div> <button onClick={() => setBigAtom((v) => ({ a: { b: v.a.b + 1 } }))}> inc bigAtom </button> <button onClick={() => setAtomA((v) => ({ b: v.b + 2 }))}> inc atomA </button> <button onClick={() => setAtomB((v) => v + 3)}>inc atomB</button> </> ) }
const { getByText, findByText } = render( <StrictMode> <Provider> <Counter /> </Provider> </StrictMode> )
await findByText('bigAtom: {"a":{"b":0}}') await findByText('atomA: {"b":0}') await findByText('atomB: 0')
fireEvent.click(getByText('inc bigAtom')) await findByText('bigAtom: {"a":{"b":1}}') await findByText('atomA: {"b":1}') await findByText('atomB: 1')
fireEvent.click(getByText('inc atomA')) await findByText('bigAtom: {"a":{"b":3}}') await findByText('atomA: {"b":3}') await findByText('atomB: 3')
fireEvent.click(getByText('inc atomB')) await findByText('bigAtom: {"a":{"b":6}}') await findByText('atomA: {"b":6}') await findByText('atomB: 6')})
it('focus on async atom works', async () => { const baseAtom = atom({ count: 0 }) const asyncAtom = atom( (get) => Promise.resolve(get(baseAtom)), (_get, set, param: SetStateAction<{ count: number }>) => { set(baseAtom, param) } ) const focusFunction = (optic: O.OpticFor<{ count: number }>) => optic.prop('count')
const Counter = () => { const [count, setCount] = useAtom(focusAtom(asyncAtom, focusFunction)) const [asyncValue, setAsync] = useAtom(asyncAtom) const [baseValue, setBase] = useAtom(baseAtom) return ( <> <div>baseAtom: {JSON.stringify(baseValue)}</div> <div>asyncAtom: {JSON.stringify(asyncValue)}</div> <div>count: {count}</div> <button onClick={() => setCount(succ)}>incr count</button> <button onClick={() => setAsync((v) => ({ count: v.count + 1 }))}> incr async </button> <button onClick={() => setBase((v) => ({ count: v.count + 1 }))}> incr base </button> </> ) }
const { getByText, findByText } = render( <StrictMode> <Provider> <Suspense fallback={<div>Loading...</div>}> <Counter /> </Suspense> </Provider> </StrictMode> )
await findByText('baseAtom: {"count":0}') await findByText('asyncAtom: {"count":0}') await findByText('count: 0')
fireEvent.click(getByText('incr count')) await findByText('baseAtom: {"count":1}') await findByText('asyncAtom: {"count":1}') await findByText('count: 1')
fireEvent.click(getByText('incr async')) await findByText('baseAtom: {"count":2}') await findByText('asyncAtom: {"count":2}') await findByText('count: 2')
fireEvent.click(getByText('incr base')) await findByText('baseAtom: {"count":3}') await findByText('asyncAtom: {"count":3}') await findByText('count: 3')})
it('basic derivation using focus with scope works', async () => { const scope = Symbol() const bigAtom = atom({ a: 0 }) const focusFunction = (optic: O.OpticFor<{ a: number }>) => optic.prop('a')
const Counter = () => { const [count, setCount] = useAtom(focusAtom(bigAtom, focusFunction), scope) const [bigAtomValue] = useAtom(bigAtom, scope) return ( <> <div>bigAtom: {JSON.stringify(bigAtomValue)}</div> <div>count: {count}</div> <button onClick={() => setCount(succ)}>incr</button> </> ) }
const { getByText, findByText } = render( <StrictMode> <Provider scope={scope}> <Counter /> </Provider> </StrictMode> )
await findByText('count: 0') await findByText('bigAtom: {"a":0}')
fireEvent.click(getByText('incr')) await findByText('count: 1') await findByText('bigAtom: {"a":1}')})
jotai

Version Info

Tagged at
a year ago