421 lines
15 KiB
JavaScript
421 lines
15 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ContainerView = void 0;
|
|
const BaseView_1 = require("./BaseView");
|
|
class ContainerView extends BaseView_1.BaseView {
|
|
render(data) {
|
|
const project = data?.project;
|
|
const aircraft = data?.aircraft;
|
|
const containers = data?.containers || [];
|
|
const containersHtml = containers.map((container) => `
|
|
<tr>
|
|
<td>
|
|
<span class="editable" onclick="editContainerName('${container.id}', '${container.name}')">📦 ${container.name}</span>
|
|
</td>
|
|
<td>
|
|
<span class="clickable" onclick="openContainerConfig('${container.id}')">配置文件</span>
|
|
</td>
|
|
<td>
|
|
<button class="btn-upload" onclick="uploadContainer('${container.id}', '${container.name}')" style="margin-right: 5px;">上传</button>
|
|
<button class="btn-delete" onclick="deleteContainer('${container.id}')">删除</button>
|
|
</td>
|
|
</tr>
|
|
`).join('');
|
|
return `<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>容器管理</title>
|
|
${this.getStyles()}
|
|
${this.getRepoSelectScript()}
|
|
<style>
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.back-btn {
|
|
background: var(--vscode-button-secondaryBackground);
|
|
color: var(--vscode-button-secondaryForeground);
|
|
padding: 6px 12px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
.back-btn:hover {
|
|
background: var(--vscode-button-secondaryHoverBackground);
|
|
}
|
|
.btn-new {
|
|
background: var(--vscode-button-background);
|
|
color: var(--vscode-button-foreground);
|
|
border: none;
|
|
padding: 8px 16px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
/* ❌ 原来这里有 margin: 0 auto; 已去掉,避免“获取仓库”按钮被居中 */
|
|
}
|
|
.btn-new:hover {
|
|
background: var(--vscode-button-hoverBackground);
|
|
}
|
|
|
|
/* 仓库 + 分支树公共样式 */
|
|
.config-section {
|
|
margin-top: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
.section-title {
|
|
margin: 30px 0 15px 0;
|
|
padding-bottom: 10px;
|
|
border-bottom: 2px solid var(--vscode-panel-border);
|
|
color: var(--vscode-titleBar-activeForeground);
|
|
}
|
|
.url-input-section {
|
|
background: var(--vscode-panel-background);
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
margin-bottom: 15px;
|
|
border: 1px solid var(--vscode-input-border);
|
|
}
|
|
.branch-selection {
|
|
border: 1px solid var(--vscode-input-border);
|
|
}
|
|
.branch-tree {
|
|
font-family: 'Courier New', monospace;
|
|
user-select: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.branch-node {
|
|
padding: 2px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
line-height: 1.2;
|
|
}
|
|
.branch-node:hover {
|
|
background: var(--vscode-list-hoverBackground);
|
|
}
|
|
.branch-icon {
|
|
margin-right: 4px;
|
|
font-size: 16px;
|
|
width: 16px;
|
|
text-align: center;
|
|
}
|
|
.branch-expand {
|
|
margin-right: 2px;
|
|
cursor: pointer;
|
|
width: 14px;
|
|
text-align: center;
|
|
}
|
|
.branch-checkbox {
|
|
margin-right: 6px;
|
|
}
|
|
.branch-name {
|
|
flex: 1;
|
|
font-size: 13px;
|
|
}
|
|
.branch-children {
|
|
margin-left: 16px;
|
|
border-left: 1px solid var(--vscode-panel-border);
|
|
padding-left: 8px;
|
|
}
|
|
.branch-leaf {
|
|
margin-left: 16px;
|
|
}
|
|
.current-branch {
|
|
color: var(--vscode-gitDecoration-untrackedResourceForeground);
|
|
font-weight: bold;
|
|
}
|
|
.tree-icon {
|
|
font-size: 2em;
|
|
}
|
|
.branch-tree-title {
|
|
font-size: 1.2em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h2>📋 容器管理 - <span style="color: var(--vscode-textLink-foreground);">${aircraft?.name || '未知飞行器'}</span></h2>
|
|
<button class="back-btn" onclick="goBackToAircrafts()">← 返回飞行器管理</button>
|
|
</div>
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th width="40%">容器</th>
|
|
<th width="40%">配置文件</th>
|
|
<th width="20%">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
${containersHtml}
|
|
<tr>
|
|
<td colspan="3" style="text-align: center; padding: 20px;">
|
|
<button class="btn-new" onclick="createNewContainer()">+ 新建容器</button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="config-section">
|
|
<h3 class="section-title">📦 容器云仓库</h3>
|
|
<div class="url-input-section">
|
|
<h4>🔗 获取容器仓库</h4>
|
|
<div style="display: flex; gap: 10px; margin-top: 10px; align-items: center;">
|
|
<button class="btn-new" onclick="openRepoSelectForContainer()">获取仓库</button>
|
|
<span style="font-size: 12px; color: var(--vscode-descriptionForeground);">
|
|
从仓库配置中选择 Git 仓库,选择分支后可将容器代码克隆到当前飞行器下(以分支名作为容器名称)
|
|
</span>
|
|
</div>
|
|
<div id="branchSelectionContainer"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
const vscode = acquireVsCodeApi();
|
|
|
|
function editContainerName(containerId, currentName) {
|
|
showPromptDialog(
|
|
'修改容器名称',
|
|
'请输入新的容器名称:',
|
|
currentName,
|
|
function(newName) {
|
|
if (newName && newName !== currentName) {
|
|
vscode.postMessage({
|
|
type: 'updateContainerName',
|
|
containerId: containerId,
|
|
name: newName
|
|
});
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
function openContainerConfig(containerId) {
|
|
vscode.postMessage({
|
|
type: 'openContainerConfig',
|
|
containerId: containerId
|
|
});
|
|
}
|
|
|
|
function createNewContainer() {
|
|
showPromptDialog(
|
|
'新建容器',
|
|
'请输入容器名称:',
|
|
'',
|
|
function(name) {
|
|
if (name) {
|
|
vscode.postMessage({
|
|
type: 'createContainer',
|
|
name: name
|
|
});
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
function goBackToAircrafts() {
|
|
vscode.postMessage({ type: 'goBackToAircrafts' });
|
|
}
|
|
|
|
function deleteContainer(containerId) {
|
|
showConfirmDialog(
|
|
'确认删除',
|
|
'确定删除这个容器吗?',
|
|
function() {
|
|
vscode.postMessage({
|
|
type: 'deleteContainer',
|
|
containerId: containerId
|
|
});
|
|
},
|
|
function() {
|
|
// 用户取消删除
|
|
}
|
|
);
|
|
}
|
|
|
|
// 新增上传功能
|
|
function uploadContainer(containerId, containerName) {
|
|
showConfirmDialog(
|
|
'上传容器仓库',
|
|
'确定将此容器目录(包括所有子文件夹和文件)上传到一个新的 Git 仓库分支吗?',
|
|
function() {
|
|
vscode.postMessage({
|
|
type: 'openRepoSelectForContainerUpload',
|
|
containerId: containerId
|
|
});
|
|
}
|
|
);
|
|
}
|
|
|
|
// ======== Git 仓库 & 分支树 - ContainerView 作用域 ========
|
|
|
|
let selectedBranches = new Set();
|
|
let branchTreeData = [];
|
|
|
|
function openRepoSelectForContainer() {
|
|
vscode.postMessage({
|
|
type: 'openRepoSelectForContainer'
|
|
});
|
|
}
|
|
|
|
function toggleBranch(branchName) {
|
|
const checkbox = document.getElementById('branch-' + branchName.replace(/[^a-zA-Z0-9-]/g, '-'));
|
|
if (checkbox && checkbox.checked) {
|
|
selectedBranches.add(branchName);
|
|
} else {
|
|
selectedBranches.delete(branchName);
|
|
}
|
|
}
|
|
|
|
function cloneSelectedBranches() {
|
|
if (selectedBranches.size === 0) {
|
|
alert('请至少选择一个分支');
|
|
return;
|
|
}
|
|
|
|
vscode.postMessage({
|
|
type: 'cloneBranches',
|
|
branches: Array.from(selectedBranches)
|
|
});
|
|
|
|
selectedBranches.clear();
|
|
const checkboxes = document.querySelectorAll('input[type="checkbox"]');
|
|
checkboxes.forEach(checkbox => checkbox.checked = false);
|
|
document.getElementById('branchSelectionContainer').innerHTML = '';
|
|
}
|
|
|
|
function cancelBranchSelection() {
|
|
selectedBranches.clear();
|
|
const checkboxes = document.querySelectorAll('input[type="checkbox"]');
|
|
checkboxes.forEach(checkbox => checkbox.checked = false);
|
|
document.getElementById('branchSelectionContainer').innerHTML = '';
|
|
vscode.postMessage({
|
|
type: 'cancelBranchSelection'
|
|
});
|
|
}
|
|
|
|
function toggleBranchNode(nodeId) {
|
|
const node = findNodeById(branchTreeData, nodeId);
|
|
if (node && !node.isLeaf) {
|
|
node.expanded = !node.expanded;
|
|
renderBranchTree(branchTreeData);
|
|
}
|
|
}
|
|
|
|
function expandAllBranches() {
|
|
setAllExpanded(branchTreeData, true);
|
|
renderBranchTree(branchTreeData);
|
|
}
|
|
|
|
function collapseAllBranches() {
|
|
setAllExpanded(branchTreeData, false);
|
|
renderBranchTree(branchTreeData);
|
|
}
|
|
|
|
function setAllExpanded(nodes, expanded) {
|
|
nodes.forEach(node => {
|
|
if (!node.isLeaf) {
|
|
node.expanded = expanded;
|
|
if (node.children) {
|
|
setAllExpanded(node.children, expanded);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function findNodeById(nodes, nodeId) {
|
|
for (const node of nodes) {
|
|
if (node.fullName === nodeId) return node;
|
|
if (node.children) {
|
|
const found = findNodeById(node.children, nodeId);
|
|
if (found) return found;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
function renderBranchTree(treeData) {
|
|
const container = document.getElementById('branchSelectionContainer');
|
|
|
|
if (!treeData || treeData.length === 0) {
|
|
container.innerHTML = '<div style="text-align: center; padding: 10px; color: var(--vscode-descriptionForeground);">未找到分支</div>';
|
|
return;
|
|
}
|
|
|
|
let html = '<div class="branch-selection" style="margin: 10px 0; padding: 10px; background: var(--vscode-panel-background); border-radius: 4px;">';
|
|
html += '<h4 class="branch-tree-title" style="margin: 0 0 8px 0;"><span class="tree-icon">🌳</span> 分支树</h4>';
|
|
|
|
html += '<div style="margin-bottom: 8px;">';
|
|
html += '<button class="back-btn" onclick="expandAllBranches()" style="margin-right: 8px; padding: 2px 6px; font-size: 11px;">展开全部</button>';
|
|
html += '<button class="back-btn" onclick="collapseAllBranches()" style="padding: 2px 6px; font-size: 11px;">收起全部</button>';
|
|
html += '</div>';
|
|
|
|
html += '<div class="branch-tree">';
|
|
html += renderBranchNodes(treeData, 0);
|
|
html += '</div>';
|
|
|
|
html += '<div style="margin-top: 12px;">';
|
|
html += '<button class="btn-new" onclick="cloneSelectedBranches()" style="margin-right: 8px; padding: 4px 8px; font-size: 12px;">✅ 克隆选中分支</button>';
|
|
html += '<button class="back-btn" onclick="cancelBranchSelection()" style="padding: 4px 8px; font-size: 12px;">取消</button>';
|
|
html += '</div></div>';
|
|
|
|
container.innerHTML = html;
|
|
}
|
|
|
|
function renderBranchNodes(nodes, level) {
|
|
let html = '';
|
|
nodes.forEach(node => {
|
|
const indent = level * 20;
|
|
const nodeId = node.fullName.replace(/[^a-zA-Z0-9-]/g, '-');
|
|
|
|
if (node.isLeaf) {
|
|
html += '<div class="branch-node branch-leaf" style="margin-left: ' + indent + 'px;">';
|
|
html += '<input type="checkbox" id="branch-' + nodeId + '" class="branch-checkbox" ';
|
|
html += (node.branch && node.branch.selected ? 'checked' : '') + ' onchange="toggleBranch(\\'' + node.fullName + '\\')">';
|
|
html += '<span class="branch-icon">🌿</span>';
|
|
html += '<span class="branch-name ' + (node.branch && node.branch.isCurrent ? 'current-branch' : '') + '">';
|
|
html += node.name;
|
|
html += (node.branch && node.branch.isCurrent ? ' ⭐' : '');
|
|
html += '</span>';
|
|
html += '</div>';
|
|
} else {
|
|
html += '<div class="branch-node" style="margin-left: ' + indent + 'px;">';
|
|
html += '<span class="branch-expand" onclick="toggleBranchNode(\\'' + node.fullName + '\\')">';
|
|
html += (node.expanded ? '🪵' : '🪵');
|
|
html += '</span>';
|
|
html += '<span class="branch-icon">🪵</span>';
|
|
html += '<span class="branch-name">' + node.name + '</span>';
|
|
html += '</div>';
|
|
|
|
if (node.expanded && node.children && node.children.length > 0) {
|
|
html += '<div class="branch-children">';
|
|
html += renderBranchNodes(node.children, level + 1);
|
|
html += '</div>';
|
|
}
|
|
}
|
|
});
|
|
return html;
|
|
}
|
|
|
|
window.addEventListener('message', event => {
|
|
const message = event.data;
|
|
if (message.type === 'branchesFetched') {
|
|
branchTreeData = message.branchTree || [];
|
|
renderBranchTree(branchTreeData);
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>`;
|
|
}
|
|
}
|
|
exports.ContainerView = ContainerView;
|
|
//# sourceMappingURL=ContainerView.js.map
|