452 lines
14 KiB
Vue
452 lines
14 KiB
Vue
<script setup lang="ts">
|
||
import { ref, computed, onMounted } from 'vue'; // 确保 ref 已导入
|
||
import { storeToRefs } from 'pinia';
|
||
// import { useRouter } from 'vue-router'; // 不再需要 router
|
||
import { useI18n } from 'vue-i18n';
|
||
import { useConnectionsStore, ConnectionInfo } from '../stores/connections.store';
|
||
import { useTagsStore, TagInfo } from '../stores/tags.store';
|
||
import { useSessionStore } from '../stores/session.store'; // 导入 session store
|
||
|
||
// 定义事件
|
||
const emit = defineEmits([
|
||
'connect-request', // 左键单击 - 请求激活或替换当前标签
|
||
'open-new-session', // 中键单击 - 请求在新标签中打开
|
||
'request-add-connection', // 右键菜单 - 添加
|
||
'request-edit-connection' // 右键菜单 - 编辑
|
||
]);
|
||
|
||
const { t } = useI18n();
|
||
// const router = useRouter(); // 不再需要
|
||
const connectionsStore = useConnectionsStore();
|
||
const tagsStore = useTagsStore();
|
||
const sessionStore = useSessionStore(); // 获取 session store 实例
|
||
|
||
const { connections, isLoading: connectionsLoading, error: connectionsError } = storeToRefs(connectionsStore);
|
||
const { tags, isLoading: tagsLoading, error: tagsError } = storeToRefs(tagsStore);
|
||
|
||
// 搜索词
|
||
const searchTerm = ref('');
|
||
|
||
// 右键菜单状态
|
||
const contextMenuVisible = ref(false);
|
||
const contextMenuPosition = ref({ x: 0, y: 0 });
|
||
const contextTargetConnection = ref<ConnectionInfo | null>(null);
|
||
|
||
// 分组展开状态
|
||
const expandedGroups = ref<Record<string, boolean>>({}); // 使用 Record<string, boolean>
|
||
|
||
// 计算属性:过滤并按标签分组连接
|
||
const filteredAndGroupedConnections = computed(() => {
|
||
const groups: Record<string, ConnectionInfo[]> = {};
|
||
const untagged: ConnectionInfo[] = [];
|
||
const tagMap = new Map(tags.value.map(tag => [tag.id, tag]));
|
||
const lowerSearchTerm = searchTerm.value.toLowerCase();
|
||
|
||
// 1. 过滤连接
|
||
const filteredConnections = connections.value.filter(conn => {
|
||
const nameMatch = conn.name && conn.name.toLowerCase().includes(lowerSearchTerm);
|
||
const hostMatch = conn.host.toLowerCase().includes(lowerSearchTerm);
|
||
// 如果有 IP 地址字段,也应包含在此处
|
||
// const ipMatch = conn.ipAddress && conn.ipAddress.toLowerCase().includes(lowerSearchTerm);
|
||
return nameMatch || hostMatch; // || ipMatch;
|
||
});
|
||
|
||
// 2. 分组过滤后的连接
|
||
filteredConnections.forEach(conn => {
|
||
if (conn.tag_ids && conn.tag_ids.length > 0) {
|
||
let tagged = false; // 标记是否至少加入了一个分组
|
||
conn.tag_ids.forEach(tagId => {
|
||
const tag = tagMap.get(tagId);
|
||
// 确保标签存在才分组
|
||
if (tag) {
|
||
const groupName = tag.name;
|
||
if (!groups[groupName]) {
|
||
groups[groupName] = [];
|
||
if (expandedGroups.value[groupName] === undefined) {
|
||
expandedGroups.value[groupName] = true; // 默认展开
|
||
}
|
||
}
|
||
// 避免重复添加(如果一个连接有多个标签)
|
||
if (!groups[groupName].some(c => c.id === conn.id)) {
|
||
groups[groupName].push(conn);
|
||
}
|
||
tagged = true;
|
||
}
|
||
});
|
||
// 如果所有标签都无效或未找到,则归入未标记
|
||
if (!tagged) {
|
||
untagged.push(conn);
|
||
}
|
||
} else {
|
||
untagged.push(conn);
|
||
}
|
||
});
|
||
|
||
// 3. 排序和格式化输出
|
||
for (const groupName in groups) {
|
||
groups[groupName].sort((a, b) => (a.name || a.host).localeCompare(b.name || b.host));
|
||
}
|
||
untagged.sort((a, b) => (a.name || a.host).localeCompare(b.name || b.host));
|
||
|
||
const sortedGroupNames = Object.keys(groups).sort();
|
||
const result: { groupName: string; connections: ConnectionInfo[] }[] = sortedGroupNames.map(name => ({
|
||
groupName: name,
|
||
connections: groups[name]
|
||
}));
|
||
|
||
if (untagged.length > 0) {
|
||
const untaggedGroupName = t('workspaceConnectionList.untagged');
|
||
if (expandedGroups.value[untaggedGroupName] === undefined) {
|
||
expandedGroups.value[untaggedGroupName] = true; // 默认展开
|
||
}
|
||
result.push({ groupName: untaggedGroupName, connections: untagged });
|
||
}
|
||
|
||
return result;
|
||
});
|
||
|
||
// 切换分组展开/折叠
|
||
const toggleGroup = (groupName: string) => {
|
||
expandedGroups.value[groupName] = !expandedGroups.value[groupName];
|
||
};
|
||
|
||
// 处理单击连接 (左键) - 使用 session store 处理连接请求
|
||
const handleConnect = (connectionId: number) => {
|
||
console.log(`[WkspConnList] handleConnect (左键) called for ID: ${connectionId}. Delegating to sessionStore.`);
|
||
sessionStore.handleConnectRequest(connectionId); // 调用 session store 的 action
|
||
closeContextMenu(); // 点击连接后关闭菜单
|
||
};
|
||
|
||
// 显示右键菜单
|
||
const showContextMenu = (event: MouseEvent, connection: ConnectionInfo) => {
|
||
console.log(`[WkspConnList] showContextMenu (右键) called for ID: ${connection.id}. Event:`, event);
|
||
event.preventDefault(); // 再次确保阻止默认行为
|
||
event.stopPropagation(); // 阻止事件冒泡
|
||
console.log('[WkspConnList] Right-click default prevented and propagation stopped.');
|
||
contextTargetConnection.value = connection;
|
||
contextMenuPosition.value = { x: event.clientX, y: event.clientY };
|
||
contextMenuVisible.value = true;
|
||
// 添加全局点击监听器以关闭菜单
|
||
document.addEventListener('click', closeContextMenu, { once: true });
|
||
return false; // 彻底停止事件处理
|
||
};
|
||
|
||
// 关闭右键菜单
|
||
const closeContextMenu = () => {
|
||
contextMenuVisible.value = false;
|
||
contextTargetConnection.value = null;
|
||
document.removeEventListener('click', closeContextMenu);
|
||
};
|
||
|
||
// 处理右键菜单操作
|
||
const handleMenuAction = (action: 'add' | 'edit' | 'delete') => {
|
||
const conn = contextTargetConnection.value;
|
||
closeContextMenu(); // 先关闭菜单
|
||
|
||
if (action === 'add') {
|
||
// router.push('/connections/add'); // 改为触发事件
|
||
emit('request-add-connection');
|
||
} else if (conn) {
|
||
if (action === 'edit') {
|
||
// router.push(`/connections/edit/${conn.id}`); // 改为触发事件
|
||
emit('request-edit-connection', conn); // 传递整个连接对象
|
||
} else if (action === 'delete') {
|
||
if (confirm(t('connections.prompts.confirmDelete', { name: conn.name || conn.host }))) {
|
||
connectionsStore.deleteConnection(conn.id);
|
||
// 注意:删除后列表会自动更新,因为 store 是响应式的
|
||
}
|
||
}
|
||
}
|
||
};
|
||
|
||
// 获取数据
|
||
onMounted(() => {
|
||
connectionsStore.fetchConnections();
|
||
tagsStore.fetchTags();
|
||
});
|
||
|
||
// 处理中键点击(在新标签页打开)
|
||
const handleOpenInNewTab = (connectionId: number) => {
|
||
console.log(`[WkspConnList] handleOpenInNewTab (中键/辅助键) called for ID: ${connectionId}`);
|
||
emit('open-new-session', connectionId);
|
||
console.log(`[WkspConnList] Emitted 'open-new-session' for ID: ${connectionId}`);
|
||
closeContextMenu(); // 如果右键菜单是打开的,也关闭它
|
||
return false; // 尝试显式阻止进一步处理
|
||
};
|
||
</script>
|
||
|
||
<template>
|
||
<div class="workspace-connection-list">
|
||
<div v-if="connectionsLoading || tagsLoading" class="loading">
|
||
{{ t('common.loading') }}
|
||
</div>
|
||
<div v-else-if="connectionsError || tagsError" class="error">
|
||
{{ connectionsError || tagsError }}
|
||
</div>
|
||
<div v-else-if="connections.length === 0" class="no-connections">
|
||
{{ t('connections.noConnections') }}
|
||
<!-- 保留添加按钮,即使列表为空 -->
|
||
<!-- <button @click="handleMenuAction('add')">{{ t('connections.addConnection') }}</button> -->
|
||
</div>
|
||
<!-- 搜索和添加栏 -->
|
||
<div class="search-add-bar">
|
||
<input
|
||
type="text"
|
||
v-model="searchTerm"
|
||
:placeholder="t('workspaceConnectionList.searchPlaceholder')"
|
||
class="search-input"
|
||
/>
|
||
<button class="add-button" @click="handleMenuAction('add')" :title="t('connections.addConnection')">
|
||
<i class="fas fa-plus"></i>
|
||
</button>
|
||
</div>
|
||
|
||
<!-- 连接列表区域 -->
|
||
<div class="connection-list-area">
|
||
<div v-if="connectionsLoading || tagsLoading" class="loading">
|
||
{{ t('common.loading') }}
|
||
</div>
|
||
<div v-else-if="connectionsError || tagsError" class="error">
|
||
{{ connectionsError || tagsError }}
|
||
</div>
|
||
<div v-else-if="filteredAndGroupedConnections.length === 0 && connections.length > 0" class="no-results">
|
||
{{ t('workspaceConnectionList.noResults') }} "{{ searchTerm }}"
|
||
</div>
|
||
<div v-else-if="connections.length === 0" class="no-connections">
|
||
{{ t('connections.noConnections') }}
|
||
</div>
|
||
<div v-else>
|
||
<!-- 修正: 循环 filteredAndGroupedConnections -->
|
||
<div v-for="groupData in filteredAndGroupedConnections" :key="groupData.groupName" class="connection-group">
|
||
<div class="group-header" @click="toggleGroup(groupData.groupName)">
|
||
<i :class="['fas', expandedGroups[groupData.groupName] ? 'fa-chevron-down' : 'fa-chevron-right']"></i>
|
||
<span>{{ groupData.groupName }}</span>
|
||
</div>
|
||
<!-- 修正: 使用 groupData.groupName 和 groupData.connections -->
|
||
<ul v-show="expandedGroups[groupData.groupName]" class="connection-items">
|
||
<li
|
||
v-for="conn in groupData.connections"
|
||
:key="conn.id"
|
||
class="connection-item"
|
||
@click.left="handleConnect(conn.id)"
|
||
@contextmenu.prevent="showContextMenu($event, conn)"
|
||
>
|
||
<i class="fas fa-server connection-icon"></i>
|
||
<span class="connection-name" :title="conn.name || conn.host">
|
||
{{ conn.name || conn.host }}
|
||
</span>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
<!-- 移除重复的 ul 块 -->
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 右键菜单 -->
|
||
<div
|
||
v-if="contextMenuVisible"
|
||
class="context-menu"
|
||
:style="{ top: `${contextMenuPosition.y}px`, left: `${contextMenuPosition.x}px` }"
|
||
@click.stop
|
||
>
|
||
<!-- 防止点击菜单内部关闭菜单 -->
|
||
<ul>
|
||
<li @click="handleMenuAction('add')"><i class="fas fa-plus"></i> {{ t('connections.addConnection') }}</li>
|
||
<li v-if="contextTargetConnection" @click="handleMenuAction('edit')"><i class="fas fa-edit"></i> {{ t('connections.actions.edit') }}</li>
|
||
<li v-if="contextTargetConnection" @click="handleMenuAction('delete')"><i class="fas fa-trash-alt"></i> {{ t('connections.actions.delete') }}</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.workspace-connection-list {
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
overflow: hidden; /* 防止内部滚动条影响布局 */
|
||
background-color: #f8f9fa;
|
||
font-size: 0.9em;
|
||
}
|
||
|
||
.search-add-bar {
|
||
display: flex;
|
||
padding: 0.5rem;
|
||
border-bottom: 1px solid #dee2e6;
|
||
background-color: #e9ecef; /* 给搜索栏一个背景色 */
|
||
}
|
||
|
||
.search-input {
|
||
flex-grow: 1;
|
||
padding: 0.4rem 0.6rem;
|
||
border: 1px solid #ced4da;
|
||
border-radius: 4px 0 0 4px; /* 左侧圆角 */
|
||
font-size: 0.9em;
|
||
outline: none;
|
||
}
|
||
.search-input:focus {
|
||
border-color: #80bdff;
|
||
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
||
}
|
||
|
||
.add-button {
|
||
padding: 0.4rem 0.8rem;
|
||
border: 1px solid #ced4da;
|
||
border-left: none; /* 移除左边框,与输入框合并 */
|
||
background-color: #f8f9fa;
|
||
cursor: pointer;
|
||
border-radius: 0 4px 4px 0; /* 右侧圆角 */
|
||
color: #495057;
|
||
}
|
||
.add-button:hover {
|
||
background-color: #e2e6ea;
|
||
}
|
||
.add-button i {
|
||
font-size: 1em; /* 图标大小 */
|
||
}
|
||
|
||
.connection-list-area {
|
||
flex-grow: 1; /* 占据剩余空间 */
|
||
overflow-y: auto; /* 列表内容滚动 */
|
||
padding: 0.5rem 0;
|
||
}
|
||
|
||
|
||
.loading, .error, .no-connections, .no-results {
|
||
padding: 1rem;
|
||
text-align: center;
|
||
color: #6c757d;
|
||
}
|
||
.error {
|
||
color: #dc3545;
|
||
}
|
||
.no-connections button {
|
||
margin-top: 0.5rem;
|
||
padding: 0.3rem 0.6rem;
|
||
}
|
||
|
||
.add-connection-button {
|
||
display: block;
|
||
width: calc(100% - 1rem); /* Adjust width */
|
||
margin: 0.5rem;
|
||
padding: 0.5rem;
|
||
text-align: left;
|
||
background-color: #e9ecef;
|
||
border: 1px solid #ced4da;
|
||
border-radius: 4px;
|
||
cursor: pointer;
|
||
font-size: 0.9em;
|
||
color: #495057;
|
||
}
|
||
.add-connection-button:hover {
|
||
background-color: #dee2e6;
|
||
}
|
||
.add-connection-button i {
|
||
margin-right: 0.5rem;
|
||
}
|
||
|
||
|
||
.connection-group {
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.group-header {
|
||
padding: 0.4rem 0.8rem;
|
||
font-weight: bold;
|
||
cursor: pointer;
|
||
background-color: #e9ecef;
|
||
border-top: 1px solid #dee2e6;
|
||
border-bottom: 1px solid #dee2e6;
|
||
display: flex;
|
||
align-items: center;
|
||
color: #495057;
|
||
}
|
||
.group-header:hover {
|
||
background-color: #ced4da;
|
||
}
|
||
|
||
.group-header i {
|
||
margin-right: 0.5rem;
|
||
width: 1em; /* Ensure icon takes space */
|
||
text-align: center;
|
||
transition: transform 0.2s ease-in-out;
|
||
}
|
||
/* Rotate chevron when collapsed */
|
||
.group-header i.fa-chevron-right {
|
||
/* transform: rotate(0deg); */ /* Default state */
|
||
}
|
||
.group-header i.fa-chevron-down {
|
||
/* transform: rotate(90deg); */ /* Rotated state */
|
||
}
|
||
|
||
|
||
.connection-items {
|
||
list-style: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
|
||
.connection-item {
|
||
padding: 0.5rem 1rem 0.5rem 1.5rem; /* Indent items */
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
border-bottom: 1px solid #f1f3f5; /* Lighter separator */
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.connection-item:hover {
|
||
background-color: #e9ecef;
|
||
}
|
||
|
||
.connection-icon {
|
||
margin-right: 0.6rem;
|
||
color: #6c757d;
|
||
width: 1em;
|
||
text-align: center;
|
||
}
|
||
|
||
.connection-name {
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
flex-grow: 1;
|
||
}
|
||
|
||
/* Context Menu Styles */
|
||
.context-menu {
|
||
position: fixed;
|
||
background-color: white;
|
||
border: 1px solid #ccc;
|
||
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
|
||
border-radius: 4px;
|
||
padding: 0.5rem 0;
|
||
z-index: 1001; /* Above the list */
|
||
min-width: 150px;
|
||
}
|
||
|
||
.context-menu ul {
|
||
list-style: none;
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
|
||
.context-menu li {
|
||
padding: 0.5rem 1rem;
|
||
cursor: pointer;
|
||
display: flex;
|
||
align-items: center;
|
||
}
|
||
.context-menu li:hover {
|
||
background-color: #f0f0f0;
|
||
}
|
||
.context-menu li i {
|
||
margin-right: 0.75rem;
|
||
width: 1em;
|
||
text-align: center;
|
||
color: #495057;
|
||
}
|
||
</style>
|