Files
WeKnora/frontend/src/views/platform/index.vue
Aleksandr da640d1d33 Feature/add multilingual support (#384)
* feat: add multilingual support (English and Russian)

- Add i18n infrastructure with vue-i18n
- Implement language switcher component
- Add Russian (ru-RU) and English (en-US) translations
- Configure TDesign locale for proper UI component translation
- Replace hardcoded Chinese strings with i18n keys
- Support dynamic language switching in all components
- Add translations for all UI elements including:
  - Menu items and navigation
  - Knowledge base management
  - Chat interface
  - Settings and initialization
  - Authentication pages
  - Separator options in document splitting

This enables users to use the application in Chinese, English, or Russian.

* chore: add vue-i18n dependency and fix Input-field i18n integration

- Add vue-i18n package to frontend dependencies
- Fix Input-field component i18n integration for multilingual support

* chore: add PROGRESS_RU.md to .gitignore

- Exclude personal progress tracking file from git

* rearrange the order of the multilingual languages: Chinese, English, Russian

* Delete docker-compose.yml

* Replaced hardcoded messages with the t() function in the following files:  all error messages, 14 console.error ,messages session creation messages
, login/registration errors

* fix: restore docker-compose.yml and update .gitignore

* restore docker-compose.yml latest

* add multilingual support
2025-11-05 12:32:16 +08:00

141 lines
4.1 KiB
Vue

<template>
<div class="main" ref="dropzone">
<Menu></Menu>
<RouterView />
<div class="upload-mask" v-show="ismask">
<input type="file" style="display: none" ref="uploadInput" accept=".pdf,.docx,.doc,.txt,.md" />
<UploadMask></UploadMask>
</div>
</div>
</template>
<script setup lang="ts">
import Menu from '@/components/menu.vue'
import { ref, onMounted, onUnmounted } from 'vue';
import { useRoute } from 'vue-router'
import { useI18n } from 'vue-i18n'
import useKnowledgeBase from '@/hooks/useKnowledgeBase'
import UploadMask from '@/components/upload-mask.vue'
import { getKnowledgeBaseById } from '@/api/knowledge-base/index'
import { MessagePlugin } from 'tdesign-vue-next'
const { t } = useI18n()
let { requestMethod } = useKnowledgeBase()
const route = useRoute();
let ismask = ref(false)
let uploadInput = ref();
// 获取当前知识库ID
const getCurrentKbId = (): string | null => {
return (route.params as any)?.kbId as string || null
}
// 检查知识库初始化状态
const checkKnowledgeBaseInitialization = async (): Promise<boolean> => {
const currentKbId = getCurrentKbId();
if (!currentKbId) {
MessagePlugin.error(t('knowledgeBase.missingId'));
return false;
}
try {
const kbResponse = await getKnowledgeBaseById(currentKbId);
const kb = kbResponse.data;
if (!kb.embedding_model_id || !kb.summary_model_id) {
MessagePlugin.warning(t('knowledgeBase.notInitialized'));
return false;
}
return true;
} catch (error) {
MessagePlugin.error(t('knowledgeBase.getInfoFailed'));
return false;
}
}
// 全局拖拽事件处理
const handleGlobalDragEnter = (event: DragEvent) => {
event.preventDefault();
if (event.dataTransfer) {
event.dataTransfer.effectAllowed = 'all';
}
ismask.value = true;
}
const handleGlobalDragOver = (event: DragEvent) => {
event.preventDefault();
if (event.dataTransfer) {
event.dataTransfer.dropEffect = 'copy';
}
ismask.value = true;
}
const handleGlobalDrop = async (event: DragEvent) => {
event.preventDefault();
ismask.value = false;
const DataTransferFiles = event.dataTransfer?.files ? Array.from(event.dataTransfer.files) : [];
const DataTransferItemList = event.dataTransfer?.items ? Array.from(event.dataTransfer.items) : [];
const isInitialized = await checkKnowledgeBaseInitialization();
if (!isInitialized) {
return;
}
if (DataTransferFiles.length > 0) {
DataTransferFiles.forEach(file => requestMethod(file, uploadInput));
} else if (DataTransferItemList.length > 0) {
DataTransferItemList.forEach(dataTransferItem => {
const fileEntry = dataTransferItem.webkitGetAsEntry() as FileSystemFileEntry | null;
if (fileEntry) {
fileEntry.file((file: File) => requestMethod(file, uploadInput));
}
});
} else {
MessagePlugin.warning(t('knowledgeBase.dragFileNotText'));
}
}
// 组件挂载时添加全局事件监听器
onMounted(() => {
document.addEventListener('dragenter', handleGlobalDragEnter, true);
document.addEventListener('dragover', handleGlobalDragOver, true);
document.addEventListener('drop', handleGlobalDrop, true);
});
// 组件卸载时移除全局事件监听器
onUnmounted(() => {
document.removeEventListener('dragenter', handleGlobalDragEnter, true);
document.removeEventListener('dragover', handleGlobalDragOver, true);
document.removeEventListener('drop', handleGlobalDrop, true);
});
</script>
<style lang="less">
.main {
display: flex;
width: 100%;
height: 100%;
min-width: 600px;
}
.upload-mask {
background-color: rgba(255, 255, 255, 0.8);
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
display: flex;
justify-content: center;
align-items: center;
}
img {
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
</style>