-
Notifications
You must be signed in to change notification settings - Fork 1
/
generate.js
220 lines (200 loc) · 5.53 KB
/
generate.js
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
// Script by Yue JIN @kingyue737
// https://github.com/vuetifyjs/vuetify/issues/14798#issuecomment-1139788615
import { readFileSync } from "fs";
import prettier from "prettier";
const webTypes = JSON.parse(
readFileSync("./node_modules/vuetify/dist/json/web-types.json")
);
const tags = webTypes.contributions.html.tags;
const blackList = ["VFlex", "VLayout"]; // Components not to define in global
function convertType(typeStr) {
switch (typeStr) {
case "array":
return "any[]";
case "function":
return "Function";
case "date":
return "Date";
case "regexp":
return "RegExp";
case "event":
return "Event";
default:
return typeStr;
}
}
function getPropType(attr) {
const attrType = attr.value.type;
if (attr.name == "rules" && attr.description?.includes("error message")) {
return "InputValidationRules";
}
if (typeof attrType === "string") {
return convertType(attrType);
} else {
return attrType.map((str) => convertType(str)).join("|");
}
}
function getDescription(obj) {
return obj.description ? `/** ${obj.description} */\n` : "";
}
function getSlotPropType(type) {
return type
.replaceAll("eventName", "eventName: string")
.replaceAll(':"', ":")
.replaceAll('",', ",")
.replaceAll('"}', "}")
.replace(/\/\/.*/, "")
.replaceAll("):", ")=>")
.replace(/(aria-[a-z]*):/g, '"$1":')
.replace(/ = \w*/g, "") // remove default values
.replaceAll("function", "Function")
.replaceAll("Function", "(...args: any[]) => any")
.replaceAll("object", "{ [key: keyof any]: any }")
.replaceAll("?boolean", "boolean | undefined");
}
function getSlotName(name) {
if (name === "header.<name>") {
return "[name:`header.${string}`]";
} else if (name === "item.<name>") {
return "[name:`item.${string}`]";
} else if (
name.startsWith("item.data-table") ||
name.startsWith("header.data-table")
) {
// Ts doesn't allow overriding template literals with more specific keys/values.
return `//@ts-expect-error\n '${name}'`;
}
return `'${name}'`;
}
function splitByComma(str) {
const result = [];
let current = "";
let level = 0;
for (let i = 0; i < str.length; i++) {
const char = str[i];
if (char === "{") {
level++;
}
if (char === "}") {
level--;
}
if (char === "," && level === 0) {
result.push(current);
current = "";
} else {
current += char;
}
}
result.push(current);
return result;
}
function getEventArguments(args) {
const _args = args
.replaceAll(':"', ":")
.replaceAll('",', ",")
.replaceAll('"}', "}")
.replaceAll("):", ")=>")
.replace(/ = \w*/g, "") // remove default values
.replaceAll("ClickEvent", "MouseEvent");
// event may have multiple arguments
const matches = splitByComma(_args)
.map((a, i) => `arg${i}:${convertType(a)}`)
.join(",");
return matches;
}
function getEventName(name) {
if (name === "<event>:row") {
return "[name:`${string}:row`]";
} else if (name.startsWith("click:row")) {
// Ts doesn't allow overriding template literals with more specific keys/values.
return `//@ts-expect-error\n '${name}'`;
}
return `'${name}'`;
}
const types = tags
.filter((vm) => !blackList.includes(vm.name))
.map(
(vm) =>
vm.name +
": DefineComponent<{" +
// Prop types:
vm.attributes
.map(
(attr) =>
getDescription(attr) +
`${attr.name.replace(/-./g, (x) =>
x[1].toUpperCase()
)}?: ${getPropType(attr)} | null`
)
.join("\n") +
"}" +
// Slot types:
(vm.slots?.length
? ",{$scopedSlots: Readonly<{\n" +
vm.slots
.map(
(slot) =>
getDescription(slot) +
`${getSlotName(slot.name)}:${
slot["vue-properties"]
? "(args: {" +
slot["vue-properties"]
.map(
(prop) => prop.name + ":" + getSlotPropType(prop.type)
)
.join("\n") +
"}) => VNode[]"
: "undefined"
}`
)
.join("\n") +
"}>}\n"
: ",{}") +
// Event types:
(vm.events?.length
? ",{},{},{},{},{},{\n" +
vm.events
.map(
(event) =>
getDescription(event) +
`${getEventName(event.name)}:(${getEventArguments(
event.arguments[0].type
)})=>void`
)
.join("\n") +
"}"
: "") +
">"
)
.join("\n\n");
console.log();
prettier
.format(
`
import type { DataTableHeader, DataOptions, CalendarTimestamp as VTimestamp } from 'vuetify'
import type VueComponent from "vue"
import type { DefineComponent, VNode } from "vue"
type eventHandler = Function
interface srcObject {
src: string
srcset?: string
lazySrc: string
aspect: number
}
export type InputValidationRule = (value: any) => string | boolean
// We define our own InputValidationRules because vuetify incorrectly does not include
// boolean as a valid array member in its definition of InputValidationRules.
export type InputValidationRules = (InputValidationRule | string | boolean)[]
declare module 'vue' {
export interface GlobalComponents {
${types}
}
}
export {}`,
{
filepath: "index.ts",
parser: "typescript",
semi: false,
}
)
.then((v) => console.log(v));