This commit is contained in:
2024-01-22 20:12:54 +08:00
parent 7591b065d3
commit 35e3649834
5 changed files with 159 additions and 15 deletions

View File

@@ -1,24 +1,121 @@
<script lang="ts" setup>
const count = 5
import { ref } from "vue"
import { downloadZip } from "client-zip"
import { saveAs } from "file-saver"
import { submit } from "../api"
import { code } from "../composables/code"
import { File } from "../types"
interface Props {
files: File[]
}
const props = defineProps<Props>()
const files = ref(props.files)
function unique(arr: any[], key: string) {
const res = new Map()
return arr.filter((item) => !res.has(item[key]) && res.set(item[key], 1))
}
function addFive() {
files.value.push(
...Array.from({ length: 5 }).map(() => ({
in: "",
out: "",
error: false,
})),
)
}
function remove(index: number) {
files.value = files.value.filter((_, i) => i !== index)
}
function onChange(value: string, index: number, slot: "in" | "out") {
files.value = files.value.map((item, i) => {
if (i === index) {
item[slot] = value
}
return item
})
}
async function run() {
files.value = files.value.filter((it) => {
if (it.in === "" && it.out === "") return false
return true
})
files.value = unique(files.value, "in")
const requests = files.value.map((file) => submit(code, file.in))
const responses = await Promise.all(requests)
const newFiles = responses.map((r) => ({
in: "",
out: r.output,
error: r.status !== 3,
}))
files.value.forEach((file, index) => {
newFiles[index].in = file.in
})
files.value = newFiles
}
async function download() {
let failed = false
for (let i = 0; i < files.value.length; i++) {
if (files.value[i].error) {
failed = true
break
}
}
if (failed) return
const data = []
for (let i = 0; i < files.value.length; i++) {
if (files.value[i].out) {
data.push({
name: `${i + 1}.in`,
input: files.value[i].in,
lastModified: new Date(),
})
data.push({
name: `${i + 1}.out`,
input: files.value[i].out,
lastModified: new Date(),
})
}
}
if (!data.length) return
const blob = await downloadZip(data).blob()
saveAs(blob, "testcase.zip")
}
</script>
<template>
<n-flex vertical>
<n-flex>
<n-button>增加5个</n-button>
<n-button>运行看看</n-button>
<n-button type="primary">生成并下载</n-button>
<n-button @click="addFive">增加5个</n-button>
<n-button @click="run">先运行</n-button>
<n-button type="primary" @click="download">下载</n-button>
</n-flex>
<n-flex vertical>
<n-flex v-for="it in count" :key="it">
<n-flex vertical>
<span>{{ it }}.in</span>
<n-input type="textarea" />
</n-flex>
<n-flex vertical>
<span>{{ it }}.out</span>
<n-input type="textarea" />
</n-flex>
<n-flex v-for="(it, index) in files" :key="index">
<n-flex vertical>
<span>{{ index + 1 }}.in</span>
<n-input
type="textarea"
v-model:value="it.in"
@update:value="(v) => onChange(v, index, 'in')"
/>
</n-flex>
<n-flex vertical>
<span>{{ index + 1 }}.out</span>
<n-input
type="textarea"
v-model:value="it.out"
@update:value="(v) => onChange(v, index, 'out')"
:status="it.error ? 'error' : 'success'"
/>
</n-flex>
<n-button :disabled="files.length == 1" @click="remove(index)">
删除
</n-button>
</n-flex>
</n-flex>
</template>

View File

@@ -8,7 +8,7 @@
:mask-closable="false"
title="测试用例文件生成器"
>
<TestPanel />
<TestPanel :files="files" />
</n-modal>
</template>
<script lang="ts" setup>
@@ -21,6 +21,9 @@ import { ref } from "vue"
const { alt_shift_p, ctrl_shift_p, ctrl_shift_z } = useMagicKeys()
const show = ref(false)
const files = ref(
Array.from({ length: 5 }).map(() => ({ in: "", out: "", error: false })),
)
whenever(alt_shift_p, () => {
show.value = true

View File

@@ -34,3 +34,9 @@ export interface Submission {
description: string
}
}
export interface File {
in: string
out: string
error: boolean
}