This commit is contained in:
2024-01-23 10:38:06 +08:00
parent 35e3649834
commit d5cadf954f
3 changed files with 72 additions and 59 deletions

48
src/desktop/File.vue Normal file
View File

@@ -0,0 +1,48 @@
<script lang="ts" setup>
import {
files,
addFive,
run,
download,
onChange,
remove,
reset,
} from "../composables/file"
</script>
<template>
<n-flex vertical>
<n-flex>
<n-button @click="reset">重置</n-button>
<n-button @click="addFive">增加5个</n-button>
<n-button @click="run">先运行</n-button>
<n-button @click="download">再下载</n-button>
</n-flex>
<n-flex v-for="(it, index) in files" :key="index">
<n-flex vertical class="testcase">
<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 class="testcase">
<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>
<style scoped>
.testcase {
flex: 1;
}
</style>

View File

@@ -1,121 +0,0 @@
<script lang="ts" setup>
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 @click="addFive">增加5个</n-button>
<n-button @click="run">先运行</n-button>
<n-button type="primary" @click="download">再下载</n-button>
</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,22 +8,19 @@
:mask-closable="false"
title="测试用例文件生成器"
>
<TestPanel :files="files" />
<File />
</n-modal>
</template>
<script lang="ts" setup>
import Header from "./Header.vue"
import Content from "./Content.vue"
import TestPanel from "./TestPanel.vue"
import File from "./File.vue"
import { useMagicKeys, whenever } from "@vueuse/core"
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