forked from Yuyz0112/dewhale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvelte-ui-gen.ts
180 lines (150 loc) · 3.83 KB
/
svelte-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
import {
getCode,
octokit,
vxDevPrefix,
applyPR,
composeWorkflow,
shadcnRules,
getFileContent,
} from "./common.ts";
import { join } from "https://deno.land/[email protected]/path/mod.ts";
import { parse, print, visit } from "npm:recast";
import "npm:@babel/parser";
import tsParser from "npm:recast/parsers/babel-ts.js";
const svelteUiGenLabel = `svelte-ui-gen`;
const __dirname = new URL(".", import.meta.url).pathname;
const systemPrompt = await Deno.readTextFile(
join(__dirname, "./svelte-ui-gen.md")
);
const PLACEHOLDER_CODE = `<p>vx.dev placeholder</p>`;
function getCurrentCode(owner: string, repo: string, branch: string) {
return getFileContent(
owner,
repo,
branch,
"svelte-preview-ui/src/routes/preview.svelte"
);
}
function refineCode(code: string) {
const regex = /<script>([\s\S]*?)<\/script>/;
const matches = code.match(regex);
if (!matches) {
return code;
}
const scriptContent = matches[1];
const ast = parse(scriptContent, {
parser: tsParser,
});
let importStr = "";
visit(ast, {
visitImportDeclaration(p) {
const isRootUi =
p.node.source.type === "StringLiteral" &&
p.node.source.value === "$lib/components/ui";
if (isRootUi) {
const components = (p.node.specifiers || [])
.map((c) => c.local?.name.toString() || "")
.filter(Boolean);
importStr = mapShadcnImports(components).importStr;
p.replace();
}
this.traverse(p);
},
});
return code.replace(scriptContent, "\n" + importStr + print(ast).code);
}
function mapShadcnImports(used: string[]) {
const importMap: Record<string, Set<string>> = {};
for (const u of used) {
let source = "";
for (const rule of shadcnRules) {
if (new RegExp(rule.matcher).test(u)) {
source = rule.source.replace("@/components", "$lib/components");
break;
}
}
if (!source) {
continue;
}
if (!importMap[source]) {
importMap[source] = new Set();
}
importMap[source].add(u);
}
let importStr = "";
for (const key in importMap) {
const statement = `import { ${Array.from(importMap[key]).join(
", "
)} } from '${key}';`;
importStr += `${statement}\r\n`;
}
return { importStr };
}
async function main() {
const result = await composeWorkflow(svelteUiGenLabel, {
"svelte-preview-ui/src/routes/preview.svelte": 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:
\`\`\`svelte
${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,
{
"svelte-preview-ui/src/routes/preview.svelte": refineCode(code),
"scripts/build-task": "svelte-preview-ui",
},
`${vxDevPrefix} prompt:\r\n${commitMsg}`,
[svelteUiGenLabel]
);
if (description) {
await octokit.rest.issues.createComment({
owner,
repo,
issue_number: pr.number,
body: `${vxDevPrefix}: ${description}`,
});
}
}
main();