feat(docs): 解除 archived-components 注释并创建 scheduled-tasks 组件

- 解锁 29 个归档组件 (Project Architecture, Rate Limiting, Search Engines, File Storage, Async Task Queues, Scheduled Tasks, Computer Fundamentals)
- 修复 RateLimitAlgorithmDemo build 卡住问题 (移除末尾 reset() 调用)
- 修复 RuntimeEnvironmentDemo eval 安全警告
- 添加 Vite build chunkSizeWarningLimit 配置
- 添加 Vue 组件开发规范文档 (VUE_COMPONENT_RULES.md)
This commit is contained in:
sanbuphy
2026-02-26 23:57:18 +08:00
parent 8bac413237
commit e7b3fa8001
13 changed files with 979 additions and 63 deletions
@@ -0,0 +1,75 @@
<template>
<div class="scheduler-demo">
<div class="header">
<div class="title">任务调度器模拟</div>
<div class="subtitle">观察任务按照调度策略执行的顺序</div>
</div>
<div class="controls">
<button @click="addTask" class="add-btn">添加任务</button>
<button @click="run" class="run-btn" :disabled="tasks.length === 0">执行调度</button>
<button @click="reset" class="reset-btn">重置</button>
</div>
<div class="queue-area">
<div class="queue-label">任务队列</div>
<div class="queue-list">
<div v-for="(t, i) in tasks" :key="i" class="queue-item">
<span class="task-name">{{ t.name }}</span>
<span class="task-prio" :class="'p' + t.priority">优先级{{ t.priority }}</span>
</div>
</div>
</div>
<div class="log-area">
<div class="log-label">执行日志</div>
<div class="log-list">
<div v-for="(log, i) in logs" :key="i" class="log-item">{{ log }}</div>
</div>
</div>
</div>
</template>
<script setup>
import { ref } from 'vue'
const tasks = ref([])
const logs = ref([])
const taskNames = ['数据同步', '报表生成', '缓存清理', '日志归档', '健康检查']
function addTask() {
if (tasks.value.length >= 5) return
const name = taskNames[tasks.value.length] || `任务${tasks.value.length + 1}`
tasks.value.push({ name, priority: Math.floor(Math.random() * 3) + 1 })
}
function run() {
logs.value = []
const sorted = [...tasks.value].sort((a, b) => b.priority - a.priority)
sorted.forEach((t, i) => logs.value.push(`[${i + 1}] 执行: ${t.name} (优先级${t.priority})`))
}
function reset() {
tasks.value = []
logs.value = []
}
</script>
<style scoped>
.scheduler-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; }
.controls { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.add-btn, .run-btn, .reset-btn { padding: 0.4rem 0.8rem; border-radius: 6px; border: 1px solid var(--vp-c-divider); background: var(--vp-c-bg); cursor: pointer; font-size: 0.85rem; }
.run-btn { background: var(--vp-c-brand); color: #fff; border-color: var(--vp-c-brand); }
.run-btn:disabled { opacity: 0.5; }
.queue-area, .log-area { margin-bottom: 1rem; }
.queue-label, .log-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; }
.queue-list, .log-list { background: var(--vp-c-bg); border-radius: 8px; padding: 0.75rem; min-height: 80px; }
.queue-item { display: flex; justify-content: space-between; padding: 0.5rem; border-bottom: 1px solid var(--vp-c-divider); }
.queue-item:last-child { border-bottom: none; }
.task-prio { font-size: 0.8rem; padding: 0.2rem 0.5rem; border-radius: 4px; }
.task-prio.p1 { background: #fee2e2; color: #dc2626; }
.task-prio.p2 { background: #fef3c7; color: #d97706; }
.task-prio.p3 { background: #dcfce7; color: #16a34a; }
.log-item { font-size: 0.85rem; padding: 0.3rem 0; border-bottom: 1px solid var(--vp-c-divider); }
.log-item:last-child { border-bottom: none; }
</style>