deno.land / x / jotai@v1.8.4 / benchmarks / subscribe-write.ts

subscribe-write.ts
نووسراو ببینە
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
#!/usr/bin/env npx ts-node
import { add, complete, cycle, save, suite } from 'benny'import { atom } from '../src/core/atom'import type { PrimitiveAtom } from '../src/core/atom'import { READ_ATOM, SUBSCRIBE_ATOM, WRITE_ATOM, createStore,} from '../src/core/store'
const cleanupFns = new Set<() => void>()const cleanup = () => { cleanupFns.forEach((fn) => fn()) cleanupFns.clear()}
const createStateWithAtoms = (n: number) => { let targetAtom: PrimitiveAtom<number> | undefined const store = createStore() for (let i = 0; i < n; ++i) { const a = atom(i) if (!targetAtom) { targetAtom = a } store[READ_ATOM](a) const unsub = store[SUBSCRIBE_ATOM](a, () => { store[READ_ATOM](a) }) cleanupFns.add(unsub) } if (!targetAtom) { throw new Error() } return [store, targetAtom] as const}
const main = async () => { for (const n of [2, 3, 4, 5, 6]) { await suite( `subscribe-write-${n}`, add(`atoms=${10 ** n}`, () => { cleanup() const [store, targetAtom] = createStateWithAtoms(10 ** n) return () => store[WRITE_ATOM](targetAtom, (c) => c + 1) }), cycle(), complete(), save({ folder: __dirname, file: `subscribe-write-${n}`, format: 'json', }), save({ folder: __dirname, file: `subscribe-write-${n}`, format: 'chart.html', }) ) }}
main()
jotai

Version Info

Tagged at
a year ago