forked from mobxjs/mobx-react-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
useAsObservableSource.deprecated.test.tsx
304 lines (264 loc) · 9.69 KB
/
useAsObservableSource.deprecated.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
import { act, cleanup, render } from "@testing-library/react"
import { renderHook } from "@testing-library/react-hooks"
import { autorun, configure, observable } from "mobx"
import * as React from "react"
import { useEffect, useState } from "react"
import { Observer, observer, useAsObservableSource, useLocalStore } from "../src"
import { resetMobx } from "./utils"
afterEach(cleanup)
afterEach(resetMobx)
describe("base useAsObservableSource should work", () => {
it("with <Observer>", () => {
let counterRender = 0
let observerRender = 0
function Counter({ multiplier }: { multiplier: number }) {
counterRender++
const observableProps = useAsObservableSource({ multiplier })
const store = useLocalStore(() => ({
count: 10,
get multiplied() {
return observableProps.multiplier * this.count
},
inc() {
this.count += 1
}
}))
return (
<Observer>
{() => {
observerRender++
return (
<div>
Multiplied count: <span>{store.multiplied}</span>
<button id="inc" onClick={store.inc}>
Increment
</button>
</div>
)
}}
</Observer>
)
}
function Parent() {
const [multiplier, setMultiplier] = useState(1)
return (
<div>
<Counter multiplier={multiplier} />
<button id="incmultiplier" onClick={() => setMultiplier(m => m + 1)} />
</div>
)
}
const { container } = render(<Parent />)
expect(container.querySelector("span")!.innerHTML).toBe("10")
expect(counterRender).toBe(1)
expect(observerRender).toBe(1)
act(() => {
;(container.querySelector("#inc")! as any).click()
})
expect(container.querySelector("span")!.innerHTML).toBe("11")
expect(counterRender).toBe(1)
expect(observerRender).toBe(2)
act(() => {
;(container.querySelector("#incmultiplier")! as any).click()
})
expect(container.querySelector("span")!.innerHTML).toBe("22")
expect(counterRender).toBe(2)
expect(observerRender).toBe(3)
})
it("with observer()", () => {
let counterRender = 0
const Counter = observer(({ multiplier }: { multiplier: number }) => {
counterRender++
const observableProps = useAsObservableSource({ multiplier })
const store = useLocalStore(() => ({
count: 10,
get multiplied() {
return observableProps.multiplier * this.count
},
inc() {
this.count += 1
}
}))
return (
<div>
Multiplied count: <span>{store.multiplied}</span>
<button id="inc" onClick={store.inc}>
Increment
</button>
</div>
)
})
function Parent() {
const [multiplier, setMultiplier] = useState(1)
return (
<div>
<Counter multiplier={multiplier} />
<button id="incmultiplier" onClick={() => setMultiplier(m => m + 1)} />
</div>
)
}
const { container } = render(<Parent />)
expect(container.querySelector("span")!.innerHTML).toBe("10")
expect(counterRender).toBe(1)
act(() => {
;(container.querySelector("#inc")! as any).click()
})
expect(container.querySelector("span")!.innerHTML).toBe("11")
expect(counterRender).toBe(2)
act(() => {
;(container.querySelector("#incmultiplier")! as any).click()
})
expect(container.querySelector("span")!.innerHTML).toBe("22")
expect(counterRender).toBe(4) // TODO: should be 3
})
})
test("useAsObservableSource with effects should work", () => {
const multiplierSeenByEffect: number[] = []
const valuesSeenByEffect: number[] = []
const thingsSeenByEffect: Array<[number, number, number]> = []
function Counter({ multiplier }: { multiplier: number }) {
const observableProps = useAsObservableSource({ multiplier })
const store = useLocalStore(() => ({
count: 10,
get multiplied() {
return observableProps.multiplier * this.count
},
inc() {
this.count += 1
}
}))
useEffect(
() =>
autorun(() => {
multiplierSeenByEffect.push(observableProps.multiplier)
}),
[]
)
useEffect(
() =>
autorun(() => {
valuesSeenByEffect.push(store.count)
}),
[]
)
useEffect(
() =>
autorun(() => {
thingsSeenByEffect.push([
observableProps.multiplier,
store.multiplied,
multiplier
]) // multiplier is trapped!
}),
[]
)
return (
<button id="inc" onClick={store.inc}>
Increment
</button>
)
}
function Parent() {
const [multiplier, setMultiplier] = useState(1)
return (
<div>
<Counter multiplier={multiplier} />
<button id="incmultiplier" onClick={() => setMultiplier(m => m + 1)} />
</div>
)
}
const { container } = render(<Parent />)
act(() => {
;(container.querySelector("#inc")! as any).click()
})
act(() => {
;(container.querySelector("#incmultiplier")! as any).click()
})
expect(valuesSeenByEffect).toEqual([10, 11])
expect(multiplierSeenByEffect).toEqual([1, 2])
expect(thingsSeenByEffect).toEqual([
[1, 10, 1],
[1, 11, 1],
[2, 22, 1]
])
})
describe("combining observer with props and stores", () => {
it("keeps track of observable values", () => {
const TestComponent = observer((props: any) => {
const localStore = useLocalStore(() => ({
get value() {
return props.store.x + 5 * props.store.y
}
}))
return <div>{localStore.value}</div>
})
const store = observable({ x: 5, y: 1 })
const { container } = render(<TestComponent store={store} />)
const div = container.querySelector("div")!
expect(div.textContent).toBe("10")
act(() => {
store.y = 2
})
expect(div.textContent).toBe("15")
act(() => {
store.x = 10
})
expect(div.textContent).toBe("20")
})
it("allows non-observables to be used if specified as as source", () => {
const renderedValues: number[] = []
const TestComponent = observer((props: any) => {
const obsProps = useAsObservableSource({ y: props.y })
const localStore = useLocalStore(() => ({
get value() {
return props.store.x + 5 * obsProps.y
}
}))
renderedValues.push(localStore.value)
return <div>{localStore.value}</div>
})
const store = observable({ x: 5 })
const { container, rerender } = render(<TestComponent store={store} y={1} />)
const div = container.querySelector("div")!
expect(div.textContent).toBe("10")
rerender(<TestComponent store={store} y={2} />)
expect(div.textContent).toBe("15")
act(() => {
store.x = 10
})
expect(renderedValues).toEqual([10, 15, 15, 20]) // TODO: should have one 15 less
// TODO: re-enable this line. When debugging, the correct value is returned from render,
// which is also visible with renderedValues, however, querying the dom doesn't show the correct result
// possible a bug with @testing-library/react?
// expect(container.querySelector("div")!.textContent).toBe("20") // TODO: somehow this change is not visible in the tester!
})
})
describe("enforcing actions", () => {
it("'never' should work", () => {
configure({ enforceActions: "never" })
const { result } = renderHook(() => {
const [thing, setThing] = React.useState("world")
useAsObservableSource({ hello: thing })
useEffect(() => setThing("react"), [])
})
expect(result.error).not.toBeDefined()
})
it("only when 'observed' should work", () => {
configure({ enforceActions: "observed" })
const { result } = renderHook(() => {
const [thing, setThing] = React.useState("world")
useAsObservableSource({ hello: thing })
useEffect(() => setThing("react"), [])
})
expect(result.error).not.toBeDefined()
})
it("'always' should work", () => {
configure({ enforceActions: "always" })
const { result } = renderHook(() => {
const [thing, setThing] = React.useState("world")
useAsObservableSource({ hello: thing })
useEffect(() => setThing("react"), [])
})
expect(result.error).not.toBeDefined()
})
})