Spaces:
Running
Running
File size: 14,055 Bytes
ed1e1a8 | 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 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | // static/js/codeRunner.js
import * as uiModule from './ui.js';
/**
* In-browser code runner for Python (Pyodide), JavaScript, and HTML
*/
let pyodideInstance = null;
let pyodideLoading = false;
const pyodideQueue = [];
/**
* Get or create an output panel below the <pre> element
*/
function getOrCreatePanel(pre) {
let panel = pre.nextElementSibling;
if (panel && panel.classList.contains('code-runner-output')) {
panel.innerHTML = '';
panel.style.display = 'block';
return panel;
}
panel = document.createElement('div');
panel.className = 'code-runner-output';
pre.parentNode.insertBefore(panel, pre.nextSibling);
return panel;
}
/**
* Show a loading message in the panel
*/
function showLoading(panel, msg) {
panel.innerHTML = `<div class="code-runner-loading">${msg}</div>`;
}
/**
* Show output text in the panel
*/
function showOutput(panel, text, isError) {
const el = document.createElement('pre');
el.className = isError ? 'code-runner-pre code-runner-error' : 'code-runner-pre';
el.textContent = text;
panel.innerHTML = '';
panel.appendChild(el);
// Copy button β visible labeled pill at the top-right of the panel
// itself (no separate footer / divider, no tiny icon corner).
if (text) {
const cbtn = document.createElement('button');
cbtn.type = 'button';
cbtn.className = 'code-runner-copy-inline';
cbtn.innerHTML = '<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:-2px;margin-right:4px;"><rect x="9" y="9" width="13" height="13" rx="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>Copy';
cbtn.addEventListener('click', (e) => {
e.stopPropagation();
e.preventDefault();
let ok = false;
try {
const ta = document.createElement('textarea');
ta.value = text;
ta.style.cssText = 'position:fixed;left:0;top:0;width:1px;height:1px;opacity:0;';
document.body.appendChild(ta);
ta.focus();
ta.select();
ta.setSelectionRange(0, text.length);
ok = document.execCommand && document.execCommand('copy');
ta.remove();
} catch (_) {}
if (!ok && navigator.clipboard && window.isSecureContext) {
navigator.clipboard.writeText(text).then(() => {
if (uiModule.showToast) uiModule.showToast('Copied');
cbtn.textContent = 'Copied!';
setTimeout(() => { cbtn.innerHTML = '<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:-2px;margin-right:4px;"><rect x="9" y="9" width="13" height="13" rx="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>Copy'; }, 1500);
}).catch(() => { if (uiModule.showToast) uiModule.showToast('Copy failed'); });
return;
}
if (uiModule.showToast) uiModule.showToast(ok ? 'Copied' : 'Copy failed');
const orig = cbtn.innerHTML;
cbtn.textContent = ok ? 'Copied!' : 'Copy failed';
setTimeout(() => { cbtn.innerHTML = orig; }, 1500);
});
// Button lives directly in the panel β no wrapping bar. The panel is
// position:relative so the button can sit absolute-top-right of it.
panel.appendChild(cbtn);
}
if (isError) {
setTimeout(() => { if (panel) panel.style.display = 'none'; }, 7000);
}
}
/**
* Legacy absolute-positioned copy button β replaced by the inline bar in
* showOutput. Kept here as no-op so any earlier callers don't crash.
*/
function addCopyBtn_unused(panel, text) {
if (!text) return;
const btn = document.createElement('button');
btn.type = 'button'; // Default <button> type is 'submit' β explicit "button" avoids any accidental form submission.
btn.className = 'code-runner-copy';
btn.title = 'Copy output';
btn.innerHTML = '<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>';
btn.addEventListener('click', async (e) => {
e.stopPropagation();
e.preventDefault();
// Synchronous copy via a hidden textarea + execCommand β this is the
// single most reliable path across browsers / non-secure contexts /
// mobile Firefox. Run BEFORE any async navigator.clipboard attempt so
// the user-gesture context is preserved.
let ok = false;
try {
const ta = document.createElement('textarea');
ta.value = text;
ta.style.cssText = 'position:fixed;left:0;top:0;width:1px;height:1px;opacity:0;';
document.body.appendChild(ta);
ta.focus();
ta.select();
ta.setSelectionRange(0, text.length);
ok = document.execCommand && document.execCommand('copy');
ta.remove();
} catch (_) {}
// As a backup, also try the modern clipboard API (won't hurt if the
// legacy path already copied).
if (!ok && navigator.clipboard && window.isSecureContext) {
try { await navigator.clipboard.writeText(text); ok = true; } catch (_) {}
}
if (uiModule && uiModule.showToast) {
uiModule.showToast(ok ? 'Copied' : 'Copy failed');
}
const _orig = btn.innerHTML;
btn.innerHTML = '<svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>';
btn.classList.add('copied');
setTimeout(() => { btn.innerHTML = _orig; btn.classList.remove('copied'); }, 1500);
});
panel.prepend(btn);
}
/**
* Add a collapse/close button to the panel.
* Disabled \u2014 the run-output panel is now closed via the unified Code\u2194Run
* toggle in the editor footer, so a separate X was redundant + cluttered.
*/
function addCloseBtn(_panel) { /* no-op */ }
/**
* Lazy-load Pyodide from CDN
*/
function loadPyodide() {
if (pyodideInstance) return Promise.resolve(pyodideInstance);
if (pyodideLoading) {
return new Promise((resolve, reject) => {
pyodideQueue.push({ resolve, reject });
});
}
pyodideLoading = true;
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/pyodide/v0.27.5/full/pyodide.js';
script.onload = () => {
window.loadPyodide({ indexURL: 'https://cdn.jsdelivr.net/pyodide/v0.27.5/full/' })
.then(py => {
pyodideInstance = py;
pyodideLoading = false;
pyodideQueue.forEach(q => q.resolve(py));
pyodideQueue.length = 0;
resolve(py);
})
.catch(err => {
pyodideLoading = false;
pyodideQueue.forEach(q => q.reject(err));
pyodideQueue.length = 0;
reject(err);
});
};
script.onerror = () => {
pyodideLoading = false;
const err = new Error('Failed to load Pyodide');
pyodideQueue.forEach(q => q.reject(err));
pyodideQueue.length = 0;
reject(err);
};
document.head.appendChild(script);
});
}
/**
* Run Python code via Pyodide
*/
export async function runPython(code, panel) {
showLoading(panel, 'Loading Python runtime (first time ~10 MB)...');
let py;
try {
py = await loadPyodide();
} catch (e) {
showOutput(panel, 'Failed to load Python runtime: ' + e.message, true);
addCloseBtn(panel);
return;
}
showLoading(panel, 'Running...');
const wrapper = `
import sys, io
_stdout = io.StringIO()
_stderr = io.StringIO()
sys.stdout = _stdout
sys.stderr = _stderr
try:
exec(${JSON.stringify(code)})
except Exception as _e:
_stderr.write(str(_e))
finally:
sys.stdout = sys.__stdout__
sys.stderr = sys.__stderr__
(_stdout.getvalue(), _stderr.getvalue())
`;
try {
const result = await Promise.race([
py.runPythonAsync(wrapper),
new Promise((_, reject) => setTimeout(() => reject(new Error('Execution timed out (10 s)')), 10000))
]);
const stdout = result.toJs ? result.toJs()[0] : (result[0] || '');
const stderr = result.toJs ? result.toJs()[1] : (result[1] || '');
if (result.destroy) result.destroy();
panel.innerHTML = '';
if (stderr) {
showOutput(panel, stderr, true);
} else if (stdout) {
showOutput(panel, stdout, false);
} else {
showOutput(panel, '(no output)', false);
}
} catch (e) {
showOutput(panel, e.message, true);
}
addCloseBtn(panel);
}
/**
* Run JavaScript code in a sandboxed iframe
*/
export function runJavaScript(code, panel) {
showLoading(panel, 'Running...');
const iframe = document.createElement('iframe');
iframe.style.display = 'none';
iframe.sandbox = 'allow-scripts';
document.body.appendChild(iframe);
let settled = false;
const cleanup = () => {
if (iframe.parentNode) iframe.remove();
};
const failsafe = setTimeout(() => {
if (!settled) {
settled = true;
showOutput(panel, 'Execution timed out (10 s)', true);
addCloseBtn(panel);
cleanup();
}
}, 15000);
const onMessage = (e) => {
if (e.source !== iframe.contentWindow) return;
if (settled) return;
settled = true;
clearTimeout(failsafe);
window.removeEventListener('message', onMessage);
const data = e.data;
panel.innerHTML = '';
if (data.error) {
showOutput(panel, data.error, true);
} else if (data.logs && data.logs.length > 0) {
showOutput(panel, data.logs.join('\n'), false);
} else {
showOutput(panel, '(no output)', false);
}
addCloseBtn(panel);
cleanup();
};
window.addEventListener('message', onMessage);
const wrappedCode = `
<!DOCTYPE html><html><body><script>
var _logs = [];
var _origLog = console.log;
console.log = function() { _logs.push([].map.call(arguments, function(a) { try { return typeof a === 'object' ? JSON.stringify(a) : String(a); } catch(e) { return String(a); } }).join(' ')); };
console.warn = function() { _logs.push('[warn] ' + [].map.call(arguments, String).join(' ')); };
console.error = function() { _logs.push('[error] ' + [].map.call(arguments, String).join(' ')); };
try {
var _timer = setTimeout(function() { parent.postMessage({error:'Execution timed out (10 s)'},'*'); }, 10000);
${code.replace(/<\/script>/gi, '<\\/script>')}
clearTimeout(_timer);
parent.postMessage({logs: _logs}, '*');
} catch(e) {
parent.postMessage({error: e.toString()}, '*');
}
<\/script></body></html>`;
iframe.srcdoc = wrappedCode;
}
/**
* Run code server-side via POST /api/shell/exec
*/
export async function runServer(code, panel, lang) {
showLoading(panel, 'Running on server...');
// Base64-encode the script so newlines survive the shell quoting intact.
// JSON.stringify turns \n into literal \\n which python3 -c sees as backslash-n;
// base64 avoids every quoting/escaping pitfall.
const b64 = btoa(unescape(encodeURIComponent(code)));
var command;
if (lang === 'python' || lang === 'py') {
command = `python3 -c "import base64; exec(base64.b64decode('${b64}').decode('utf-8'))"`;
} else {
command = `python3 -c "import base64, subprocess, sys; sys.exit(subprocess.run(['bash','-c',base64.b64decode('${b64}').decode('utf-8')]).returncode)"`;
}
try {
var res = await fetch('/api/shell/exec', {
method: 'POST',
credentials: 'same-origin',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ command: command }),
});
var data = await res.json();
panel.innerHTML = '';
if (data.stderr && data.stderr.trim()) {
showOutput(panel, data.stderr, true);
if (data.stdout && data.stdout.trim()) {
var stdoutEl = document.createElement('pre');
stdoutEl.className = 'code-runner-pre';
stdoutEl.textContent = data.stdout;
panel.appendChild(stdoutEl);
}
} else if (data.stdout && data.stdout.trim()) {
showOutput(panel, data.stdout, false);
} else {
showOutput(panel, '(no output)' + (data.exit_code ? ' β exit code ' + data.exit_code : ''), !data.exit_code ? false : true);
}
if (data.exit_code && data.exit_code !== 0) {
var exitEl = document.createElement('div');
exitEl.style.cssText = 'font-size:0.75rem;opacity:0.5;padding:2px 8px;';
exitEl.textContent = 'Exit code: ' + data.exit_code;
panel.appendChild(exitEl);
}
} catch (e) {
showOutput(panel, 'Execution failed: ' + e.message, true);
}
addCloseBtn(panel);
}
/**
* Run HTML code in its own popup window
*/
export function runHTML(code, panel) {
panel.innerHTML = '';
const win = window.open('', '_blank', 'width=800,height=600,menubar=no,toolbar=no,location=no,status=no');
if (!win) {
showOutput(panel, 'Popup blocked β please allow popups for this site.', true);
addCloseBtn(panel);
return;
}
try { win.opener = null; } catch (_) {}
win.document.open();
win.document.write(code);
win.document.close();
showOutput(panel, 'Opened in new window', false);
addCloseBtn(panel);
}
/**
* Main entry point β called when a Run button is clicked
*/
export function run(btn) {
const code = btn.getAttribute('data-code');
const lang = (btn.getAttribute('data-lang') || '').toLowerCase();
if (!code) return;
const pre = btn.closest('pre');
if (!pre) return;
const panel = getOrCreatePanel(pre);
if (lang === 'bash' || lang === 'sh' || lang === 'shell' || lang === 'zsh') {
runServer(code, panel, 'bash');
} else if (lang === 'python' || lang === 'py') {
runServer(code, panel, 'python');
} else if (lang === 'javascript' || lang === 'js') {
runJavaScript(code, panel);
} else if (lang === 'html') {
runHTML(code, panel);
}
}
const codeRunnerModule = { run, runPython, runJavaScript, runHTML, runServer };
export default codeRunnerModule;
|