"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) => ` 📦 ${container.name} 打开 `).join(''); return ` 容器管理 ${this.getStyles()} ${this.getRepoSelectScript()}

📦 容器管理 - ${aircraft?.name || '未知飞行器'}

${containersHtml}
容器 打开 操作

📚 容器云仓库

🔗 获取容器仓库

从仓库配置中选择 Git 仓库,选择分支后可将完整容器克隆到本地
`; } } exports.ContainerView = ContainerView; //# sourceMappingURL=ContainerView.js.map