This commit is contained in:
Baobhan Sith
2025-04-30 10:02:07 +08:00
parent 95a0a52185
commit 288153dd70
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -101,7 +101,7 @@ function parsePortsString(portsString: string | undefined | null): PortInfo[] {
const privateMatch = privatePart.match(/^(\d+)\/(tcp|udp|\w+)$/); const privateMatch = privatePart.match(/^(\d+)\/(tcp|udp|\w+)$/);
if (!privateMatch) { if (!privateMatch) {
console.warn(`[WebSocket] Skipping unparsable private port part: ${privatePart}`); // console.warn(`[WebSocket] Skipping unparsable private port part: ${privatePart}`);
continue; continue;
} }
const privatePort = parseInt(privateMatch[1], 10); const privatePort = parseInt(privateMatch[1], 10);
@@ -117,7 +117,7 @@ function parsePortsString(portsString: string | undefined | null): PortInfo[] {
ip = publicMatch[1] || undefined; ip = publicMatch[1] || undefined;
publicPort = parseInt(publicMatch[2], 10); publicPort = parseInt(publicMatch[2], 10);
} else { } else {
console.warn(`[WebSocket] Skipping unparsable public port part: ${publicPart}`); // console.warn(`[WebSocket] Skipping unparsable public port part: ${publicPart}`);
} }
} }
@@ -338,11 +338,11 @@ const handlePaneResize = (eventData: { panes: Array<{ size: number; [key: string
if (props.layoutNode && typeof props.layoutNode.id === 'undefined') { if (props.layoutNode && typeof props.layoutNode.id === 'undefined') {
console.warn(`[LayoutRenderer DEBUG] handlePaneResize triggered but props.layoutNode.id is undefined. Full layoutNode prop:`, JSON.parse(JSON.stringify(props.layoutNode))); console.warn(`[LayoutRenderer DEBUG] handlePaneResize triggered but props.layoutNode.id is undefined. Full layoutNode prop:`, JSON.parse(JSON.stringify(props.layoutNode)));
} }
console.log(`[LayoutRenderer DEBUG] handlePaneResize triggered for node ID: ${props.layoutNode?.id}, direction: ${props.layoutNode?.direction ?? 'N/A'}`); // Use optional chaining for safety // console.log(`[LayoutRenderer DEBUG] handlePaneResize triggered for node ID: ${props.layoutNode?.id}, direction: ${props.layoutNode?.direction ?? 'N/A'}`); // Use optional chaining for safety
console.log('[LayoutRenderer DEBUG] Splitpanes resized event object:', eventData); // console.log('[LayoutRenderer DEBUG] Splitpanes resized event object:', eventData);
const paneSizes = eventData.panes; // 从事件对象中提取 panes 数组 const paneSizes = eventData.panes; // 从事件对象中提取 panes 数组
console.log('[LayoutRenderer DEBUG] Extracted paneSizes:', paneSizes); // 打印提取出的数组 // console.log('[LayoutRenderer DEBUG] Extracted paneSizes:', paneSizes); // 打印提取出的数组
// +++ Use optional chaining for safety +++ // +++ Use optional chaining for safety +++
if (props.layoutNode?.type === 'container' && props.layoutNode?.children) { if (props.layoutNode?.type === 'container' && props.layoutNode?.children) {
@@ -358,11 +358,11 @@ const handlePaneResize = (eventData: { panes: Array<{ size: number; [key: string
})); }));
// +++ 添加调用 store action 前的日志 +++ // +++ 添加调用 store action 前的日志 +++
console.log(`[LayoutRenderer DEBUG] Calling layoutStore.updateNodeSizes for node ID: ${props.layoutNode.id} with sizes:`, JSON.parse(JSON.stringify(childrenSizes))); // console.log(`[LayoutRenderer DEBUG] Calling layoutStore.updateNodeSizes for node ID: ${props.layoutNode.id} with sizes:`, JSON.parse(JSON.stringify(childrenSizes)));
// 调用 store action 来更新节点大小 // 调用 store action 来更新节点大小
layoutStore.updateNodeSizes(props.layoutNode.id, childrenSizes); layoutStore.updateNodeSizes(props.layoutNode.id, childrenSizes);
} else { } else {
console.log(`[LayoutRenderer DEBUG] handlePaneResize ignored for node ID: ${props.layoutNode.id} (type: ${props.layoutNode.type})`); // console.log(`[LayoutRenderer DEBUG] handlePaneResize ignored for node ID: ${props.layoutNode.id} (type: ${props.layoutNode.type})`);
} }
}; };
@@ -398,7 +398,7 @@ const handleMainAreaClick = () => {
// --- Debug Watcher for sidebarPanes from store --- // --- Debug Watcher for sidebarPanes from store ---
watch(sidebarPanes, (newVal) => { watch(sidebarPanes, (newVal) => {
console.log('[LayoutRenderer] Received updated sidebarPanes from store:', JSON.parse(JSON.stringify(newVal))); // console.log('[LayoutRenderer] Received updated sidebarPanes from store:', JSON.parse(JSON.stringify(newVal)));
}, { deep: true, immediate: true }); // Immediate to log initial value }, { deep: true, immediate: true }); // Immediate to log initial value
// --- Icon Helper --- // --- Icon Helper ---
@@ -211,8 +211,8 @@ export function createSshTerminalManager(sessionId: string, wsDeps: SshTerminalD
} }
// --- 添加前端日志 --- // --- 添加前端日志 ---
console.log(`[会话 ${sessionId}][SSH前端] 收到 ssh:output 原始 payload (解码前):`, payload); // console.log(`[会话 ${sessionId}][SSH前端] 收到 ssh:output 原始 payload (解码前):`, payload);
console.log(`[会话 ${sessionId}][SSH前端] 解码后的数据 (尝试写入):`, outputData); // console.log(`[会话 ${sessionId}][SSH前端] 解码后的数据 (尝试写入):`, outputData);
// -------------------- // --------------------
if (terminalInstance.value) { if (terminalInstance.value) {