Files
AI-Grading-Assistant-Tauri/src/App.vue
T

64 lines
2.4 KiB
Vue

<template>
<template v-if="dialogType">
<SettingDialog v-if="dialogType === 'settings'" />
<HistoryDialog v-if="dialogType === 'history'" />
<TemplateDialog v-if="dialogType === 'templates'" />
<LogDialog v-if="dialogType === 'logs'" />
<RubricEditor v-if="dialogType === 'rubric'" />
<ResultDrawer v-if="dialogType === 'result'" />
</template>
<template v-else>
<router-view />
</template>
</template>
<script setup lang="ts">
import { onMounted } from 'vue'
import { useAppStore } from '@/stores/app'
import { useSettingsStore } from '@/stores/settings'
import { useGradingStore } from '@/stores/grading'
import ResultDrawer from '@/components/ResultDrawer.vue'
import logger from '@/utils/logger'
import SettingDialog from '@/components/SettingDialog.vue'
import HistoryDialog from '@/pages/HistoryDialog.vue'
import TemplateDialog from '@/pages/TemplateDialog.vue'
import LogDialog from '@/pages/LogDialog.vue'
import RubricEditor from '@/components/RubricEditor.vue'
const appStore = useAppStore()
const settingsStore = useSettingsStore()
const gradingStore = useGradingStore()
const dialogType = new URLSearchParams(window.location.search).get('dialog')
const isScreenshot = window.location.hash.startsWith('#/screenshot')
const winClass = isScreenshot ? 'win-screenshot' : dialogType ? 'win-dialog' : 'win-main'
document.documentElement.dataset.window = winClass
onMounted(async () => {
if (dialogType === 'result') {
const { invoke } = await import('@tauri-apps/api/core')
const data: any = await invoke('grading_get_data')
if (data) {
if (data.image) gradingStore.setImage(data.image)
if (data.questions) gradingStore.setQuestions(data.questions)
if (data.result) gradingStore.setResult(data.result)
if (data.currentQuestionIndex !== undefined) gradingStore.setCurrentQuestionIndex(data.currentQuestionIndex)
}
appStore.openResultDrawer()
} else if (dialogType) {
if (dialogType === 'settings') await settingsStore.loadSettings()
const actions: Record<string, () => void> = {
settings: () => appStore.openSettingDialog(),
history: () => appStore.openHistoryDialog(),
templates: () => appStore.openTemplateDialog(),
logs: () => appStore.openLogDialog(),
rubric: () => appStore.openRubricEditor()
}
actions[dialogType]?.()
} else {
await settingsStore.loadSettings()
}
})
</script>