-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathsnippet-result.tsx
294 lines (271 loc) · 9.07 KB
/
snippet-result.tsx
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
"use client";
import React from "react";
import Link from "next/link";
import { Play, Terminal } from "lucide-react";
import { Button } from "@/components/ui/button";
import { ArrowUpRight } from "lucide-react";
import { Code } from "@/components/docskit/code";
import { initSimnet, type Simnet } from "@hirosystems/clarinet-sdk-browser";
import { Cl } from "@stacks/transactions";
import { loadSandpackClient } from "@codesandbox/sandpack-client";
import type { SandboxSetup } from "@codesandbox/sandpack-client";
import type { Recipe } from "@/types/recipes";
interface SnippetResultProps {
recipe: Recipe;
code: string;
type: string;
dependencies: {
[key: string]: string;
};
}
type OutputItem = {
type: "command" | "success" | "error" | "log";
content: string;
};
export function SnippetResult({
recipe,
code,
type,
dependencies,
}: SnippetResultProps) {
const [result, setResult] = React.useState<string | null>(null);
const [isLoading, setIsLoading] = React.useState(false);
const [isConsoleOpen, setIsConsoleOpen] = React.useState(false);
const [input, setInput] = React.useState("");
const [output, setOutput] = React.useState<OutputItem[]>([]);
const [simnetInstance, setSimnetInstance] = React.useState<Simnet | null>(
null
);
const [codeHistory, setCodeHistory] = React.useState<string>("");
// Add these new states near your other state declarations
const [commandHistory, setCommandHistory] = React.useState<string[]>([]);
const [historyIndex, setHistoryIndex] = React.useState<number>(-1);
const inputRef = React.useRef<HTMLInputElement>(null);
const outputRef = React.useRef<HTMLDivElement>(null);
const iframeRef = React.useRef<HTMLIFrameElement>(null);
React.useEffect(() => {
if (outputRef.current) {
outputRef.current.scrollTop = outputRef.current.scrollHeight;
}
}, [output]);
React.useEffect(() => {
if (isConsoleOpen && inputRef.current) {
inputRef.current.focus();
}
}, [isConsoleOpen]);
async function runCode() {
if (type === "clarity") {
if (isConsoleOpen) {
setIsConsoleOpen(false);
return;
}
setIsLoading(true);
setResult(null);
try {
const simnet = await initSimnet();
await simnet.initEmptySession(false);
simnet.deployer = "ST000000000000000000002AMW42H";
const deployer = simnet.deployer;
console.log("deployer", deployer);
simnet.setEpoch("3.0");
// Store the initialized simnet instance
setSimnetInstance(simnet);
// Store the initial code in history
setCodeHistory(code);
const contract = simnet.deployContract(
recipe.files[0].name.split(".")[0],
code,
{ clarityVersion: 3 },
deployer
);
const result = contract.result;
const prettyResult = Cl.prettyPrint(result, 2);
// console.log("before :", simnet.execute("stacks-block-height"));
// simnet.executeCommand("::advance_chain_tip 2");
// console.log("after: ", simnet.execute("stacks-block-height"));
// Add a 1-second delay before updating the result
// await new Promise((resolve) => setTimeout(resolve, 1000));
setResult(prettyResult);
setIsConsoleOpen(true);
} catch (error) {
console.error("Error running code snippet:", error);
setResult("An error occurred while running the code snippet.");
} finally {
setIsLoading(false);
}
} else {
const content = {
files: {
"/package.json": {
code: JSON.stringify({
main: "index.js",
dependencies: dependencies || {},
}),
},
"/index.js": {
code: code, // This is the content from your recipe file
},
},
environment: "vanilla",
};
const client = await loadSandpackClient(iframeRef.current!, content);
console.log(client);
}
}
// Add this function to handle keyboard events
const handleKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
if (e.key === "ArrowUp") {
e.preventDefault();
if (commandHistory.length > 0) {
const newIndex = historyIndex + 1;
if (newIndex < commandHistory.length) {
setHistoryIndex(newIndex);
setInput(commandHistory[commandHistory.length - 1 - newIndex]);
}
}
} else if (e.key === "ArrowDown") {
e.preventDefault();
if (historyIndex > 0) {
const newIndex = historyIndex - 1;
setHistoryIndex(newIndex);
setInput(commandHistory[commandHistory.length - 1 - newIndex]);
} else if (historyIndex === 0) {
setHistoryIndex(-1);
setInput("");
}
}
};
async function handleSubmit(e: React.FormEvent) {
e.preventDefault();
if (input.trim()) {
// Add command to history
setCommandHistory((prev) => [...prev, input.trim()]);
setHistoryIndex(-1); // Reset history index
setOutput([...output, { type: "command", content: input }]);
try {
if (!simnetInstance) {
throw new Error("Please run the code snippet first");
}
// Check if input is a command (starts with "::")
if (input.startsWith("::")) {
const commandResult = simnetInstance.executeCommand(input);
setOutput((prev) => [
...prev,
{
type: "success",
content: commandResult,
},
]);
} else {
// Regular Clarity code execution
const fullCode = `${codeHistory}\n${input}`;
setCodeHistory(fullCode);
const codeExecution = simnetInstance.execute(fullCode);
const result = codeExecution.result;
const prettyResult = Cl.prettyPrint(result, 2);
setOutput((prev) => [
...prev,
{ type: "success", content: prettyResult },
]);
}
} catch (error) {
setOutput((prev) => [
...prev,
{ type: "error", content: String(error) },
]);
}
setInput("");
}
}
const getButtonText = () => {
if (type === "clarity") {
if (isLoading) return "Loading...";
if (isConsoleOpen) return "Close terminal";
return "Open in terminal";
}
return "Run code snippet";
};
return (
<div className="space-y-4">
<iframe
ref={iframeRef}
style={{ display: "none" }}
title="code-sandbox"
/>
<div className="flex items-center justify-end gap-2">
{/* <Button
variant="outline"
className="gap-2"
size="sm"
onClick={runCode}
disabled={isLoading}
>
{type === "clarity" ? (
<Terminal className="w-4 h-4" />
) : (
<Play className="w-4 h-4" />
)}
{getButtonText()}
</Button> */}
{type === "clarity" && (
<Button variant="link" className="gap-2 self-end" size="sm" asChild>
<Link href={recipe?.external_url || ""} target="_blank">
Open in Clarity Playground <ArrowUpRight className="w-4 h-4" />
</Link>
</Button>
)}
</div>
{result && type !== "clarity" && (
<div
className="flex bg-ch-code p-2 rounded text-sm leading-6 font-mono whitespace-pre-wrap"
data-active="false"
>
<span className="ch-terminal-content break-all">
<div>
<div className="indent-0 ml-0">
<span className="indent-0 text-[var(--ch-4)]">{result}</span>
</div>
</div>
</span>
</div>
)}
{result && isConsoleOpen && (
<pre className="h-auto bg-ch-code p-2 rounded leading-6 font-mono whitespace-pre-wrap">
<div
ref={outputRef}
className="h-auto max-h-[225px] p-2 overflow-y-auto"
>
{output.map((item, index) => (
<div key={index} className="whitespace-pre-wrap">
{item.type === "command" ? (
<div className="flex items-start space-x-2 text-[var(--ch-26)]">
<span>$</span>
<span className="text-[var(--ch-1)]">{item.content}</span>
</div>
) : (
<div className="pl-0 text-[var(--ch-4)]">{item.content}</div>
)}
</div>
))}
<form
onSubmit={handleSubmit}
className="flex items-center space-x-2 text-[var(--ch-26)]"
>
<span>$</span>
<input
ref={inputRef}
type="text"
value={input}
onChange={(e) => setInput(e.target.value)}
onKeyDown={handleKeyDown}
spellCheck="false"
autoComplete="off"
className="flex-1 bg-transparent text-[var(--ch-1)] focus:outline-none leading-6 font-mono whitespace-pre-wrap"
/>
</form>
</div>
</pre>
)}
</div>
);
}