feat: 添加后端版本检查功能及更新提示

This commit is contained in:
2025-09-09 21:28:14 +08:00
parent 482077c862
commit 86f8884e45

View File

@@ -12,6 +12,13 @@
<span v-if="updateInfo?.if_need_update" class="update-hint" :title="getUpdateTooltip()"> <span v-if="updateInfo?.if_need_update" class="update-hint" :title="getUpdateTooltip()">
检测到更新 {{ updateInfo.latest_version }} 请尽快更新 检测到更新 {{ updateInfo.latest_version }} 请尽快更新
</span> </span>
<span
v-if="backendUpdateInfo?.if_latest"
class="update-hint"
:title="getUpdateTooltip()"
>
检测到更新后端有更新请重启软件即可自动完成更新
</span>
</span> </span>
</div> </div>
</div> </div>
@@ -42,11 +49,11 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted } from 'vue' import { onBeforeUnmount, onMounted, ref } from 'vue'
import { MinusOutlined, BorderOutlined, CopyOutlined, CloseOutlined } from '@ant-design/icons-vue' import { BorderOutlined, CloseOutlined, CopyOutlined, MinusOutlined } from '@ant-design/icons-vue'
import { useTheme } from '@/composables/useTheme' import { useTheme } from '@/composables/useTheme'
import { Service } from '@/api'
import type { UpdateCheckOut } from '@/api' import type { UpdateCheckOut } from '@/api'
import { Service, type VersionOut } from '@/api'
const { isDark } = useTheme() const { isDark } = useTheme()
const isMaximized = ref(false) const isMaximized = ref(false)
@@ -54,6 +61,11 @@ const isMaximized = ref(false)
// 使用 import.meta.env 或直接定义版本号,确保打包后可用 // 使用 import.meta.env 或直接定义版本号,确保打包后可用
const version = import.meta.env.VITE_APP_VERSION || '获取版本失败!' const version = import.meta.env.VITE_APP_VERSION || '获取版本失败!'
const updateInfo = ref<UpdateCheckOut | null>(null) const updateInfo = ref<UpdateCheckOut | null>(null)
const backendUpdateInfo = ref<VersionOut | null>(null)
const POLL_MS = 10 * 60 * 1000 // 10 分钟
let pollTimer: number | null = null
const polling = ref(false)
// 获取是否有更新 // 获取是否有更新
const getAppVersion = async () => { const getAppVersion = async () => {
@@ -65,7 +77,16 @@ const getAppVersion = async () => {
return ver || '获取版本失败!' return ver || '获取版本失败!'
} catch (error) { } catch (error) {
console.error('Failed to get app version:', error) console.error('Failed to get app version:', error)
return '获取版本失败!' return '获取前端版本失败!'
}
}
const getBackendVersion = async () => {
try {
backendUpdateInfo.value = await Service.getGitVersionApiInfoVersionPost()
} catch (error) {
console.error('Failed to get backend version:', error)
return '获取后端版本失败!'
} }
} }
@@ -111,13 +132,40 @@ const closeWindow = async () => {
} }
} }
const pollOnce = async () => {
if (polling.value) return
polling.value = true
try {
const [appRes, backendRes] = await Promise.allSettled([getAppVersion(), getBackendVersion()])
if (appRes.status === 'rejected') {
console.error('getAppVersion failed:', appRes.reason)
}
if (backendRes.status === 'rejected') {
console.error('getBackendVersion failed:', backendRes.reason)
}
} finally {
polling.value = false
}
}
onMounted(async () => { onMounted(async () => {
try { try {
isMaximized.value = (await window.electronAPI?.windowIsMaximized()) || false isMaximized.value = (await window.electronAPI?.windowIsMaximized()) || false
} catch (error) { } catch (error) {
console.error('Failed to get window state:', error) console.error('Failed to get window state:', error)
} }
await getAppVersion() // 初始化立即跑一次
await pollOnce()
// 每 10 分钟检查一次更新
pollTimer = window.setInterval(pollOnce, POLL_MS)
})
onBeforeUnmount(() => {
if (pollTimer) {
clearInterval(pollTimer)
pollTimer = null
}
}) })
</script> </script>