-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowser-runtime-example.html
More file actions
388 lines (344 loc) · 10.4 KB
/
browser-runtime-example.html
File metadata and controls
388 lines (344 loc) · 10.4 KB
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Renderify Runtime Browser Example</title>
<style>
:root {
--bg: #f5f7fb;
--panel: #ffffff;
--text: #132238;
--muted: #4f6075;
--line: #d9e0ea;
--primary: #0f766e;
--primary-hover: #0b5b55;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI",
sans-serif;
color: var(--text);
background: radial-gradient(circle at 10% 20%, #dff6f3 0%, var(--bg) 42%);
}
.page {
max-width: 1120px;
margin: 0 auto;
padding: 20px;
}
h1 {
margin: 0 0 8px;
font-size: 24px;
}
.hint {
margin: 0 0 16px;
color: var(--muted);
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
}
.panel {
background: var(--panel);
border: 1px solid var(--line);
border-radius: 12px;
padding: 14px;
min-height: 160px;
}
.panel h2 {
margin: 0 0 10px;
font-size: 16px;
}
textarea {
width: 100%;
min-height: 86px;
resize: vertical;
border: 1px solid var(--line);
border-radius: 8px;
padding: 10px;
font: inherit;
}
.actions {
margin-top: 10px;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
button {
border: 1px solid var(--primary);
background: var(--primary);
color: #fff;
border-radius: 8px;
padding: 8px 12px;
font-weight: 600;
cursor: pointer;
}
button:hover {
background: var(--primary-hover);
border-color: var(--primary-hover);
}
button:disabled {
opacity: 0.45;
cursor: not-allowed;
}
.secondary {
color: var(--text);
background: #fff;
border-color: var(--line);
}
.secondary:hover {
background: #f2f6fc;
border-color: #c5d2e4;
}
.status {
margin-top: 8px;
color: var(--muted);
font-size: 13px;
}
.result {
border: 1px dashed #bdd4ca;
border-radius: 8px;
padding: 10px;
min-height: 70px;
background: #fbfffe;
}
pre {
margin: 0;
max-height: 280px;
overflow: auto;
background: #0d1b2b;
color: #d5e8ff;
border-radius: 8px;
padding: 10px;
font-size: 12px;
}
@media (max-width: 920px) {
.grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="page">
<h1>Renderify Runtime Browser Example</h1>
<p class="hint">
This page does not rely on a bundler and uses the local UMD bundle directly.
It includes a minimal demo LLM (for local demo use only).
</p>
<div class="grid">
<section class="panel">
<h2>Prompt</h2>
<textarea id="promptInput"
>Generate a runtime dashboard section</textarea
>
<div class="actions">
<button id="renderPromptButton">Render Prompt</button>
<button id="streamPromptButton" class="secondary">
Stream Prompt
</button>
<button id="clearButton" class="secondary">Clear</button>
</div>
<div id="status" class="status">Booting Renderify runtime...</div>
</section>
<section class="panel">
<h2>Rendered HTML</h2>
<div id="renderResult" class="result"></div>
</section>
<section class="panel">
<h2>Runtime Plan</h2>
<pre id="planJson">{}</pre>
</section>
<section class="panel">
<h2>Streaming Chunks</h2>
<pre id="streamJson">[]</pre>
</section>
</div>
</div>
<script type="importmap">
{
"imports": {
"@renderify/ir": "../../packages/ir/dist/ir.esm.js",
"@renderify/security": "../../packages/security/dist/security.esm.js"
}
}
</script>
<script src="../../packages/core/dist/core.umd.min.js"></script>
<script type="module">
import {
DefaultRuntimeManager,
JspmModuleLoader,
} from "../../packages/runtime/dist/runtime.esm.js";
const RenderifyCore = globalThis.RenderifyCore;
if (!RenderifyCore) {
throw new Error("RenderifyCore global is unavailable");
}
(async function () {
const statusEl = document.getElementById("status");
const promptInput = document.getElementById("promptInput");
const renderButton = document.getElementById("renderPromptButton");
const streamButton = document.getElementById("streamPromptButton");
const clearButton = document.getElementById("clearButton");
const renderResultEl = document.getElementById("renderResult");
const planJsonEl = document.getElementById("planJson");
const streamJsonEl = document.getElementById("streamJson");
let app;
function setBusy(busy) {
renderButton.disabled = busy;
streamButton.disabled = busy;
clearButton.disabled = busy;
}
function setStatus(text) {
statusEl.textContent = text;
}
function toJson(value) {
return JSON.stringify(value ?? {}, null, 2);
}
class DemoLLM {
configure() {}
setPromptTemplate() {}
getPromptTemplate() {
return undefined;
}
async generateResponse(req) {
return {
text: `Dashboard demo for: ${req.prompt}`,
model: "demo-llm",
};
}
async generateStructuredResponse(req) {
return {
text: JSON.stringify({
id: "browser_demo_plan",
version: 1,
capabilities: { domWrite: true },
root: {
type: "element",
tag: "section",
children: [
{
type: "element",
tag: "h2",
children: [{ type: "text", value: req.prompt }],
},
{
type: "element",
tag: "p",
children: [{ type: "text", value: "Runtime render ready." }],
},
],
},
}),
valid: true,
model: "demo-llm",
};
}
}
try {
app = RenderifyCore.createRenderifyApp({
config: new RenderifyCore.DefaultRenderifyConfig(),
context: new RenderifyCore.DefaultContextManager(),
llm: new DemoLLM(),
codegen: new RenderifyCore.DefaultCodeGenerator(),
runtime: new DefaultRuntimeManager({
moduleLoader: new JspmModuleLoader(),
}),
security: new RenderifyCore.DefaultSecurityChecker(),
performance: new RenderifyCore.DefaultPerformanceOptimizer(),
ui: new RenderifyCore.DefaultUIRenderer(),
customization: new RenderifyCore.DefaultCustomizationEngine(),
});
await app.start();
setStatus("Renderify runtime ready.");
} catch (error) {
setStatus(
"Boot failed: " +
(error && error.message ? error.message : String(error)),
);
setBusy(true);
return;
}
renderButton.addEventListener("click", async function () {
const prompt = promptInput.value.trim();
if (!prompt) {
setStatus("Prompt cannot be empty.");
return;
}
setBusy(true);
setStatus("Rendering prompt...");
try {
const result = await app.renderPrompt(prompt);
renderResultEl.innerHTML = result.html;
planJsonEl.textContent = toJson(result.plan);
streamJsonEl.textContent = "[]";
setStatus(
"Rendered. planId=" +
result.plan.id +
" version=" +
result.plan.version,
);
} catch (error) {
setStatus(
"Render failed: " +
(error && error.message ? error.message : String(error)),
);
} finally {
setBusy(false);
}
});
streamButton.addEventListener("click", async function () {
const prompt = promptInput.value.trim();
if (!prompt) {
setStatus("Prompt cannot be empty.");
return;
}
setBusy(true);
setStatus("Streaming prompt...");
const chunks = [];
try {
for await (const chunk of app.renderPromptStream(prompt, {
previewEveryChunks: 1,
})) {
chunks.push({
type: chunk.type,
planId: chunk.planId ?? null,
llmTextLength: String(chunk.llmText ?? "").length,
});
if (chunk.html) {
renderResultEl.innerHTML = chunk.html;
}
if (chunk.type === "final" && chunk.final) {
planJsonEl.textContent = toJson(chunk.final.plan);
}
}
streamJsonEl.textContent = toJson(chunks);
setStatus("Stream complete.");
} catch (error) {
setStatus(
"Stream failed: " +
(error && error.message ? error.message : String(error)),
);
} finally {
setBusy(false);
}
});
clearButton.addEventListener("click", function () {
renderResultEl.innerHTML = "";
planJsonEl.textContent = "{}";
streamJsonEl.textContent = "[]";
setStatus("Cleared.");
setBusy(false);
});
window.addEventListener("beforeunload", function () {
if (app && typeof app.stop === "function") {
app.stop().catch(function () {});
}
});
})();
</script>
</body>
</html>