580 lines
15 KiB
Vue
580 lines
15 KiB
Vue
<script setup lang="ts">
|
|
import { useConfigStore } from '@/stores/configStore';
|
|
import { useThemeStore } from '@/stores/themeStore';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { computed, watch, onMounted, ref, nextTick } from 'vue';
|
|
import SettingSection from '../components/SettingSection.vue';
|
|
import SettingItem from '../components/SettingItem.vue';
|
|
import { SystemThemeType, LanguageType } from '@/../bindings/voidraft/internal/models/models';
|
|
import { createDebounce } from '@/common/utils/debounce';
|
|
import { createTimerManager } from '@/common/utils/timerUtils';
|
|
import PickColors from 'vue-pick-colors';
|
|
import type { ThemeColors } from '@/views/editor/theme/types';
|
|
|
|
const { t } = useI18n();
|
|
const configStore = useConfigStore();
|
|
const themeStore = useThemeStore();
|
|
|
|
// 创建防抖函数实例
|
|
const { debouncedFn: debouncedUpdateColor } = createDebounce(
|
|
(colorKey: string, value: string) => updateLocalColor(colorKey, value),
|
|
{ delay: 100 }
|
|
);
|
|
|
|
const { debouncedFn: debouncedResetTheme } = createDebounce(
|
|
async () => {
|
|
const success = await themeStore.resetCurrentTheme();
|
|
|
|
if (success) {
|
|
// 重新加载临时颜色
|
|
syncTempColors();
|
|
hasUnsavedChanges.value = false;
|
|
}
|
|
},
|
|
{ delay: 300 }
|
|
);
|
|
|
|
// 创建定时器管理器
|
|
const resetTimer = createTimerManager();
|
|
|
|
// 临时颜色状态(用于编辑)
|
|
const tempColors = ref<ThemeColors | null>(null);
|
|
|
|
// 标记是否有未保存的更改
|
|
const hasUnsavedChanges = ref(false);
|
|
|
|
// 重置按钮状态
|
|
const resetButtonState = ref({
|
|
confirming: false
|
|
});
|
|
|
|
// 当前选中的主题名称
|
|
const currentThemeName = computed({
|
|
get: () =>
|
|
themeStore.currentColors?.themeName ||
|
|
configStore.config.appearance.currentTheme ||
|
|
'',
|
|
set: async (themeName: string) => {
|
|
await themeStore.switchToTheme(themeName);
|
|
syncTempColors();
|
|
hasUnsavedChanges.value = false;
|
|
}
|
|
});
|
|
|
|
// 当前主题的颜色配置
|
|
const currentColors = computed(() => tempColors.value || ({} as ThemeColors));
|
|
|
|
// 获取当前主题模式
|
|
const currentThemeMode = computed(() => themeStore.isDarkMode ? 'dark' : 'light');
|
|
|
|
// 同步临时颜色从 store
|
|
const syncTempColors = () => {
|
|
if (themeStore.currentColors) {
|
|
tempColors.value = { ...themeStore.currentColors };
|
|
}
|
|
};
|
|
|
|
// 监听主题切换,同步临时颜色
|
|
watch(
|
|
() => themeStore.currentColors,
|
|
() => {
|
|
if (!hasUnsavedChanges.value) {
|
|
syncTempColors();
|
|
}
|
|
},
|
|
{ deep: true }
|
|
);
|
|
|
|
onMounted(() => {
|
|
syncTempColors();
|
|
});
|
|
|
|
// 从 ThemeColors 接口自动提取所有颜色字段
|
|
const colorKeys = computed(() => {
|
|
if (!tempColors.value) return [];
|
|
|
|
return Object.keys(tempColors.value)
|
|
.filter(key => key !== 'themeName' && key !== 'dark')
|
|
.sort((a, b) => a.localeCompare(b));
|
|
});
|
|
|
|
const colorList = computed(() =>
|
|
colorKeys.value.map(colorKey => ({
|
|
key: colorKey,
|
|
label: colorKey
|
|
}))
|
|
);
|
|
|
|
const colorSearch = ref('');
|
|
const showSearch = ref(false);
|
|
const searchInputRef = ref<HTMLInputElement | null>(null);
|
|
|
|
const filteredColorList = computed(() => {
|
|
const keyword = colorSearch.value.trim().toLowerCase();
|
|
if (!keyword) return colorList.value;
|
|
return colorList.value.filter(color => color.key.toLowerCase().includes(keyword));
|
|
});
|
|
|
|
const toggleSearch = async () => {
|
|
showSearch.value = !showSearch.value;
|
|
if (showSearch.value) {
|
|
await nextTick();
|
|
searchInputRef.value?.focus();
|
|
} else {
|
|
colorSearch.value = '';
|
|
}
|
|
};
|
|
|
|
// 处理重置按钮点击
|
|
const handleResetClick = () => {
|
|
if (resetButtonState.value.confirming) {
|
|
|
|
debouncedResetTheme();
|
|
|
|
resetButtonState.value.confirming = false;
|
|
resetTimer.clear();
|
|
} else {
|
|
resetButtonState.value.confirming = true;
|
|
// 设置3秒后自动恢复
|
|
resetTimer.set(() => {
|
|
resetButtonState.value.confirming = false;
|
|
}, 3000);
|
|
}
|
|
};
|
|
|
|
// 更新本地颜色配置
|
|
const updateLocalColor = (colorKey: string, value: string) => {
|
|
if (!tempColors.value) return;
|
|
|
|
// 更新临时颜色
|
|
tempColors.value = {
|
|
...tempColors.value,
|
|
[colorKey]: value
|
|
};
|
|
|
|
hasUnsavedChanges.value = true;
|
|
};
|
|
|
|
// 应用颜色更改到系统
|
|
const applyChanges = async () => {
|
|
try {
|
|
if (!tempColors.value) return;
|
|
|
|
// 更新 store 中的颜色
|
|
themeStore.updateCurrentColors(tempColors.value);
|
|
|
|
// 保存到数据库
|
|
await themeStore.saveCurrentTheme();
|
|
|
|
// 刷新编辑器主题
|
|
themeStore.refreshEditorTheme();
|
|
|
|
// 清除未保存标记
|
|
hasUnsavedChanges.value = false;
|
|
} catch (error) {
|
|
console.error('Failed to apply theme change:', error);
|
|
}
|
|
};
|
|
|
|
// 取消颜色更改
|
|
const cancelChanges = () => {
|
|
// 恢复到 store 中的颜色
|
|
syncTempColors();
|
|
|
|
// 清除未保存标记
|
|
hasUnsavedChanges.value = false;
|
|
};
|
|
|
|
// 语言选项
|
|
const languageOptions = [
|
|
{ value: LanguageType.LangZhCN, label: t('languages.zh-CN') },
|
|
{ value: LanguageType.LangEnUS, label: t('languages.en-US') },
|
|
];
|
|
|
|
// 系统主题选项
|
|
const systemThemeOptions = [
|
|
{ value: SystemThemeType.SystemThemeDark, label: t('systemTheme.dark') },
|
|
{ value: SystemThemeType.SystemThemeLight, label: t('systemTheme.light') },
|
|
{ value: SystemThemeType.SystemThemeAuto, label: t('systemTheme.auto') },
|
|
];
|
|
|
|
// 更新语言设置
|
|
const updateLanguage = async (event: Event) => {
|
|
const select = event.target as HTMLSelectElement;
|
|
const selectedLanguage = select.value as LanguageType;
|
|
|
|
await configStore.setLanguage(selectedLanguage);
|
|
};
|
|
|
|
// 更新系统主题设置
|
|
const updateSystemTheme = async (event: Event) => {
|
|
const select = event.target as HTMLSelectElement;
|
|
const selectedSystemTheme = select.value as SystemThemeType;
|
|
|
|
await themeStore.setTheme(selectedSystemTheme);
|
|
|
|
const availableThemes = themeStore.availableThemes;
|
|
const currentThemeName = currentColors.value?.themeName;
|
|
const isCurrentThemeAvailable = availableThemes.some(t => t.name === currentThemeName);
|
|
|
|
if (!isCurrentThemeAvailable && availableThemes.length > 0) {
|
|
const firstTheme = availableThemes[0];
|
|
await themeStore.switchToTheme(firstTheme.name);
|
|
syncTempColors();
|
|
hasUnsavedChanges.value = false;
|
|
}
|
|
};
|
|
|
|
// 控制颜色选择器显示状态
|
|
const showPickerMap = ref<Record<string, boolean>>({});
|
|
|
|
// 颜色变更处理
|
|
const handleColorChange = (colorKey: string, value: string) => {
|
|
debouncedUpdateColor(colorKey, value);
|
|
};
|
|
|
|
// 颜色选择器关闭处理
|
|
const handlePickerClose = () => {
|
|
// 可以在此添加额外的逻辑
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="settings-page">
|
|
<SettingSection :title="t('settings.language')">
|
|
<SettingItem :title="t('settings.language')">
|
|
<select class="select-input" :value="configStore.config.appearance.language" @change="updateLanguage">
|
|
<option v-for="option in languageOptions" :key="option.value" :value="option.value">
|
|
{{ option.label }}
|
|
</option>
|
|
</select>
|
|
</SettingItem>
|
|
</SettingSection>
|
|
|
|
<SettingSection :title="t('settings.systemTheme')">
|
|
<SettingItem :title="t('settings.systemTheme')">
|
|
<select class="select-input" :value="configStore.config.appearance.systemTheme" @change="updateSystemTheme">
|
|
<option v-for="option in systemThemeOptions" :key="option.value" :value="option.value">
|
|
{{ option.label }}
|
|
</option>
|
|
</select>
|
|
</SettingItem>
|
|
|
|
<!-- 预设主题选择 -->
|
|
<SettingItem :title="t('settings.presetTheme')">
|
|
<select class="select-input" v-model="currentThemeName" :disabled="hasUnsavedChanges">
|
|
<option v-for="theme in themeStore.availableThemes" :key="theme.name" :value="theme.name">
|
|
{{ theme.name }}
|
|
</option>
|
|
</select>
|
|
</SettingItem>
|
|
</SettingSection>
|
|
|
|
<!-- 自定义主题颜色配置 -->
|
|
<SettingSection :title="t('settings.customThemeColors')">
|
|
<template #title-right>
|
|
<div class="theme-controls">
|
|
<div :class="['theme-search-wrapper', showSearch ? 'active' : '']">
|
|
<input
|
|
ref="searchInputRef"
|
|
class="theme-search-input"
|
|
type="text"
|
|
v-model="colorSearch"
|
|
placeholder="Search..."
|
|
/>
|
|
</div>
|
|
<button class="search-toggle-button" @click="toggleSearch" :title="showSearch ? '关闭搜索' : '搜索颜色'">
|
|
<svg v-if="!showSearch" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<circle cx="11" cy="11" r="8"></circle>
|
|
<path d="m21 21-4.35-4.35"></path>
|
|
</svg>
|
|
<svg v-else xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<line x1="18" y1="6" x2="6" y2="18"></line>
|
|
<line x1="6" y1="6" x2="18" y2="18"></line>
|
|
</svg>
|
|
</button>
|
|
<button
|
|
v-if="!hasUnsavedChanges"
|
|
:class="['reset-button', resetButtonState.confirming ? 'reset-button-confirming' : '']"
|
|
@click="handleResetClick"
|
|
>
|
|
{{ resetButtonState.confirming ? t('settings.confirmReset') : t('settings.resetToDefault') }}
|
|
</button>
|
|
<template v-else>
|
|
<button class="apply-button" @click="applyChanges">
|
|
{{ t('settings.apply') }}
|
|
</button>
|
|
<button class="cancel-button" @click="cancelChanges">
|
|
{{ t('settings.cancel') }}
|
|
</button>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<!-- 颜色列表 -->
|
|
<div class="color-list">
|
|
<SettingItem
|
|
v-for="color in filteredColorList"
|
|
:key="color.key"
|
|
:title="color.label"
|
|
class="color-setting-item"
|
|
>
|
|
<div class="color-input-wrapper">
|
|
<div class="color-picker-wrapper">
|
|
<PickColors
|
|
v-model:value="currentColors[color.key]"
|
|
v-model:show-picker="showPickerMap[color.key]"
|
|
:size="28"
|
|
show-alpha
|
|
:theme="currentThemeMode"
|
|
:colors="[]"
|
|
format="hex"
|
|
:format-options="['rgb', 'hex', 'hsl', 'hsv']"
|
|
placement="bottom"
|
|
position="absolute"
|
|
:z-index="1000"
|
|
@change="(val) => handleColorChange(color.key, val)"
|
|
@close-picker="handlePickerClose"
|
|
/>
|
|
</div>
|
|
<input
|
|
type="text"
|
|
:value="currentColors[color.key] || ''"
|
|
@input="debouncedUpdateColor(color.key, ($event.target as HTMLInputElement).value)"
|
|
class="color-text-input"
|
|
:placeholder="t('settings.colorValue')"
|
|
/>
|
|
</div>
|
|
</SettingItem>
|
|
</div>
|
|
</SettingSection>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.select-input {
|
|
min-width: 140px;
|
|
padding: 6px 10px;
|
|
border: 1px solid var(--settings-input-border);
|
|
border-radius: 4px;
|
|
background-color: var(--settings-input-bg);
|
|
color: var(--settings-text);
|
|
font-size: 12px;
|
|
appearance: none;
|
|
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
|
|
background-repeat: no-repeat;
|
|
background-position: right 6px center;
|
|
background-size: 14px;
|
|
padding-right: 26px;
|
|
transition: border-color 0.2s ease;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
border-color: #4a9eff;
|
|
}
|
|
|
|
option {
|
|
background-color: var(--settings-card-bg);
|
|
color: var(--settings-text);
|
|
}
|
|
}
|
|
|
|
// 主题控制区域
|
|
.theme-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 8px;
|
|
}
|
|
|
|
// 主题颜色配置样式
|
|
.reset-button, .apply-button, .cancel-button {
|
|
padding: 6px 12px;
|
|
font-size: 12px;
|
|
border: 1px solid var(--settings-input-border);
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
|
|
&:hover {
|
|
border-color: #4a9eff;
|
|
}
|
|
|
|
&:active {
|
|
transform: translateY(1px);
|
|
}
|
|
}
|
|
|
|
.reset-button {
|
|
background-color: var(--settings-button-bg);
|
|
color: var(--settings-button-text);
|
|
|
|
&:hover {
|
|
background-color: var(--settings-button-hover-bg);
|
|
}
|
|
|
|
&.reset-button-confirming {
|
|
background-color: #e74c3c;
|
|
color: white;
|
|
border-color: #c0392b;
|
|
|
|
&:hover {
|
|
background-color: #c0392b;
|
|
}
|
|
}
|
|
}
|
|
|
|
.apply-button {
|
|
background-color: #4a9eff;
|
|
color: white;
|
|
font-weight: 500;
|
|
|
|
&:hover {
|
|
background-color: #3a8eef;
|
|
}
|
|
}
|
|
|
|
.cancel-button {
|
|
background-color: var(--settings-button-bg);
|
|
color: var(--settings-button-text);
|
|
|
|
&:hover {
|
|
background-color: var(--settings-button-hover-bg);
|
|
}
|
|
}
|
|
|
|
.color-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
|
|
gap: 12px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.theme-search-wrapper {
|
|
width: 0;
|
|
overflow: hidden;
|
|
transition: width 0.3s ease;
|
|
opacity: 0;
|
|
}
|
|
|
|
.theme-search-wrapper.active {
|
|
width: 150px;
|
|
margin-right: 8px;
|
|
opacity: 1;
|
|
}
|
|
|
|
.theme-search-input {
|
|
width: 100%;
|
|
padding: 6px 12px;
|
|
border: 1px solid var(--settings-input-border);
|
|
border-radius: 20px;
|
|
background-color: var(--settings-input-bg);
|
|
color: var(--settings-text);
|
|
font-size: 12px;
|
|
transition: all 0.2s ease;
|
|
height: 25px;
|
|
box-sizing: border-box;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
border-color: #4a9eff;
|
|
background-color: var(--settings-card-bg);
|
|
box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
|
|
}
|
|
|
|
&::placeholder {
|
|
color: var(--settings-text-secondary);
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
.search-toggle-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 25px;
|
|
height: 25px;
|
|
margin-right: 8px;
|
|
padding: 0;
|
|
border: 1px solid var(--settings-input-border);
|
|
border-radius: 50%;
|
|
background-color: var(--settings-button-bg);
|
|
color: var(--settings-button-text);
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
|
|
svg {
|
|
transition: transform 0.2s ease;
|
|
}
|
|
|
|
&:hover {
|
|
border-color: #4a9eff;
|
|
background-color: var(--settings-button-hover-bg);
|
|
transform: scale(1.05);
|
|
|
|
svg {
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
|
|
&:active {
|
|
transform: scale(0.95);
|
|
}
|
|
}
|
|
|
|
.color-setting-item {
|
|
:deep(.setting-item-content) {
|
|
align-items: center;
|
|
}
|
|
|
|
:deep(.setting-item-title) {
|
|
font-size: 12px;
|
|
min-width: 120px;
|
|
}
|
|
}
|
|
|
|
.color-input-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex: 1;
|
|
}
|
|
|
|
.color-picker-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 28px;
|
|
cursor: pointer;
|
|
|
|
:deep(.pick-colors-trigger) {
|
|
border: 1px solid var(--settings-input-border);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.color-text-input {
|
|
flex: 1;
|
|
min-width: 160px;
|
|
padding: 4px 8px;
|
|
border: 1px solid var(--settings-input-border);
|
|
border-radius: 4px;
|
|
background-color: var(--settings-input-bg);
|
|
color: var(--settings-text);
|
|
font-size: 11px;
|
|
font-family: 'Courier New', monospace;
|
|
transition: border-color 0.2s ease;
|
|
height: 28px;
|
|
box-sizing: border-box;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
border-color: #4a9eff;
|
|
}
|
|
|
|
&::placeholder {
|
|
color: var(--settings-text-secondary);
|
|
}
|
|
}
|
|
</style>
|