2025-11-18 09:10:47 +08:00
|
|
|
|
import * as vscode from 'vscode';
|
2025-11-24 17:53:48 +08:00
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
|
|
import git from 'isomorphic-git';
|
|
|
|
|
|
import http from 'isomorphic-git/http/node';
|
2025-11-18 18:45:30 +08:00
|
|
|
|
import { ProjectView } from './views/ProjectView';
|
|
|
|
|
|
import { AircraftView } from './views/AircraftView';
|
|
|
|
|
|
import { ContainerView } from './views/ContainerView';
|
|
|
|
|
|
import { ConfigView } from './views/ConfigView';
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
|
|
|
|
|
// 数据模型接口
|
|
|
|
|
|
interface Project {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface Aircraft {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
projectId: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface Container {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
aircraftId: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface Config {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
fileName: string;
|
|
|
|
|
|
content: string;
|
|
|
|
|
|
containerId: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-24 17:53:48 +08:00
|
|
|
|
// Git 仓库接口
|
|
|
|
|
|
interface GitRepo {
|
|
|
|
|
|
id: string;
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
url: string;
|
|
|
|
|
|
localPath: string;
|
|
|
|
|
|
branch: string;
|
|
|
|
|
|
lastSync: string;
|
2025-11-25 14:30:54 +08:00
|
|
|
|
containerId: string; // 关联到特定容器
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface GitFileTree {
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
type: 'file' | 'folder';
|
|
|
|
|
|
path: string;
|
|
|
|
|
|
children?: GitFileTree[];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
interface ProjectData {
|
|
|
|
|
|
projects: Project[];
|
|
|
|
|
|
aircrafts: Aircraft[];
|
|
|
|
|
|
containers: Container[];
|
|
|
|
|
|
configs: Config[];
|
|
|
|
|
|
gitRepos: GitRepo[]; // Git 仓库数据整合到项目数据中
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-24 17:53:48 +08:00
|
|
|
|
// Git 分支接口
|
|
|
|
|
|
interface GitBranch {
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
isCurrent: boolean;
|
|
|
|
|
|
isRemote: boolean;
|
|
|
|
|
|
selected?: boolean;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
export class ConfigPanel {
|
2025-11-24 17:53:48 +08:00
|
|
|
|
public static currentPanel: ConfigPanel | undefined;
|
|
|
|
|
|
public readonly panel: vscode.WebviewPanel;
|
2025-11-18 09:10:47 +08:00
|
|
|
|
private readonly extensionUri: vscode.Uri;
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
private currentView: 'projects' | 'aircrafts' | 'containers' | 'configs' = 'projects';
|
2025-11-18 09:10:47 +08:00
|
|
|
|
private currentProjectId: string = '';
|
|
|
|
|
|
private currentAircraftId: string = '';
|
|
|
|
|
|
private currentContainerId: string = '';
|
2025-11-24 17:53:48 +08:00
|
|
|
|
private currentRepoId: string = '';
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
|
|
|
|
|
// 数据存储
|
2025-11-18 18:45:30 +08:00
|
|
|
|
private projects: Project[] = [];
|
|
|
|
|
|
private aircrafts: Aircraft[] = [];
|
|
|
|
|
|
private containers: Container[] = [];
|
|
|
|
|
|
private configs: Config[] = [];
|
2025-11-25 14:30:54 +08:00
|
|
|
|
private gitRepos: GitRepo[] = []; // Git 仓库数据
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// Git 文件树
|
2025-11-24 17:53:48 +08:00
|
|
|
|
private currentRepoFileTree: GitFileTree[] = [];
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
// 项目存储路径映射
|
|
|
|
|
|
private projectPaths: Map<string, string> = new Map();
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// Webview 状态跟踪
|
|
|
|
|
|
private isWebviewDisposed: boolean = false;
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
// 视图实例
|
2025-11-18 18:45:30 +08:00
|
|
|
|
private readonly projectView: ProjectView;
|
|
|
|
|
|
private readonly aircraftView: AircraftView;
|
|
|
|
|
|
private readonly containerView: ContainerView;
|
|
|
|
|
|
private readonly configView: ConfigView;
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
|
|
|
|
|
public static createOrShow(extensionUri: vscode.Uri) {
|
|
|
|
|
|
const column = vscode.window.activeTextEditor?.viewColumn || vscode.ViewColumn.One;
|
|
|
|
|
|
|
|
|
|
|
|
if (ConfigPanel.currentPanel) {
|
|
|
|
|
|
ConfigPanel.currentPanel.panel.reveal(column);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const panel = vscode.window.createWebviewPanel(
|
2025-11-18 18:45:30 +08:00
|
|
|
|
'DCSP',
|
|
|
|
|
|
'数字卫星构建平台',
|
2025-11-18 09:10:47 +08:00
|
|
|
|
column,
|
|
|
|
|
|
{
|
|
|
|
|
|
enableScripts: true,
|
|
|
|
|
|
localResourceRoots: [extensionUri],
|
|
|
|
|
|
retainContextWhenHidden: true
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
ConfigPanel.currentPanel = new ConfigPanel(panel, extensionUri);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-24 17:53:48 +08:00
|
|
|
|
public constructor(panel: vscode.WebviewPanel, extensionUri: vscode.Uri) {
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.panel = panel;
|
|
|
|
|
|
this.extensionUri = extensionUri;
|
2025-11-25 14:30:54 +08:00
|
|
|
|
this.isWebviewDisposed = false; // 初始化状态
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
|
|
|
|
|
// 初始化各个视图
|
2025-11-18 18:45:30 +08:00
|
|
|
|
this.projectView = new ProjectView(extensionUri);
|
|
|
|
|
|
this.aircraftView = new AircraftView(extensionUri);
|
|
|
|
|
|
this.containerView = new ContainerView(extensionUri);
|
|
|
|
|
|
this.configView = new ConfigView(extensionUri);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
this.setupMessageListener();
|
|
|
|
|
|
|
|
|
|
|
|
this.panel.onDidDispose(() => {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
this.isWebviewDisposed = true; // 标记为已销毁
|
2025-11-18 09:10:47 +08:00
|
|
|
|
ConfigPanel.currentPanel = undefined;
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private setupMessageListener() {
|
2025-11-21 16:07:48 +08:00
|
|
|
|
this.panel.webview.onDidReceiveMessage(async (data) => {
|
2025-11-24 17:53:48 +08:00
|
|
|
|
console.log('📨 收到Webview消息:', data);
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
|
|
|
|
|
// 检查 Webview 是否仍然有效
|
|
|
|
|
|
if (this.isWebviewDisposed) {
|
|
|
|
|
|
console.log('⚠️ Webview 已被销毁,忽略消息');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
switch (data.type) {
|
|
|
|
|
|
case 'openExistingProject':
|
|
|
|
|
|
await this.openExistingProject();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'configureProject':
|
|
|
|
|
|
const selectedPath = await this.selectProjectPath(data.projectId, data.projectName);
|
|
|
|
|
|
if (selectedPath) {
|
|
|
|
|
|
this.currentView = 'aircrafts';
|
|
|
|
|
|
this.currentProjectId = data.projectId;
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'openProject':
|
|
|
|
|
|
// 已配置的项目直接打开
|
2025-11-21 16:07:48 +08:00
|
|
|
|
this.currentView = 'aircrafts';
|
|
|
|
|
|
this.currentProjectId = data.projectId;
|
|
|
|
|
|
this.updateWebview();
|
2025-11-25 14:30:54 +08:00
|
|
|
|
break;
|
2025-11-21 16:07:48 +08:00
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
case 'openAircraftConfig':
|
|
|
|
|
|
this.currentView = 'containers';
|
|
|
|
|
|
this.currentProjectId = data.projectId;
|
|
|
|
|
|
this.currentAircraftId = data.aircraftId;
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'openContainerConfig':
|
|
|
|
|
|
this.currentView = 'configs';
|
|
|
|
|
|
this.currentContainerId = data.containerId;
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
// 修复返回按钮的消息处理
|
|
|
|
|
|
case 'goBackToProjects':
|
|
|
|
|
|
this.currentView = 'projects';
|
|
|
|
|
|
// 清空当前选择的ID
|
|
|
|
|
|
this.currentProjectId = '';
|
|
|
|
|
|
this.currentAircraftId = '';
|
|
|
|
|
|
this.currentContainerId = '';
|
|
|
|
|
|
this.currentRepoId = '';
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'goBackToAircrafts':
|
|
|
|
|
|
this.currentView = 'aircrafts';
|
|
|
|
|
|
// 保持 currentProjectId,清空其他ID
|
|
|
|
|
|
this.currentAircraftId = '';
|
|
|
|
|
|
this.currentContainerId = '';
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'goBackToContainers':
|
|
|
|
|
|
this.currentView = 'containers';
|
|
|
|
|
|
// 保持 currentProjectId 和 currentAircraftId,清空 currentContainerId
|
|
|
|
|
|
this.currentContainerId = '';
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'updateProjectName':
|
|
|
|
|
|
await this.updateProjectName(data.projectId, data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'createProject':
|
|
|
|
|
|
await this.createProject(data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'updateAircraftName':
|
|
|
|
|
|
await this.updateAircraftName(data.aircraftId, data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'createAircraft':
|
|
|
|
|
|
await this.createAircraft(data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'updateContainerName':
|
|
|
|
|
|
await this.updateContainerName(data.containerId, data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'createContainer':
|
|
|
|
|
|
await this.createContainer(data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'updateConfigName':
|
|
|
|
|
|
await this.updateConfigName(data.configId, data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'createConfig':
|
|
|
|
|
|
await this.createConfig(data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'deleteProject':
|
|
|
|
|
|
await this.deleteProject(data.projectId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'deleteAircraft':
|
|
|
|
|
|
await this.deleteAircraft(data.aircraftId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'deleteContainer':
|
|
|
|
|
|
await this.deleteContainer(data.containerId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'deleteConfig':
|
|
|
|
|
|
await this.deleteConfig(data.configId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
// Git 仓库管理功能
|
|
|
|
|
|
case 'fetchBranches':
|
|
|
|
|
|
console.log('🌿 获取分支列表:', data.url);
|
|
|
|
|
|
await this.fetchBranches(data.url);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'cloneBranches':
|
|
|
|
|
|
console.log('🚀 克隆选中的分支:', data);
|
|
|
|
|
|
await this.cloneBranches(data.url, data.branches);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'cancelBranchSelection':
|
|
|
|
|
|
console.log('❌ 取消分支选择');
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'loadGitRepo':
|
|
|
|
|
|
await this.loadGitRepo(data.repoId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'syncGitRepo':
|
|
|
|
|
|
await this.syncGitRepo(data.repoId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'deleteGitRepo':
|
|
|
|
|
|
await this.deleteGitRepo(data.repoId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'importGitFile':
|
|
|
|
|
|
await this.importGitFile(data.filePath);
|
|
|
|
|
|
break;
|
2025-11-25 16:32:06 +08:00
|
|
|
|
|
|
|
|
|
|
case 'openGitRepoInVSCode':
|
|
|
|
|
|
await this.openGitRepoInVSCode(data.repoId);
|
|
|
|
|
|
break;
|
2025-11-25 21:13:41 +08:00
|
|
|
|
|
|
|
|
|
|
case 'openConfigFileInVSCode':
|
|
|
|
|
|
await this.openConfigFileInVSCode(data.configId);
|
|
|
|
|
|
break;
|
2025-11-25 14:30:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('处理 Webview 消息时出错:', error);
|
|
|
|
|
|
if (!this.isWebviewDisposed) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`处理操作时出错: ${error}`);
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// === 目录创建方法 ===
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
2025-11-25 14:30:54 +08:00
|
|
|
|
* 创建飞行器目录
|
2025-11-24 17:53:48 +08:00
|
|
|
|
*/
|
2025-11-25 14:30:54 +08:00
|
|
|
|
private async createAircraftDirectory(aircraft: Aircraft): Promise<void> {
|
2025-11-24 17:53:48 +08:00
|
|
|
|
try {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
const projectPath = this.projectPaths.get(aircraft.projectId);
|
|
|
|
|
|
if (!projectPath) {
|
|
|
|
|
|
console.warn('未找到项目路径,跳过创建飞行器目录');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const aircraftDir = vscode.Uri.joinPath(vscode.Uri.file(projectPath), aircraft.name);
|
|
|
|
|
|
|
|
|
|
|
|
// 创建飞行器目录
|
|
|
|
|
|
await vscode.workspace.fs.createDirectory(aircraftDir);
|
|
|
|
|
|
console.log(`✅ 创建飞行器目录: ${aircraftDir.fsPath}`);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error(`创建飞行器目录失败: ${error}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 创建容器目录
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async createContainerDirectory(container: Container): Promise<void> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const aircraft = this.aircrafts.find(a => a.id === container.aircraftId);
|
|
|
|
|
|
if (!aircraft) {
|
|
|
|
|
|
console.warn('未找到对应的飞行器,跳过创建容器目录');
|
|
|
|
|
|
return;
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
|
|
|
|
|
const projectPath = this.projectPaths.get(aircraft.projectId);
|
|
|
|
|
|
if (!projectPath) {
|
|
|
|
|
|
console.warn('未找到项目路径,跳过创建容器目录');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 构建路径:项目路径/飞行器名/容器名
|
|
|
|
|
|
const aircraftDir = vscode.Uri.joinPath(vscode.Uri.file(projectPath), aircraft.name);
|
|
|
|
|
|
const containerDir = vscode.Uri.joinPath(aircraftDir, container.name);
|
|
|
|
|
|
|
|
|
|
|
|
// 确保飞行器目录存在
|
|
|
|
|
|
try {
|
|
|
|
|
|
await vscode.workspace.fs.createDirectory(aircraftDir);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
// 目录可能已存在,忽略错误
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 创建容器目录
|
|
|
|
|
|
await vscode.workspace.fs.createDirectory(containerDir);
|
|
|
|
|
|
console.log(`✅ 创建容器目录: ${containerDir.fsPath}`);
|
|
|
|
|
|
|
2025-11-24 17:53:48 +08:00
|
|
|
|
} catch (error) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
console.error(`创建容器目录失败: ${error}`);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2025-11-25 14:30:54 +08:00
|
|
|
|
* 确保容器目录存在
|
2025-11-24 17:53:48 +08:00
|
|
|
|
*/
|
2025-11-25 14:30:54 +08:00
|
|
|
|
private async ensureContainerDirectoryExists(containerId: string): Promise<void> {
|
2025-11-24 17:53:48 +08:00
|
|
|
|
try {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
const container = this.containers.find(c => c.id === containerId);
|
|
|
|
|
|
if (!container) return;
|
|
|
|
|
|
|
|
|
|
|
|
const aircraft = this.aircrafts.find(a => a.id === container.aircraftId);
|
|
|
|
|
|
if (!aircraft) return;
|
|
|
|
|
|
|
|
|
|
|
|
const projectPath = this.projectPaths.get(aircraft.projectId);
|
|
|
|
|
|
if (!projectPath) return;
|
|
|
|
|
|
|
|
|
|
|
|
// 构建路径并创建目录
|
|
|
|
|
|
const aircraftDir = vscode.Uri.joinPath(vscode.Uri.file(projectPath), aircraft.name);
|
|
|
|
|
|
const containerDir = vscode.Uri.joinPath(aircraftDir, container.name);
|
|
|
|
|
|
|
|
|
|
|
|
await vscode.workspace.fs.createDirectory(aircraftDir);
|
|
|
|
|
|
await vscode.workspace.fs.createDirectory(containerDir);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
console.error(`确保容器目录存在失败: ${error}`);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// === Git 仓库管理方法 ===
|
|
|
|
|
|
|
2025-11-24 17:53:48 +08:00
|
|
|
|
/**
|
2025-11-25 14:30:54 +08:00
|
|
|
|
* 添加 Git 仓库到容器目录
|
2025-11-24 17:53:48 +08:00
|
|
|
|
*/
|
|
|
|
|
|
private async addGitRepo(url: string, name: string, branch?: string): Promise<void> {
|
2025-11-25 21:13:41 +08:00
|
|
|
|
try {
|
|
|
|
|
|
// 验证 URL
|
|
|
|
|
|
if (!url || !url.startsWith('http')) {
|
|
|
|
|
|
vscode.window.showErrorMessage('请输入有效的 Git 仓库 URL');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
if (!this.currentContainerId) {
|
|
|
|
|
|
vscode.window.showErrorMessage('请先选择容器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const repoId = 'git-' + Date.now();
|
|
|
|
|
|
|
|
|
|
|
|
// 构建本地路径 - 在容器目录下创建分支子目录
|
|
|
|
|
|
const container = this.containers.find(c => c.id === this.currentContainerId);
|
|
|
|
|
|
if (!container) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到容器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const aircraft = this.aircrafts.find(a => a.id === container.aircraftId);
|
|
|
|
|
|
if (!aircraft) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到飞行器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const projectPath = this.projectPaths.get(aircraft.projectId);
|
|
|
|
|
|
if (!projectPath) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到项目路径');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 为每个分支创建独立的子目录
|
|
|
|
|
|
const branchName = branch || 'main';
|
|
|
|
|
|
const branchSafeName = branchName.replace(/[^a-zA-Z0-9-_]/g, '-');
|
|
|
|
|
|
const repoDirName = name;
|
|
|
|
|
|
|
|
|
|
|
|
// 路径:项目路径/飞行器名/容器名/仓库名-分支名/
|
|
|
|
|
|
const localPath = path.join(projectPath, aircraft.name, container.name, repoDirName);
|
|
|
|
|
|
|
|
|
|
|
|
console.log(`📁 Git仓库将保存到: ${localPath}`);
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 检查是否已存在相同 URL 和分支的仓库
|
|
|
|
|
|
const existingRepo = this.gitRepos.find(repo =>
|
|
|
|
|
|
repo.url === url && repo.branch === branchName && repo.containerId === this.currentContainerId
|
|
|
|
|
|
);
|
|
|
|
|
|
if (existingRepo) {
|
|
|
|
|
|
vscode.window.showWarningMessage('该 Git 仓库和分支组合已存在');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const newRepo: GitRepo = {
|
|
|
|
|
|
id: repoId,
|
|
|
|
|
|
name: `${name} (${branchName})`, // 在名称中包含分支信息
|
|
|
|
|
|
url: url,
|
|
|
|
|
|
localPath: localPath,
|
|
|
|
|
|
branch: branchName,
|
|
|
|
|
|
lastSync: new Date().toLocaleString(),
|
|
|
|
|
|
containerId: this.currentContainerId
|
|
|
|
|
|
};
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
console.log(`📁 准备克隆仓库: ${name}, 分支: ${newRepo.branch}, 路径: ${localPath}`);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 显示进度
|
|
|
|
|
|
await vscode.window.withProgress({
|
|
|
|
|
|
location: vscode.ProgressLocation.Notification,
|
|
|
|
|
|
title: `正在克隆仓库: ${name} (${newRepo.branch})`,
|
|
|
|
|
|
cancellable: false
|
|
|
|
|
|
}, async (progress) => {
|
|
|
|
|
|
progress.report({ increment: 0 });
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
try {
|
|
|
|
|
|
// 确保目录存在
|
|
|
|
|
|
await fs.promises.mkdir(localPath, { recursive: true });
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 检查目录是否为空
|
|
|
|
|
|
const dirContents = await fs.promises.readdir(localPath);
|
|
|
|
|
|
if (dirContents.length > 0) {
|
|
|
|
|
|
const confirm = await vscode.window.showWarningMessage(
|
|
|
|
|
|
`目标目录不为空,确定要覆盖吗?`,
|
|
|
|
|
|
{ modal: true },
|
|
|
|
|
|
'确定覆盖',
|
|
|
|
|
|
'取消'
|
|
|
|
|
|
);
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
if (confirm !== '确定覆盖') {
|
|
|
|
|
|
vscode.window.showInformationMessage('克隆操作已取消');
|
|
|
|
|
|
return;
|
2025-11-25 14:30:54 +08:00
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 清空目录(除了 .git 文件夹,如果存在的话)
|
|
|
|
|
|
for (const item of dirContents) {
|
|
|
|
|
|
const itemPath = path.join(localPath, item);
|
|
|
|
|
|
if (item !== '.git') {
|
|
|
|
|
|
await fs.promises.rm(itemPath, { recursive: true, force: true });
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 克隆仓库
|
|
|
|
|
|
await git.clone({
|
|
|
|
|
|
fs: fs,
|
|
|
|
|
|
http: http,
|
|
|
|
|
|
dir: localPath,
|
|
|
|
|
|
url: url,
|
|
|
|
|
|
singleBranch: true,
|
|
|
|
|
|
depth: 1,
|
|
|
|
|
|
ref: branchName,
|
|
|
|
|
|
onProgress: (event: any) => {
|
|
|
|
|
|
if (event.total) {
|
|
|
|
|
|
const percent = (event.loaded / event.total) * 100;
|
|
|
|
|
|
progress.report({ increment: percent, message: `${event.phase}...` });
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
console.log('✅ Git克隆成功完成');
|
|
|
|
|
|
|
|
|
|
|
|
this.gitRepos.push(newRepo);
|
|
|
|
|
|
await this.saveCurrentProjectData();
|
|
|
|
|
|
console.log('✅ Git仓库数据已保存到项目文件');
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
vscode.window.showInformationMessage(`Git 仓库克隆成功: ${name} (${newRepo.branch})`);
|
|
|
|
|
|
|
|
|
|
|
|
// 检查 Webview 状态后再加载文件树
|
|
|
|
|
|
if (!this.isWebviewDisposed) {
|
|
|
|
|
|
console.log('🌳 开始加载仓库文件树...');
|
|
|
|
|
|
// 自动加载仓库文件树
|
|
|
|
|
|
this.currentRepoId = repoId;
|
|
|
|
|
|
await this.loadGitRepoFileTree(repoId);
|
|
|
|
|
|
console.log('✅ 仓库文件树加载完成');
|
|
|
|
|
|
} else {
|
|
|
|
|
|
console.log('⚠️ Webview 已被销毁,跳过文件树加载');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('❌ 在克隆过程中捕获错误:', error);
|
|
|
|
|
|
vscode.window.showErrorMessage(`克隆仓库失败: ${error}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('❌ 在addGitRepo外部捕获错误:', error);
|
|
|
|
|
|
vscode.window.showErrorMessage(`添加 Git 仓库失败: ${error}`);
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 加载 Git 仓库文件树
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async loadGitRepo(repoId: string): Promise<void> {
|
|
|
|
|
|
this.currentRepoId = repoId;
|
|
|
|
|
|
await this.loadGitRepoFileTree(repoId);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 同步 Git 仓库
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async syncGitRepo(repoId: string): Promise<void> {
|
|
|
|
|
|
const repo = this.gitRepos.find(r => r.id === repoId);
|
|
|
|
|
|
if (!repo) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到指定的 Git 仓库');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
await vscode.window.withProgress({
|
|
|
|
|
|
location: vscode.ProgressLocation.Notification,
|
|
|
|
|
|
title: `正在同步仓库: ${repo.name}`,
|
|
|
|
|
|
cancellable: false
|
|
|
|
|
|
}, async (progress) => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
progress.report({ increment: 0, message: '拉取最新更改...' });
|
|
|
|
|
|
|
|
|
|
|
|
// 拉取最新更改
|
|
|
|
|
|
await git.pull({
|
|
|
|
|
|
fs: fs,
|
|
|
|
|
|
http: http,
|
|
|
|
|
|
dir: repo.localPath,
|
|
|
|
|
|
author: { name: 'DCSP User', email: 'user@dcsp.local' },
|
|
|
|
|
|
fastForward: true
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 更新最后同步时间
|
|
|
|
|
|
repo.lastSync = new Date().toLocaleString();
|
2025-11-25 14:30:54 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
|
// 重新加载文件树
|
|
|
|
|
|
await this.loadGitRepoFileTree(repoId);
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`Git 仓库同步成功: ${repo.name}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`同步 Git 仓库失败: ${error}`);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-24 17:53:48 +08:00
|
|
|
|
/**
|
2025-11-25 21:13:41 +08:00
|
|
|
|
* 删除 Git 仓库
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async deleteGitRepo(repoId: string): Promise<void> {
|
|
|
|
|
|
const repo = this.gitRepos.find(r => r.id === repoId);
|
|
|
|
|
|
if (!repo) return;
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const confirm = await vscode.window.showWarningMessage(
|
|
|
|
|
|
`确定要删除 Git 仓库 "${repo.name}" 吗?这将删除本地文件。`,
|
|
|
|
|
|
{ modal: true },
|
|
|
|
|
|
'确定删除',
|
|
|
|
|
|
'取消'
|
|
|
|
|
|
);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
if (confirm === '确定删除') {
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 删除整个仓库目录(因为是独立目录)
|
|
|
|
|
|
await fs.promises.rm(repo.localPath, { recursive: true, force: true });
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 从列表中移除
|
|
|
|
|
|
this.gitRepos = this.gitRepos.filter(r => r.id !== repoId);
|
|
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 如果删除的是当前仓库,清空状态
|
|
|
|
|
|
if (this.currentRepoId === repoId) {
|
|
|
|
|
|
this.currentRepoId = '';
|
|
|
|
|
|
this.currentRepoFileTree = [];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`Git 仓库已删除: ${repo.name}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`删除 Git 仓库失败: ${error}`);
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 加载 Git 仓库文件树
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async loadGitRepoFileTree(repoId: string): Promise<void> {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 检查 Webview 是否仍然有效
|
|
|
|
|
|
if (this.isWebviewDisposed) {
|
|
|
|
|
|
console.log('⚠️ Webview 已被销毁,跳过文件树加载');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-24 17:53:48 +08:00
|
|
|
|
const repo = this.gitRepos.find(r => r.id === repoId);
|
|
|
|
|
|
if (!repo) return;
|
|
|
|
|
|
|
|
|
|
|
|
// 通知前端开始加载
|
2025-11-25 14:30:54 +08:00
|
|
|
|
try {
|
|
|
|
|
|
this.panel.webview.postMessage({
|
|
|
|
|
|
type: 'gitRepoLoading',
|
|
|
|
|
|
loading: true
|
|
|
|
|
|
});
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.log('⚠️ 无法发送加载消息,Webview 可能已被销毁');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const fileTree = await this.buildFileTree(repo.localPath);
|
|
|
|
|
|
this.currentRepoFileTree = fileTree;
|
|
|
|
|
|
|
|
|
|
|
|
// 更新最后访问时间
|
|
|
|
|
|
repo.lastSync = new Date().toLocaleString();
|
2025-11-25 14:30:54 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
console.error('加载仓库文件树失败:', error);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
this.currentRepoFileTree = [];
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 再次检查 Webview 状态
|
|
|
|
|
|
if (this.isWebviewDisposed) {
|
|
|
|
|
|
console.log('⚠️ Webview 已被销毁,跳过完成通知');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-24 17:53:48 +08:00
|
|
|
|
// 通知前端加载完成
|
2025-11-25 14:30:54 +08:00
|
|
|
|
try {
|
|
|
|
|
|
this.panel.webview.postMessage({
|
|
|
|
|
|
type: 'gitRepoLoading',
|
|
|
|
|
|
loading: false
|
|
|
|
|
|
});
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.log('⚠️ 无法发送完成消息,Webview 可能已被销毁');
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 构建文件树
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async buildFileTree(dir: string, relativePath: string = ''): Promise<GitFileTree[]> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const files = await fs.promises.readdir(dir);
|
|
|
|
|
|
const tree: GitFileTree[] = [];
|
|
|
|
|
|
|
|
|
|
|
|
for (const file of files) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 忽略 .git 文件夹和 .dcsp-data.json
|
|
|
|
|
|
if (file.startsWith('.') && file !== '.git') continue;
|
|
|
|
|
|
if (file === '.dcsp-data.json') continue;
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
|
|
|
|
|
const filePath = path.join(dir, file);
|
|
|
|
|
|
const stats = await fs.promises.stat(filePath);
|
|
|
|
|
|
const currentRelativePath = path.join(relativePath, file);
|
|
|
|
|
|
|
|
|
|
|
|
if (stats.isDirectory()) {
|
|
|
|
|
|
const children = await this.buildFileTree(filePath, currentRelativePath);
|
|
|
|
|
|
tree.push({
|
|
|
|
|
|
name: file,
|
|
|
|
|
|
type: 'folder',
|
|
|
|
|
|
path: currentRelativePath,
|
|
|
|
|
|
children: children
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
tree.push({
|
|
|
|
|
|
name: file,
|
|
|
|
|
|
type: 'file',
|
|
|
|
|
|
path: currentRelativePath
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return tree;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('构建文件树失败:', error);
|
|
|
|
|
|
return [];
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 导入 Git 文件到当前容器
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async importGitFile(filePath: string): Promise<void> {
|
|
|
|
|
|
if (!this.currentRepoId || !this.currentContainerId) {
|
|
|
|
|
|
vscode.window.showErrorMessage('请先选择 Git 仓库和容器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const repo = this.gitRepos.find(r => r.id === this.currentRepoId);
|
|
|
|
|
|
if (!repo) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到当前 Git 仓库');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const container = this.containers.find(c => c.id === this.currentContainerId);
|
|
|
|
|
|
if (!container) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到当前容器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const fullPath = path.join(repo.localPath, filePath);
|
|
|
|
|
|
const content = await fs.promises.readFile(fullPath, 'utf8');
|
|
|
|
|
|
const fileName = path.basename(filePath);
|
|
|
|
|
|
|
|
|
|
|
|
// 创建新配置
|
|
|
|
|
|
const newId = 'cfg' + (this.configs.length + 1);
|
|
|
|
|
|
const newConfig: Config = {
|
|
|
|
|
|
id: newId,
|
|
|
|
|
|
name: fileName,
|
|
|
|
|
|
fileName: fileName,
|
|
|
|
|
|
content: content,
|
|
|
|
|
|
containerId: this.currentContainerId
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
this.configs.push(newConfig);
|
|
|
|
|
|
await this.saveCurrentProjectData();
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`文件已导入到容器 ${container.name}: ${fileName}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`导入文件失败: ${error}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// === 原有项目配置管理方法 ===
|
|
|
|
|
|
|
2025-11-18 21:14:10 +08:00
|
|
|
|
// === 打开现有项目功能 ===
|
|
|
|
|
|
private async openExistingProject(): Promise<void> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const result = await vscode.window.showOpenDialog({
|
|
|
|
|
|
canSelectFiles: false,
|
|
|
|
|
|
canSelectFolders: true,
|
|
|
|
|
|
canSelectMany: false,
|
|
|
|
|
|
openLabel: '选择项目文件夹',
|
|
|
|
|
|
title: '选择包含项目数据的文件夹'
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (result && result.length > 0) {
|
|
|
|
|
|
const selectedPath = result[0].fsPath;
|
|
|
|
|
|
await this.loadProjectData(selectedPath);
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`打开项目时出错: ${error}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// === 数据持久化方法 ===
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2025-11-21 16:07:48 +08:00
|
|
|
|
* 保存当前项目数据到项目路径
|
2025-11-18 21:14:10 +08:00
|
|
|
|
*/
|
2025-11-21 16:07:48 +08:00
|
|
|
|
private async saveCurrentProjectData(): Promise<void> {
|
2025-11-18 21:14:10 +08:00
|
|
|
|
try {
|
2025-11-21 16:07:48 +08:00
|
|
|
|
if (!this.currentProjectId) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
console.warn('未找到当前项目,数据将不会保存');
|
2025-11-21 16:07:48 +08:00
|
|
|
|
return;
|
2025-11-18 21:14:10 +08:00
|
|
|
|
}
|
2025-11-21 16:07:48 +08:00
|
|
|
|
|
|
|
|
|
|
const projectPath = this.projectPaths.get(this.currentProjectId);
|
2025-11-18 21:14:10 +08:00
|
|
|
|
if (!projectPath) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
console.warn('未找到项目存储路径,数据将不会保存');
|
2025-11-18 21:14:10 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const dataUri = vscode.Uri.joinPath(vscode.Uri.file(projectPath), '.dcsp-data.json');
|
|
|
|
|
|
|
2025-11-21 16:07:48 +08:00
|
|
|
|
// 只保存与当前项目相关的数据
|
|
|
|
|
|
const currentProjectAircrafts = this.aircrafts.filter(a => a.projectId === this.currentProjectId);
|
|
|
|
|
|
const currentAircraftIds = currentProjectAircrafts.map(a => a.id);
|
|
|
|
|
|
const currentProjectContainers = this.containers.filter(c => currentAircraftIds.includes(c.aircraftId));
|
|
|
|
|
|
const currentContainerIds = currentProjectContainers.map(c => c.id);
|
|
|
|
|
|
const currentProjectConfigs = this.configs.filter(cfg => currentContainerIds.includes(cfg.containerId));
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
|
|
|
|
|
// 只保存与当前项目容器相关的 Git 仓库
|
|
|
|
|
|
const currentProjectGitRepos = this.gitRepos.filter(repo =>
|
|
|
|
|
|
currentContainerIds.includes(repo.containerId)
|
|
|
|
|
|
);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
|
2025-11-18 21:14:10 +08:00
|
|
|
|
const data: ProjectData = {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
projects: this.projects.filter(p => p.id === this.currentProjectId),
|
2025-11-21 16:07:48 +08:00
|
|
|
|
aircrafts: currentProjectAircrafts,
|
|
|
|
|
|
containers: currentProjectContainers,
|
2025-11-25 14:30:54 +08:00
|
|
|
|
configs: currentProjectConfigs,
|
|
|
|
|
|
gitRepos: currentProjectGitRepos // 保存 Git 仓库数据
|
2025-11-18 21:14:10 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const uint8Array = new TextEncoder().encode(JSON.stringify(data, null, 2));
|
|
|
|
|
|
await vscode.workspace.fs.writeFile(dataUri, uint8Array);
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
console.log('✅ 当前项目数据已保存,包含', currentProjectGitRepos.length, '个 Git 仓库');
|
2025-11-18 21:14:10 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`保存项目数据失败: ${error}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 从项目路径加载数据
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async loadProjectData(projectPath: string): Promise<boolean> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const dataUri = vscode.Uri.joinPath(vscode.Uri.file(projectPath), '.dcsp-data.json');
|
|
|
|
|
|
|
|
|
|
|
|
// 检查数据文件是否存在
|
|
|
|
|
|
try {
|
|
|
|
|
|
await vscode.workspace.fs.stat(dataUri);
|
|
|
|
|
|
} catch {
|
|
|
|
|
|
vscode.window.showErrorMessage('选择的文件夹中没有找到项目数据文件 (.dcsp-data.json)');
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 读取数据文件
|
|
|
|
|
|
const fileData = await vscode.workspace.fs.readFile(dataUri);
|
|
|
|
|
|
const dataStr = new TextDecoder().decode(fileData);
|
|
|
|
|
|
const data: ProjectData = JSON.parse(dataStr);
|
|
|
|
|
|
|
|
|
|
|
|
// 清空现有数据
|
|
|
|
|
|
this.projects = [];
|
|
|
|
|
|
this.aircrafts = [];
|
|
|
|
|
|
this.containers = [];
|
|
|
|
|
|
this.configs = [];
|
2025-11-25 14:30:54 +08:00
|
|
|
|
this.gitRepos = []; // 清空 Git 仓库数据
|
2025-11-18 21:14:10 +08:00
|
|
|
|
|
|
|
|
|
|
// 验证数据格式并加载
|
|
|
|
|
|
if (data.projects && Array.isArray(data.projects)) {
|
|
|
|
|
|
this.projects = data.projects;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (data.aircrafts && Array.isArray(data.aircrafts)) {
|
|
|
|
|
|
this.aircrafts = data.aircrafts;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (data.containers && Array.isArray(data.containers)) {
|
|
|
|
|
|
this.containers = data.containers;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (data.configs && Array.isArray(data.configs)) {
|
|
|
|
|
|
this.configs = data.configs;
|
|
|
|
|
|
}
|
2025-11-25 14:30:54 +08:00
|
|
|
|
if (data.gitRepos && Array.isArray(data.gitRepos)) {
|
|
|
|
|
|
this.gitRepos = data.gitRepos; // 加载 Git 仓库数据
|
|
|
|
|
|
}
|
2025-11-18 21:14:10 +08:00
|
|
|
|
|
|
|
|
|
|
// 设置当前项目为第一个项目(如果有的话)
|
|
|
|
|
|
if (this.projects.length > 0) {
|
|
|
|
|
|
this.currentProjectId = this.projects[0].id;
|
2025-11-21 16:07:48 +08:00
|
|
|
|
this.projectPaths.set(this.currentProjectId, projectPath);
|
2025-11-18 21:14:10 +08:00
|
|
|
|
this.currentView = 'aircrafts';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
vscode.window.showInformationMessage(`项目数据已从 ${projectPath} 加载,包含 ${this.gitRepos.length} 个 Git 仓库`);
|
2025-11-18 21:14:10 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
return true;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`加载项目数据失败: ${error}`);
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 检查项目路径是否已存在数据
|
|
|
|
|
|
*/
|
|
|
|
|
|
private async checkProjectPathHasData(projectPath: string): Promise<boolean> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const dataUri = vscode.Uri.joinPath(vscode.Uri.file(projectPath), '.dcsp-data.json');
|
|
|
|
|
|
await vscode.workspace.fs.stat(dataUri);
|
|
|
|
|
|
return true;
|
|
|
|
|
|
} catch {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
// === 项目路径选择 ===
|
|
|
|
|
|
private async selectProjectPath(projectId: string, projectName: string): Promise<string | null> {
|
|
|
|
|
|
try {
|
2025-11-18 18:45:30 +08:00
|
|
|
|
// 选择现有路径或输入新路径
|
2025-11-18 14:03:22 +08:00
|
|
|
|
const choice = await vscode.window.showQuickPick(
|
|
|
|
|
|
[
|
|
|
|
|
|
{
|
|
|
|
|
|
label: '$(folder) 选择现有文件夹',
|
|
|
|
|
|
description: '从文件系统中选择已存在的文件夹',
|
|
|
|
|
|
value: 'select'
|
|
|
|
|
|
},
|
|
|
|
|
|
{
|
|
|
|
|
|
label: '$(new-folder) 创建新文件夹',
|
|
|
|
|
|
description: '输入新文件夹路径(将自动创建)',
|
|
|
|
|
|
value: 'create'
|
|
|
|
|
|
}
|
|
|
|
|
|
],
|
|
|
|
|
|
{
|
|
|
|
|
|
placeHolder: '选择项目存储方式'
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
if (!choice) {
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (choice.value === 'select') {
|
|
|
|
|
|
// 选择现有路径
|
|
|
|
|
|
const result = await vscode.window.showOpenDialog({
|
|
|
|
|
|
canSelectFiles: false,
|
|
|
|
|
|
canSelectFolders: true,
|
|
|
|
|
|
canSelectMany: false,
|
|
|
|
|
|
openLabel: `选择 ${projectName} 的存储位置`,
|
|
|
|
|
|
title: `为项目 "${projectName}" 选择存储文件夹`
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (result && result.length > 0) {
|
|
|
|
|
|
const selectedPath = result[0].fsPath;
|
2025-11-18 21:14:10 +08:00
|
|
|
|
|
|
|
|
|
|
// 检查是否已存在数据
|
|
|
|
|
|
const hasExistingData = await this.checkProjectPathHasData(selectedPath);
|
|
|
|
|
|
if (hasExistingData) {
|
|
|
|
|
|
const loadChoice = await vscode.window.showWarningMessage(
|
|
|
|
|
|
`在路径 ${selectedPath} 中检测到现有项目数据,是否加载?`,
|
|
|
|
|
|
{ modal: true },
|
|
|
|
|
|
'是,加载现有数据',
|
|
|
|
|
|
'否,创建新项目'
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
if (loadChoice === '是,加载现有数据') {
|
|
|
|
|
|
// 加载现有数据
|
|
|
|
|
|
const success = await this.loadProjectData(selectedPath);
|
|
|
|
|
|
if (success) {
|
|
|
|
|
|
this.projectPaths.set(projectId, selectedPath);
|
|
|
|
|
|
this.currentView = 'aircrafts';
|
|
|
|
|
|
this.currentProjectId = projectId;
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
vscode.window.showInformationMessage(`项目数据已从 ${selectedPath} 加载`);
|
|
|
|
|
|
return selectedPath;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
// 如果选择不加载或加载失败,继续创建新项目
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
this.projectPaths.set(projectId, selectedPath);
|
|
|
|
|
|
vscode.window.showInformationMessage(`项目存储位置已设置: ${selectedPath}`);
|
2025-11-18 21:14:10 +08:00
|
|
|
|
|
|
|
|
|
|
// 保存初始数据
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 21:14:10 +08:00
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
return selectedPath;
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 创建新路径
|
|
|
|
|
|
const pathInput = await vscode.window.showInputBox({
|
|
|
|
|
|
prompt: '请输入项目存储路径(绝对路径)',
|
|
|
|
|
|
placeHolder: `/path/to/your/project/${projectName}`,
|
|
|
|
|
|
validateInput: (value) => {
|
|
|
|
|
|
if (!value) {
|
|
|
|
|
|
return '路径不能为空';
|
|
|
|
|
|
}
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (pathInput) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 尝试创建目录
|
|
|
|
|
|
const dirUri = vscode.Uri.file(pathInput);
|
|
|
|
|
|
await vscode.workspace.fs.createDirectory(dirUri);
|
|
|
|
|
|
|
|
|
|
|
|
this.projectPaths.set(projectId, pathInput);
|
|
|
|
|
|
vscode.window.showInformationMessage(`项目存储位置已创建: ${pathInput}`);
|
2025-11-18 21:14:10 +08:00
|
|
|
|
|
|
|
|
|
|
// 保存初始数据
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 21:14:10 +08:00
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
return pathInput;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`创建目录失败: ${error}`);
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`选择存储路径时出错: ${error}`);
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
// 更新项目名
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async updateProjectName(projectId: string, newName: string) {
|
2025-11-18 09:10:47 +08:00
|
|
|
|
const project = this.projects.find(p => p.id === projectId);
|
|
|
|
|
|
if (project) {
|
|
|
|
|
|
project.name = newName;
|
|
|
|
|
|
vscode.window.showInformationMessage(`项目名称更新: ${newName}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
// 创建新项目
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async createProject(name: string) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
const newId = 'p' + (this.projects.length + 1);
|
|
|
|
|
|
const newProject: Project = {
|
|
|
|
|
|
id: newId,
|
|
|
|
|
|
name: name
|
|
|
|
|
|
};
|
|
|
|
|
|
this.projects.push(newProject);
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`新建项目: ${name}`);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
// 删除项目
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async deleteProject(projectId: string) {
|
2025-11-18 18:45:30 +08:00
|
|
|
|
const project = this.projects.find(p => p.id === projectId);
|
|
|
|
|
|
if (!project) return;
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.projects = this.projects.filter(p => p.id !== projectId);
|
|
|
|
|
|
// 删除相关的飞行器
|
|
|
|
|
|
const relatedAircrafts = this.aircrafts.filter(a => a.projectId === projectId);
|
|
|
|
|
|
const aircraftIds = relatedAircrafts.map(a => a.id);
|
|
|
|
|
|
this.aircrafts = this.aircrafts.filter(a => a.projectId !== projectId);
|
|
|
|
|
|
// 删除相关的容器
|
|
|
|
|
|
this.containers = this.containers.filter(c => !aircraftIds.includes(c.aircraftId));
|
|
|
|
|
|
// 删除相关的配置
|
|
|
|
|
|
const containerIds = this.containers.filter(c => aircraftIds.includes(c.aircraftId)).map(c => c.id);
|
|
|
|
|
|
this.configs = this.configs.filter(cfg => !containerIds.includes(cfg.containerId));
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 删除相关的 Git 仓库
|
|
|
|
|
|
this.gitRepos = this.gitRepos.filter(repo => !containerIds.includes(repo.containerId));
|
2025-11-18 14:03:22 +08:00
|
|
|
|
// 删除项目路径映射
|
|
|
|
|
|
this.projectPaths.delete(projectId);
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
vscode.window.showInformationMessage(`删除项目: ${project.name}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
// 更新飞行器名
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async updateAircraftName(aircraftId: string, newName: string) {
|
2025-11-18 18:45:30 +08:00
|
|
|
|
const aircraft = this.aircrafts.find(a => a.id === aircraftId);
|
|
|
|
|
|
if (aircraft) {
|
|
|
|
|
|
aircraft.name = newName;
|
|
|
|
|
|
vscode.window.showInformationMessage(`飞行器名称更新: ${newName}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 18:45:30 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 创建新飞行器
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async createAircraft(name: string) {
|
2025-11-18 18:45:30 +08:00
|
|
|
|
if (!this.currentProjectId) {
|
|
|
|
|
|
vscode.window.showErrorMessage('无法创建飞行器:未找到当前项目');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const newId = 'a' + (this.aircrafts.length + 1);
|
|
|
|
|
|
const newAircraft: Aircraft = {
|
|
|
|
|
|
id: newId,
|
|
|
|
|
|
name: name,
|
|
|
|
|
|
projectId: this.currentProjectId
|
|
|
|
|
|
};
|
|
|
|
|
|
this.aircrafts.push(newAircraft);
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 创建飞行器目录
|
2025-11-25 09:24:31 +08:00
|
|
|
|
await this.createAircraftDirectory(newAircraft);
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
vscode.window.showInformationMessage(`新建飞行器: ${name}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 18:45:30 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 删除飞行器
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async deleteAircraft(aircraftId: string) {
|
2025-11-18 18:45:30 +08:00
|
|
|
|
const aircraft = this.aircrafts.find(a => a.id === aircraftId);
|
|
|
|
|
|
if (!aircraft) return;
|
|
|
|
|
|
|
|
|
|
|
|
this.aircrafts = this.aircrafts.filter(a => a.id !== aircraftId);
|
|
|
|
|
|
// 删除相关的容器
|
|
|
|
|
|
this.containers = this.containers.filter(c => c.aircraftId !== aircraftId);
|
|
|
|
|
|
// 删除相关的配置
|
|
|
|
|
|
const containerIds = this.containers.filter(c => c.aircraftId === aircraftId).map(c => c.id);
|
|
|
|
|
|
this.configs = this.configs.filter(cfg => !containerIds.includes(cfg.containerId));
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 删除相关的 Git 仓库
|
|
|
|
|
|
this.gitRepos = this.gitRepos.filter(repo => !containerIds.includes(repo.containerId));
|
2025-11-18 18:45:30 +08:00
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`删除飞行器: ${aircraft.name}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 18:45:30 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 更新容器名
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async updateContainerName(containerId: string, newName: string) {
|
2025-11-18 09:10:47 +08:00
|
|
|
|
const container = this.containers.find(c => c.id === containerId);
|
|
|
|
|
|
if (container) {
|
|
|
|
|
|
container.name = newName;
|
|
|
|
|
|
vscode.window.showInformationMessage(`容器名称更新: ${newName}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-21 16:07:48 +08:00
|
|
|
|
// 创建新容器
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async createContainer(name: string) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
if (!this.currentAircraftId) {
|
|
|
|
|
|
vscode.window.showErrorMessage('无法创建容器:未找到当前飞行器');
|
2025-11-25 09:24:31 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
const newId = 'c' + (this.containers.length + 1);
|
|
|
|
|
|
|
|
|
|
|
|
const newContainer: Container = {
|
|
|
|
|
|
id: newId,
|
|
|
|
|
|
name: name,
|
|
|
|
|
|
aircraftId: this.currentAircraftId
|
|
|
|
|
|
};
|
|
|
|
|
|
this.containers.push(newContainer);
|
2025-11-25 09:24:31 +08:00
|
|
|
|
|
|
|
|
|
|
// 创建容器目录
|
2025-11-25 14:30:54 +08:00
|
|
|
|
await this.createContainerDirectory(newContainer);
|
|
|
|
|
|
|
|
|
|
|
|
// 创建两个默认配置文件
|
|
|
|
|
|
const configCount = this.configs.length;
|
2025-11-25 09:24:31 +08:00
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 第一个配置文件
|
|
|
|
|
|
this.configs.push({
|
|
|
|
|
|
id: 'cfg' + (configCount + 1),
|
|
|
|
|
|
name: '配置1',
|
|
|
|
|
|
fileName: 'dockerfile',
|
|
|
|
|
|
content: `# ${name} 的 Dockerfile\nFROM ubuntu:20.04\n\n# 设置工作目录\nWORKDIR /app\n\n# 复制文件\nCOPY . .\n\n# 安装依赖\nRUN apt-get update && apt-get install -y \\\n python3 \\\n python3-pip\n\n# 暴露端口\nEXPOSE 8080\n\n# 启动命令\nCMD ["python3", "app.py"]`,
|
|
|
|
|
|
containerId: newId
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 第二个配置文件
|
|
|
|
|
|
this.configs.push({
|
|
|
|
|
|
id: 'cfg' + (configCount + 2),
|
|
|
|
|
|
name: '配置2',
|
|
|
|
|
|
fileName: 'docker-compose.yml',
|
|
|
|
|
|
content: `# ${name} 的 Docker Compose 配置\nversion: '3.8'\n\nservices:\n ${name.toLowerCase().replace(/\\s+/g, '-')}:\n build: .\n container_name: ${name}\n ports:\n - "8080:8080"\n environment:\n - NODE_ENV=production\n volumes:\n - ./data:/app/data\n restart: unless-stopped`,
|
|
|
|
|
|
containerId: newId
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`新建容器: ${name} (包含2个默认配置文件)`);
|
|
|
|
|
|
await this.saveCurrentProjectData();
|
|
|
|
|
|
this.updateWebview();
|
2025-11-18 09:10:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
// 删除容器
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async deleteContainer(containerId: string) {
|
2025-11-18 18:45:30 +08:00
|
|
|
|
const container = this.containers.find(c => c.id === containerId);
|
|
|
|
|
|
if (!container) return;
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
// 删除容器
|
|
|
|
|
|
this.containers = this.containers.filter(c => c.id !== containerId);
|
|
|
|
|
|
|
|
|
|
|
|
// 删除相关的配置
|
|
|
|
|
|
this.configs = this.configs.filter(cfg => cfg.containerId !== containerId);
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
|
|
|
|
|
// 删除相关的 Git 仓库
|
|
|
|
|
|
this.gitRepos = this.gitRepos.filter(repo => repo.containerId !== containerId);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
vscode.window.showInformationMessage(`删除容器: ${container.name}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
// 更新配置名
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async updateConfigName(configId: string, newName: string) {
|
2025-11-18 09:10:47 +08:00
|
|
|
|
const config = this.configs.find(c => c.id === configId);
|
|
|
|
|
|
if (config) {
|
|
|
|
|
|
config.name = newName;
|
|
|
|
|
|
vscode.window.showInformationMessage(`配置名称更新: ${newName}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
// 创建新配置文件
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async createConfig(name: string) {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
const newId = 'cfg' + (this.configs.length + 1);
|
|
|
|
|
|
const newConfig: Config = {
|
|
|
|
|
|
id: newId,
|
|
|
|
|
|
name: name,
|
|
|
|
|
|
fileName: name.toLowerCase().replace(/\s+/g, '_'),
|
|
|
|
|
|
content: `# ${name} 配置文件\n# 创建时间: ${new Date().toLocaleString()}\n# 您可以在此编辑配置内容\n\n`,
|
|
|
|
|
|
containerId: this.currentContainerId
|
|
|
|
|
|
};
|
|
|
|
|
|
this.configs.push(newConfig);
|
2025-11-25 09:24:31 +08:00
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 确保容器目录存在
|
|
|
|
|
|
await this.ensureContainerDirectoryExists(this.currentContainerId);
|
2025-11-25 09:24:31 +08:00
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
vscode.window.showInformationMessage(`新建配置: ${name}`);
|
|
|
|
|
|
await this.saveCurrentProjectData();
|
|
|
|
|
|
this.updateWebview();
|
2025-11-18 09:10:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 删除配置文件 - 修复版本,同时删除磁盘文件
|
2025-11-18 21:14:10 +08:00
|
|
|
|
private async deleteConfig(configId: string) {
|
2025-11-18 09:10:47 +08:00
|
|
|
|
const config = this.configs.find(c => c.id === configId);
|
2025-11-25 14:30:54 +08:00
|
|
|
|
if (!config) return;
|
|
|
|
|
|
|
|
|
|
|
|
const confirm = await vscode.window.showWarningMessage(
|
|
|
|
|
|
`确定要删除配置文件 "${config.name}" 吗?这将同时删除磁盘上的文件。`,
|
|
|
|
|
|
{ modal: true },
|
|
|
|
|
|
'确定删除',
|
|
|
|
|
|
'取消'
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
if (confirm !== '确定删除') {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 从内存中删除配置
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.configs = this.configs.filter(c => c.id !== configId);
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
|
|
|
|
|
// 删除磁盘上的配置文件
|
|
|
|
|
|
const container = this.containers.find(c => c.id === config.containerId);
|
|
|
|
|
|
if (container) {
|
|
|
|
|
|
const aircraft = this.aircrafts.find(a => a.id === container.aircraftId);
|
|
|
|
|
|
if (aircraft) {
|
|
|
|
|
|
const projectPath = this.projectPaths.get(aircraft.projectId);
|
|
|
|
|
|
if (projectPath) {
|
|
|
|
|
|
const filePath = path.join(projectPath, aircraft.name, container.name, config.fileName);
|
|
|
|
|
|
|
|
|
|
|
|
// 检查文件是否存在,如果存在则删除
|
|
|
|
|
|
if (fs.existsSync(filePath)) {
|
|
|
|
|
|
await fs.promises.unlink(filePath);
|
|
|
|
|
|
console.log(`✅ 已删除配置文件: ${filePath}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
vscode.window.showInformationMessage(`删除配置: ${config.name}`);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
await this.saveCurrentProjectData();
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.updateWebview();
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`删除配置文件失败: ${error}`);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// === Git 分支管理 ===
|
2025-11-18 14:03:22 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
private async fetchBranches(url: string): Promise<void> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
console.log('🌿 开始获取分支列表:', url);
|
|
|
|
|
|
|
|
|
|
|
|
await vscode.window.withProgress({
|
|
|
|
|
|
location: vscode.ProgressLocation.Notification,
|
|
|
|
|
|
title: '正在获取分支信息',
|
|
|
|
|
|
cancellable: false
|
|
|
|
|
|
}, async (progress) => {
|
|
|
|
|
|
progress.report({ increment: 0, message: '连接远程仓库...' });
|
2025-11-18 14:03:22 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
try {
|
|
|
|
|
|
// 使用 isomorphic-git 的 listServerRefs
|
|
|
|
|
|
progress.report({ increment: 30, message: '获取远程引用...' });
|
|
|
|
|
|
|
|
|
|
|
|
console.log('🔍 使用 listServerRefs 获取分支信息...');
|
|
|
|
|
|
|
|
|
|
|
|
const refs = await git.listServerRefs({
|
|
|
|
|
|
http: http,
|
|
|
|
|
|
url: url
|
|
|
|
|
|
});
|
2025-11-18 14:03:22 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
console.log('📋 获取到的引用:', refs);
|
2025-11-18 21:14:10 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 过滤出分支引用 (refs/heads/ 和 refs/remotes/origin/)
|
|
|
|
|
|
const branchRefs = refs.filter(ref =>
|
|
|
|
|
|
ref.ref.startsWith('refs/heads/') || ref.ref.startsWith('refs/remotes/origin/')
|
|
|
|
|
|
);
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
console.log('🌿 过滤后的分支引用:', branchRefs);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 构建分支数据 - 修复分支名称显示
|
|
|
|
|
|
const branches: GitBranch[] = branchRefs.map(ref => {
|
|
|
|
|
|
const isRemote = ref.ref.startsWith('refs/remotes/');
|
|
|
|
|
|
let branchName: string;
|
|
|
|
|
|
|
|
|
|
|
|
if (isRemote) {
|
|
|
|
|
|
// 远程分支:移除 refs/remotes/origin/ 前缀
|
|
|
|
|
|
branchName = ref.ref.replace('refs/remotes/origin/', '');
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 本地分支:移除 refs/heads/ 前缀
|
|
|
|
|
|
branchName = ref.ref.replace('refs/heads/', '');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
name: branchName,
|
|
|
|
|
|
isCurrent: branchName === 'main' || branchName === 'master',
|
|
|
|
|
|
isRemote: isRemote,
|
|
|
|
|
|
selected: false // 所有分支默认不选中
|
|
|
|
|
|
};
|
|
|
|
|
|
});
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
console.log('🎯 最终分支列表:', branches);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
if (branches.length === 0) {
|
|
|
|
|
|
throw new Error('未找到任何分支');
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
progress.report({ increment: 80, message: '处理分支数据...' });
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 发送分支数据到前端
|
|
|
|
|
|
if (!this.isWebviewDisposed) {
|
|
|
|
|
|
this.panel.webview.postMessage({
|
|
|
|
|
|
type: 'branchesFetched',
|
|
|
|
|
|
branches: branches,
|
|
|
|
|
|
repoUrl: url
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
progress.report({ increment: 100, message: '完成' });
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('❌ 使用 listServerRefs 获取分支失败:', error);
|
2025-11-25 16:32:06 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
// 如果方法失败,使用模拟数据
|
|
|
|
|
|
console.log('🔄 使用模拟分支数据');
|
|
|
|
|
|
const mockBranches = [
|
|
|
|
|
|
{ name: 'main', isCurrent: true, isRemote: false, selected: false },
|
|
|
|
|
|
{ name: 'master', isCurrent: false, isRemote: false, selected: false },
|
|
|
|
|
|
{ name: 'develop', isCurrent: false, isRemote: false, selected: false },
|
|
|
|
|
|
{ name: 'feature/new-feature', isCurrent: false, isRemote: false, selected: false }
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.isWebviewDisposed) {
|
|
|
|
|
|
this.panel.webview.postMessage({
|
|
|
|
|
|
type: 'branchesFetched',
|
|
|
|
|
|
branches: mockBranches,
|
|
|
|
|
|
repoUrl: url
|
|
|
|
|
|
});
|
2025-11-25 16:32:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
vscode.window.showWarningMessage('使用模拟分支数据,实际分支可能不同');
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
2025-11-25 21:13:41 +08:00
|
|
|
|
});
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('❌ 获取分支失败:', error);
|
|
|
|
|
|
vscode.window.showErrorMessage(`获取分支失败: ${error}`);
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private async cloneBranches(url: string, branches: string[]): Promise<void> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
console.log('🚀 开始克隆分支:', { url, branches });
|
|
|
|
|
|
|
|
|
|
|
|
// 显示总进度
|
|
|
|
|
|
await vscode.window.withProgress({
|
|
|
|
|
|
location: vscode.ProgressLocation.Notification,
|
|
|
|
|
|
title: `正在克隆 ${branches.length} 个分支`,
|
|
|
|
|
|
cancellable: false
|
|
|
|
|
|
}, async (progress) => {
|
|
|
|
|
|
for (let i = 0; i < branches.length; i++) {
|
|
|
|
|
|
const branch = branches[i];
|
|
|
|
|
|
const progressPercent = (i / branches.length) * 100;
|
|
|
|
|
|
progress.report({
|
|
|
|
|
|
increment: progressPercent,
|
|
|
|
|
|
message: `克隆分支: ${branch} (${i + 1}/${branches.length})`
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
console.log(`📥 克隆分支: ${branch}`);
|
|
|
|
|
|
await this.addGitRepo(url, this.generateRepoName(url, branch), branch);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`成功克隆 ${branches.length} 个分支`);
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('❌ 克隆分支失败:', error);
|
|
|
|
|
|
vscode.window.showErrorMessage(`克隆分支失败: ${error}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private generateRepoName(url: string, branch: string): string {
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const repoName = url.split('/').pop()?.replace('.git', '') || 'unknown-repo';
|
|
|
|
|
|
const branchSafeName = branch.replace(/[^a-zA-Z0-9-_]/g, '-');
|
|
|
|
|
|
return `${repoName}-${branchSafeName}`;
|
|
|
|
|
|
}
|
2025-11-24 17:53:48 +08:00
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
// 更新视图
|
|
|
|
|
|
private updateWebview() {
|
2025-11-25 14:30:54 +08:00
|
|
|
|
// 检查 Webview 是否仍然有效
|
|
|
|
|
|
if (this.isWebviewDisposed) {
|
|
|
|
|
|
console.log('⚠️ Webview 已被销毁,跳过更新');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
this.panel.webview.html = this.getWebviewContent();
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('更新 Webview 失败:', error);
|
|
|
|
|
|
}
|
2025-11-18 09:10:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private getWebviewContent(): string {
|
|
|
|
|
|
switch (this.currentView) {
|
2025-11-18 18:45:30 +08:00
|
|
|
|
case 'projects':
|
|
|
|
|
|
return this.projectView.render({
|
2025-11-18 14:03:22 +08:00
|
|
|
|
projects: this.projects,
|
|
|
|
|
|
projectPaths: this.projectPaths
|
|
|
|
|
|
});
|
2025-11-18 09:10:47 +08:00
|
|
|
|
case 'aircrafts':
|
2025-11-18 18:45:30 +08:00
|
|
|
|
const projectAircrafts = this.aircrafts.filter(a => a.projectId === this.currentProjectId);
|
|
|
|
|
|
return this.aircraftView.render({
|
|
|
|
|
|
aircrafts: projectAircrafts
|
|
|
|
|
|
});
|
|
|
|
|
|
case 'containers':
|
2025-11-18 09:10:47 +08:00
|
|
|
|
const currentProject = this.projects.find(p => p.id === this.currentProjectId);
|
2025-11-21 16:07:48 +08:00
|
|
|
|
const currentAircraft = this.aircrafts.find(a => a.id === this.currentAircraftId);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
const projectContainers = this.containers.filter(c => c.aircraftId === this.currentAircraftId);
|
|
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
return this.containerView.render({
|
2025-11-18 09:10:47 +08:00
|
|
|
|
project: currentProject,
|
2025-11-21 16:07:48 +08:00
|
|
|
|
aircraft: currentAircraft,
|
2025-11-18 09:10:47 +08:00
|
|
|
|
containers: projectContainers
|
|
|
|
|
|
});
|
2025-11-18 18:45:30 +08:00
|
|
|
|
case 'configs':
|
2025-11-18 09:10:47 +08:00
|
|
|
|
const currentContainer = this.containers.find(c => c.id === this.currentContainerId);
|
|
|
|
|
|
const containerConfigs = this.configs.filter(cfg => cfg.containerId === this.currentContainerId);
|
2025-11-24 17:53:48 +08:00
|
|
|
|
const currentRepo = this.gitRepos.find(r => r.id === this.currentRepoId);
|
2025-11-25 14:30:54 +08:00
|
|
|
|
|
|
|
|
|
|
// 获取当前容器的 Git 仓库
|
|
|
|
|
|
const containerGitRepos = this.gitRepos.filter(repo => repo.containerId === this.currentContainerId);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
|
2025-11-18 18:45:30 +08:00
|
|
|
|
return this.configView.render({
|
2025-11-18 09:10:47 +08:00
|
|
|
|
container: currentContainer,
|
2025-11-24 17:53:48 +08:00
|
|
|
|
configs: containerConfigs,
|
2025-11-25 14:30:54 +08:00
|
|
|
|
gitRepos: containerGitRepos, // 只显示当前容器的 Git 仓库
|
2025-11-24 17:53:48 +08:00
|
|
|
|
currentGitRepo: currentRepo,
|
|
|
|
|
|
gitFileTree: this.currentRepoFileTree,
|
|
|
|
|
|
gitLoading: false
|
2025-11-18 09:10:47 +08:00
|
|
|
|
});
|
|
|
|
|
|
default:
|
2025-11-18 18:45:30 +08:00
|
|
|
|
return this.projectView.render({
|
2025-11-18 14:03:22 +08:00
|
|
|
|
projects: this.projects,
|
|
|
|
|
|
projectPaths: this.projectPaths
|
2025-11-18 09:10:47 +08:00
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-25 21:13:41 +08:00
|
|
|
|
|
2025-11-25 16:32:06 +08:00
|
|
|
|
private async openGitRepoInVSCode(repoId: string): Promise<void> {
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const repo = this.gitRepos.find(r => r.id === repoId);
|
|
|
|
|
|
if (!repo) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到指定的 Git 仓库');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 检查仓库目录是否存在
|
|
|
|
|
|
if (!fs.existsSync(repo.localPath)) {
|
|
|
|
|
|
vscode.window.showErrorMessage('Git 仓库目录不存在,请重新克隆');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 使用 VSCode 的文件选择器让用户选择要打开的文件
|
|
|
|
|
|
const fileUri = await vscode.window.showOpenDialog({
|
|
|
|
|
|
defaultUri: vscode.Uri.file(repo.localPath),
|
|
|
|
|
|
canSelectFiles: true,
|
|
|
|
|
|
canSelectFolders: false,
|
|
|
|
|
|
canSelectMany: false,
|
|
|
|
|
|
openLabel: '选择要打开的文件',
|
|
|
|
|
|
title: `在 ${repo.name} 中选择文件`
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (fileUri && fileUri.length > 0) {
|
|
|
|
|
|
// 打开选中的文件
|
|
|
|
|
|
const document = await vscode.workspace.openTextDocument(fileUri[0]);
|
|
|
|
|
|
await vscode.window.showTextDocument(document);
|
|
|
|
|
|
vscode.window.showInformationMessage(`已打开文件: ${path.basename(fileUri[0].fsPath)}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`打开 Git 仓库文件失败: ${error}`);
|
|
|
|
|
|
}
|
2025-11-25 16:32:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
private async openConfigFileInVSCode(configId: string): Promise<void> {
|
|
|
|
|
|
const config = this.configs.find(c => c.id === configId);
|
|
|
|
|
|
if (!config) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到配置文件');
|
2025-11-25 16:32:06 +08:00
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const container = this.containers.find(c => c.id === config.containerId);
|
|
|
|
|
|
if (!container) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到容器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2025-11-25 16:32:06 +08:00
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const aircraft = this.aircrafts.find(a => a.id === container.aircraftId);
|
|
|
|
|
|
if (!aircraft) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到飞行器');
|
|
|
|
|
|
return;
|
2025-11-25 16:32:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-25 21:13:41 +08:00
|
|
|
|
const projectPath = this.projectPaths.get(aircraft.projectId);
|
|
|
|
|
|
if (!projectPath) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未设置项目存储路径');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 构建文件路径
|
|
|
|
|
|
const filePath = path.join(projectPath, aircraft.name, container.name, config.fileName);
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 检查文件是否存在
|
|
|
|
|
|
if (!fs.existsSync(filePath)) {
|
|
|
|
|
|
vscode.window.showWarningMessage('配置文件不存在,将创建新文件');
|
|
|
|
|
|
// 确保目录存在
|
|
|
|
|
|
const dirPath = path.dirname(filePath);
|
|
|
|
|
|
await fs.promises.mkdir(dirPath, { recursive: true });
|
|
|
|
|
|
// 创建文件
|
|
|
|
|
|
await fs.promises.writeFile(filePath, config.content || '');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 在 VSCode 中打开文件
|
|
|
|
|
|
const document = await vscode.workspace.openTextDocument(filePath);
|
|
|
|
|
|
await vscode.window.showTextDocument(document);
|
|
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`打开配置文件失败: ${error}`);
|
|
|
|
|
|
}
|
2025-11-25 16:32:06 +08:00
|
|
|
|
}
|
2025-11-18 09:10:47 +08:00
|
|
|
|
}
|