Files
book/docs/.vitepress/theme/components/CodeEditor.vue
2024-01-24 21:50:02 +08:00

98 lines
2.1 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",
},
"&.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() {
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>
<p>代码区</p>
<Codemirror
v-model="code"
:lang="lang"
basic
tab
:tab-size="4"
:readonly="props.readonly"
:extensions="[styleTheme, isDark ? oneDark : smoothy, indentUnit.of(' ')]"
/>
<p>输入框</p>
<Codemirror
v-model="input"
basic
: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 v-if="output.length">运行结果</p>
<pre>{{ output }}</pre>
</ClientOnly>
</template>
<style module>
.actions {
margin-top: 20px;
}
.run {
margin-right: 20px;
}
</style>