CodeBlock.svelte 2.98 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
<script lang="ts">
	import { copyToClipboard } from '$lib/utils';
	import hljs from 'highlight.js';
	import 'highlight.js/styles/github-dark.min.css';
Timothy J. Baek's avatar
Timothy J. Baek committed
5
6
7
	import { tick } from 'svelte';

	export let id = '';
Timothy J. Baek's avatar
Timothy J. Baek committed
8
9
10
11

	export let lang = '';
	export let code = '';

Timothy J. Baek's avatar
Timothy J. Baek committed
12
	let executed = false;
Timothy J. Baek's avatar
Timothy J. Baek committed
13
14
15
16
17
18
19
20
21
22
23
	let copied = false;

	const copyCode = async () => {
		copied = true;
		await copyToClipboard(code);

		setTimeout(() => {
			copied = false;
		}, 1000);
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
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
	const executePython = async (text) => {
		executed = true;

		await tick();
		const outputDiv = document.getElementById(`code-output-${id}`);

		if (outputDiv) {
			outputDiv.innerText = 'Running...';
		}

		// pyscript
		let div = document.createElement('div');
		let html = `<py-script type="py" worker>
import js
import sys
import io

# Create a StringIO object to capture the output
output_capture = io.StringIO()

# Save the current standard output
original_stdout = sys.stdout

# Replace the standard output with the StringIO object
sys.stdout = output_capture

Timothy J. Baek's avatar
Timothy J. Baek committed
50
51
52
53
54
try:
	${text}
except Exception as e:
    # Capture any errors and write them to the output capture
    print(f"Error: {e}", file=output_capture)
Timothy J. Baek's avatar
Timothy J. Baek committed
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

# Restore the original standard output
sys.stdout = original_stdout

# Retrieve the captured output
captured_output = "[NO OUTPUT]"
captured_output = output_capture.getvalue()

# Print the captured output
print(captured_output)

def display_message():
    output_div = js.document.getElementById("code-output-${id}")
    output_div.innerText = captured_output

display_message()
			</py-script>`;

		div.innerHTML = html;
		const pyScript = div.firstElementChild;
		try {
			document.body.appendChild(pyScript);
			setTimeout(() => {
				document.body.removeChild(pyScript);
			}, 0);
		} catch (error) {
			console.error('Python error:');
			console.error(error);
		}
	};

Timothy J. Baek's avatar
Timothy J. Baek committed
86
87
88
	$: highlightedCode = code ? hljs.highlightAuto(code, hljs.getLanguage(lang)?.aliases).value : '';
</script>

89
90
91
92
{#if code}
	<div class="mb-4">
		<div
			class="flex justify-between bg-[#202123] text-white text-xs px-4 pt-1 pb-0.5 rounded-t-lg overflow-x-auto"
Timothy J. Baek's avatar
Timothy J. Baek committed
93
		>
94
			<div class="p-1">{@html lang}</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
95
96
97
98
99
100
101
102
103
104
105
106
107
108

			<div class="flex items-center">
				{#if lang === 'python'}
					<button
						class="copy-code-button bg-none border-none p-1"
						on:click={() => {
							executePython(code);
						}}>Run</button
					>
				{/if}
				<button class="copy-code-button bg-none border-none p-1" on:click={copyCode}
					>{copied ? 'Copied' : 'Copy Code'}</button
				>
			</div>
109
		</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
110

Timothy J. Baek's avatar
Timothy J. Baek committed
111
112
		<pre
			class=" hljs p-4 px-5 overflow-x-auto"
Timothy J. Baek's avatar
Timothy J. Baek committed
113
114
			style="border-top-left-radius: 0px; border-top-right-radius: 0px; {executed &&
				'border-bottom-left-radius: 0px; border-bottom-right-radius: 0px;'}"><code
115
116
				class="language-{lang} rounded-t-none whitespace-pre">{@html highlightedCode || code}</code
			></pre>
Timothy J. Baek's avatar
Timothy J. Baek committed
117
118
119

		{#if executed}
			<div class="bg-[#202123] text-white px-4 py-4 rounded-b-lg">
Timothy J. Baek's avatar
Timothy J. Baek committed
120
				<div class=" text-gray-500 text-xs mb-1">STDOUT/STDERR</div>
Timothy J. Baek's avatar
Timothy J. Baek committed
121
122
123
				<div id="code-output-{id}" class="text-sm" />
			</div>
		{/if}
124
125
	</div>
{/if}