Compare commits
2 Commits
c5890bd5f2
...
352047c123
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
352047c123 | ||
|
|
e0dd17bfff |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ai-translate-client",
|
"name": "ai-translate-client",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@@ -19,7 +19,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ai-translate-client"
|
name = "ai-translate-client"
|
||||||
version = "0.3.3"
|
version = "0.3.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"reqwest 0.12.28",
|
"reqwest 0.12.28",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "ai-translate-client"
|
name = "ai-translate-client"
|
||||||
version = "0.3.3"
|
version = "0.3.4"
|
||||||
description = "A client using AI models to translate"
|
description = "A client using AI models to translate"
|
||||||
authors = ["Julian"]
|
authors = ["Julian"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "ai-translate-client",
|
"productName": "ai-translate-client",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"identifier": "top.volan.ai-translate-client",
|
"identifier": "top.volan.ai-translate-client",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "pnpm dev",
|
"beforeDevCommand": "pnpm dev",
|
||||||
|
|||||||
218
src/App.vue
218
src/App.vue
@@ -17,7 +17,9 @@ import {
|
|||||||
Type,
|
Type,
|
||||||
Plus,
|
Plus,
|
||||||
Save,
|
Save,
|
||||||
Play
|
Play,
|
||||||
|
Clock,
|
||||||
|
Search
|
||||||
} from 'lucide-vue-next';
|
} from 'lucide-vue-next';
|
||||||
import { invoke } from '@tauri-apps/api/core';
|
import { invoke } from '@tauri-apps/api/core';
|
||||||
import { listen } from '@tauri-apps/api/event';
|
import { listen } from '@tauri-apps/api/event';
|
||||||
@@ -54,7 +56,45 @@ const toggleTheme = () => {
|
|||||||
settings.isDark = !settings.isDark;
|
settings.isDark = !settings.isDark;
|
||||||
};
|
};
|
||||||
|
|
||||||
const view = ref<'translate' | 'settings' | 'logs'>('translate');
|
const view = ref<'translate' | 'settings' | 'logs' | 'history'>('translate');
|
||||||
|
|
||||||
|
// History Management
|
||||||
|
const searchQuery = ref('');
|
||||||
|
const selectedHistoryId = ref<string | null>(null);
|
||||||
|
|
||||||
|
const filteredHistory = computed(() => {
|
||||||
|
if (!searchQuery.value.trim()) return settings.history;
|
||||||
|
const q = searchQuery.value.toLowerCase();
|
||||||
|
return settings.history.filter(h =>
|
||||||
|
h.sourceText.toLowerCase().includes(q) ||
|
||||||
|
h.targetText.toLowerCase().includes(q)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
const selectedHistoryItem = computed(() =>
|
||||||
|
settings.history.find(h => h.id === selectedHistoryId.value) || null
|
||||||
|
);
|
||||||
|
|
||||||
|
watch(filteredHistory, (newVal) => {
|
||||||
|
if (newVal.length > 0 && !selectedHistoryId.value) {
|
||||||
|
selectedHistoryId.value = newVal[0].id;
|
||||||
|
}
|
||||||
|
}, { immediate: true });
|
||||||
|
|
||||||
|
const deleteHistoryItem = (id: string) => {
|
||||||
|
settings.history = settings.history.filter(h => h.id !== id);
|
||||||
|
if (selectedHistoryId.value === id) {
|
||||||
|
selectedHistoryId.value = filteredHistory.value[0]?.id || null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const copyHistoryText = async (text: string) => {
|
||||||
|
try {
|
||||||
|
await navigator.clipboard.writeText(text);
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Failed to copy history text: ', err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// Profile Management
|
// Profile Management
|
||||||
const newProfileName = ref('');
|
const newProfileName = ref('');
|
||||||
@@ -423,6 +463,18 @@ const translate = async () => {
|
|||||||
targetText.value = response;
|
targetText.value = response;
|
||||||
}
|
}
|
||||||
settings.addLog('response', 'Translation completed');
|
settings.addLog('response', 'Translation completed');
|
||||||
|
|
||||||
|
// Save to history
|
||||||
|
settings.addHistory({
|
||||||
|
sourceLang: { ...sourceLang.value },
|
||||||
|
targetLang: { ...targetLang.value },
|
||||||
|
sourceText: sourceText.value,
|
||||||
|
targetText: settings.enableStreaming ? targetText.value : response,
|
||||||
|
context: context.value,
|
||||||
|
speakerIdentity: settings.speakerIdentity,
|
||||||
|
toneRegister: settings.toneRegister,
|
||||||
|
modelName: settings.modelName
|
||||||
|
});
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
const errorMsg = String(err);
|
const errorMsg = String(err);
|
||||||
settings.addLog('error', errorMsg);
|
settings.addLog('error', errorMsg);
|
||||||
@@ -469,6 +521,13 @@ const translate = async () => {
|
|||||||
>
|
>
|
||||||
<FileText class="w-5 h-5" />
|
<FileText class="w-5 h-5" />
|
||||||
</button>
|
</button>
|
||||||
|
<button
|
||||||
|
@click="view = 'history'"
|
||||||
|
:class="cn('p-2 rounded-full transition-colors', view === 'history' ? 'bg-blue-50 text-blue-600 dark:bg-blue-900/30 dark:text-blue-400' : 'hover:bg-slate-200/50 dark:hover:bg-slate-800 text-slate-600 dark:text-slate-300')"
|
||||||
|
title="历史记录"
|
||||||
|
>
|
||||||
|
<Clock class="w-5 h-5" />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
@@ -825,6 +884,161 @@ const translate = async () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- History View -->
|
||||||
|
<div v-else-if="view === 'history'" class="flex-1 flex overflow-hidden bg-slate-100/50 dark:bg-slate-950">
|
||||||
|
<!-- History List (Master) -->
|
||||||
|
<div class="w-80 md:w-96 border-r dark:border-slate-800 flex flex-col bg-white/60 dark:bg-slate-900/40">
|
||||||
|
<div class="p-4 border-b dark:border-slate-800 space-y-3">
|
||||||
|
<div class="relative group">
|
||||||
|
<Search class="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-slate-400 group-focus-within:text-blue-500 transition-colors" />
|
||||||
|
<input
|
||||||
|
v-model="searchQuery"
|
||||||
|
type="text"
|
||||||
|
placeholder="搜索历史记录..."
|
||||||
|
class="w-full pl-9 pr-4 py-2 bg-slate-100 dark:bg-slate-800 border-none rounded-lg text-sm outline-none focus:ring-2 focus:ring-blue-500/20 transition-all dark:text-slate-200"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center justify-between px-1">
|
||||||
|
<span class="text-[11px] font-bold text-slate-400 uppercase tracking-wider">共 {{ filteredHistory.length }} 条记录</span>
|
||||||
|
<button
|
||||||
|
@click="settings.history = []"
|
||||||
|
class="text-[11px] text-red-500 hover:underline font-medium"
|
||||||
|
>清空全部</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex-1 overflow-y-auto custom-scrollbar p-2 space-y-1">
|
||||||
|
<div v-if="filteredHistory.length === 0" class="py-20 text-center space-y-2">
|
||||||
|
<Clock class="w-10 h-10 text-slate-200 dark:text-slate-800 mx-auto" />
|
||||||
|
<p class="text-sm text-slate-400 italic">暂无相关历史</p>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-for="item in filteredHistory"
|
||||||
|
:key="item.id"
|
||||||
|
@click="selectedHistoryId = item.id"
|
||||||
|
:class="cn(
|
||||||
|
'w-full p-4 rounded-xl text-left transition-all border group relative cursor-pointer',
|
||||||
|
selectedHistoryId === item.id
|
||||||
|
? 'bg-blue-50 dark:bg-blue-900/20 border-blue-100 dark:border-blue-900/50 shadow-sm'
|
||||||
|
: 'hover:bg-slate-100 dark:hover:bg-slate-800/50 border-transparent'
|
||||||
|
)"
|
||||||
|
>
|
||||||
|
<div class="flex items-center justify-between mb-2">
|
||||||
|
<div class="flex items-center gap-1.5">
|
||||||
|
<span class="text-[10px] font-bold px-1.5 py-0.5 rounded bg-slate-200 dark:bg-slate-800 text-slate-500 dark:text-slate-400 uppercase">{{ item.sourceLang.code }}</span>
|
||||||
|
<ArrowRightLeft class="w-3 h-3 text-slate-300" />
|
||||||
|
<span class="text-[10px] font-bold px-1.5 py-0.5 rounded bg-blue-100 dark:bg-blue-900/40 text-blue-600 dark:text-blue-400 uppercase">{{ item.targetLang.code }}</span>
|
||||||
|
</div>
|
||||||
|
<span class="text-[10px] text-slate-400 font-mono">{{ item.timestamp.split(' ')[1].substring(0, 5) }}</span>
|
||||||
|
</div>
|
||||||
|
<p class="text-xs text-slate-700 dark:text-slate-200 font-medium line-clamp-2 leading-relaxed mb-1">{{ item.sourceText }}</p>
|
||||||
|
<p class="text-[11px] text-slate-400 dark:text-slate-500 line-clamp-1 italic">{{ item.targetText }}</p>
|
||||||
|
|
||||||
|
<button
|
||||||
|
@click.stop="deleteHistoryItem(item.id)"
|
||||||
|
class="absolute right-2 bottom-2 p-1.5 rounded-md text-red-400 opacity-0 group-hover:opacity-100 hover:bg-red-50 dark:hover:bg-red-900/30 transition-all"
|
||||||
|
title="删除此记录"
|
||||||
|
>
|
||||||
|
<Trash2 class="w-3.5 h-3.5" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- History Detail (Detail) -->
|
||||||
|
<div class="flex-1 flex flex-col min-w-0 bg-white dark:bg-slate-900">
|
||||||
|
<template v-if="selectedHistoryItem">
|
||||||
|
<div class="p-6 border-b dark:border-slate-800 flex items-center justify-between shrink-0 bg-slate-50/50 dark:bg-slate-800/20">
|
||||||
|
<div class="flex flex-col gap-1">
|
||||||
|
<div class="flex items-center gap-3">
|
||||||
|
<h2 class="text-lg font-bold text-slate-800 dark:text-slate-100">翻译详情</h2>
|
||||||
|
<span class="text-[11px] font-mono text-slate-400 bg-slate-100 dark:bg-slate-800 px-2 py-0.5 rounded">{{ selectedHistoryItem.timestamp }}</span>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-3 text-xs text-slate-500">
|
||||||
|
<div class="flex items-center gap-1">
|
||||||
|
<User class="w-3 h-3" />
|
||||||
|
{{ SPEAKER_IDENTITY_OPTIONS.find(o => o.value === (selectedHistoryItem?.speakerIdentity))?.label || selectedHistoryItem?.speakerIdentity }}
|
||||||
|
</div>
|
||||||
|
<span>•</span>
|
||||||
|
<div class="flex items-center gap-1">
|
||||||
|
<Type class="w-3 h-3" />
|
||||||
|
{{ TONE_REGISTER_OPTIONS.find(o => o.value === (selectedHistoryItem?.toneRegister))?.label || selectedHistoryItem?.toneRegister }}
|
||||||
|
</div>
|
||||||
|
<span>•</span>
|
||||||
|
<div class="font-mono text-[10px]">{{ selectedHistoryItem.modelName }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<button
|
||||||
|
@click="deleteHistoryItem(selectedHistoryItem.id)"
|
||||||
|
class="flex items-center gap-2 px-3 py-2 text-xs font-medium text-red-600 hover:bg-red-50 dark:hover:bg-red-900/30 rounded-lg transition-colors"
|
||||||
|
>
|
||||||
|
<Trash2 class="w-4 h-4" />
|
||||||
|
删除记录
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="flex-1 overflow-y-auto p-8 space-y-10 custom-scrollbar">
|
||||||
|
<!-- Source -->
|
||||||
|
<section class="space-y-4">
|
||||||
|
<div class="flex items-center justify-between">
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<div class="w-1.5 h-4 bg-slate-300 dark:bg-slate-700 rounded-full"></div>
|
||||||
|
<h3 class="text-xs font-black text-slate-400 uppercase tracking-widest">{{ selectedHistoryItem.sourceLang.displayName }} (原文)</h3>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
@click="copyHistoryText(selectedHistoryItem.sourceText)"
|
||||||
|
class="p-2 hover:bg-slate-100 dark:hover:bg-slate-800 rounded-lg text-slate-400 transition-colors"
|
||||||
|
>
|
||||||
|
<Copy class="w-4 h-4" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="bg-slate-50 dark:bg-slate-800/30 p-6 rounded-2xl border border-slate-100 dark:border-slate-800 text-lg leading-relaxed text-slate-700 dark:text-slate-200 whitespace-pre-wrap">
|
||||||
|
{{ selectedHistoryItem.sourceText }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Context if exists -->
|
||||||
|
<section v-if="selectedHistoryItem.context" class="space-y-4">
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<FileText class="w-4 h-4 text-slate-300" />
|
||||||
|
<h3 class="text-xs font-black text-slate-400 uppercase tracking-widest">情景背景</h3>
|
||||||
|
</div>
|
||||||
|
<div class="bg-amber-50/30 dark:bg-amber-900/10 p-4 rounded-xl border border-amber-100/50 dark:border-amber-900/20 text-sm italic text-slate-500 dark:text-slate-400 leading-relaxed">
|
||||||
|
{{ selectedHistoryItem.context }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<!-- Target -->
|
||||||
|
<section class="space-y-4">
|
||||||
|
<div class="flex items-center justify-between">
|
||||||
|
<div class="flex items-center gap-2">
|
||||||
|
<div class="w-1.5 h-4 bg-blue-500 rounded-full"></div>
|
||||||
|
<h3 class="text-xs font-black text-blue-500/60 uppercase tracking-widest">{{ selectedHistoryItem.targetLang.displayName }} (译文)</h3>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
@click="copyHistoryText(selectedHistoryItem.targetText)"
|
||||||
|
class="p-2 bg-blue-50 dark:bg-blue-900/30 hover:bg-blue-100 dark:hover:bg-blue-900/50 rounded-lg text-blue-600 dark:text-blue-400 transition-colors"
|
||||||
|
>
|
||||||
|
<Copy class="w-4 h-4" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="bg-blue-50/20 dark:bg-blue-900/10 p-6 rounded-2xl border border-blue-100/50 dark:border-blue-900/20 text-xl leading-relaxed font-medium text-slate-800 dark:text-slate-100 whitespace-pre-wrap shadow-sm">
|
||||||
|
{{ selectedHistoryItem.targetText }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<div v-else class="flex-1 flex flex-col items-center justify-center text-slate-300 dark:text-slate-800 p-10 text-center space-y-4">
|
||||||
|
<div class="w-20 h-20 rounded-full bg-slate-50 dark:bg-slate-800/50 flex items-center justify-center">
|
||||||
|
<Clock class="w-10 h-10 opacity-20" />
|
||||||
|
</div>
|
||||||
|
<p class="text-sm font-medium">请从左侧选择一条历史记录查看详情</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Settings View -->
|
<!-- Settings View -->
|
||||||
<div v-else-if="view === 'settings'" class="flex-1 overflow-y-auto bg-slate-100/50 dark:bg-slate-950 p-6 md:p-10 min-h-0">
|
<div v-else-if="view === 'settings'" class="flex-1 overflow-y-auto bg-slate-100/50 dark:bg-slate-950 p-6 md:p-10 min-h-0">
|
||||||
<div class="max-w-2xl mx-auto space-y-8">
|
<div class="max-w-2xl mx-auto space-y-8">
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ export const SPEAKER_IDENTITY_OPTIONS = [
|
|||||||
];
|
];
|
||||||
|
|
||||||
export const TONE_REGISTER_OPTIONS = [
|
export const TONE_REGISTER_OPTIONS = [
|
||||||
|
{ label: '自动识别', value: 'Auto-detect', description: '分析并保持原文的语气、情绪和礼貌程度' },
|
||||||
{ label: '正式专业', value: 'Formal & Professional', description: '商务邮件、法律合同、官方报告' },
|
{ label: '正式专业', value: 'Formal & Professional', description: '商务邮件、法律合同、官方报告' },
|
||||||
{ label: '礼貌客气', value: 'Polite & Respectful', description: '与长辈、客户或初次见面的人交流' },
|
{ label: '礼貌客气', value: 'Polite & Respectful', description: '与长辈、客户或初次见面的人交流' },
|
||||||
{ label: '礼貌随和', value: 'Polite & Conversational', description: '得体但不刻板的日常对话' },
|
{ label: '礼貌随和', value: 'Polite & Conversational', description: '得体但不刻板的日常对话' },
|
||||||
@@ -47,7 +48,7 @@ export const DEFAULT_TEMPLATE = `You are a professional {SOURCE_LANG} ({SOURCE_C
|
|||||||
|
|
||||||
[Constraints]
|
[Constraints]
|
||||||
1. Speaker Identity: {SPEAKER_IDENTITY}. Ensure all grammatical agreements and self-referential terms in {TARGET_LANG} reflect this.
|
1. Speaker Identity: {SPEAKER_IDENTITY}. Ensure all grammatical agreements and self-referential terms in {TARGET_LANG} reflect this.
|
||||||
2. Tone & Register: {TONE_REGISTER}.
|
2. Tone & Register: {TONE_REGISTER}. (If set to 'Auto-detect', analyze the tone, formality, and emotional nuance of the source text and faithfully replicate it. Do not neutralize strong emotions or unique styles.)
|
||||||
3. Produce ONLY the {TARGET_LANG} translation, without any additional explanations, notes, or commentary.
|
3. Produce ONLY the {TARGET_LANG} translation, without any additional explanations, notes, or commentary.
|
||||||
4. If [Context] is provided, use it strictly to disambiguate polysemous words. DO NOT add any factual information or descriptive details from the [Context] that are not present in the [Text to Translate].`;
|
4. If [Context] is provided, use it strictly to disambiguate polysemous words. DO NOT add any factual information or descriptive details from the [Context] that are not present in the [Text to Translate].`;
|
||||||
|
|
||||||
@@ -113,6 +114,19 @@ export interface ApiProfile {
|
|||||||
modelName: string;
|
modelName: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface HistoryItem {
|
||||||
|
id: string;
|
||||||
|
timestamp: string;
|
||||||
|
sourceLang: Language;
|
||||||
|
targetLang: Language;
|
||||||
|
sourceText: string;
|
||||||
|
targetText: string;
|
||||||
|
context: string;
|
||||||
|
speakerIdentity: string;
|
||||||
|
toneRegister: string;
|
||||||
|
modelName: string;
|
||||||
|
}
|
||||||
|
|
||||||
export const useSettingsStore = defineStore('settings', () => {
|
export const useSettingsStore = defineStore('settings', () => {
|
||||||
const isDark = useLocalStorage('is-dark', false);
|
const isDark = useLocalStorage('is-dark', false);
|
||||||
const apiBaseUrl = useLocalStorage('api-base-url', 'http://localhost:11434/v1');
|
const apiBaseUrl = useLocalStorage('api-base-url', 'http://localhost:11434/v1');
|
||||||
@@ -141,11 +155,12 @@ export const useSettingsStore = defineStore('settings', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const toneRegister = computed({
|
const toneRegister = computed({
|
||||||
get: () => toneRegisterMap.value[sourceLang.value.code] || TONE_REGISTER_OPTIONS[2].value,
|
get: () => toneRegisterMap.value[sourceLang.value.code] || TONE_REGISTER_OPTIONS[0].value,
|
||||||
set: (val) => { toneRegisterMap.value[sourceLang.value.code] = val; }
|
set: (val) => { toneRegisterMap.value[sourceLang.value.code] = val; }
|
||||||
});
|
});
|
||||||
|
|
||||||
const logs = ref<{ timestamp: string; type: 'request' | 'response' | 'error'; content: any }[]>([]);
|
const logs = ref<{ timestamp: string; type: 'request' | 'response' | 'error'; content: any }[]>([]);
|
||||||
|
const history = useLocalStorage<HistoryItem[]>('translation-history-v1', []);
|
||||||
|
|
||||||
const addLog = (type: 'request' | 'response' | 'error', content: any) => {
|
const addLog = (type: 'request' | 'response' | 'error', content: any) => {
|
||||||
const now = new Date();
|
const now = new Date();
|
||||||
@@ -159,6 +174,22 @@ export const useSettingsStore = defineStore('settings', () => {
|
|||||||
if (logs.value.length > 20) logs.value.pop();
|
if (logs.value.length > 20) logs.value.pop();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const addHistory = (item: Omit<HistoryItem, 'id' | 'timestamp'>) => {
|
||||||
|
const now = new Date();
|
||||||
|
const timestamp = `${now.getFullYear()}-${String(now.getMonth() + 1).padStart(2, '0')}-${String(now.getDate()).padStart(2, '0')} ${String(now.getHours()).padStart(2, '0')}:${String(now.getMinutes()).padStart(2, '0')}:${String(now.getSeconds()).padStart(2, '0')}`;
|
||||||
|
|
||||||
|
history.value.unshift({
|
||||||
|
...item,
|
||||||
|
id: crypto.randomUUID(),
|
||||||
|
timestamp
|
||||||
|
});
|
||||||
|
|
||||||
|
// 限制 100 条
|
||||||
|
if (history.value.length > 100) {
|
||||||
|
history.value = history.value.slice(0, 100);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
isDark,
|
isDark,
|
||||||
apiBaseUrl,
|
apiBaseUrl,
|
||||||
@@ -176,6 +207,8 @@ export const useSettingsStore = defineStore('settings', () => {
|
|||||||
speakerIdentity,
|
speakerIdentity,
|
||||||
toneRegister,
|
toneRegister,
|
||||||
logs,
|
logs,
|
||||||
addLog
|
history,
|
||||||
|
addLog,
|
||||||
|
addHistory
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user