forked from pmndrs/jotai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple-read.ts
executable file
·48 lines (44 loc) · 1.1 KB
/
simple-read.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
#!/usr/bin/env npx ts-node
import { add, complete, cycle, save, suite } from 'benny'
import { atom } from '../src/vanilla/atom.ts'
import type { PrimitiveAtom } from '../src/vanilla/atom.ts'
import { createStore } from '../src/vanilla/store.ts'
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.set(a, i)
}
if (!targetAtom) {
throw new Error()
}
return [store, targetAtom] as const
}
const main = async () => {
for (const n of [2, 3, 4, 5, 6]) {
await suite(
`simple-read-${n}`,
add(`atoms=${10 ** n}`, () => {
const [store, targetAtom] = createStateWithAtoms(10 ** n)
return () => store.get(targetAtom)
}),
cycle(),
complete(),
save({
folder: __dirname,
file: `simple-read-${n}`,
format: 'json',
}),
save({
folder: __dirname,
file: `simple-read-${n}`,
format: 'chart.html',
})
)
}
}
main()