mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-08-19 05:14:09 +08:00
- 新增脱敏审计存储、筛选、保留策略、完整性校验与 JSON/CSV 导出 - 覆盖查询编辑器、事务、导入同步、对象操作、AI/MCP 与 Web 运行时入口 - 完善事务完整语句日志、Windows 快捷键映射及 SQL 分析布局 - 补充多语言、健康状态、数据目录迁移和回归测试
83 lines
3.0 KiB
TypeScript
83 lines
3.0 KiB
TypeScript
import React from 'react';
|
|
import type { TabData } from '../types';
|
|
import DataViewer from './DataViewer';
|
|
import QueryEditor from './QueryEditor';
|
|
import TableDesigner from './TableDesigner';
|
|
import RedisViewer from './RedisViewer';
|
|
import RedisCommandEditor from './RedisCommandEditor';
|
|
import RedisMonitor from './RedisMonitor';
|
|
import TriggerViewer from './TriggerViewer';
|
|
import DefinitionViewer from './DefinitionViewer';
|
|
import TableOverview from './TableOverview';
|
|
import TableExportWorkbench from './TableExportWorkbench';
|
|
import SQLFileExecutionWorkbench from './SQLFileExecutionWorkbench';
|
|
import JVMOverview from './JVMOverview';
|
|
import JVMResourceBrowser from './JVMResourceBrowser';
|
|
import JVMAuditViewer from './JVMAuditViewer';
|
|
import JVMDiagnosticConsole from './JVMDiagnosticConsole';
|
|
import JVMMonitoringDashboard from './JVMMonitoringDashboard';
|
|
import SqlAnalysisWorkbench from './explain/SqlAnalysisWorkbench';
|
|
import SqlAuditWorkbench from './audit/SqlAuditWorkbench';
|
|
|
|
export const WorkbenchTabContent: React.FC<{ tab: TabData; isActive: boolean }> = React.memo(({ tab, isActive }) => {
|
|
if (tab.type === 'query') {
|
|
return <QueryEditor tab={tab} isActive={isActive} />;
|
|
}
|
|
if (tab.type === 'table') {
|
|
return <DataViewer tab={tab} isActive={isActive} />;
|
|
}
|
|
if (tab.type === 'design') {
|
|
return <TableDesigner tab={tab} />;
|
|
}
|
|
if (tab.type === 'redis-keys') {
|
|
return <RedisViewer connectionId={tab.connectionId} redisDB={tab.redisDB ?? 0} />;
|
|
}
|
|
if (tab.type === 'redis-command') {
|
|
return <RedisCommandEditor connectionId={tab.connectionId} redisDB={tab.redisDB ?? 0} />;
|
|
}
|
|
if (tab.type === 'redis-monitor') {
|
|
return <RedisMonitor connectionId={tab.connectionId} redisDB={tab.redisDB ?? 0} />;
|
|
}
|
|
if (tab.type === 'trigger') {
|
|
return <TriggerViewer tab={tab} />;
|
|
}
|
|
if (tab.type === 'view-def' || tab.type === 'event-def' || tab.type === 'routine-def' || tab.type === 'sequence-def' || tab.type === 'package-def') {
|
|
return <DefinitionViewer tab={tab} />;
|
|
}
|
|
if (tab.type === 'table-overview') {
|
|
return <TableOverview tab={tab} />;
|
|
}
|
|
if (tab.type === 'table-export') {
|
|
return <TableExportWorkbench tab={tab} />;
|
|
}
|
|
if (tab.type === 'sql-file-execution') {
|
|
return <SQLFileExecutionWorkbench tab={tab} />;
|
|
}
|
|
if (tab.type === 'sql-analysis') {
|
|
return <SqlAnalysisWorkbench tab={tab} />;
|
|
}
|
|
if (tab.type === 'sql-audit') {
|
|
return <SqlAuditWorkbench tab={tab} isActive={isActive} />;
|
|
}
|
|
if (tab.type === 'jvm-overview') {
|
|
return <JVMOverview tab={tab} />;
|
|
}
|
|
if (tab.type === 'jvm-resource') {
|
|
return <JVMResourceBrowser tab={tab} />;
|
|
}
|
|
if (tab.type === 'jvm-audit') {
|
|
return <JVMAuditViewer tab={tab} />;
|
|
}
|
|
if (tab.type === 'jvm-diagnostic') {
|
|
return <JVMDiagnosticConsole tab={tab} />;
|
|
}
|
|
if (tab.type === 'jvm-monitoring') {
|
|
return <JVMMonitoringDashboard tab={tab} />;
|
|
}
|
|
return null;
|
|
});
|
|
|
|
WorkbenchTabContent.displayName = 'WorkbenchTabContent';
|
|
|
|
export default WorkbenchTabContent;
|