add submission statistics

This commit is contained in:
2024-06-03 20:25:37 +08:00
parent 164dc0615f
commit 218ed1c185
6 changed files with 732 additions and 588 deletions

View File

@@ -0,0 +1,103 @@
<template>
<n-space size="large" vertical>
<n-form :show-feedback="false" inline label-placement="left">
<n-form-item>
<n-input
placeholder="用户(可选)"
v-model:value="query.username"
clearable
/>
</n-form-item>
<n-form-item>
<n-input
placeholder="题号(可选)"
v-model:value="query.problem"
clearable
/>
</n-form-item>
<n-form-item>
<n-select
style="width: 120px"
v-model:value="query.duration"
:options="options"
/>
</n-form-item>
<n-form-item>
<n-button type="primary" @click="handleStatistics">统计</n-button>
</n-form-item>
</n-form>
<n-space v-if="visble" size="large">
<n-h1>
<n-gradient-text type="primary">
答案正确数{{ count.accepted }}
</n-gradient-text>
</n-h1>
<n-h1>
<n-gradient-text type="info">
总提交数{{ count.total }}
</n-gradient-text>
</n-h1>
<n-h1>
<n-gradient-text type="warning">
正确率{{ count.rate * 100 }}%
</n-gradient-text>
</n-h1>
</n-space>
</n-space>
</template>
<script setup lang="ts">
import { formatISO, sub } from "date-fns"
import { getSubmissionStatistics } from "oj/api"
interface Props {
problem: string
username: string
}
const props = defineProps<Props>()
const options: SelectOption[] = [
{ label: "本节课内", value: "hours:1" },
{ label: "两小时内", value: "hours:2" },
{ label: "一天内", value: "days:1" },
{ label: "一周内", value: "weeks:1" },
{ label: "一个月内", value: "months:1" },
]
const query = reactive({
username: props.username,
problem: props.problem,
duration: options[4].value,
})
const count = reactive({
total: 0,
accepted: 0,
rate: 0,
})
const [visble, toggleVisble] = useToggle()
const subOptions = computed<Duration>(() => {
let dur = options.find((it) => it.value === query.duration) ?? options[0]
const x = dur.value!.toString().split(":")
const unit = x[0]
const n = x[1]
return { [unit]: parseInt(n) }
})
async function handleStatistics() {
toggleVisble(false)
const current = Date.now()
const end = formatISO(current)
const start = formatISO(sub(current, subOptions.value))
const res = await getSubmissionStatistics(
{ start, end },
query.problem,
query.username,
)
toggleVisble(true)
count.total = res.data.submission_count
count.accepted = res.data.accepted_count
count.rate = res.data.correct_rate
}
</script>