forked from Yuyz0112/dewhale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui-gen.ts
228 lines (197 loc) · 5.08 KB
/
ui-gen.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
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
import { join } from "https://deno.land/[email protected]/path/mod.ts";
import { parse, print, visit, types } from "npm:recast";
import "npm:@babel/parser";
import tsParser from "npm:recast/parsers/babel-ts.js";
import {
getCode,
octokit,
vxDevPrefix,
applyPR,
lucideIcons,
composeWorkflow,
shadcnRules,
getFileContent,
} from "./common.ts";
const uiGenLabel = `ui-gen`;
const __dirname = new URL(".", import.meta.url).pathname;
const systemPrompt = await Deno.readTextFile(join(__dirname, "./ui-gen.md"));
const PLACEHOLDER_CODE = `export default function VxDev() { return <p>vx.dev placeholder</p>; }`;
function getCurrentCode(owner: string, repo: string, branch: string) {
return getFileContent(owner, repo, branch, "preview-ui/src/Preview.jsx");
}
function mapImports(used: string[], declarations: Set<string>) {
const importMap: Record<string, Set<string>> = {};
const fallbacks: string[] = [];
for (const u of used) {
let source = "";
let fallback = false;
for (const rule of shadcnRules) {
if (new RegExp(rule.matcher).test(u)) {
source = rule.source;
break;
}
}
if (!source && lucideIcons[u]) {
source = "lucide-react";
}
if (!source && declarations.has(u)) {
continue;
}
if (!source) {
// fallback to Home icon
source = "lucide-react";
fallback = true;
fallbacks.push(u);
}
if (!importMap[source]) {
importMap[source] = new Set();
}
importMap[source].add(fallback ? "Home" : u);
}
let importStr = "";
for (const key in importMap) {
const statement = `import { ${Array.from(importMap[key]).join(
", "
)} } from '${key}';`;
importStr += `${statement}\r\n`;
}
return { importStr, fallbacks };
}
function refineCode(code: string) {
const fromReact = new Set<string>();
const usedVariables = new Set<string>();
const declarations = new Set<string>();
const ast = parse(code, {
parser: tsParser,
});
visit(ast, {
visitImportDeclaration(p) {
const isReact =
p.node.source.type === "StringLiteral" &&
p.node.source.value === "react";
if (!isReact) {
p.replace();
} else {
for (const s of p.node.specifiers || []) {
fromReact.add(s.local?.name.toString() || "");
}
}
this.traverse(p);
},
});
visit(ast, {
visitIdentifier(p) {
const varName = p.node.name;
const isDecl = ["VariableDeclarator", "FunctionDeclaration"].includes(
p.parent?.node.type
);
if (isDecl) {
declarations.add(varName);
}
// TODO: collect with a better strategy
// if (!fromReact.has(varName) && !isDecl) {
// usedVariables.add(varName);
// }
this.traverse(p);
},
visitJSXIdentifier(p) {
const elName = p.node.name;
if (
p.parent?.node.type === "JSXOpeningElement" &&
elName[0].toUpperCase() === elName[0] &&
!fromReact.has(elName)
) {
usedVariables.add(elName);
}
this.traverse(p);
},
});
const { importStr, fallbacks } = mapImports(
Array.from(usedVariables),
declarations
);
visit(ast, {
visitJSXIdentifier(p) {
const elName = p.node.name;
if (
["JSXOpeningElement", "JSXClosingElement"].includes(
p.parent?.node.type
) &&
elName[0].toUpperCase() === elName[0] &&
!fromReact.has(elName) &&
fallbacks.includes(elName)
) {
p.replace(types.builders.jsxIdentifier("div"));
}
this.traverse(p);
},
});
return importStr + print(ast).code;
}
async function main() {
const result = await composeWorkflow(uiGenLabel, {
"preview-ui/src/Preview.jsx": PLACEHOLDER_CODE,
});
if (!result) {
return;
}
const { commitMsg, images, owner, repo, branch, issue, pr } = result;
let { prompt } = result;
const currentCode = await getCurrentCode(owner, repo, branch);
if (currentCode !== PLACEHOLDER_CODE) {
prompt += `
Previously you already implemented the following code, use it as a reference and meet my new requirements:
\`\`\`jsx
${currentCode}
\`\`\`
`;
}
const { code, usage, description } = await getCode(
[
{
role: "system",
content: systemPrompt,
},
{
role: "user",
content: [
{
type: "text",
text: prompt,
},
...images.map(
(image) =>
({
type: "image_url",
image_url: {
url: image,
},
} as const)
),
],
},
],
"gpt-4-vision-preview"
);
console.log(JSON.stringify(usage, null, 2));
await applyPR(
owner,
repo,
issue.number,
branch,
{
"preview-ui/src/Preview.jsx": refineCode(code),
},
`${vxDevPrefix} prompt:\r\n${commitMsg}`,
[uiGenLabel]
);
if (description) {
await octokit.rest.issues.createComment({
owner,
repo,
issue_number: pr.number,
body: `${vxDevPrefix}: ${description}`,
});
}
}
main();