ForcePilot/web/src/stores/info.js

129 lines
2.8 KiB
JavaScript
Raw Normal View History

import { ref, computed } from 'vue'
import { defineStore } from 'pinia'
import { brandApi } from '@/apis/system_api'
export const useInfoStore = defineStore('info', () => {
// 状态
const infoConfig = ref({})
const isLoading = ref(false)
const isLoaded = ref(false)
const debugMode = ref(false)
2026-01-29 21:08:43 +08:00
const error = ref(null) // 错误信息
// 计算属性 - 组织信息
const organization = computed(
() =>
infoConfig.value.organization || {
name: '',
logo: '',
avatar: ''
}
)
// 计算属性 - 品牌信息
const branding = computed(
() =>
infoConfig.value.branding || {
name: '',
title: '',
subtitle: ''
}
)
// 计算属性 - 功能特性
const features = computed(() => infoConfig.value.features || [])
const actions = computed(() => infoConfig.value.actions || [])
// 计算属性 - 页脚信息
const footer = computed(
() =>
infoConfig.value.footer || {
copyright: ''
}
)
// 动作方法
function setInfoConfig(newConfig) {
infoConfig.value = newConfig
isLoaded.value = true
}
function setDebugMode(enabled) {
debugMode.value = enabled
}
function toggleDebugMode() {
debugMode.value = !debugMode.value
}
async function loadInfoConfig(force = false) {
// 如果已经加载过且不强制刷新,则不重新加载
if (isLoaded.value && !force) {
return infoConfig.value
}
try {
isLoading.value = true
const response = await brandApi.getInfoConfig()
if (response.success && response.data) {
setInfoConfig(response.data)
2025-07-22 17:29:38 +08:00
console.debug('信息配置加载成功:', response.data)
return response.data
} else {
console.warn('信息配置加载失败,使用默认配置')
return null
}
} catch (error) {
console.error('加载信息配置时发生错误:', error)
return null
} finally {
isLoading.value = false
}
}
async function reloadInfoConfig() {
try {
isLoading.value = true
const response = await brandApi.reloadInfoConfig()
if (response.success && response.data) {
setInfoConfig(response.data)
2025-07-22 17:29:38 +08:00
console.debug('信息配置重新加载成功:', response.data)
return response.data
} else {
console.warn('信息配置重新加载失败')
return null
}
} catch (error) {
console.error('重新加载信息配置时发生错误:', error)
return null
} finally {
isLoading.value = false
}
}
return {
// 状态
infoConfig,
isLoading,
isLoaded,
debugMode,
// 计算属性
organization,
branding,
features,
footer,
actions,
// 方法
setInfoConfig,
setDebugMode,
toggleDebugMode,
loadInfoConfig,
reloadInfoConfig
}
})