feat: add comprehensive backend topics and fix build issues
## 新增内容 ### 附录文档扩展 - 扩展前端项目架构文档 (frontend-project-architecture.md) - 扩展后端项目架构文档 (backend-project-architecture.md) - 扩展数据治理文档 (data-governance.md) - 扩展数据可视化文档 (data-visualization.md) - 扩展分布式系统文档 (distributed-systems.md) - 扩展高可用文档 (high-availability.md) - 扩展单体到微服务文档 (monolith-to-microservices.md) - 扩展系统设计方法论文档 (system-design-methodology.md) - 扩展 Docker 容器文档 (docker-containers.md) - 扩展 Kubernetes 文档 (kubernetes.md) - 扩展 Linux 基础文档 (linux-basics.md) - 扩展神经网络文档 (neural-networks.md) ### 新增交互式组件 - 数据治理组件: DataQualityDemo, DataGovernanceFrameworkDemo, DataLineageDemo - 数据可视化组件: ChartTypeSelectorDemo, DashboardLayoutDemo - 分布式系统组件: CAPTheoremDemo, ConsistencyModelsDemo, DistributedChallengesDemo - 高可用组件: AvailabilityCalculatorDemo, FailoverStrategyDemo - 系统设计组件: SystemDesignStepsDemo, CapacityEstimationDemo - Docker 容器组件: DockerArchitectureDemo, DockerLifecycleDemo - Kubernetes 组件: K8sArchitectureDemo, K8sWorkloadsDemo - Linux 基础组件: LinuxFileSystemDemo, LinuxCommandDemo, LinuxPermissionsDemo - 神经网络组件: NeuronDemo, NetworkLayersDemo, NetworkArchitectureDemo - 单体到微服务组件: ArchEvolutionDemo - 项目架构组件: ProjectArchitectureComparisonDemo - 附录导航组件: AppendixFlowMap ### 英文版重构 - 将 en-us 目录重命名为 en - 更新相关配置和组件中的语言代码 ## Bug 修复 - 修复 index.js 中重复的组件导入语句导致的 build 失败 - 恢复被注释的 InvertedIndexDemo 和 SearchRelevanceDemo 导入 - 修复 HomeFeatures.vue 中 en-us 与 config.mjs 中 en 不一致导致的语言切换问题 ## 其他改进 - 添加构建脚本 (scripts/build.mjs) - 更新依赖版本
This commit is contained in:
+184
@@ -0,0 +1,184 @@
|
||||
<!--
|
||||
DockerArchitectureDemo.vue
|
||||
Docker 架构对比演示:虚拟机 vs 容器
|
||||
-->
|
||||
<template>
|
||||
<div class="docker-arch-demo">
|
||||
<div class="header">
|
||||
<div class="title">虚拟机 vs 容器</div>
|
||||
<div class="subtitle">点击切换查看两种虚拟化方式的架构差异</div>
|
||||
</div>
|
||||
|
||||
<div class="tabs">
|
||||
<button
|
||||
v-for="tab in tabs"
|
||||
:key="tab.key"
|
||||
:class="['tab-btn', { active: activeTab === tab.key }]"
|
||||
@click="activeTab = tab.key"
|
||||
>
|
||||
{{ tab.label }}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="arch-view">
|
||||
<div class="layers">
|
||||
<div
|
||||
v-for="(layer, i) in currentLayers"
|
||||
:key="i"
|
||||
:class="['layer', layer.type]"
|
||||
>
|
||||
<div class="layer-label">{{ layer.label }}</div>
|
||||
<div v-if="layer.items" class="layer-items">
|
||||
<div v-for="(item, j) in layer.items" :key="j" class="layer-item">
|
||||
{{ item }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="comparison">
|
||||
<div v-for="(item, i) in currentInfo" :key="i" class="info-row">
|
||||
<span class="info-label">{{ item.label }}</span>
|
||||
<span :class="['info-value', item.highlight ? 'highlight' : '']">{{ item.value }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const activeTab = ref('container')
|
||||
|
||||
const tabs = [
|
||||
{ key: 'vm', label: '虚拟机' },
|
||||
{ key: 'container', label: '容器' }
|
||||
]
|
||||
|
||||
const vmLayers = [
|
||||
{ label: '应用 A / 应用 B / 应用 C', type: 'app', items: ['App A + Bins/Libs', 'App B + Bins/Libs', 'App C + Bins/Libs'] },
|
||||
{ label: '客户操作系统(Guest OS)', type: 'os', items: ['Ubuntu', 'CentOS', 'Debian'] },
|
||||
{ label: 'Hypervisor(VMware / KVM)', type: 'hypervisor' },
|
||||
{ label: '宿主操作系统(Host OS)', type: 'host' },
|
||||
{ label: '物理硬件', type: 'hardware' }
|
||||
]
|
||||
|
||||
const containerLayers = [
|
||||
{ label: '应用 A / 应用 B / 应用 C', type: 'app', items: ['App A + Bins/Libs', 'App B + Bins/Libs', 'App C + Bins/Libs'] },
|
||||
{ label: 'Docker Engine', type: 'docker' },
|
||||
{ label: '宿主操作系统(Host OS)', type: 'host' },
|
||||
{ label: '物理硬件', type: 'hardware' }
|
||||
]
|
||||
|
||||
const vmInfo = [
|
||||
{ label: '启动速度', value: '分钟级', highlight: false },
|
||||
{ label: '资源占用', value: '每个 VM 需要完整 OS(GB 级)', highlight: false },
|
||||
{ label: '隔离性', value: '强(硬件级隔离)', highlight: true },
|
||||
{ label: '密度', value: '单机通常 10-20 个 VM', highlight: false },
|
||||
{ label: '镜像大小', value: 'GB 级', highlight: false }
|
||||
]
|
||||
|
||||
const containerInfo = [
|
||||
{ label: '启动速度', value: '秒级', highlight: true },
|
||||
{ label: '资源占用', value: '共享宿主 OS 内核(MB 级)', highlight: true },
|
||||
{ label: '隔离性', value: '较强(进程级隔离)', highlight: false },
|
||||
{ label: '密度', value: '单机可运行数百个容器', highlight: true },
|
||||
{ label: '镜像大小', value: 'MB 级', highlight: true }
|
||||
]
|
||||
|
||||
const currentLayers = computed(() => activeTab.value === 'vm' ? vmLayers : containerLayers)
|
||||
const currentInfo = computed(() => activeTab.value === 'vm' ? vmInfo : containerInfo)
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.docker-arch-demo {
|
||||
border: 1px solid var(--vp-c-divider);
|
||||
background: var(--vp-c-bg-soft);
|
||||
border-radius: 12px;
|
||||
padding: 1.5rem;
|
||||
margin: 1.5rem 0;
|
||||
}
|
||||
.header { margin-bottom: 1rem; }
|
||||
.title { font-weight: 700; font-size: 1.1rem; }
|
||||
.subtitle { color: var(--vp-c-text-2); font-size: 0.9rem; }
|
||||
.tabs {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.tab-btn {
|
||||
padding: 0.4rem 1rem;
|
||||
border: 1px solid var(--vp-c-divider);
|
||||
border-radius: 6px;
|
||||
background: var(--vp-c-bg);
|
||||
cursor: pointer;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
color: var(--vp-c-text-2);
|
||||
transition: all 0.2s;
|
||||
}
|
||||
.tab-btn:hover { border-color: var(--vp-c-brand); }
|
||||
.tab-btn.active {
|
||||
background: var(--vp-c-brand);
|
||||
color: #fff;
|
||||
border-color: var(--vp-c-brand);
|
||||
}
|
||||
.arch-view {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 1rem;
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.arch-view { grid-template-columns: 1fr; }
|
||||
}
|
||||
.layers {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.3rem;
|
||||
}
|
||||
.layer {
|
||||
padding: 0.5rem;
|
||||
border-radius: 6px;
|
||||
text-align: center;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.layer.app { background: rgba(59, 130, 246, 0.12); color: var(--vp-c-text-1); }
|
||||
.layer.os { background: rgba(245, 158, 11, 0.12); color: var(--vp-c-text-1); }
|
||||
.layer.hypervisor { background: rgba(239, 68, 68, 0.12); color: var(--vp-c-text-1); }
|
||||
.layer.docker { background: rgba(6, 182, 212, 0.15); color: var(--vp-c-text-1); }
|
||||
.layer.host { background: rgba(34, 197, 94, 0.12); color: var(--vp-c-text-1); }
|
||||
.layer.hardware { background: rgba(107, 114, 128, 0.12); color: var(--vp-c-text-2); }
|
||||
.layer-label { margin-bottom: 0.25rem; }
|
||||
.layer-items {
|
||||
display: flex;
|
||||
gap: 0.3rem;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.layer-item {
|
||||
padding: 0.2rem 0.5rem;
|
||||
background: var(--vp-c-bg);
|
||||
border-radius: 4px;
|
||||
font-size: 0.72rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.comparison {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.4rem;
|
||||
}
|
||||
.info-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0.4rem 0.6rem;
|
||||
background: var(--vp-c-bg);
|
||||
border-radius: 6px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
.info-label { color: var(--vp-c-text-2); font-weight: 500; }
|
||||
.info-value { font-weight: 600; }
|
||||
.info-value.highlight { color: var(--vp-c-brand); }
|
||||
</style>
|
||||
Reference in New Issue
Block a user