2025-11-18 09:10:47 +08:00
|
|
|
|
// src/panels/ConfigPanel.ts
|
|
|
|
|
|
import * as vscode from 'vscode';
|
2025-11-18 14:03:22 +08:00
|
|
|
|
import { ProjectManagementView } from './views/ProjectManagementView';
|
2025-11-18 09:10:47 +08:00
|
|
|
|
import { ProjectListView } from './views/ProjectListView';
|
|
|
|
|
|
import { AircraftConfigView } from './views/AircraftConfigView';
|
|
|
|
|
|
import { ContainerConfigView } from './views/ContainerConfigView';
|
|
|
|
|
|
|
|
|
|
|
|
// 数据模型接口
|
|
|
|
|
|
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;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export class ConfigPanel {
|
|
|
|
|
|
private static currentPanel: ConfigPanel | undefined;
|
|
|
|
|
|
private readonly panel: vscode.WebviewPanel;
|
|
|
|
|
|
private readonly extensionUri: vscode.Uri;
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
private currentView: 'management' | 'projects' | 'aircrafts' | 'container' = 'management';
|
2025-11-18 09:10:47 +08:00
|
|
|
|
private currentProjectId: string = '';
|
|
|
|
|
|
private currentAircraftId: string = '';
|
|
|
|
|
|
private currentContainerId: string = '';
|
|
|
|
|
|
|
|
|
|
|
|
// 数据存储
|
|
|
|
|
|
private projects: Project[] = [
|
2025-11-18 14:03:22 +08:00
|
|
|
|
{ id: 'p1', name: '项目1' },
|
|
|
|
|
|
{ id: 'p2', name: '项目2' }
|
2025-11-18 09:10:47 +08:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
private aircrafts: Aircraft[] = [
|
|
|
|
|
|
{ id: 'a1', name: '飞行器配置1', projectId: 'p1' },
|
|
|
|
|
|
{ id: 'a2', name: '飞行器配置2', projectId: 'p2' }
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
private containers: Container[] = [
|
|
|
|
|
|
{ id: 'c1', name: '容器1', aircraftId: 'a1' },
|
|
|
|
|
|
{ id: 'c2', name: '容器2', aircraftId: 'a1' },
|
|
|
|
|
|
{ id: 'c3', name: '容器1', aircraftId: 'a2' }
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
private configs: Config[] = [
|
|
|
|
|
|
{ id: 'cfg1', name: '配置1', fileName: 'config.yaml', content: '# 配置1内容', containerId: 'c1' },
|
|
|
|
|
|
{ id: 'cfg2', name: '配置2', fileName: 'settings.json', content: '# 配置2内容', containerId: 'c1' },
|
|
|
|
|
|
{ id: 'cfg3', name: '配置1', fileName: 'docker-compose.yml', content: '# 配置1内容', containerId: 'c2' },
|
|
|
|
|
|
{ id: 'cfg4', name: '配置1', fileName: 'config.yaml', content: '# 配置1内容', containerId: 'c3' }
|
|
|
|
|
|
];
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
// 项目存储路径映射
|
|
|
|
|
|
private projectPaths: Map<string, string> = new Map();
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
// 视图实例
|
2025-11-18 14:03:22 +08:00
|
|
|
|
private readonly projectManagementView: ProjectManagementView;
|
2025-11-18 09:10:47 +08:00
|
|
|
|
private readonly projectListView: ProjectListView;
|
|
|
|
|
|
private readonly aircraftConfigView: AircraftConfigView;
|
|
|
|
|
|
private readonly containerConfigView: ContainerConfigView;
|
|
|
|
|
|
|
|
|
|
|
|
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(
|
|
|
|
|
|
'dockerConfigTest',
|
|
|
|
|
|
'Docker配置测试',
|
|
|
|
|
|
column,
|
|
|
|
|
|
{
|
|
|
|
|
|
enableScripts: true,
|
|
|
|
|
|
localResourceRoots: [extensionUri],
|
|
|
|
|
|
retainContextWhenHidden: true
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
ConfigPanel.currentPanel = new ConfigPanel(panel, extensionUri);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private constructor(panel: vscode.WebviewPanel, extensionUri: vscode.Uri) {
|
|
|
|
|
|
this.panel = panel;
|
|
|
|
|
|
this.extensionUri = extensionUri;
|
|
|
|
|
|
|
|
|
|
|
|
// 初始化各个视图
|
2025-11-18 14:03:22 +08:00
|
|
|
|
this.projectManagementView = new ProjectManagementView(extensionUri);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.projectListView = new ProjectListView(extensionUri);
|
|
|
|
|
|
this.aircraftConfigView = new AircraftConfigView(extensionUri);
|
|
|
|
|
|
this.containerConfigView = new ContainerConfigView(extensionUri);
|
|
|
|
|
|
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
this.setupMessageListener();
|
|
|
|
|
|
|
|
|
|
|
|
this.panel.onDidDispose(() => {
|
|
|
|
|
|
ConfigPanel.currentPanel = undefined;
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private setupMessageListener() {
|
|
|
|
|
|
this.panel.webview.onDidReceiveMessage(async (data) => {
|
|
|
|
|
|
switch (data.type) {
|
2025-11-18 14:03:22 +08:00
|
|
|
|
case 'configureProject':
|
|
|
|
|
|
const selectedPath = await this.selectProjectPath(data.projectId, data.projectName);
|
|
|
|
|
|
if (selectedPath) {
|
|
|
|
|
|
this.currentView = 'projects';
|
|
|
|
|
|
this.currentProjectId = data.projectId;
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'openProject':
|
|
|
|
|
|
// 已配置的项目直接打开
|
|
|
|
|
|
this.currentView = 'projects';
|
|
|
|
|
|
this.currentProjectId = data.projectId;
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
case 'openAircraftConfig':
|
|
|
|
|
|
this.currentView = 'aircrafts';
|
|
|
|
|
|
this.currentProjectId = data.projectId;
|
|
|
|
|
|
// 找到对应的飞行器ID
|
|
|
|
|
|
const aircraft = this.aircrafts.find(a => a.projectId === data.projectId);
|
|
|
|
|
|
if (aircraft) {
|
|
|
|
|
|
this.currentAircraftId = aircraft.id;
|
|
|
|
|
|
}
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'openContainerConfig':
|
|
|
|
|
|
this.currentView = 'container';
|
|
|
|
|
|
this.currentContainerId = data.containerId;
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
case 'goBackToManagement':
|
|
|
|
|
|
this.currentView = 'management';
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
case 'goBackToProjects':
|
|
|
|
|
|
this.currentView = 'projects';
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'goBackToAircraft':
|
|
|
|
|
|
this.currentView = 'aircrafts';
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'updateProjectName':
|
|
|
|
|
|
this.updateProjectName(data.projectId, data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'createProject':
|
|
|
|
|
|
this.createProject(data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'updateContainerName':
|
|
|
|
|
|
this.updateContainerName(data.containerId, data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'createContainer':
|
|
|
|
|
|
this.createContainer(data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'updateConfigName':
|
|
|
|
|
|
this.updateConfigName(data.configId, data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
case 'updateConfigFileName':
|
|
|
|
|
|
await this.updateConfigFileName(data.configId, data.fileName);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
case 'createConfig':
|
|
|
|
|
|
this.createConfig(data.name);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'saveConfigFile':
|
2025-11-18 14:03:22 +08:00
|
|
|
|
await this.saveConfigFileToDisk(data.configId, data.content);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'loadConfigFile':
|
|
|
|
|
|
this.loadConfigFile(data.configId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'deleteProject':
|
|
|
|
|
|
this.deleteProject(data.projectId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 'deleteContainer':
|
|
|
|
|
|
this.deleteContainer(data.containerId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
case 'deleteConfig':
|
2025-11-18 09:10:47 +08:00
|
|
|
|
this.deleteConfig(data.configId);
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
// === 项目路径选择 ===
|
|
|
|
|
|
private async selectProjectPath(projectId: string, projectName: string): Promise<string | null> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
// 提供两种方式:选择现有路径或输入新路径
|
|
|
|
|
|
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;
|
|
|
|
|
|
this.projectPaths.set(projectId, selectedPath);
|
|
|
|
|
|
vscode.window.showInformationMessage(`项目存储位置已设置: ${selectedPath}`);
|
|
|
|
|
|
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}`);
|
|
|
|
|
|
return pathInput;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`创建目录失败: ${error}`);
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`选择存储路径时出错: ${error}`);
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
// === 项目相关方法 ===
|
|
|
|
|
|
private updateProjectName(projectId: string, newName: string) {
|
|
|
|
|
|
const project = this.projects.find(p => p.id === projectId);
|
|
|
|
|
|
if (project) {
|
|
|
|
|
|
project.name = newName;
|
|
|
|
|
|
vscode.window.showInformationMessage(`项目名称更新: ${newName}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private createProject(name: string) {
|
|
|
|
|
|
const newId = 'p' + (this.projects.length + 1);
|
|
|
|
|
|
const newProject: Project = {
|
|
|
|
|
|
id: newId,
|
|
|
|
|
|
name: name
|
|
|
|
|
|
};
|
|
|
|
|
|
this.projects.push(newProject);
|
|
|
|
|
|
|
|
|
|
|
|
// 同时创建一个默认的飞行器配置
|
|
|
|
|
|
const newAircraftId = 'a' + (this.aircrafts.length + 1);
|
|
|
|
|
|
this.aircrafts.push({
|
|
|
|
|
|
id: newAircraftId,
|
|
|
|
|
|
name: `${name}配置`,
|
|
|
|
|
|
projectId: newId
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`新建项目: ${name}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private deleteProject(projectId: string) {
|
|
|
|
|
|
// 删除项目
|
|
|
|
|
|
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-18 14:03:22 +08:00
|
|
|
|
// 删除项目路径映射
|
|
|
|
|
|
this.projectPaths.delete(projectId);
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
vscode.window.showInformationMessage(`删除项目: ${projectId}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// === 容器相关方法 ===
|
|
|
|
|
|
private updateContainerName(containerId: string, newName: string) {
|
|
|
|
|
|
const container = this.containers.find(c => c.id === containerId);
|
|
|
|
|
|
if (container) {
|
|
|
|
|
|
container.name = newName;
|
|
|
|
|
|
vscode.window.showInformationMessage(`容器名称更新: ${newName}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private createContainer(name: string) {
|
|
|
|
|
|
console.log('创建容器,当前飞行器ID:', this.currentAircraftId);
|
|
|
|
|
|
|
|
|
|
|
|
if (!this.currentAircraftId) {
|
|
|
|
|
|
vscode.window.showErrorMessage('无法创建容器:未找到当前飞行器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const newId = 'c' + (this.containers.length + 1);
|
|
|
|
|
|
|
|
|
|
|
|
const newContainer: Container = {
|
|
|
|
|
|
id: newId,
|
|
|
|
|
|
name: name,
|
|
|
|
|
|
aircraftId: this.currentAircraftId
|
|
|
|
|
|
};
|
|
|
|
|
|
this.containers.push(newContainer);
|
|
|
|
|
|
|
|
|
|
|
|
// 创建两个默认配置文件
|
|
|
|
|
|
const configCount = this.configs.length;
|
|
|
|
|
|
|
|
|
|
|
|
// 第一个配置文件:Dockerfile
|
|
|
|
|
|
this.configs.push({
|
|
|
|
|
|
id: 'cfg' + (configCount + 1),
|
|
|
|
|
|
name: 'Docker配置',
|
|
|
|
|
|
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
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 第二个配置文件:docker-compose.yml
|
|
|
|
|
|
this.configs.push({
|
|
|
|
|
|
id: 'cfg' + (configCount + 2),
|
|
|
|
|
|
name: '编排配置',
|
|
|
|
|
|
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个默认配置文件)`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private deleteContainer(containerId: string) {
|
|
|
|
|
|
// 删除容器
|
|
|
|
|
|
this.containers = this.containers.filter(c => c.id !== containerId);
|
|
|
|
|
|
|
|
|
|
|
|
// 删除相关的配置
|
|
|
|
|
|
this.configs = this.configs.filter(cfg => cfg.containerId !== containerId);
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`删除容器: ${containerId}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// === 配置相关方法 ===
|
|
|
|
|
|
private updateConfigName(configId: string, newName: string) {
|
|
|
|
|
|
const config = this.configs.find(c => c.id === configId);
|
|
|
|
|
|
if (config) {
|
|
|
|
|
|
config.name = newName;
|
|
|
|
|
|
vscode.window.showInformationMessage(`配置名称更新: ${newName}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
private async updateConfigFileName(configId: string, fileName: string): Promise<void> {
|
|
|
|
|
|
const config = this.configs.find(c => c.id === configId);
|
|
|
|
|
|
if (config) {
|
|
|
|
|
|
config.fileName = fileName;
|
|
|
|
|
|
vscode.window.showInformationMessage(`文件名更新: ${fileName}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 09:10:47 +08:00
|
|
|
|
// 创建配置文件
|
|
|
|
|
|
private createConfig(name: string) {
|
|
|
|
|
|
const newId = 'cfg' + (this.configs.length + 1);
|
|
|
|
|
|
const newConfig: Config = {
|
|
|
|
|
|
id: newId,
|
|
|
|
|
|
name: name,
|
|
|
|
|
|
fileName: name.toLowerCase().replace(/\s+/g, '_') + '.yaml',
|
|
|
|
|
|
content: `# ${name} 配置文件\n# 创建时间: ${new Date().toLocaleString()}\n# 您可以在此编辑配置内容\n\n`,
|
|
|
|
|
|
containerId: this.currentContainerId
|
|
|
|
|
|
};
|
|
|
|
|
|
this.configs.push(newConfig);
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`新建配置: ${name}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 删除配置文件
|
|
|
|
|
|
private deleteConfig(configId: string) {
|
|
|
|
|
|
const config = this.configs.find(c => c.id === configId);
|
|
|
|
|
|
if (config) {
|
|
|
|
|
|
this.configs = this.configs.filter(c => c.id !== configId);
|
|
|
|
|
|
vscode.window.showInformationMessage(`删除配置: ${config.name}`);
|
|
|
|
|
|
this.updateWebview();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-18 14:03:22 +08:00
|
|
|
|
// 保存配置文件到磁盘
|
|
|
|
|
|
private async saveConfigFileToDisk(configId: string, content: string): Promise<void> {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const config = this.configs.find(c => c.id === configId);
|
|
|
|
|
|
if (!config) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到配置文件');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const container = this.containers.find(c => c.id === config.containerId);
|
|
|
|
|
|
if (!container) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到容器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const aircraft = this.aircrafts.find(a => a.id === container.aircraftId);
|
|
|
|
|
|
if (!aircraft) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到飞行器');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const project = this.projects.find(p => p.id === aircraft.projectId);
|
|
|
|
|
|
if (!project) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未找到项目');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const projectPath = this.projectPaths.get(aircraft.projectId);
|
|
|
|
|
|
if (!projectPath) {
|
|
|
|
|
|
vscode.window.showErrorMessage('未设置项目存储路径,请先配置项目');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 构建文件路径:项目路径/飞行器名/容器名/文件名
|
|
|
|
|
|
const aircraftDir = vscode.Uri.joinPath(vscode.Uri.file(projectPath), aircraft.name);
|
|
|
|
|
|
const containerDir = vscode.Uri.joinPath(aircraftDir, container.name);
|
|
|
|
|
|
const fileUri = vscode.Uri.joinPath(containerDir, config.fileName);
|
|
|
|
|
|
|
|
|
|
|
|
// 确保飞行器目录存在
|
|
|
|
|
|
try {
|
|
|
|
|
|
await vscode.workspace.fs.createDirectory(aircraftDir);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
// 目录可能已存在,忽略错误
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 确保容器目录存在
|
|
|
|
|
|
try {
|
|
|
|
|
|
await vscode.workspace.fs.createDirectory(containerDir);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
// 目录可能已存在,忽略错误
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 写入文件
|
|
|
|
|
|
const uint8Array = new TextEncoder().encode(content);
|
|
|
|
|
|
await vscode.workspace.fs.writeFile(fileUri, uint8Array);
|
|
|
|
|
|
|
|
|
|
|
|
vscode.window.showInformationMessage(`配置文件已保存: ${fileUri.fsPath}`);
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
vscode.window.showErrorMessage(`保存文件时出错: ${error}`);
|
2025-11-18 09:10:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 加载配置文件
|
|
|
|
|
|
private loadConfigFile(configId: string) {
|
|
|
|
|
|
const config = this.configs.find(c => c.id === configId);
|
|
|
|
|
|
if (config) {
|
|
|
|
|
|
this.panel.webview.postMessage({
|
|
|
|
|
|
type: 'configFileLoaded',
|
|
|
|
|
|
content: config.content || `# ${config.name} 的配置文件\n# 您可以在此编辑配置内容\n\n`
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.panel.webview.postMessage({
|
|
|
|
|
|
type: 'configFileLoaded',
|
|
|
|
|
|
content: `# 这是 ${configId} 的配置文件\n# 您可以在此编辑配置内容\n\napp.name = "示例应用"\napp.port = 8080\napp.debug = true`
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 更新视图
|
|
|
|
|
|
private updateWebview() {
|
|
|
|
|
|
this.panel.webview.html = this.getWebviewContent();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private getWebviewContent(): string {
|
|
|
|
|
|
switch (this.currentView) {
|
2025-11-18 14:03:22 +08:00
|
|
|
|
case 'management':
|
|
|
|
|
|
return this.projectManagementView.render({
|
|
|
|
|
|
projects: this.projects,
|
|
|
|
|
|
projectPaths: this.projectPaths
|
|
|
|
|
|
});
|
2025-11-18 09:10:47 +08:00
|
|
|
|
case 'projects':
|
|
|
|
|
|
return this.projectListView.render({
|
|
|
|
|
|
projects: this.projects
|
|
|
|
|
|
});
|
|
|
|
|
|
case 'aircrafts':
|
|
|
|
|
|
const currentProject = this.projects.find(p => p.id === this.currentProjectId);
|
|
|
|
|
|
const projectAircraft = this.aircrafts.find(a => a.projectId === this.currentProjectId);
|
|
|
|
|
|
|
|
|
|
|
|
if (projectAircraft) {
|
|
|
|
|
|
this.currentAircraftId = projectAircraft.id;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const projectContainers = this.containers.filter(c => c.aircraftId === this.currentAircraftId);
|
|
|
|
|
|
|
|
|
|
|
|
return this.aircraftConfigView.render({
|
|
|
|
|
|
project: currentProject,
|
|
|
|
|
|
containers: projectContainers
|
|
|
|
|
|
});
|
|
|
|
|
|
case 'container':
|
|
|
|
|
|
const currentContainer = this.containers.find(c => c.id === this.currentContainerId);
|
|
|
|
|
|
const containerConfigs = this.configs.filter(cfg => cfg.containerId === this.currentContainerId);
|
|
|
|
|
|
|
|
|
|
|
|
return this.containerConfigView.render({
|
|
|
|
|
|
container: currentContainer,
|
|
|
|
|
|
configs: containerConfigs
|
|
|
|
|
|
});
|
|
|
|
|
|
default:
|
2025-11-18 14:03:22 +08:00
|
|
|
|
return this.projectManagementView.render({
|
|
|
|
|
|
projects: this.projects,
|
|
|
|
|
|
projectPaths: this.projectPaths
|
2025-11-18 09:10:47 +08:00
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|