-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgenerate.ts
96 lines (79 loc) · 2.11 KB
/
generate.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
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
import fs from 'fs-extra'
async function generateMath() {
const ignorelist = [
'random',
]
const rename = {
log: 'logE',
}
const lines = [
'import { reactify } from \'@vueuse/shared\'',
'',
]
Object.getOwnPropertyNames(Math)
.filter(key => !ignorelist.includes(key))
.forEach((key) => {
// @ts-expect-error cast
const value = Math[key]
if (typeof value === 'function') {
lines.push('/*@__PURE__*/')
// @ts-expect-error cast
lines.push(`export const ${rename[key] || key} = reactify(Math.${key})`)
}
})
lines.push('')
await fs.writeFile('src/math/generated.ts', lines.join('\n'), 'utf-8')
}
async function generateString() {
const ignorelist: string[] = [
'toString',
'constructor',
'valueOf',
]
const lines = [
'import { reactifyString } from \'../utils\'',
'',
'const __proto = String.prototype',
'',
]
Object.getOwnPropertyNames(String.prototype)
.filter(key => !ignorelist.includes(key))
.forEach((key) => {
// @ts-expect-error cast
const value = String.prototype[key]
if (typeof value === 'function') {
lines.push('/*@__PURE__*/')
lines.push(`export const ${key} = reactifyString(__proto.${key})`)
}
})
lines.push('')
await fs.writeFile('src/string/generated.ts', lines.join('\n'), 'utf-8')
}
async function generateNumber() {
const ignorelist: string[] = [
'toString',
'constructor',
'valueOf',
]
const lines = [
'import { reactifyNumber } from \'../utils\'',
'',
'const __proto = Number.prototype',
'',
]
Object.getOwnPropertyNames(Number.prototype)
.filter(key => !ignorelist.includes(key))
.forEach((key) => {
// @ts-expect-error cast
const value = Number.prototype[KeyObject]
if (typeof value === 'function') {
lines.push('/*@__PURE__*/')
lines.push(`export const ${key} = reactifyNumber(__proto.${key})`)
}
})
lines.push('')
await fs.writeFile('src/number/generated.ts', lines.join('\n'), 'utf-8')
}
generateMath()
generateString()
generateNumber()