refactor: 重构 api-intro、api-design、transistor-to-cpu 组件为紧凑布局

- 重构 api-intro 7 个 Vue 组件为更紧凑的左右布局
- 重构 api-design 相关组件
- 重构 transistor-to-cpu 相关组件
- 统一使用 demo-root -> demo-header -> demo-layout -> info-box 结构
- 扩写文章内容为 MIT 讲义风格
This commit is contained in:
sanbuphy
2026-02-23 01:50:43 +08:00
parent 2a0fdd3392
commit 1062e2e16f
68 changed files with 4455 additions and 3469 deletions
@@ -1,57 +1,40 @@
<!--
ApiPlayground.vue - 紧凑版
目标让用户动手尝试 API 调用
-->
<template>
<div class="api-playground">
<div class="header">
<div class="title">
🧪 API 练手场
</div>
<div class="subtitle">
随便玩坏了算我的
</div>
<div class="demo-root">
<div class="demo-header">
<span class="icon">🧪</span>
<span class="title">API 练手场</span>
<span class="subtitle">随便玩坏了算我的</span>
</div>
<div class="playground-layout">
<div class="demo-layout">
<div class="left-panel">
<div class="panel-title">
发送请求
</div>
<div class="input-group">
<label>Endpoint网址</label>
<div class="input-row">
<label>Endpoint</label>
<input
v-model="endpoint"
type="text"
placeholder="/users/123"
placeholder="/users"
class="input"
>
</div>
<div class="input-group">
<div class="input-row">
<label>方法</label>
<div class="method-buttons">
<div class="method-btns">
<button
v-for="m in methods"
:key="m"
:class="['method-btn', { active: method === m }]"
:class="['m-btn', { active: method === m }]"
@click="method = m"
>
{{ m }}
</button>
</div>
</div>
<div
v-if="method === 'POST'"
class="input-group"
>
<label>BodyJSON</label>
<textarea
v-model="body"
class="textarea"
placeholder="{&quot;name&quot;: &quot;张三&quot;}"
/>
</div>
<div class="input-group">
<div class="input-row">
<label>API Key</label>
<input
v-model="apiKey"
@@ -60,48 +43,36 @@
class="input"
>
</div>
<button
class="send-btn"
:disabled="loading"
@click="sendRequest"
>
{{ loading ? '发送中...' : '🚀 发送请求' }}
{{ loading ? '发送中...' : '🚀 发送' }}
</button>
</div>
<div class="right-panel">
<div class="panel-title">
响应结果
</div>
<div
v-if="!response"
class="empty-state"
class="empty"
>
<span class="empty-icon">📭</span>
<p>点击发送按钮看看会发生什么</p>
<p class="hint">
可以试试输入错误的地址或 Key
</p>
点击发送查看结果
</div>
<div
v-else
class="response-content"
class="response"
>
<div
class="status-bar"
:class="getStatusClass(response.status)"
>
<span class="status-code">{{ response.status }}</span>
<span class="status-text">{{ response.statusText }}</span>
<span class="code">{{ response.status }}</span>
<span class="text">{{ response.statusText }}</span>
</div>
<div class="response-body">
<div class="body">
<pre>{{ JSON.stringify(response.data, null, 2) }}</pre>
</div>
<div
v-if="response.explanation"
class="explanation"
@@ -112,30 +83,20 @@
</div>
</div>
<div class="tips">
<div class="tip-title">
可以试试这些玩法
</div>
<div class="tip-list">
<button @click="tryEndpoint('/users')">
GET /users
</button>
<button @click="tryEndpoint('/users/123')">
GET /users/123
</button>
<button @click="tryEndpoint('/posts')">
GET /posts
</button>
<button @click="tryError401">
401 没带 Key
</button>
<button @click="tryError404">
404 地址错了
</button>
<button @click="tryError429">
429 点太快了
</button>
</div>
<div class="quick-actions">
<span class="label">快速尝试</span>
<button @click="tryEndpoint('/users')">
GET /users
</button>
<button @click="tryError401">
401
</button>
<button @click="tryError404">
404
</button>
<button @click="tryError429">
429
</button>
</div>
</div>
</template>
@@ -145,41 +106,16 @@ import { ref } from 'vue'
const endpoint = ref('/users')
const method = ref('GET')
const methods = ['GET', 'POST']
const body = ref('{\n "name": "张三",\n "age": 25\n}')
const apiKey = ref('')
const apiKey = ref('sk-demo-key')
const loading = ref(false)
const response = ref(null)
function tryEndpoint(path) {
endpoint.value = path
method.value = 'GET'
apiKey.value = 'sk-test123'
}
function tryError401() {
endpoint.value = '/users'
method.value = 'GET'
apiKey.value = ''
}
function tryError404() {
endpoint.value = '/unknown-path'
method.value = 'GET'
apiKey.value = 'sk-test123'
}
function tryError429() {
endpoint.value = '/users'
method.value = 'GET'
apiKey.value = 'sk-test123'
}
const methods = ['GET', 'POST', 'PUT', 'DELETE']
function getStatusClass(status) {
if (status >= 200 && status < 300) return 'success'
if (status >= 400 && status < 500) return 'client-error'
if (status >= 500) return 'server-error'
return ''
return 'server-error'
}
function sendRequest() {
@@ -187,340 +123,256 @@ function sendRequest() {
response.value = null
setTimeout(() => {
loading.value = false
if (!apiKey.value) {
response.value = {
status: 401,
statusText: 'Unauthorized',
data: { error: 'Invalid API key' },
explanation: '没带 API Key,等于没带钱就想吃饭,被拒绝了'
data: { error: '缺少 API Key' },
explanation: '服务器不认识你,需要提供有效的身份证明'
}
return
}
if (endpoint.value === '/users' && method.value === 'GET') {
} else if (endpoint.value === '/users') {
response.value = {
status: 200,
statusText: 'OK',
data: {
users: [
{ id: 1, name: '张三', email: 'zhangsan@example.com' },
{ id: 2, name: '李四', email: 'lisi@example.com' },
{ id: 3, name: '王五', email: 'wangwu@example.com' }
{ id: 1, name: '张三' },
{ id: 2, name: '李四' }
],
total: 3
total: 2
},
explanation: '成功!服务器返回了用户列表'
}
} else if (endpoint.value === '/users/123' && method.value === 'GET') {
response.value = {
status: 200,
statusText: 'OK',
data: { id: 123, name: '张三', email: 'zhangsan@example.com' },
explanation: '找到了!服务器返回了单个用户信息'
}
} else if (endpoint.value === '/posts' && method.value === 'GET') {
response.value = {
status: 200,
statusText: 'OK',
data: {
posts: [
{ id: 1, title: '学习 API 的第一天', author: '张三' },
{ id: 2, title: 'API 原来这么简单', author: '李四' }
]
},
explanation: '成功了!服务器返回了文章列表'
}
} else if (endpoint.value === '/posts' && method.value === 'POST') {
response.value = {
status: 201,
statusText: 'Created',
data: {
id: 3,
title: '学习 API 的第一天',
author: '张三',
created_at: '2025-01-15T10:30:00Z'
},
explanation: '新建成功了!服务器返回了新创建的帖子'
}
} else if (endpoint.value === '/unknown-path') {
response.value = {
status: 404,
statusText: 'Not Found',
data: { error: 'Resource not found' },
explanation: '地址错了,这个接口不存在'
}
} else if (endpoint.value === '/users' && method.value === 'DELETE') {
response.value = {
status: 429,
statusText: 'Too Many Requests',
data: { error: 'Rate limit exceeded' },
explanation: '点太快了!1 秒内只能请求 5 次,你超了'
explanation: '成功!服务器返回了用户列表'
}
} else {
response.value = {
status: 404,
statusText: 'Not Found',
data: { error: 'Endpoint not found' },
explanation: '这个地址不存在,换一个试试?'
data: { error: '接口不存在' },
explanation: '这个地址没有对应的 API,检查一下路径'
}
}
}, 500)
loading.value = false
}, 300)
}
function tryEndpoint(ep) {
endpoint.value = ep
method.value = 'GET'
sendRequest()
}
function tryError401() {
apiKey.value = ''
sendRequest()
}
function tryError404() {
endpoint.value = '/not-exist'
sendRequest()
}
function tryError429() {
loading.value = true
response.value = null
setTimeout(() => {
response.value = {
status: 429,
statusText: 'Too Many Requests',
data: { error: '请求太频繁' },
explanation: '你请求太快了,服务器让你歇会儿'
}
loading.value = false
}, 300)
}
</script>
<style scoped>
.api-playground {
background: var(--vp-c-bg-soft);
border: 1px solid var(--vp-c-divider);
border-radius: 12px;
padding: 20px;
margin: 24px 0;
}
.header {
text-align: center;
margin-bottom: 20px;
}
.title {
font-size: 20px;
font-weight: 700;
margin-bottom: 4px;
}
.subtitle {
font-size: 14px;
color: var(--vp-c-text-2);
}
.playground-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
@media (max-width: 768px) {
.playground-layout {
grid-template-columns: 1fr;
}
}
.left-panel,
.right-panel {
background: var(--vp-c-bg);
.demo-root {
border: 1px solid var(--vp-c-divider);
border-radius: 10px;
padding: 16px;
overflow: hidden;
background: var(--vp-c-bg-soft);
margin: 1rem 0;
font-size: 0.85rem;
}
.panel-title {
font-weight: 600;
margin-bottom: 16px;
color: var(--vp-c-text-1);
.demo-header {
padding: 10px 16px;
background: var(--vp-c-bg);
border-bottom: 1px solid var(--vp-c-divider);
display: flex;
align-items: center;
gap: 8px;
}
.input-group {
margin-bottom: 12px;
.icon { font-size: 18px; }
.title { font-weight: 600; font-size: 0.9rem; }
.subtitle { font-size: 0.75rem; color: var(--vp-c-text-3); margin-left: auto; }
.demo-layout {
display: flex;
}
.input-group label {
display: block;
font-size: 13px;
font-weight: 500;
margin-bottom: 6px;
.left-panel {
width: 240px;
padding: 12px;
display: flex;
flex-direction: column;
gap: 10px;
border-right: 1px solid var(--vp-c-divider);
}
.right-panel {
flex: 1;
padding: 12px;
background: var(--vp-c-bg);
min-height: 180px;
}
@media (max-width: 640px) {
.demo-layout { flex-direction: column; }
.left-panel { width: 100%; border-right: none; border-bottom: 1px solid var(--vp-c-divider); }
}
.input-row {
display: flex;
flex-direction: column;
gap: 4px;
}
.input-row label {
font-size: 0.75rem;
color: var(--vp-c-text-2);
}
.input {
width: 100%;
padding: 10px;
padding: 8px 10px;
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
font-size: 14px;
font-family: monospace;
background: var(--vp-c-bg-soft);
font-size: 0.85rem;
background: var(--vp-c-bg);
}
.input:focus {
outline: none;
border-color: var(--vp-c-brand);
}
.textarea {
width: 100%;
height: 80px;
padding: 10px;
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
font-size: 13px;
font-family: monospace;
background: var(--vp-c-bg-soft);
resize: vertical;
}
.method-buttons {
.method-btns {
display: flex;
gap: 8px;
gap: 4px;
}
.method-btn {
padding: 6px 16px;
.m-btn {
flex: 1;
padding: 6px;
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
background: var(--vp-c-bg-soft);
font-size: 13px;
font-weight: 600;
border-radius: 4px;
background: transparent;
font-size: 0.75rem;
cursor: pointer;
transition: all 0.2s;
}
.method-btn.active {
.m-btn.active {
background: var(--vp-c-brand);
color: white;
border-color: var(--vp-c-brand);
}
.send-btn {
width: 100%;
padding: 12px;
padding: 10px;
background: var(--vp-c-brand);
color: white;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
margin-top: 8px;
transition: opacity 0.2s;
}
.send-btn:disabled {
opacity: 0.7;
opacity: 0.6;
cursor: not-allowed;
}
.empty-state {
text-align: center;
padding: 40px 20px;
.empty {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: var(--vp-c-text-3);
font-style: italic;
}
.empty-icon {
font-size: 48px;
display: block;
margin-bottom: 12px;
opacity: 0.5;
}
.hint {
font-size: 12px;
margin-top: 8px;
opacity: 0.7;
}
.response-content {
animation: fadeIn 0.3s ease;
.response {
display: flex;
flex-direction: column;
gap: 8px;
height: 100%;
}
.status-bar {
padding: 8px 12px;
border-radius: 6px;
margin-bottom: 12px;
display: flex;
gap: 8px;
align-items: center;
gap: 8px;
padding: 6px 10px;
border-radius: 4px;
font-size: 0.8rem;
}
.status-bar.success {
background: #dcfce7;
color: #166534;
}
.status-bar.success { background: #dcfce7; }
.status-bar.success .code { color: #166534; }
.status-bar.client-error { background: #fee2e2; }
.status-bar.client-error .code { color: #991b1b; }
.status-bar.server-error { background: #fef3c7; }
.status-bar.server-error .code { color: #92400e; }
.status-bar.client-error {
background: #fee2e2;
color: #991b1b;
}
.code { font-weight: bold; }
.text { color: var(--vp-c-text-2); }
.status-bar.server-error {
background: #fecaca;
color: #7f1d1d;
}
.status-code {
font-weight: 700;
font-family: monospace;
}
.response-body {
.body {
flex: 1;
background: #1e293b;
border-radius: 6px;
padding: 12px;
margin-bottom: 12px;
overflow-x: auto;
max-height: 180px;
padding: 8px;
overflow: auto;
}
.response-body pre {
.body pre {
margin: 0;
font-family: monospace;
font-size: 12px;
font-size: 0.7rem;
color: #e2e8f0;
white-space: pre-wrap;
}
.explanation {
background: var(--vp-c-bg-soft);
padding: 12px;
border-radius: 6px;
font-size: 13px;
color: var(--vp-c-text-2);
border-left: 3px solid var(--vp-c-brand);
padding: 8px;
background: #fef3c7;
border-radius: 4px;
font-size: 0.8rem;
color: #92400e;
}
.tips {
margin-top: 20px;
padding-top: 16px;
border-top: 1px solid var(--vp-c-divider);
}
.tip-title {
font-size: 13px;
font-weight: 600;
margin-bottom: 10px;
color: var(--vp-c-text-2);
}
.tip-list {
.quick-actions {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
padding: 10px 12px;
background: var(--vp-c-bg-alt);
border-top: 1px solid var(--vp-c-divider);
flex-wrap: wrap;
}
.tip-list button {
padding: 6px 12px;
.quick-actions .label {
font-size: 0.75rem;
color: var(--vp-c-text-2);
}
.quick-actions button {
padding: 4px 10px;
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
border-radius: 4px;
background: var(--vp-c-bg);
font-size: 12px;
font-size: 0.75rem;
cursor: pointer;
transition: all 0.2s;
}
.tip-list button:hover {
border-color: var(--vp-c-brand);
color: var(--vp-c-brand);
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(5px);
}
to {
opacity: 1;
transform: translateY(0);
}
.quick-actions button:hover {
background: var(--vp-c-bg-soft);
}
</style>