116 lines
2.6 KiB
Vue
116 lines
2.6 KiB
Vue
<script setup lang="ts">
|
|
import { computed, ref } from "vue"
|
|
import { useData } from "vitepress"
|
|
import { VPButton } from "vitepress/theme"
|
|
import Codemirror from "vue-codemirror6"
|
|
import { cpp } from "@codemirror/lang-cpp"
|
|
import { python } from "@codemirror/lang-python"
|
|
import { indentUnit } from "@codemirror/language"
|
|
import { EditorView } from "@codemirror/view"
|
|
import { createSubmission } from "../judge"
|
|
import { smoothy } from "../cm-themes/smoothy"
|
|
import { oneDark } from "../cm-themes/oneDark"
|
|
|
|
interface Props {
|
|
code: string
|
|
readonly?: boolean
|
|
lang?: "python" | "c"
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
lang: "python",
|
|
readonly: false,
|
|
})
|
|
|
|
const { isDark } = useData()
|
|
|
|
const lang = computed(() => {
|
|
if (props.lang === "python") {
|
|
return python()
|
|
}
|
|
return cpp()
|
|
})
|
|
|
|
const styleTheme = EditorView.baseTheme({
|
|
"& .cm-scroller": {
|
|
"font-family": "Monaco",
|
|
border: "2px solid var(--vp-c-divider)",
|
|
},
|
|
"&.cm-editor.cm-focused": {
|
|
outline: "none",
|
|
},
|
|
"&.cm-editor .cm-tooltip.cm-tooltip-autocomplete ul": {
|
|
"font-family": "Monaco",
|
|
},
|
|
})
|
|
|
|
const code = ref(props.code.trim())
|
|
const input = ref("")
|
|
const output = ref("")
|
|
|
|
async function run() {
|
|
output.value = ""
|
|
const result = await createSubmission(
|
|
{ value: code.value, language: props.lang },
|
|
input.value,
|
|
)
|
|
output.value = result.output
|
|
}
|
|
|
|
function reset() {
|
|
code.value = props.code.trim()
|
|
output.value = ""
|
|
}
|
|
</script>
|
|
<template>
|
|
<ClientOnly>
|
|
<div :class="$style.container">
|
|
<p :class="$style.title">代码区</p>
|
|
<Codemirror
|
|
v-model="code"
|
|
:lang="lang"
|
|
basic
|
|
tab
|
|
:tab-size="4"
|
|
:readonly="props.readonly"
|
|
:extensions="[
|
|
styleTheme,
|
|
isDark ? oneDark : smoothy,
|
|
indentUnit.of(' '),
|
|
]"
|
|
/>
|
|
<p :class="$style.title">输入框</p>
|
|
<Codemirror
|
|
v-model="input"
|
|
minimal
|
|
:extensions="[styleTheme, isDark ? oneDark : smoothy]"
|
|
/>
|
|
<div :class="$style.actions">
|
|
<VPButton :class="$style.run" @click="run" text="运行"></VPButton>
|
|
<VPButton @click="reset" theme="alt" text="重置"></VPButton>
|
|
</div>
|
|
<p :class="$style.title" v-if="output.length">运行结果</p>
|
|
<pre :class="$style.output">{{ output }}</pre>
|
|
</div>
|
|
</ClientOnly>
|
|
</template>
|
|
<style module>
|
|
.container {
|
|
background-color: var(--vp-code-block-bg);
|
|
padding: 8px 16px;
|
|
border-radius: 8px;
|
|
}
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
.actions {
|
|
margin-top: 20px;
|
|
}
|
|
.run {
|
|
margin-right: 20px;
|
|
}
|
|
.output {
|
|
font-family: Monaco;
|
|
}
|
|
</style>
|