@hep-code-runner/vue3 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.mjs +462 -477
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { defineComponent as oe, useCssVars as
|
|
2
|
-
var xe = Object.defineProperty, Oe = (o,
|
|
1
|
+
import { defineComponent as oe, useCssVars as me, ref as C, computed as G, openBlock as R, createElementBlock as x, normalizeClass as W, createElementVNode as m, watch as de, onMounted as be, withDirectives as Ee, createCommentVNode as U, Fragment as ve, renderList as ye, toDisplayString as H, vModelSelect as Ae, createTextVNode as Se, normalizeStyle as se, createVNode as ie, createBlock as we, Teleport as Te, Transition as ke, withCtx as Ie, normalizeProps as Fe, guardReactiveProps as _e, renderSlot as Re } from "vue";
|
|
2
|
+
var xe = Object.defineProperty, Oe = (o, d, a) => d in o ? xe(o, d, { enumerable: !0, configurable: !0, writable: !0, value: a }) : o[d] = a, ue = (o, d, a) => Oe(o, typeof d != "symbol" ? d + "" : d, a);
|
|
3
3
|
let ae = null;
|
|
4
4
|
class Ne {
|
|
5
|
-
constructor(
|
|
6
|
-
|
|
5
|
+
constructor(d = {}) {
|
|
6
|
+
ue(this, "baseUrl"), ue(this, "timeout"), this.baseUrl = d.pistonUrl || "/api/piston", this.timeout = d.timeout || 3e3;
|
|
7
7
|
}
|
|
8
|
-
async getRuntimes(
|
|
9
|
-
if (ae && !
|
|
8
|
+
async getRuntimes(d = !1) {
|
|
9
|
+
if (ae && !d)
|
|
10
10
|
return ae;
|
|
11
11
|
try {
|
|
12
12
|
const a = await fetch(`${this.baseUrl}/runtimes`, {
|
|
@@ -23,21 +23,21 @@ class Ne {
|
|
|
23
23
|
throw console.error("Failed to fetch runtimes:", a), a;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
async execute(
|
|
27
|
-
const
|
|
28
|
-
(
|
|
29
|
-
var
|
|
30
|
-
return
|
|
26
|
+
async execute(d, a, l = {}) {
|
|
27
|
+
const p = (await this.getRuntimes()).find(
|
|
28
|
+
(b) => {
|
|
29
|
+
var g;
|
|
30
|
+
return b.language.toLowerCase() === d.toLowerCase() || ((g = b.aliases) == null ? void 0 : g.some((I) => I.toLowerCase() === d.toLowerCase()));
|
|
31
31
|
}
|
|
32
32
|
);
|
|
33
|
-
if (!
|
|
34
|
-
throw new Error(`Language '${
|
|
35
|
-
const
|
|
36
|
-
language:
|
|
37
|
-
version: l.version ||
|
|
33
|
+
if (!p)
|
|
34
|
+
throw new Error(`Language '${d}' is not supported`);
|
|
35
|
+
const v = this.getFileName(d), A = {
|
|
36
|
+
language: p.language,
|
|
37
|
+
version: l.version || p.version,
|
|
38
38
|
files: [
|
|
39
39
|
{
|
|
40
|
-
name:
|
|
40
|
+
name: v,
|
|
41
41
|
content: a
|
|
42
42
|
}
|
|
43
43
|
],
|
|
@@ -45,41 +45,41 @@ class Ne {
|
|
|
45
45
|
args: l.args || [],
|
|
46
46
|
run_timeout: l.runTimeout || this.timeout,
|
|
47
47
|
compile_timeout: this.timeout
|
|
48
|
-
},
|
|
48
|
+
}, r = Date.now();
|
|
49
49
|
try {
|
|
50
|
-
const
|
|
50
|
+
const b = await fetch(`${this.baseUrl}/execute`, {
|
|
51
51
|
method: "POST",
|
|
52
52
|
headers: {
|
|
53
53
|
"Content-Type": "application/json"
|
|
54
54
|
},
|
|
55
55
|
body: JSON.stringify(A)
|
|
56
56
|
});
|
|
57
|
-
if (!
|
|
58
|
-
throw new Error(`Execute failed: ${
|
|
59
|
-
const
|
|
57
|
+
if (!b.ok)
|
|
58
|
+
throw new Error(`Execute failed: ${b.statusText}`);
|
|
59
|
+
const g = await b.json(), I = Date.now() - r, L = g.run.stdout || "", F = g.run.stderr || "";
|
|
60
60
|
return {
|
|
61
|
-
success:
|
|
62
|
-
output:
|
|
63
|
-
stderr:
|
|
64
|
-
code:
|
|
65
|
-
executionTime:
|
|
66
|
-
compile:
|
|
67
|
-
stdout:
|
|
68
|
-
stderr:
|
|
69
|
-
code:
|
|
61
|
+
success: g.run.code === 0,
|
|
62
|
+
output: L,
|
|
63
|
+
stderr: F,
|
|
64
|
+
code: g.run.code,
|
|
65
|
+
executionTime: I,
|
|
66
|
+
compile: g.compile ? {
|
|
67
|
+
stdout: g.compile.stdout || "",
|
|
68
|
+
stderr: g.compile.stderr || "",
|
|
69
|
+
code: g.compile.code
|
|
70
70
|
} : void 0
|
|
71
71
|
};
|
|
72
|
-
} catch (
|
|
72
|
+
} catch (b) {
|
|
73
73
|
return {
|
|
74
74
|
success: !1,
|
|
75
75
|
output: "",
|
|
76
|
-
stderr:
|
|
76
|
+
stderr: b instanceof Error ? b.message : "Unknown error",
|
|
77
77
|
code: -1,
|
|
78
|
-
executionTime: Date.now() -
|
|
78
|
+
executionTime: Date.now() - r
|
|
79
79
|
};
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
|
-
getFileName(
|
|
82
|
+
getFileName(d) {
|
|
83
83
|
return {
|
|
84
84
|
javascript: "main.js",
|
|
85
85
|
typescript: "main.ts",
|
|
@@ -106,7 +106,7 @@ class Ne {
|
|
|
106
106
|
css: "style.css",
|
|
107
107
|
sql: "query.sql",
|
|
108
108
|
markdown: "readme.md"
|
|
109
|
-
}[
|
|
109
|
+
}[d.toLowerCase()] || `main.${d}`;
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
const Le = {
|
|
@@ -208,17 +208,17 @@ h1 {
|
|
|
208
208
|
This is a sample markdown document.`
|
|
209
209
|
};
|
|
210
210
|
function ne(o) {
|
|
211
|
-
const
|
|
212
|
-
return Le[
|
|
211
|
+
const d = o.toLowerCase();
|
|
212
|
+
return Le[d] || `// ${o}
|
|
213
213
|
// Write your code here`;
|
|
214
214
|
}
|
|
215
|
-
var
|
|
215
|
+
var ce = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
216
216
|
function Ce(o) {
|
|
217
217
|
return o && o.__esModule && Object.prototype.hasOwnProperty.call(o, "default") ? o.default : o;
|
|
218
218
|
}
|
|
219
|
-
var
|
|
219
|
+
var pe = { exports: {} };
|
|
220
220
|
(function(o) {
|
|
221
|
-
var
|
|
221
|
+
var d = typeof window < "u" ? window : typeof WorkerGlobalScope < "u" && self instanceof WorkerGlobalScope ? self : {};
|
|
222
222
|
/**
|
|
223
223
|
* Prism: Lightweight, robust, elegant syntax highlighting
|
|
224
224
|
*
|
|
@@ -228,7 +228,7 @@ var me = { exports: {} };
|
|
|
228
228
|
* @public
|
|
229
229
|
*/
|
|
230
230
|
var a = function(l) {
|
|
231
|
-
var
|
|
231
|
+
var p = /(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i, v = 0, A = {}, r = {
|
|
232
232
|
/**
|
|
233
233
|
* By default, Prism will attempt to highlight all code elements (by calling {@link Prism.highlightAll}) on the
|
|
234
234
|
* current page after the page finished loading. This might be a problem if e.g. you wanted to asynchronously load
|
|
@@ -284,7 +284,7 @@ var me = { exports: {} };
|
|
|
284
284
|
*/
|
|
285
285
|
util: {
|
|
286
286
|
encode: function t(e) {
|
|
287
|
-
return e instanceof
|
|
287
|
+
return e instanceof b ? new b(e.type, t(e.content), e.alias) : Array.isArray(e) ? e.map(t) : e.replace(/&/g, "&").replace(/</g, "<").replace(/\u00a0/g, " ");
|
|
288
288
|
},
|
|
289
289
|
/**
|
|
290
290
|
* Returns the name of the type of the given value.
|
|
@@ -312,7 +312,7 @@ var me = { exports: {} };
|
|
|
312
312
|
* @returns {number}
|
|
313
313
|
*/
|
|
314
314
|
objId: function(t) {
|
|
315
|
-
return t.__id || Object.defineProperty(t, "__id", { value: ++
|
|
315
|
+
return t.__id || Object.defineProperty(t, "__id", { value: ++v }), t.__id;
|
|
316
316
|
},
|
|
317
317
|
/**
|
|
318
318
|
* Creates a deep clone of the given object.
|
|
@@ -326,26 +326,26 @@ var me = { exports: {} };
|
|
|
326
326
|
*/
|
|
327
327
|
clone: function t(e, n) {
|
|
328
328
|
n = n || {};
|
|
329
|
-
var
|
|
330
|
-
switch (
|
|
329
|
+
var s, i;
|
|
330
|
+
switch (r.util.type(e)) {
|
|
331
331
|
case "Object":
|
|
332
|
-
if (i =
|
|
332
|
+
if (i = r.util.objId(e), n[i])
|
|
333
333
|
return n[i];
|
|
334
|
-
|
|
335
|
-
{}, n[i] =
|
|
336
|
-
for (var
|
|
337
|
-
e.hasOwnProperty(
|
|
334
|
+
s = /** @type {Record<string, any>} */
|
|
335
|
+
{}, n[i] = s;
|
|
336
|
+
for (var c in e)
|
|
337
|
+
e.hasOwnProperty(c) && (s[c] = t(e[c], n));
|
|
338
338
|
return (
|
|
339
339
|
/** @type {any} */
|
|
340
|
-
|
|
340
|
+
s
|
|
341
341
|
);
|
|
342
342
|
case "Array":
|
|
343
|
-
return i =
|
|
343
|
+
return i = r.util.objId(e), n[i] ? n[i] : (s = [], n[i] = s, /** @type {Array} */
|
|
344
344
|
/** @type {any} */
|
|
345
|
-
e.forEach(function(
|
|
346
|
-
|
|
345
|
+
e.forEach(function(f, u) {
|
|
346
|
+
s[u] = t(f, n);
|
|
347
347
|
}), /** @type {any} */
|
|
348
|
-
|
|
348
|
+
s);
|
|
349
349
|
default:
|
|
350
350
|
return e;
|
|
351
351
|
}
|
|
@@ -360,7 +360,7 @@ var me = { exports: {} };
|
|
|
360
360
|
*/
|
|
361
361
|
getLanguage: function(t) {
|
|
362
362
|
for (; t; ) {
|
|
363
|
-
var e =
|
|
363
|
+
var e = p.exec(t.className);
|
|
364
364
|
if (e)
|
|
365
365
|
return e[1].toLowerCase();
|
|
366
366
|
t = t.parentElement;
|
|
@@ -375,7 +375,7 @@ var me = { exports: {} };
|
|
|
375
375
|
* @returns {void}
|
|
376
376
|
*/
|
|
377
377
|
setLanguage: function(t, e) {
|
|
378
|
-
t.className = t.className.replace(RegExp(
|
|
378
|
+
t.className = t.className.replace(RegExp(p, "gi"), ""), t.classList.add("language-" + e);
|
|
379
379
|
},
|
|
380
380
|
/**
|
|
381
381
|
* Returns the script element that is currently executing.
|
|
@@ -394,8 +394,8 @@ var me = { exports: {} };
|
|
|
394
394
|
);
|
|
395
395
|
try {
|
|
396
396
|
throw new Error();
|
|
397
|
-
} catch (
|
|
398
|
-
var t = (/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(
|
|
397
|
+
} catch (s) {
|
|
398
|
+
var t = (/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(s.stack) || [])[1];
|
|
399
399
|
if (t) {
|
|
400
400
|
var e = document.getElementsByTagName("script");
|
|
401
401
|
for (var n in e)
|
|
@@ -425,11 +425,11 @@ var me = { exports: {} };
|
|
|
425
425
|
* @returns {boolean}
|
|
426
426
|
*/
|
|
427
427
|
isActive: function(t, e, n) {
|
|
428
|
-
for (var
|
|
428
|
+
for (var s = "no-" + e; t; ) {
|
|
429
429
|
var i = t.classList;
|
|
430
430
|
if (i.contains(e))
|
|
431
431
|
return !0;
|
|
432
|
-
if (i.contains(
|
|
432
|
+
if (i.contains(s))
|
|
433
433
|
return !1;
|
|
434
434
|
t = t.parentElement;
|
|
435
435
|
}
|
|
@@ -480,9 +480,9 @@ var me = { exports: {} };
|
|
|
480
480
|
* });
|
|
481
481
|
*/
|
|
482
482
|
extend: function(t, e) {
|
|
483
|
-
var n =
|
|
484
|
-
for (var
|
|
485
|
-
n[
|
|
483
|
+
var n = r.util.clone(r.languages[t]);
|
|
484
|
+
for (var s in e)
|
|
485
|
+
n[s] = e[s];
|
|
486
486
|
return n;
|
|
487
487
|
},
|
|
488
488
|
/**
|
|
@@ -560,31 +560,31 @@ var me = { exports: {} };
|
|
|
560
560
|
* @returns {Grammar} The new grammar object.
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
insertBefore: function(t, e, n,
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
var i =
|
|
567
|
-
for (var
|
|
568
|
-
if (i.hasOwnProperty(
|
|
569
|
-
if (
|
|
563
|
+
insertBefore: function(t, e, n, s) {
|
|
564
|
+
s = s || /** @type {any} */
|
|
565
|
+
r.languages;
|
|
566
|
+
var i = s[t], c = {};
|
|
567
|
+
for (var f in i)
|
|
568
|
+
if (i.hasOwnProperty(f)) {
|
|
569
|
+
if (f == e)
|
|
570
570
|
for (var u in n)
|
|
571
|
-
n.hasOwnProperty(u) && (
|
|
572
|
-
n.hasOwnProperty(
|
|
571
|
+
n.hasOwnProperty(u) && (c[u] = n[u]);
|
|
572
|
+
n.hasOwnProperty(f) || (c[f] = i[f]);
|
|
573
573
|
}
|
|
574
|
-
var
|
|
575
|
-
return
|
|
576
|
-
P ===
|
|
577
|
-
}),
|
|
574
|
+
var S = s[t];
|
|
575
|
+
return s[t] = c, r.languages.DFS(r.languages, function(_, P) {
|
|
576
|
+
P === S && _ != t && (this[_] = c);
|
|
577
|
+
}), c;
|
|
578
578
|
},
|
|
579
579
|
// Traverse a language definition with Depth First Search
|
|
580
|
-
DFS: function t(e, n,
|
|
580
|
+
DFS: function t(e, n, s, i) {
|
|
581
581
|
i = i || {};
|
|
582
|
-
var
|
|
583
|
-
for (var
|
|
584
|
-
if (e.hasOwnProperty(
|
|
585
|
-
n.call(e,
|
|
586
|
-
var u = e[
|
|
587
|
-
|
|
582
|
+
var c = r.util.objId;
|
|
583
|
+
for (var f in e)
|
|
584
|
+
if (e.hasOwnProperty(f)) {
|
|
585
|
+
n.call(e, f, e[f], s || f);
|
|
586
|
+
var u = e[f], S = r.util.type(u);
|
|
587
|
+
S === "Object" && !i[c(u)] ? (i[c(u)] = !0, t(u, n, null, i)) : S === "Array" && !i[c(u)] && (i[c(u)] = !0, t(u, n, f, i));
|
|
588
588
|
}
|
|
589
589
|
}
|
|
590
590
|
},
|
|
@@ -602,7 +602,7 @@ var me = { exports: {} };
|
|
|
602
602
|
* @public
|
|
603
603
|
*/
|
|
604
604
|
highlightAll: function(t, e) {
|
|
605
|
-
|
|
605
|
+
r.highlightAllUnder(document, t, e);
|
|
606
606
|
},
|
|
607
607
|
/**
|
|
608
608
|
* Fetches all the descendants of `container` that have a `.language-xxxx` class and then calls
|
|
@@ -620,14 +620,14 @@ var me = { exports: {} };
|
|
|
620
620
|
* @public
|
|
621
621
|
*/
|
|
622
622
|
highlightAllUnder: function(t, e, n) {
|
|
623
|
-
var
|
|
623
|
+
var s = {
|
|
624
624
|
callback: n,
|
|
625
625
|
container: t,
|
|
626
626
|
selector: 'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'
|
|
627
627
|
};
|
|
628
|
-
|
|
629
|
-
for (var i = 0,
|
|
630
|
-
|
|
628
|
+
r.hooks.run("before-highlightall", s), s.elements = Array.prototype.slice.apply(s.container.querySelectorAll(s.selector)), r.hooks.run("before-all-elements-highlight", s);
|
|
629
|
+
for (var i = 0, c; c = s.elements[i++]; )
|
|
630
|
+
r.highlightElement(c, e === !0, s.callback);
|
|
631
631
|
},
|
|
632
632
|
/**
|
|
633
633
|
* Highlights the code inside a single element.
|
|
@@ -658,38 +658,38 @@ var me = { exports: {} };
|
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
660
|
highlightElement: function(t, e, n) {
|
|
661
|
-
var
|
|
662
|
-
|
|
663
|
-
var
|
|
664
|
-
|
|
665
|
-
var
|
|
661
|
+
var s = r.util.getLanguage(t), i = r.languages[s];
|
|
662
|
+
r.util.setLanguage(t, s);
|
|
663
|
+
var c = t.parentElement;
|
|
664
|
+
c && c.nodeName.toLowerCase() === "pre" && r.util.setLanguage(c, s);
|
|
665
|
+
var f = t.textContent, u = {
|
|
666
666
|
element: t,
|
|
667
|
-
language:
|
|
667
|
+
language: s,
|
|
668
668
|
grammar: i,
|
|
669
|
-
code:
|
|
669
|
+
code: f
|
|
670
670
|
};
|
|
671
|
-
function
|
|
672
|
-
u.highlightedCode = P,
|
|
671
|
+
function S(P) {
|
|
672
|
+
u.highlightedCode = P, r.hooks.run("before-insert", u), u.element.innerHTML = u.highlightedCode, r.hooks.run("after-highlight", u), r.hooks.run("complete", u), n && n.call(u.element);
|
|
673
673
|
}
|
|
674
|
-
if (
|
|
675
|
-
|
|
674
|
+
if (r.hooks.run("before-sanity-check", u), c = u.element.parentElement, c && c.nodeName.toLowerCase() === "pre" && !c.hasAttribute("tabindex") && c.setAttribute("tabindex", "0"), !u.code) {
|
|
675
|
+
r.hooks.run("complete", u), n && n.call(u.element);
|
|
676
676
|
return;
|
|
677
677
|
}
|
|
678
|
-
if (
|
|
679
|
-
|
|
678
|
+
if (r.hooks.run("before-highlight", u), !u.grammar) {
|
|
679
|
+
S(r.util.encode(u.code));
|
|
680
680
|
return;
|
|
681
681
|
}
|
|
682
682
|
if (e && l.Worker) {
|
|
683
|
-
var _ = new Worker(
|
|
683
|
+
var _ = new Worker(r.filename);
|
|
684
684
|
_.onmessage = function(P) {
|
|
685
|
-
|
|
685
|
+
S(P.data);
|
|
686
686
|
}, _.postMessage(JSON.stringify({
|
|
687
687
|
language: u.language,
|
|
688
688
|
code: u.code,
|
|
689
689
|
immediateClose: !0
|
|
690
690
|
}));
|
|
691
691
|
} else
|
|
692
|
-
|
|
692
|
+
S(r.highlight(u.code, u.grammar, u.language));
|
|
693
693
|
},
|
|
694
694
|
/**
|
|
695
695
|
* Low-level function, only use if you know what you’re doing. It accepts a string of text as input
|
|
@@ -712,14 +712,14 @@ var me = { exports: {} };
|
|
|
712
712
|
* Prism.highlight('var foo = true;', Prism.languages.javascript, 'javascript');
|
|
713
713
|
*/
|
|
714
714
|
highlight: function(t, e, n) {
|
|
715
|
-
var
|
|
715
|
+
var s = {
|
|
716
716
|
code: t,
|
|
717
717
|
grammar: e,
|
|
718
718
|
language: n
|
|
719
719
|
};
|
|
720
|
-
if (
|
|
721
|
-
throw new Error('The language "' +
|
|
722
|
-
return
|
|
720
|
+
if (r.hooks.run("before-tokenize", s), !s.grammar)
|
|
721
|
+
throw new Error('The language "' + s.language + '" has no grammar.');
|
|
722
|
+
return s.tokens = r.tokenize(s.code, s.grammar), r.hooks.run("after-tokenize", s), b.stringify(r.util.encode(s.tokens), s.language);
|
|
723
723
|
},
|
|
724
724
|
/**
|
|
725
725
|
* This is the heart of Prism, and the most low-level function you can use. It accepts a string of text as input
|
|
@@ -748,12 +748,12 @@ var me = { exports: {} };
|
|
|
748
748
|
tokenize: function(t, e) {
|
|
749
749
|
var n = e.rest;
|
|
750
750
|
if (n) {
|
|
751
|
-
for (var
|
|
752
|
-
e[
|
|
751
|
+
for (var s in n)
|
|
752
|
+
e[s] = n[s];
|
|
753
753
|
delete e.rest;
|
|
754
754
|
}
|
|
755
|
-
var i = new
|
|
756
|
-
return
|
|
755
|
+
var i = new L();
|
|
756
|
+
return F(i, i.head, t), I(t, i, e, i.head, 0), T(i);
|
|
757
757
|
},
|
|
758
758
|
/**
|
|
759
759
|
* @namespace
|
|
@@ -775,7 +775,7 @@ var me = { exports: {} };
|
|
|
775
775
|
* @public
|
|
776
776
|
*/
|
|
777
777
|
add: function(t, e) {
|
|
778
|
-
var n =
|
|
778
|
+
var n = r.hooks.all;
|
|
779
779
|
n[t] = n[t] || [], n[t].push(e);
|
|
780
780
|
},
|
|
781
781
|
/**
|
|
@@ -788,26 +788,26 @@ var me = { exports: {} };
|
|
|
788
788
|
* @public
|
|
789
789
|
*/
|
|
790
790
|
run: function(t, e) {
|
|
791
|
-
var n =
|
|
791
|
+
var n = r.hooks.all[t];
|
|
792
792
|
if (!(!n || !n.length))
|
|
793
|
-
for (var
|
|
793
|
+
for (var s = 0, i; i = n[s++]; )
|
|
794
794
|
i(e);
|
|
795
795
|
}
|
|
796
796
|
},
|
|
797
|
-
Token:
|
|
797
|
+
Token: b
|
|
798
798
|
};
|
|
799
|
-
l.Prism =
|
|
800
|
-
function
|
|
801
|
-
this.type = t, this.content = e, this.alias = n, this.length = (
|
|
799
|
+
l.Prism = r;
|
|
800
|
+
function b(t, e, n, s) {
|
|
801
|
+
this.type = t, this.content = e, this.alias = n, this.length = (s || "").length | 0;
|
|
802
802
|
}
|
|
803
|
-
|
|
803
|
+
b.stringify = function t(e, n) {
|
|
804
804
|
if (typeof e == "string")
|
|
805
805
|
return e;
|
|
806
806
|
if (Array.isArray(e)) {
|
|
807
|
-
var
|
|
808
|
-
return e.forEach(function(
|
|
809
|
-
|
|
810
|
-
}),
|
|
807
|
+
var s = "";
|
|
808
|
+
return e.forEach(function(S) {
|
|
809
|
+
s += t(S, n);
|
|
810
|
+
}), s;
|
|
811
811
|
}
|
|
812
812
|
var i = {
|
|
813
813
|
type: e.type,
|
|
@@ -816,106 +816,106 @@ var me = { exports: {} };
|
|
|
816
816
|
classes: ["token", e.type],
|
|
817
817
|
attributes: {},
|
|
818
818
|
language: n
|
|
819
|
-
},
|
|
820
|
-
|
|
821
|
-
var
|
|
819
|
+
}, c = e.alias;
|
|
820
|
+
c && (Array.isArray(c) ? Array.prototype.push.apply(i.classes, c) : i.classes.push(c)), r.hooks.run("wrap", i);
|
|
821
|
+
var f = "";
|
|
822
822
|
for (var u in i.attributes)
|
|
823
|
-
|
|
824
|
-
return "<" + i.tag + ' class="' + i.classes.join(" ") + '"' +
|
|
823
|
+
f += " " + u + '="' + (i.attributes[u] || "").replace(/"/g, """) + '"';
|
|
824
|
+
return "<" + i.tag + ' class="' + i.classes.join(" ") + '"' + f + ">" + i.content + "</" + i.tag + ">";
|
|
825
825
|
};
|
|
826
|
-
function
|
|
826
|
+
function g(t, e, n, s) {
|
|
827
827
|
t.lastIndex = e;
|
|
828
828
|
var i = t.exec(n);
|
|
829
|
-
if (i &&
|
|
830
|
-
var
|
|
831
|
-
i.index +=
|
|
829
|
+
if (i && s && i[1]) {
|
|
830
|
+
var c = i[1].length;
|
|
831
|
+
i.index += c, i[0] = i[0].slice(c);
|
|
832
832
|
}
|
|
833
833
|
return i;
|
|
834
834
|
}
|
|
835
|
-
function
|
|
836
|
-
for (var
|
|
837
|
-
if (!(!n.hasOwnProperty(
|
|
838
|
-
var u = n[
|
|
835
|
+
function I(t, e, n, s, i, c) {
|
|
836
|
+
for (var f in n)
|
|
837
|
+
if (!(!n.hasOwnProperty(f) || !n[f])) {
|
|
838
|
+
var u = n[f];
|
|
839
839
|
u = Array.isArray(u) ? u : [u];
|
|
840
|
-
for (var
|
|
841
|
-
if (
|
|
840
|
+
for (var S = 0; S < u.length; ++S) {
|
|
841
|
+
if (c && c.cause == f + "," + S)
|
|
842
842
|
return;
|
|
843
|
-
var _ = u[
|
|
844
|
-
if (
|
|
845
|
-
var
|
|
846
|
-
_.pattern = RegExp(_.pattern.source,
|
|
843
|
+
var _ = u[S], P = _.inside, V = !!_.lookbehind, E = !!_.greedy, w = _.alias;
|
|
844
|
+
if (E && !_.pattern.global) {
|
|
845
|
+
var O = _.pattern.toString().match(/[imsuy]*$/)[0];
|
|
846
|
+
_.pattern = RegExp(_.pattern.source, O + "g");
|
|
847
847
|
}
|
|
848
|
-
for (var Y = _.pattern || _,
|
|
849
|
-
var z =
|
|
848
|
+
for (var Y = _.pattern || _, N = s.next, M = i; N !== e.tail && !(c && M >= c.reach); M += N.value.length, N = N.next) {
|
|
849
|
+
var z = N.value;
|
|
850
850
|
if (e.length > t.length)
|
|
851
851
|
return;
|
|
852
|
-
if (!(z instanceof
|
|
852
|
+
if (!(z instanceof b)) {
|
|
853
853
|
var X = 1, $;
|
|
854
|
-
if (
|
|
855
|
-
if ($ =
|
|
854
|
+
if (E) {
|
|
855
|
+
if ($ = g(Y, M, t, V), !$ || $.index >= t.length)
|
|
856
856
|
break;
|
|
857
|
-
var Z = $.index,
|
|
858
|
-
for (B +=
|
|
859
|
-
|
|
860
|
-
if (B -=
|
|
857
|
+
var Z = $.index, he = $.index + $[0].length, B = M;
|
|
858
|
+
for (B += N.value.length; Z >= B; )
|
|
859
|
+
N = N.next, B += N.value.length;
|
|
860
|
+
if (B -= N.value.length, M = B, N.value instanceof b)
|
|
861
861
|
continue;
|
|
862
|
-
for (var j =
|
|
862
|
+
for (var j = N; j !== e.tail && (B < he || typeof j.value == "string"); j = j.next)
|
|
863
863
|
X++, B += j.value.length;
|
|
864
864
|
X--, z = t.slice(M, B), $.index -= M;
|
|
865
|
-
} else if ($ =
|
|
865
|
+
} else if ($ = g(Y, 0, z, V), !$)
|
|
866
866
|
continue;
|
|
867
|
-
var Z = $.index, K = $[0], Q = z.slice(0, Z),
|
|
868
|
-
|
|
869
|
-
var q =
|
|
870
|
-
Q && (q =
|
|
871
|
-
var
|
|
872
|
-
if (
|
|
867
|
+
var Z = $.index, K = $[0], Q = z.slice(0, Z), le = z.slice(Z + K.length), ee = M + z.length;
|
|
868
|
+
c && ee > c.reach && (c.reach = ee);
|
|
869
|
+
var q = N.prev;
|
|
870
|
+
Q && (q = F(e, q, Q), M += Q.length), D(e, q, X);
|
|
871
|
+
var fe = new b(f, P ? r.tokenize(K, P) : K, w, K);
|
|
872
|
+
if (N = F(e, q, fe), le && F(e, N, le), X > 1) {
|
|
873
873
|
var te = {
|
|
874
|
-
cause:
|
|
874
|
+
cause: f + "," + S,
|
|
875
875
|
reach: ee
|
|
876
876
|
};
|
|
877
|
-
|
|
877
|
+
I(t, e, n, N.prev, M, te), c && te.reach > c.reach && (c.reach = te.reach);
|
|
878
878
|
}
|
|
879
879
|
}
|
|
880
880
|
}
|
|
881
881
|
}
|
|
882
882
|
}
|
|
883
883
|
}
|
|
884
|
-
function
|
|
884
|
+
function L() {
|
|
885
885
|
var t = { value: null, prev: null, next: null }, e = { value: null, prev: t, next: null };
|
|
886
886
|
t.next = e, this.head = t, this.tail = e, this.length = 0;
|
|
887
887
|
}
|
|
888
|
-
function
|
|
889
|
-
var
|
|
890
|
-
return e.next = i,
|
|
888
|
+
function F(t, e, n) {
|
|
889
|
+
var s = e.next, i = { value: n, prev: e, next: s };
|
|
890
|
+
return e.next = i, s.prev = i, t.length++, i;
|
|
891
891
|
}
|
|
892
|
-
function
|
|
893
|
-
for (var
|
|
894
|
-
|
|
895
|
-
e.next =
|
|
892
|
+
function D(t, e, n) {
|
|
893
|
+
for (var s = e.next, i = 0; i < n && s !== t.tail; i++)
|
|
894
|
+
s = s.next;
|
|
895
|
+
e.next = s, s.prev = e, t.length -= i;
|
|
896
896
|
}
|
|
897
|
-
function
|
|
897
|
+
function T(t) {
|
|
898
898
|
for (var e = [], n = t.head.next; n !== t.tail; )
|
|
899
899
|
e.push(n.value), n = n.next;
|
|
900
900
|
return e;
|
|
901
901
|
}
|
|
902
902
|
if (!l.document)
|
|
903
|
-
return l.addEventListener && (
|
|
904
|
-
var e = JSON.parse(t.data), n = e.language,
|
|
905
|
-
l.postMessage(
|
|
906
|
-
}, !1)),
|
|
907
|
-
var
|
|
908
|
-
|
|
909
|
-
function
|
|
910
|
-
|
|
903
|
+
return l.addEventListener && (r.disableWorkerMessageHandler || l.addEventListener("message", function(t) {
|
|
904
|
+
var e = JSON.parse(t.data), n = e.language, s = e.code, i = e.immediateClose;
|
|
905
|
+
l.postMessage(r.highlight(s, r.languages[n], n)), i && l.close();
|
|
906
|
+
}, !1)), r;
|
|
907
|
+
var h = r.util.currentScript();
|
|
908
|
+
h && (r.filename = h.src, h.hasAttribute("data-manual") && (r.manual = !0));
|
|
909
|
+
function y() {
|
|
910
|
+
r.manual || r.highlightAll();
|
|
911
911
|
}
|
|
912
|
-
if (!
|
|
913
|
-
var
|
|
914
|
-
|
|
912
|
+
if (!r.manual) {
|
|
913
|
+
var k = document.readyState;
|
|
914
|
+
k === "loading" || k === "interactive" && h && h.defer ? document.addEventListener("DOMContentLoaded", y) : window.requestAnimationFrame ? window.requestAnimationFrame(y) : window.setTimeout(y, 16);
|
|
915
915
|
}
|
|
916
|
-
return
|
|
917
|
-
}(
|
|
918
|
-
o.exports && (o.exports = a), typeof
|
|
916
|
+
return r;
|
|
917
|
+
}(d);
|
|
918
|
+
o.exports && (o.exports = a), typeof ce < "u" && (ce.Prism = a), a.languages.markup = {
|
|
919
919
|
comment: {
|
|
920
920
|
pattern: /<!--(?:(?!<!--)[\s\S])*?-->/,
|
|
921
921
|
greedy: !0
|
|
@@ -1006,32 +1006,32 @@ var me = { exports: {} };
|
|
|
1006
1006
|
* @example
|
|
1007
1007
|
* addInlined('style', 'css');
|
|
1008
1008
|
*/
|
|
1009
|
-
value: function(
|
|
1009
|
+
value: function(p, v) {
|
|
1010
1010
|
var A = {};
|
|
1011
|
-
A["language-" +
|
|
1011
|
+
A["language-" + v] = {
|
|
1012
1012
|
pattern: /(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,
|
|
1013
1013
|
lookbehind: !0,
|
|
1014
|
-
inside: a.languages[
|
|
1014
|
+
inside: a.languages[v]
|
|
1015
1015
|
}, A.cdata = /^<!\[CDATA\[|\]\]>$/i;
|
|
1016
|
-
var
|
|
1016
|
+
var r = {
|
|
1017
1017
|
"included-cdata": {
|
|
1018
1018
|
pattern: /<!\[CDATA\[[\s\S]*?\]\]>/i,
|
|
1019
1019
|
inside: A
|
|
1020
1020
|
}
|
|
1021
1021
|
};
|
|
1022
|
-
|
|
1022
|
+
r["language-" + v] = {
|
|
1023
1023
|
pattern: /[\s\S]+/,
|
|
1024
|
-
inside: a.languages[
|
|
1024
|
+
inside: a.languages[v]
|
|
1025
1025
|
};
|
|
1026
|
-
var
|
|
1027
|
-
|
|
1026
|
+
var b = {};
|
|
1027
|
+
b[p] = {
|
|
1028
1028
|
pattern: RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g, function() {
|
|
1029
|
-
return
|
|
1029
|
+
return p;
|
|
1030
1030
|
}), "i"),
|
|
1031
1031
|
lookbehind: !0,
|
|
1032
1032
|
greedy: !0,
|
|
1033
|
-
inside:
|
|
1034
|
-
}, a.languages.insertBefore("markup", "cdata",
|
|
1033
|
+
inside: r
|
|
1034
|
+
}, a.languages.insertBefore("markup", "cdata", b);
|
|
1035
1035
|
}
|
|
1036
1036
|
}), Object.defineProperty(a.languages.markup.tag, "addAttribute", {
|
|
1037
1037
|
/**
|
|
@@ -1045,7 +1045,7 @@ var me = { exports: {} };
|
|
|
1045
1045
|
* @example
|
|
1046
1046
|
* addAttribute('style', 'css');
|
|
1047
1047
|
*/
|
|
1048
|
-
value: function(l,
|
|
1048
|
+
value: function(l, p) {
|
|
1049
1049
|
a.languages.markup.tag.inside["special-attr"].push({
|
|
1050
1050
|
pattern: RegExp(
|
|
1051
1051
|
/(^|["'\s])/.source + "(?:" + l + ")" + /\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,
|
|
@@ -1060,8 +1060,8 @@ var me = { exports: {} };
|
|
|
1060
1060
|
value: {
|
|
1061
1061
|
pattern: /(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,
|
|
1062
1062
|
lookbehind: !0,
|
|
1063
|
-
alias: [
|
|
1064
|
-
inside: a.languages[
|
|
1063
|
+
alias: [p, "language-" + p],
|
|
1064
|
+
inside: a.languages[p]
|
|
1065
1065
|
},
|
|
1066
1066
|
punctuation: [
|
|
1067
1067
|
{
|
|
@@ -1076,11 +1076,11 @@ var me = { exports: {} };
|
|
|
1076
1076
|
});
|
|
1077
1077
|
}
|
|
1078
1078
|
}), a.languages.html = a.languages.markup, a.languages.mathml = a.languages.markup, a.languages.svg = a.languages.markup, a.languages.xml = a.languages.extend("markup", {}), a.languages.ssml = a.languages.xml, a.languages.atom = a.languages.xml, a.languages.rss = a.languages.xml, function(l) {
|
|
1079
|
-
var
|
|
1079
|
+
var p = /(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;
|
|
1080
1080
|
l.languages.css = {
|
|
1081
1081
|
comment: /\/\*[\s\S]*?\*\//,
|
|
1082
1082
|
atrule: {
|
|
1083
|
-
pattern: RegExp("@[\\w-](?:" + /[^;{\s"']|\s+(?!\s)/.source + "|" +
|
|
1083
|
+
pattern: RegExp("@[\\w-](?:" + /[^;{\s"']|\s+(?!\s)/.source + "|" + p.source + ")*?" + /(?:;|(?=\s*\{))/.source),
|
|
1084
1084
|
inside: {
|
|
1085
1085
|
rule: /^@[\w-]+/,
|
|
1086
1086
|
"selector-function-argument": {
|
|
@@ -1097,23 +1097,23 @@ var me = { exports: {} };
|
|
|
1097
1097
|
},
|
|
1098
1098
|
url: {
|
|
1099
1099
|
// https://drafts.csswg.org/css-values-3/#urls
|
|
1100
|
-
pattern: RegExp("\\burl\\((?:" +
|
|
1100
|
+
pattern: RegExp("\\burl\\((?:" + p.source + "|" + /(?:[^\\\r\n()"']|\\[\s\S])*/.source + ")\\)", "i"),
|
|
1101
1101
|
greedy: !0,
|
|
1102
1102
|
inside: {
|
|
1103
1103
|
function: /^url/i,
|
|
1104
1104
|
punctuation: /^\(|\)$/,
|
|
1105
1105
|
string: {
|
|
1106
|
-
pattern: RegExp("^" +
|
|
1106
|
+
pattern: RegExp("^" + p.source + "$"),
|
|
1107
1107
|
alias: "url"
|
|
1108
1108
|
}
|
|
1109
1109
|
}
|
|
1110
1110
|
},
|
|
1111
1111
|
selector: {
|
|
1112
|
-
pattern: RegExp(`(^|[{}\\s])[^{}\\s](?:[^{};"'\\s]|\\s+(?![\\s{])|` +
|
|
1112
|
+
pattern: RegExp(`(^|[{}\\s])[^{}\\s](?:[^{};"'\\s]|\\s+(?![\\s{])|` + p.source + ")*(?=\\s*\\{)"),
|
|
1113
1113
|
lookbehind: !0
|
|
1114
1114
|
},
|
|
1115
1115
|
string: {
|
|
1116
|
-
pattern:
|
|
1116
|
+
pattern: p,
|
|
1117
1117
|
greedy: !0
|
|
1118
1118
|
},
|
|
1119
1119
|
property: {
|
|
@@ -1127,8 +1127,8 @@ var me = { exports: {} };
|
|
|
1127
1127
|
},
|
|
1128
1128
|
punctuation: /[(){};:,]/
|
|
1129
1129
|
}, l.languages.css.atrule.inside.rest = l.languages.css;
|
|
1130
|
-
var
|
|
1131
|
-
|
|
1130
|
+
var v = l.languages.markup;
|
|
1131
|
+
v && (v.tag.addInlined("style", "css"), v.tag.addAttribute("style", "css"));
|
|
1132
1132
|
}(a), a.languages.clike = {
|
|
1133
1133
|
comment: [
|
|
1134
1134
|
{
|
|
@@ -1293,9 +1293,9 @@ var me = { exports: {} };
|
|
|
1293
1293
|
if (typeof a > "u" || typeof document > "u")
|
|
1294
1294
|
return;
|
|
1295
1295
|
Element.prototype.matches || (Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector);
|
|
1296
|
-
var l = "Loading…",
|
|
1297
|
-
return "✖ Error " +
|
|
1298
|
-
},
|
|
1296
|
+
var l = "Loading…", p = function(h, y) {
|
|
1297
|
+
return "✖ Error " + h + " while fetching file: " + y;
|
|
1298
|
+
}, v = "✖ Error: File does not exist or is empty", A = {
|
|
1299
1299
|
js: "javascript",
|
|
1300
1300
|
py: "python",
|
|
1301
1301
|
rb: "ruby",
|
|
@@ -1305,52 +1305,52 @@ var me = { exports: {} };
|
|
|
1305
1305
|
bat: "batch",
|
|
1306
1306
|
h: "c",
|
|
1307
1307
|
tex: "latex"
|
|
1308
|
-
},
|
|
1309
|
-
function
|
|
1308
|
+
}, r = "data-src-status", b = "loading", g = "loaded", I = "failed", L = "pre[data-src]:not([" + r + '="' + g + '"]):not([' + r + '="' + b + '"])';
|
|
1309
|
+
function F(h, y, k) {
|
|
1310
1310
|
var t = new XMLHttpRequest();
|
|
1311
|
-
t.open("GET",
|
|
1312
|
-
t.readyState == 4 && (t.status < 400 && t.responseText ?
|
|
1311
|
+
t.open("GET", h, !0), t.onreadystatechange = function() {
|
|
1312
|
+
t.readyState == 4 && (t.status < 400 && t.responseText ? y(t.responseText) : t.status >= 400 ? k(p(t.status, t.statusText)) : k(v));
|
|
1313
1313
|
}, t.send(null);
|
|
1314
1314
|
}
|
|
1315
|
-
function
|
|
1316
|
-
var
|
|
1317
|
-
if (
|
|
1318
|
-
var
|
|
1319
|
-
return t ? e ? [
|
|
1315
|
+
function D(h) {
|
|
1316
|
+
var y = /^\s*(\d+)\s*(?:(,)\s*(?:(\d+)\s*)?)?$/.exec(h || "");
|
|
1317
|
+
if (y) {
|
|
1318
|
+
var k = Number(y[1]), t = y[2], e = y[3];
|
|
1319
|
+
return t ? e ? [k, Number(e)] : [k, void 0] : [k, k];
|
|
1320
1320
|
}
|
|
1321
1321
|
}
|
|
1322
|
-
a.hooks.add("before-highlightall", function(
|
|
1323
|
-
|
|
1324
|
-
}), a.hooks.add("before-sanity-check", function(
|
|
1325
|
-
var
|
|
1322
|
+
a.hooks.add("before-highlightall", function(h) {
|
|
1323
|
+
h.selector += ", " + L;
|
|
1324
|
+
}), a.hooks.add("before-sanity-check", function(h) {
|
|
1325
|
+
var y = (
|
|
1326
1326
|
/** @type {HTMLPreElement} */
|
|
1327
|
-
|
|
1327
|
+
h.element
|
|
1328
1328
|
);
|
|
1329
|
-
if (
|
|
1330
|
-
|
|
1331
|
-
var
|
|
1332
|
-
|
|
1333
|
-
var t =
|
|
1329
|
+
if (y.matches(L)) {
|
|
1330
|
+
h.code = "", y.setAttribute(r, b);
|
|
1331
|
+
var k = y.appendChild(document.createElement("CODE"));
|
|
1332
|
+
k.textContent = l;
|
|
1333
|
+
var t = y.getAttribute("data-src"), e = h.language;
|
|
1334
1334
|
if (e === "none") {
|
|
1335
1335
|
var n = (/\.(\w+)$/.exec(t) || [, "none"])[1];
|
|
1336
1336
|
e = A[n] || n;
|
|
1337
1337
|
}
|
|
1338
|
-
a.util.setLanguage(
|
|
1339
|
-
var
|
|
1340
|
-
|
|
1338
|
+
a.util.setLanguage(k, e), a.util.setLanguage(y, e);
|
|
1339
|
+
var s = a.plugins.autoloader;
|
|
1340
|
+
s && s.loadLanguages(e), F(
|
|
1341
1341
|
t,
|
|
1342
1342
|
function(i) {
|
|
1343
|
-
|
|
1344
|
-
var
|
|
1345
|
-
if (
|
|
1346
|
-
var
|
|
1347
|
-
u < 0 && (u +=
|
|
1348
|
-
`),
|
|
1343
|
+
y.setAttribute(r, g);
|
|
1344
|
+
var c = D(y.getAttribute("data-range"));
|
|
1345
|
+
if (c) {
|
|
1346
|
+
var f = i.split(/\r\n?|\n/g), u = c[0], S = c[1] == null ? f.length : c[1];
|
|
1347
|
+
u < 0 && (u += f.length), u = Math.max(0, Math.min(u - 1, f.length)), S < 0 && (S += f.length), S = Math.max(0, Math.min(S, f.length)), i = f.slice(u, S).join(`
|
|
1348
|
+
`), y.hasAttribute("data-start") || y.setAttribute("data-start", String(u + 1));
|
|
1349
1349
|
}
|
|
1350
|
-
|
|
1350
|
+
k.textContent = i, a.highlightElement(k);
|
|
1351
1351
|
},
|
|
1352
1352
|
function(i) {
|
|
1353
|
-
|
|
1353
|
+
y.setAttribute(r, I), k.textContent = i;
|
|
1354
1354
|
}
|
|
1355
1355
|
);
|
|
1356
1356
|
}
|
|
@@ -1362,18 +1362,18 @@ var me = { exports: {} };
|
|
|
1362
1362
|
*
|
|
1363
1363
|
* @param {ParentNode} [container=document]
|
|
1364
1364
|
*/
|
|
1365
|
-
highlight: function(
|
|
1366
|
-
for (var
|
|
1365
|
+
highlight: function(y) {
|
|
1366
|
+
for (var k = (y || document).querySelectorAll(L), t = 0, e; e = k[t++]; )
|
|
1367
1367
|
a.highlightElement(e);
|
|
1368
1368
|
}
|
|
1369
1369
|
};
|
|
1370
|
-
var
|
|
1370
|
+
var T = !1;
|
|
1371
1371
|
a.fileHighlight = function() {
|
|
1372
|
-
|
|
1372
|
+
T || (console.warn("Prism.fileHighlight is deprecated. Use `Prism.plugins.fileHighlight.highlight` instead."), T = !0), a.plugins.fileHighlight.highlight.apply(this, arguments);
|
|
1373
1373
|
};
|
|
1374
1374
|
}();
|
|
1375
|
-
})(
|
|
1376
|
-
var De =
|
|
1375
|
+
})(pe);
|
|
1376
|
+
var De = pe.exports;
|
|
1377
1377
|
const re = /* @__PURE__ */ Ce(De);
|
|
1378
1378
|
Prism.languages.clike = {
|
|
1379
1379
|
comment: [
|
|
@@ -1633,7 +1633,7 @@ Prism.languages.insertBefore("go", "string", {
|
|
|
1633
1633
|
});
|
|
1634
1634
|
delete Prism.languages.go["class-name"];
|
|
1635
1635
|
(function(o) {
|
|
1636
|
-
var
|
|
1636
|
+
var d = /\b(?:abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|exports|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|module|native|new|non-sealed|null|open|opens|package|permits|private|protected|provides|public|record(?!\s*[(){}[\]<>=%~.:,;?+\-*/&|^])|requires|return|sealed|short|static|strictfp|super|switch|synchronized|this|throw|throws|to|transient|transitive|try|uses|var|void|volatile|while|with|yield)\b/, a = /(?:[a-z]\w*\s*\.\s*)*(?:[A-Z]\w*\s*\.\s*)*/.source, l = {
|
|
1637
1637
|
pattern: RegExp(/(^|[^\w.])/.source + a + /[A-Z](?:[\d_A-Z]*[a-z]\w*)?\b/.source),
|
|
1638
1638
|
lookbehind: !0,
|
|
1639
1639
|
inside: {
|
|
@@ -1669,7 +1669,7 @@ delete Prism.languages.go["class-name"];
|
|
|
1669
1669
|
inside: l.inside
|
|
1670
1670
|
}
|
|
1671
1671
|
],
|
|
1672
|
-
keyword:
|
|
1672
|
+
keyword: d,
|
|
1673
1673
|
function: [
|
|
1674
1674
|
o.languages.clike.function,
|
|
1675
1675
|
{
|
|
@@ -1704,7 +1704,7 @@ delete Prism.languages.go["class-name"];
|
|
|
1704
1704
|
pattern: /<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&))*>)*>)*>)*>/,
|
|
1705
1705
|
inside: {
|
|
1706
1706
|
"class-name": l,
|
|
1707
|
-
keyword:
|
|
1707
|
+
keyword: d,
|
|
1708
1708
|
punctuation: /[<>(),.:]/,
|
|
1709
1709
|
operator: /[?&|]/
|
|
1710
1710
|
}
|
|
@@ -1736,7 +1736,7 @@ delete Prism.languages.go["class-name"];
|
|
|
1736
1736
|
namespace: {
|
|
1737
1737
|
pattern: RegExp(
|
|
1738
1738
|
/(\b(?:exports|import(?:\s+static)?|module|open|opens|package|provides|requires|to|transitive|uses|with)\s+)(?!<keyword>)[a-z]\w*(?:\.[a-z]\w*)*\.?/.source.replace(/<keyword>/g, function() {
|
|
1739
|
-
return
|
|
1739
|
+
return d.source;
|
|
1740
1740
|
})
|
|
1741
1741
|
),
|
|
1742
1742
|
lookbehind: !0,
|
|
@@ -1823,16 +1823,16 @@ Prism.languages.insertBefore("c", "function", {
|
|
|
1823
1823
|
});
|
|
1824
1824
|
delete Prism.languages.c.boolean;
|
|
1825
1825
|
(function(o) {
|
|
1826
|
-
for (var
|
|
1827
|
-
|
|
1828
|
-
return
|
|
1826
|
+
for (var d = /\/\*(?:[^*/]|\*(?!\/)|\/(?!\*)|<self>)*\*\//.source, a = 0; a < 2; a++)
|
|
1827
|
+
d = d.replace(/<self>/g, function() {
|
|
1828
|
+
return d;
|
|
1829
1829
|
});
|
|
1830
|
-
|
|
1830
|
+
d = d.replace(/<self>/g, function() {
|
|
1831
1831
|
return /[^\s\S]/.source;
|
|
1832
1832
|
}), o.languages.rust = {
|
|
1833
1833
|
comment: [
|
|
1834
1834
|
{
|
|
1835
|
-
pattern: RegExp(/(^|[^\\])/.source +
|
|
1835
|
+
pattern: RegExp(/(^|[^\\])/.source + d),
|
|
1836
1836
|
lookbehind: !0,
|
|
1837
1837
|
greedy: !0
|
|
1838
1838
|
},
|
|
@@ -1972,7 +1972,7 @@ Prism.languages.sql = {
|
|
|
1972
1972
|
punctuation: /[;[\]()`,.]/
|
|
1973
1973
|
};
|
|
1974
1974
|
(function(o) {
|
|
1975
|
-
var
|
|
1975
|
+
var d = "\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b", a = {
|
|
1976
1976
|
pattern: /(^(["']?)\w+\2)[ \t]+\S.*/,
|
|
1977
1977
|
lookbehind: !0,
|
|
1978
1978
|
alias: "punctuation",
|
|
@@ -1982,7 +1982,7 @@ Prism.languages.sql = {
|
|
|
1982
1982
|
}, l = {
|
|
1983
1983
|
bash: a,
|
|
1984
1984
|
environment: {
|
|
1985
|
-
pattern: RegExp("\\$" +
|
|
1985
|
+
pattern: RegExp("\\$" + d),
|
|
1986
1986
|
alias: "constant"
|
|
1987
1987
|
},
|
|
1988
1988
|
variable: [
|
|
@@ -2022,7 +2022,7 @@ Prism.languages.sql = {
|
|
|
2022
2022
|
operator: /:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,
|
|
2023
2023
|
punctuation: /[\[\]]/,
|
|
2024
2024
|
environment: {
|
|
2025
|
-
pattern: RegExp("(\\{)" +
|
|
2025
|
+
pattern: RegExp("(\\{)" + d),
|
|
2026
2026
|
lookbehind: !0,
|
|
2027
2027
|
alias: "constant"
|
|
2028
2028
|
}
|
|
@@ -2071,7 +2071,7 @@ Prism.languages.sql = {
|
|
|
2071
2071
|
pattern: /(^|[\s;|&]|[<>]\()\w+(?:\.\w+)*(?=\+?=)/,
|
|
2072
2072
|
inside: {
|
|
2073
2073
|
environment: {
|
|
2074
|
-
pattern: RegExp("(^|[\\s;|&]|[<>]\\()" +
|
|
2074
|
+
pattern: RegExp("(^|[\\s;|&]|[<>]\\()" + d),
|
|
2075
2075
|
lookbehind: !0,
|
|
2076
2076
|
alias: "constant"
|
|
2077
2077
|
}
|
|
@@ -2127,7 +2127,7 @@ Prism.languages.sql = {
|
|
|
2127
2127
|
}
|
|
2128
2128
|
],
|
|
2129
2129
|
environment: {
|
|
2130
|
-
pattern: RegExp("\\$?" +
|
|
2130
|
+
pattern: RegExp("\\$?" + d),
|
|
2131
2131
|
alias: "constant"
|
|
2132
2132
|
},
|
|
2133
2133
|
variable: l.variable,
|
|
@@ -2170,7 +2170,7 @@ Prism.languages.sql = {
|
|
|
2170
2170
|
lookbehind: !0
|
|
2171
2171
|
}
|
|
2172
2172
|
}, a.inside = o.languages.bash;
|
|
2173
|
-
for (var
|
|
2173
|
+
for (var p = [
|
|
2174
2174
|
"comment",
|
|
2175
2175
|
"function-name",
|
|
2176
2176
|
"for-or-select",
|
|
@@ -2186,8 +2186,8 @@ Prism.languages.sql = {
|
|
|
2186
2186
|
"operator",
|
|
2187
2187
|
"punctuation",
|
|
2188
2188
|
"number"
|
|
2189
|
-
],
|
|
2190
|
-
|
|
2189
|
+
], v = l.variable[1].inside, A = 0; A < p.length; A++)
|
|
2190
|
+
v[p[A]] = o.languages.bash[p[A]];
|
|
2191
2191
|
o.languages.sh = o.languages.bash, o.languages.shell = o.languages.bash;
|
|
2192
2192
|
})(Prism);
|
|
2193
2193
|
Prism.languages.json = {
|
|
@@ -2224,22 +2224,11 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2224
2224
|
disabled: { type: Boolean, default: !1 }
|
|
2225
2225
|
},
|
|
2226
2226
|
emits: ["update:modelValue"],
|
|
2227
|
-
setup(o, { emit:
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
}));
|
|
2231
|
-
|
|
2232
|
-
if (typeof document > "u") return;
|
|
2233
|
-
const p = g === "dark" ? "prism-okaidia" : "prism", S = document.getElementById("prism-theme-style"), t = `https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/${p}.min.css`;
|
|
2234
|
-
if (S)
|
|
2235
|
-
S.setAttribute("href", t);
|
|
2236
|
-
else {
|
|
2237
|
-
const e = document.createElement("link");
|
|
2238
|
-
e.id = "prism-theme-style", e.rel = "stylesheet", e.href = t, document.head.appendChild(e);
|
|
2239
|
-
}
|
|
2240
|
-
}
|
|
2241
|
-
typeof window < "u" && (window.Prism = re);
|
|
2242
|
-
const l = o, m = c, y = L(null), A = L(null), s = {
|
|
2227
|
+
setup(o, { emit: d }) {
|
|
2228
|
+
me((T) => ({
|
|
2229
|
+
v52686fa0: b.value
|
|
2230
|
+
})), typeof window < "u" && (window.Prism = re);
|
|
2231
|
+
const a = o, l = d, p = C(null), v = C(null), A = {
|
|
2243
2232
|
javascript: "javascript",
|
|
2244
2233
|
js: "javascript",
|
|
2245
2234
|
typescript: "typescript",
|
|
@@ -2270,85 +2259,81 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2270
2259
|
yml: "yaml",
|
|
2271
2260
|
markdown: "markdown",
|
|
2272
2261
|
md: "markdown"
|
|
2273
|
-
},
|
|
2262
|
+
}, r = G(() => A[a.language.toLowerCase()] || "javascript"), b = G(() => a.theme === "dark" ? "#1e1e1e" : "#fafafa"), g = G(() => {
|
|
2274
2263
|
try {
|
|
2275
|
-
const
|
|
2276
|
-
if (
|
|
2277
|
-
return re.highlight(
|
|
2264
|
+
const T = re.languages[r.value];
|
|
2265
|
+
if (T)
|
|
2266
|
+
return re.highlight(a.modelValue || "", T, r.value);
|
|
2278
2267
|
} catch {
|
|
2279
2268
|
}
|
|
2280
|
-
return
|
|
2269
|
+
return I(a.modelValue || "");
|
|
2281
2270
|
});
|
|
2282
|
-
function
|
|
2283
|
-
const
|
|
2284
|
-
return
|
|
2271
|
+
function I(T) {
|
|
2272
|
+
const h = document.createElement("div");
|
|
2273
|
+
return h.textContent = T, h.innerHTML;
|
|
2285
2274
|
}
|
|
2286
|
-
function
|
|
2287
|
-
const
|
|
2288
|
-
|
|
2275
|
+
function L(T) {
|
|
2276
|
+
const h = T.target;
|
|
2277
|
+
l("update:modelValue", h.value);
|
|
2289
2278
|
}
|
|
2290
|
-
function
|
|
2291
|
-
|
|
2279
|
+
function F() {
|
|
2280
|
+
p.value && v.value && (v.value.scrollTop = p.value.scrollTop, v.value.scrollLeft = p.value.scrollLeft);
|
|
2292
2281
|
}
|
|
2293
|
-
function D(
|
|
2294
|
-
if (
|
|
2295
|
-
|
|
2296
|
-
const
|
|
2297
|
-
|
|
2282
|
+
function D(T) {
|
|
2283
|
+
if (T.key === "Tab") {
|
|
2284
|
+
T.preventDefault();
|
|
2285
|
+
const h = T.target, y = h.selectionStart, k = h.selectionEnd, t = h.value;
|
|
2286
|
+
h.value = t.substring(0, y) + " " + t.substring(k), h.selectionStart = h.selectionEnd = y + 2, l("update:modelValue", h.value);
|
|
2298
2287
|
}
|
|
2299
2288
|
}
|
|
2300
|
-
return
|
|
2301
|
-
|
|
2302
|
-
}), le(() => l.theme, (g) => {
|
|
2303
|
-
a(g);
|
|
2304
|
-
}), (g, p) => (F(), R("div", {
|
|
2305
|
-
class: W(["code-editor", `theme-${o.theme}`])
|
|
2289
|
+
return (T, h) => (R(), x("div", {
|
|
2290
|
+
class: W(["hep-cr-editor", `hep-cr-theme-${o.theme}`])
|
|
2306
2291
|
}, [
|
|
2307
|
-
|
|
2292
|
+
m("pre", {
|
|
2308
2293
|
ref_key: "highlightRef",
|
|
2309
|
-
ref:
|
|
2310
|
-
class: W(["
|
|
2294
|
+
ref: v,
|
|
2295
|
+
class: W(["hep-cr-highlight", [`language-${r.value}`, `hep-cr-prism-${o.theme}`]]),
|
|
2311
2296
|
"aria-hidden": "true"
|
|
2312
2297
|
}, [
|
|
2313
|
-
|
|
2298
|
+
m("code", { innerHTML: g.value }, null, 8, Pe)
|
|
2314
2299
|
], 2),
|
|
2315
|
-
|
|
2300
|
+
m("textarea", {
|
|
2316
2301
|
ref_key: "codeRef",
|
|
2317
|
-
ref:
|
|
2318
|
-
class: "
|
|
2302
|
+
ref: p,
|
|
2303
|
+
class: "hep-cr-input",
|
|
2319
2304
|
value: o.modelValue,
|
|
2320
2305
|
disabled: o.disabled,
|
|
2321
|
-
onInput:
|
|
2322
|
-
onScroll:
|
|
2306
|
+
onInput: L,
|
|
2307
|
+
onScroll: F,
|
|
2323
2308
|
onKeydown: D,
|
|
2324
2309
|
spellcheck: "false",
|
|
2325
2310
|
placeholder: "Write your code here..."
|
|
2326
2311
|
}, null, 40, $e)
|
|
2327
2312
|
], 2));
|
|
2328
2313
|
}
|
|
2329
|
-
}),
|
|
2314
|
+
}), ge = (o, d) => {
|
|
2330
2315
|
const a = o.__vccOpts || o;
|
|
2331
|
-
for (const [l,
|
|
2332
|
-
a[l] =
|
|
2316
|
+
for (const [l, p] of d)
|
|
2317
|
+
a[l] = p;
|
|
2333
2318
|
return a;
|
|
2334
|
-
}, Ue = /* @__PURE__ */
|
|
2319
|
+
}, Ue = /* @__PURE__ */ ge(Me, [["__scopeId", "data-v-ce046296"]]), He = { class: "hep-cr-header" }, Be = { class: "hep-cr-controls" }, Ge = ["disabled"], ze = {
|
|
2335
2320
|
key: 0,
|
|
2336
2321
|
value: ""
|
|
2337
|
-
}, je = ["value"], We = { class: "
|
|
2322
|
+
}, je = ["value"], We = { class: "hep-cr-actions" }, Ve = ["disabled"], Ye = {
|
|
2338
2323
|
key: 0,
|
|
2339
|
-
class: "spinner"
|
|
2324
|
+
class: "hep-cr-spinner"
|
|
2340
2325
|
}, Xe = {
|
|
2341
2326
|
key: 1,
|
|
2342
|
-
class: "run-icon"
|
|
2327
|
+
class: "hep-cr-run-icon"
|
|
2343
2328
|
}, Ze = ["title"], Ke = {
|
|
2344
2329
|
key: 0,
|
|
2345
|
-
class: "error
|
|
2346
|
-
}, qe = { class: "
|
|
2330
|
+
class: "hep-cr-error"
|
|
2331
|
+
}, qe = { class: "hep-cr-main" }, Je = { class: "hep-cr-panel-header" }, Qe = { class: "hep-cr-language-badge" }, et = { class: "hep-cr-panel-header" }, tt = { class: "hep-cr-output-tabs" }, at = { class: "hep-cr-output-actions" }, nt = {
|
|
2347
2332
|
key: 0,
|
|
2348
|
-
class: "execution-time"
|
|
2349
|
-
}, rt = { class: "output-content" }, st = { key: 0 }, it = {
|
|
2333
|
+
class: "hep-cr-execution-time"
|
|
2334
|
+
}, rt = { class: "hep-cr-output-content" }, st = { key: 0 }, it = {
|
|
2350
2335
|
key: 1,
|
|
2351
|
-
class: "stderr"
|
|
2336
|
+
class: "hep-cr-stderr"
|
|
2352
2337
|
}, ot = /* @__PURE__ */ oe({
|
|
2353
2338
|
__name: "CodeRunner",
|
|
2354
2339
|
props: {
|
|
@@ -2362,173 +2347,173 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2362
2347
|
executorLabel: { default: "运行" }
|
|
2363
2348
|
},
|
|
2364
2349
|
emits: ["execute-start", "execute-end", "language-change"],
|
|
2365
|
-
setup(o, { emit:
|
|
2366
|
-
const a = o, l =
|
|
2367
|
-
function
|
|
2350
|
+
setup(o, { emit: d }) {
|
|
2351
|
+
const a = o, l = d, p = C([]), v = C(a.language), A = C(a.theme), r = C(""), b = C(""), g = C(""), I = C(!1), L = C(null), F = C("stdout"), D = C(null), T = C(!1), h = C(60);
|
|
2352
|
+
function y() {
|
|
2368
2353
|
A.value = A.value === "light" ? "dark" : "light";
|
|
2369
2354
|
}
|
|
2370
|
-
const
|
|
2355
|
+
const k = G(
|
|
2371
2356
|
() => new Ne({ pistonUrl: a.pistonUrl })
|
|
2372
|
-
), t = G(() =>
|
|
2373
|
-
value: `${
|
|
2374
|
-
label: `${
|
|
2357
|
+
), t = G(() => p.value.map((E) => ({
|
|
2358
|
+
value: `${E.language}:${E.version}`,
|
|
2359
|
+
label: `${E.language.charAt(0).toUpperCase() + E.language.slice(1)} ${E.version}`
|
|
2375
2360
|
}))), e = G(() => {
|
|
2376
|
-
const
|
|
2377
|
-
return
|
|
2361
|
+
const E = v.value;
|
|
2362
|
+
return E.includes(":") ? E.split(":")[0] : E;
|
|
2378
2363
|
});
|
|
2379
2364
|
async function n() {
|
|
2380
|
-
|
|
2365
|
+
T.value = !0, D.value = null;
|
|
2381
2366
|
try {
|
|
2382
|
-
|
|
2383
|
-
} catch (
|
|
2384
|
-
|
|
2367
|
+
p.value = await k.value.getRuntimes();
|
|
2368
|
+
} catch (E) {
|
|
2369
|
+
D.value = E instanceof Error ? E.message : "Failed to load runtimes";
|
|
2385
2370
|
} finally {
|
|
2386
|
-
|
|
2371
|
+
T.value = !1;
|
|
2387
2372
|
}
|
|
2388
2373
|
}
|
|
2389
|
-
|
|
2390
|
-
const
|
|
2391
|
-
|
|
2374
|
+
de(v, (E) => {
|
|
2375
|
+
const w = E.includes(":") ? E.split(":")[0] : E, O = ne(w);
|
|
2376
|
+
r.value = O, l("language-change", w, O);
|
|
2392
2377
|
});
|
|
2393
|
-
async function
|
|
2394
|
-
if (!
|
|
2395
|
-
|
|
2378
|
+
async function s() {
|
|
2379
|
+
if (!I.value) {
|
|
2380
|
+
I.value = !0, b.value = "", g.value = "", L.value = null, D.value = null, F.value = "stdout", l("execute-start");
|
|
2396
2381
|
try {
|
|
2397
|
-
const
|
|
2398
|
-
|
|
2399
|
-
} catch (
|
|
2400
|
-
|
|
2382
|
+
const E = await k.value.execute(e.value, r.value);
|
|
2383
|
+
b.value = E.output, g.value = E.stderr, L.value = E.executionTime || null, F.value = E.stderr ? "stderr" : "stdout", l("execute-end", E);
|
|
2384
|
+
} catch (E) {
|
|
2385
|
+
D.value = E instanceof Error ? E.message : "Execution failed", l("execute-end", {
|
|
2401
2386
|
success: !1,
|
|
2402
2387
|
output: "",
|
|
2403
|
-
stderr:
|
|
2388
|
+
stderr: D.value,
|
|
2404
2389
|
code: -1
|
|
2405
2390
|
});
|
|
2406
2391
|
} finally {
|
|
2407
|
-
|
|
2392
|
+
I.value = !1;
|
|
2408
2393
|
}
|
|
2409
2394
|
}
|
|
2410
2395
|
}
|
|
2411
2396
|
function i() {
|
|
2412
|
-
|
|
2397
|
+
b.value = "", g.value = "", L.value = null, D.value = null;
|
|
2413
2398
|
}
|
|
2414
|
-
async function
|
|
2415
|
-
const
|
|
2416
|
-
await navigator.clipboard.writeText(
|
|
2399
|
+
async function c() {
|
|
2400
|
+
const E = F.value === "stdout" ? b.value : g.value;
|
|
2401
|
+
await navigator.clipboard.writeText(E);
|
|
2417
2402
|
}
|
|
2418
|
-
function
|
|
2419
|
-
|
|
2403
|
+
function f() {
|
|
2404
|
+
r.value = ne(e.value);
|
|
2420
2405
|
}
|
|
2421
2406
|
let u = !1;
|
|
2422
|
-
function
|
|
2407
|
+
function S(E) {
|
|
2423
2408
|
u = !0, document.addEventListener("mousemove", _), document.addEventListener("mouseup", P), document.body.style.cursor = "col-resize", document.body.style.userSelect = "none";
|
|
2424
2409
|
}
|
|
2425
|
-
function _(
|
|
2410
|
+
function _(E) {
|
|
2426
2411
|
if (!u) return;
|
|
2427
|
-
const
|
|
2428
|
-
".
|
|
2412
|
+
const w = document.querySelector(
|
|
2413
|
+
".hep-cr-main"
|
|
2429
2414
|
);
|
|
2430
|
-
if (!
|
|
2431
|
-
const
|
|
2432
|
-
|
|
2415
|
+
if (!w) return;
|
|
2416
|
+
const O = w.getBoundingClientRect(), Y = (E.clientX - O.left) / O.width * 100;
|
|
2417
|
+
h.value = Math.max(20, Math.min(80, Y));
|
|
2433
2418
|
}
|
|
2434
2419
|
function P() {
|
|
2435
2420
|
u = !1, document.removeEventListener("mousemove", _), document.removeEventListener("mouseup", P), document.body.style.cursor = "", document.body.style.userSelect = "";
|
|
2436
2421
|
}
|
|
2437
|
-
|
|
2438
|
-
await n(),
|
|
2422
|
+
be(async () => {
|
|
2423
|
+
await n(), r.value || (r.value = a.defaultCode || ne(v.value));
|
|
2439
2424
|
});
|
|
2440
|
-
const V = G(() => `
|
|
2441
|
-
return (
|
|
2442
|
-
class: W(["
|
|
2425
|
+
const V = G(() => `hep-cr-runner-${A.value}`);
|
|
2426
|
+
return (E, w) => (R(), x("div", {
|
|
2427
|
+
class: W(["hep-cr-runner", V.value])
|
|
2443
2428
|
}, [
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
o.showLanguageSelector ? Ee((
|
|
2429
|
+
m("div", He, [
|
|
2430
|
+
m("div", Be, [
|
|
2431
|
+
o.showLanguageSelector ? Ee((R(), x("select", {
|
|
2447
2432
|
key: 0,
|
|
2448
|
-
"onUpdate:modelValue":
|
|
2449
|
-
class: "language-select",
|
|
2450
|
-
disabled:
|
|
2433
|
+
"onUpdate:modelValue": w[0] || (w[0] = (O) => v.value = O),
|
|
2434
|
+
class: "hep-cr-language-select",
|
|
2435
|
+
disabled: I.value
|
|
2451
2436
|
}, [
|
|
2452
|
-
|
|
2453
|
-
(
|
|
2454
|
-
key:
|
|
2455
|
-
value:
|
|
2456
|
-
}, H(
|
|
2437
|
+
T.value ? (R(), x("option", ze, "加载中...")) : U("", !0),
|
|
2438
|
+
(R(!0), x(ve, null, ye(t.value, (O) => (R(), x("option", {
|
|
2439
|
+
key: O.value,
|
|
2440
|
+
value: O.value
|
|
2441
|
+
}, H(O.label), 9, je))), 128))
|
|
2457
2442
|
], 8, Ge)), [
|
|
2458
|
-
[Ae,
|
|
2443
|
+
[Ae, v.value]
|
|
2459
2444
|
]) : U("", !0)
|
|
2460
2445
|
]),
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
class: "btn btn-run",
|
|
2464
|
-
disabled:
|
|
2465
|
-
onClick:
|
|
2446
|
+
m("div", We, [
|
|
2447
|
+
m("button", {
|
|
2448
|
+
class: "hep-cr-btn hep-cr-btn-run",
|
|
2449
|
+
disabled: I.value || T.value,
|
|
2450
|
+
onClick: s
|
|
2466
2451
|
}, [
|
|
2467
|
-
|
|
2468
|
-
Se(" " + H(
|
|
2452
|
+
I.value ? (R(), x("span", Ye)) : (R(), x("span", Xe, "▶")),
|
|
2453
|
+
Se(" " + H(I.value ? "运行中..." : o.executorLabel), 1)
|
|
2469
2454
|
], 8, Ve),
|
|
2470
|
-
o.showEditor && o.editable ? (
|
|
2455
|
+
o.showEditor && o.editable ? (R(), x("button", {
|
|
2471
2456
|
key: 0,
|
|
2472
|
-
class: "btn btn-reset",
|
|
2473
|
-
onClick:
|
|
2457
|
+
class: "hep-cr-btn hep-cr-btn-reset",
|
|
2458
|
+
onClick: f
|
|
2474
2459
|
}, " 重置 ")) : U("", !0),
|
|
2475
|
-
|
|
2476
|
-
class: "btn btn-theme",
|
|
2477
|
-
onClick:
|
|
2460
|
+
m("button", {
|
|
2461
|
+
class: "hep-cr-btn hep-cr-btn-theme",
|
|
2462
|
+
onClick: y,
|
|
2478
2463
|
title: A.value === "light" ? "Switch to dark mode" : "Switch to light mode"
|
|
2479
2464
|
}, H(A.value === "light" ? "🌙" : "☀️"), 9, Ze)
|
|
2480
2465
|
])
|
|
2481
2466
|
]),
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
o.showEditor ? (
|
|
2467
|
+
D.value ? (R(), x("div", Ke, H(D.value), 1)) : U("", !0),
|
|
2468
|
+
m("div", qe, [
|
|
2469
|
+
o.showEditor ? (R(), x("div", {
|
|
2485
2470
|
key: 0,
|
|
2486
|
-
class: "editor-panel",
|
|
2487
|
-
style: se({ width:
|
|
2471
|
+
class: "hep-cr-editor-panel",
|
|
2472
|
+
style: se({ width: h.value + "%" })
|
|
2488
2473
|
}, [
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2474
|
+
m("div", Je, [
|
|
2475
|
+
w[4] || (w[4] = m("span", { class: "hep-cr-panel-title" }, "编辑器", -1)),
|
|
2476
|
+
m("span", Qe, H(e.value), 1)
|
|
2492
2477
|
]),
|
|
2493
2478
|
ie(Ue, {
|
|
2494
|
-
modelValue:
|
|
2495
|
-
"onUpdate:modelValue":
|
|
2479
|
+
modelValue: r.value,
|
|
2480
|
+
"onUpdate:modelValue": w[1] || (w[1] = (O) => r.value = O),
|
|
2496
2481
|
language: e.value,
|
|
2497
2482
|
theme: A.value,
|
|
2498
|
-
disabled: !o.editable ||
|
|
2483
|
+
disabled: !o.editable || I.value
|
|
2499
2484
|
}, null, 8, ["modelValue", "language", "theme", "disabled"])
|
|
2500
2485
|
], 4)) : U("", !0),
|
|
2501
|
-
o.showEditor ? (
|
|
2486
|
+
o.showEditor ? (R(), x("div", {
|
|
2502
2487
|
key: 1,
|
|
2503
|
-
class: "resize-handle",
|
|
2504
|
-
onMousedown:
|
|
2505
|
-
}, [...
|
|
2506
|
-
|
|
2488
|
+
class: "hep-cr-resize-handle",
|
|
2489
|
+
onMousedown: S
|
|
2490
|
+
}, [...w[5] || (w[5] = [
|
|
2491
|
+
m("div", { class: "hep-cr-resize-line" }, null, -1)
|
|
2507
2492
|
])], 32)) : U("", !0),
|
|
2508
|
-
|
|
2509
|
-
class: "output-panel",
|
|
2510
|
-
style: se({ width: o.showEditor ? 100 -
|
|
2493
|
+
m("div", {
|
|
2494
|
+
class: "hep-cr-output-panel",
|
|
2495
|
+
style: se({ width: o.showEditor ? 100 - h.value + "%" : "100%" })
|
|
2511
2496
|
}, [
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
class: W(["tab", { active:
|
|
2516
|
-
onClick:
|
|
2497
|
+
m("div", et, [
|
|
2498
|
+
m("div", tt, [
|
|
2499
|
+
m("button", {
|
|
2500
|
+
class: W(["hep-cr-tab", { active: F.value === "stdout" }]),
|
|
2501
|
+
onClick: w[2] || (w[2] = (O) => F.value = "stdout")
|
|
2517
2502
|
}, " 输出 ", 2),
|
|
2518
|
-
|
|
2503
|
+
g.value ? (R(), x("button", {
|
|
2519
2504
|
key: 0,
|
|
2520
|
-
class: W(["tab", { active:
|
|
2521
|
-
onClick:
|
|
2505
|
+
class: W(["hep-cr-tab", { active: F.value === "stderr" }]),
|
|
2506
|
+
onClick: w[3] || (w[3] = (O) => F.value = "stderr")
|
|
2522
2507
|
}, " 错误 ", 2)) : U("", !0)
|
|
2523
2508
|
]),
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
class: "btn-icon",
|
|
2528
|
-
onClick:
|
|
2509
|
+
m("div", at, [
|
|
2510
|
+
L.value !== null ? (R(), x("span", nt, H(L.value) + "ms ", 1)) : U("", !0),
|
|
2511
|
+
m("button", {
|
|
2512
|
+
class: "hep-cr-btn-icon",
|
|
2513
|
+
onClick: c,
|
|
2529
2514
|
title: "复制"
|
|
2530
|
-
}, [...
|
|
2531
|
-
|
|
2515
|
+
}, [...w[6] || (w[6] = [
|
|
2516
|
+
m("svg", {
|
|
2532
2517
|
width: "14",
|
|
2533
2518
|
height: "14",
|
|
2534
2519
|
viewBox: "0 0 24 24",
|
|
@@ -2536,7 +2521,7 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2536
2521
|
stroke: "currentColor",
|
|
2537
2522
|
"stroke-width": "2"
|
|
2538
2523
|
}, [
|
|
2539
|
-
|
|
2524
|
+
m("rect", {
|
|
2540
2525
|
x: "9",
|
|
2541
2526
|
y: "9",
|
|
2542
2527
|
width: "13",
|
|
@@ -2544,15 +2529,15 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2544
2529
|
rx: "2",
|
|
2545
2530
|
ry: "2"
|
|
2546
2531
|
}),
|
|
2547
|
-
|
|
2532
|
+
m("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" })
|
|
2548
2533
|
], -1)
|
|
2549
2534
|
])]),
|
|
2550
|
-
|
|
2551
|
-
class: "btn-icon",
|
|
2535
|
+
m("button", {
|
|
2536
|
+
class: "hep-cr-btn-icon",
|
|
2552
2537
|
onClick: i,
|
|
2553
2538
|
title: "清除"
|
|
2554
|
-
}, [...
|
|
2555
|
-
|
|
2539
|
+
}, [...w[7] || (w[7] = [
|
|
2540
|
+
m("svg", {
|
|
2556
2541
|
width: "14",
|
|
2557
2542
|
height: "14",
|
|
2558
2543
|
viewBox: "0 0 24 24",
|
|
@@ -2560,23 +2545,23 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2560
2545
|
stroke: "currentColor",
|
|
2561
2546
|
"stroke-width": "2"
|
|
2562
2547
|
}, [
|
|
2563
|
-
|
|
2564
|
-
|
|
2548
|
+
m("polyline", { points: "3 6 5 6 21 6" }),
|
|
2549
|
+
m("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
2565
2550
|
], -1)
|
|
2566
2551
|
])])
|
|
2567
2552
|
])
|
|
2568
2553
|
]),
|
|
2569
|
-
|
|
2570
|
-
|
|
2554
|
+
m("div", rt, [
|
|
2555
|
+
F.value === "stdout" ? (R(), x("pre", st, H(b.value || '点击"运行"执行代码'), 1)) : (R(), x("pre", it, H(g.value), 1))
|
|
2571
2556
|
])
|
|
2572
2557
|
], 4)
|
|
2573
2558
|
])
|
|
2574
2559
|
], 2));
|
|
2575
2560
|
}
|
|
2576
|
-
}), J = /* @__PURE__ */
|
|
2561
|
+
}), J = /* @__PURE__ */ ge(ot, [["__scopeId", "data-v-f4bf7f21"]]), lt = { class: "hep-cr-dialog-header" }, ut = { class: "hep-cr-dialog-title" }, ct = { class: "hep-cr-dialog-body" }, dt = {
|
|
2577
2562
|
key: 0,
|
|
2578
|
-
class: "dialog-footer"
|
|
2579
|
-
},
|
|
2563
|
+
class: "hep-cr-dialog-footer"
|
|
2564
|
+
}, gt = /* @__PURE__ */ oe({
|
|
2580
2565
|
__name: "CodeRunnerDialog",
|
|
2581
2566
|
props: {
|
|
2582
2567
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -2592,41 +2577,41 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2592
2577
|
executorLabel: { default: "运行" }
|
|
2593
2578
|
},
|
|
2594
2579
|
emits: ["update:modelValue", "close"],
|
|
2595
|
-
setup(o, { expose:
|
|
2596
|
-
const l = o,
|
|
2597
|
-
|
|
2580
|
+
setup(o, { expose: d, emit: a }) {
|
|
2581
|
+
const l = o, p = a, v = C(l.modelValue), A = G(() => l.modelValue !== void 0 ? l.modelValue : v.value);
|
|
2582
|
+
de(
|
|
2598
2583
|
() => l.modelValue,
|
|
2599
|
-
(
|
|
2600
|
-
|
|
2584
|
+
(g) => {
|
|
2585
|
+
g !== void 0 && (v.value = g);
|
|
2601
2586
|
}
|
|
2602
2587
|
);
|
|
2603
|
-
function
|
|
2604
|
-
|
|
2588
|
+
function r() {
|
|
2589
|
+
v.value = !1, p("update:modelValue", !1), p("close");
|
|
2605
2590
|
}
|
|
2606
|
-
function
|
|
2607
|
-
|
|
2591
|
+
function b(g) {
|
|
2592
|
+
g.target === g.currentTarget && r();
|
|
2608
2593
|
}
|
|
2609
|
-
return
|
|
2610
|
-
close:
|
|
2611
|
-
}), (
|
|
2612
|
-
ie(ke, { name: "dialog-fade" }, {
|
|
2594
|
+
return d({
|
|
2595
|
+
close: r
|
|
2596
|
+
}), (g, I) => (R(), we(Te, { to: "body" }, [
|
|
2597
|
+
ie(ke, { name: "hep-cr-dialog-fade" }, {
|
|
2613
2598
|
default: Ie(() => [
|
|
2614
|
-
A.value ? (
|
|
2599
|
+
A.value ? (R(), x("div", {
|
|
2615
2600
|
key: 0,
|
|
2616
|
-
class: "dialog-overlay",
|
|
2617
|
-
onClick:
|
|
2601
|
+
class: "hep-cr-dialog-overlay",
|
|
2602
|
+
onClick: b
|
|
2618
2603
|
}, [
|
|
2619
|
-
|
|
2620
|
-
class: "dialog-container",
|
|
2604
|
+
m("div", {
|
|
2605
|
+
class: "hep-cr-dialog-container",
|
|
2621
2606
|
style: se({ width: typeof o.width == "number" ? o.width + "px" : o.width })
|
|
2622
2607
|
}, [
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
class: "dialog-close",
|
|
2627
|
-
onClick:
|
|
2628
|
-
}, [...
|
|
2629
|
-
|
|
2608
|
+
m("div", lt, [
|
|
2609
|
+
m("h3", ut, H(o.title), 1),
|
|
2610
|
+
m("button", {
|
|
2611
|
+
class: "hep-cr-dialog-close",
|
|
2612
|
+
onClick: r
|
|
2613
|
+
}, [...I[0] || (I[0] = [
|
|
2614
|
+
m("svg", {
|
|
2630
2615
|
width: "16",
|
|
2631
2616
|
height: "16",
|
|
2632
2617
|
viewBox: "0 0 24 24",
|
|
@@ -2634,13 +2619,13 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2634
2619
|
stroke: "currentColor",
|
|
2635
2620
|
"stroke-width": "2"
|
|
2636
2621
|
}, [
|
|
2637
|
-
|
|
2622
|
+
m("line", {
|
|
2638
2623
|
x1: "18",
|
|
2639
2624
|
y1: "6",
|
|
2640
2625
|
x2: "6",
|
|
2641
2626
|
y2: "18"
|
|
2642
2627
|
}),
|
|
2643
|
-
|
|
2628
|
+
m("line", {
|
|
2644
2629
|
x1: "6",
|
|
2645
2630
|
y1: "6",
|
|
2646
2631
|
x2: "18",
|
|
@@ -2649,11 +2634,11 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2649
2634
|
], -1)
|
|
2650
2635
|
])])
|
|
2651
2636
|
]),
|
|
2652
|
-
|
|
2653
|
-
ie(J, _e(
|
|
2637
|
+
m("div", ct, [
|
|
2638
|
+
ie(J, Fe(_e(g.$attrs)), null, 16)
|
|
2654
2639
|
]),
|
|
2655
|
-
|
|
2656
|
-
Re(
|
|
2640
|
+
g.$slots.footer ? (R(), x("div", dt, [
|
|
2641
|
+
Re(g.$slots, "footer", { close: r })
|
|
2657
2642
|
])) : U("", !0)
|
|
2658
2643
|
], 4)
|
|
2659
2644
|
])) : U("", !0)
|
|
@@ -2662,17 +2647,17 @@ const Pe = ["innerHTML"], $e = ["value", "disabled"], Me = /* @__PURE__ */ oe({
|
|
|
2662
2647
|
})
|
|
2663
2648
|
]));
|
|
2664
2649
|
}
|
|
2665
|
-
})
|
|
2650
|
+
});
|
|
2666
2651
|
J.install = (o) => {
|
|
2667
2652
|
o.component("CodeRunner", J);
|
|
2668
2653
|
};
|
|
2669
|
-
const
|
|
2654
|
+
const ht = {
|
|
2670
2655
|
install(o) {
|
|
2671
2656
|
o.component("CodeRunner", J);
|
|
2672
2657
|
}
|
|
2673
2658
|
};
|
|
2674
2659
|
export {
|
|
2675
2660
|
J as CodeRunner,
|
|
2676
|
-
|
|
2677
|
-
|
|
2661
|
+
gt as CodeRunnerDialog,
|
|
2662
|
+
ht as default
|
|
2678
2663
|
};
|