260d17ee8b
- 添加浏览器前端组件:无障碍访问、国际化、实时通信 - 添加 Transformer 注意力机制系列组件 - 更新 Canvas、数据追踪等现有组件 - 修复 ESLint 变量名冲突问题 - 完善相关附录文档
309 lines
6.8 KiB
Vue
309 lines
6.8 KiB
Vue
<template>
|
||
<div class="demo-wrapper">
|
||
<div class="demo-header">WebSocket / 全双工通信演示</div>
|
||
|
||
<div class="network-stage">
|
||
<!-- 客户端 -->
|
||
<div class="node client">
|
||
<div class="node-icon">🎮</div>
|
||
<div class="node-label">Player 1</div>
|
||
<button
|
||
v-if="isConnected"
|
||
class="action-btn client-btn"
|
||
@click="sendMessage('client')"
|
||
>
|
||
发招:升龙拳!👊
|
||
</button>
|
||
</div>
|
||
|
||
<!-- WebSocket 通信链路(包含左右两个方向的车道) -->
|
||
<div class="channel">
|
||
<div class="ws-pipe" v-show="isConnected">
|
||
<div class="line top-line"></div>
|
||
<div class="line bottom-line"></div>
|
||
</div>
|
||
|
||
<!-- 流动的数据包 -->
|
||
<div
|
||
v-for="msg in activeMessages"
|
||
:key="msg.id"
|
||
class="ws-packet"
|
||
:class="msg.sender"
|
||
>
|
||
{{ msg.text }}
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 服务端 -->
|
||
<div class="node server">
|
||
<div class="node-icon">🖥️</div>
|
||
<div class="node-label">Game Server</div>
|
||
<button
|
||
v-if="isConnected"
|
||
class="action-btn server-btn"
|
||
@click="sendMessage('server')"
|
||
>
|
||
群发:敌军出动!🛸
|
||
</button>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="status-panel">
|
||
<div class="status-controls">
|
||
<button
|
||
class="toggle-btn"
|
||
:class="{ active: isConnected }"
|
||
@click="toggleConnection"
|
||
>
|
||
{{ isConnected ? '⏹ 挥泪握手告别' : '⚡ Upgrade: websocket 协议质变' }}
|
||
</button>
|
||
</div>
|
||
<div class="log-box">
|
||
<div v-for="(log, idx) in logs" :key="idx" class="log-line">
|
||
{{ log }}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref, onUnmounted } from 'vue'
|
||
|
||
const isConnected = ref(false)
|
||
const activeMessages = ref([])
|
||
const logs = ref([])
|
||
let msgId = 0
|
||
|
||
const addLog = (msg) => {
|
||
logs.value.unshift(`[${new Date().toLocaleTimeString()}] ${msg}`)
|
||
if (logs.value.length > 5) logs.value.pop()
|
||
}
|
||
|
||
const toggleConnection = () => {
|
||
if (isConnected.value) {
|
||
isConnected.value = false
|
||
addLog('断开 WebSockets 连接 (TCP 四次挥手).')
|
||
activeMessages.value = []
|
||
} else {
|
||
addLog('客户端发 HTTP 请求:Upgrade: websocket, Connection: Upgrade')
|
||
setTimeout(() => {
|
||
addLog('服务端响应:101 Switching Protocols。神级链路建立完成!')
|
||
isConnected.value = true
|
||
}, 600)
|
||
}
|
||
}
|
||
|
||
const sendMessage = (sender) => {
|
||
const text = sender === 'client' ? '【二进制帧】走位左移' : '【JSON帧】Boss 释放技能'
|
||
const msgObj = { id: msgId++, text, sender }
|
||
activeMessages.value.push(msgObj)
|
||
|
||
if (sender === 'client') {
|
||
addLog(`客户端:瞬间送出 0101 极简格式数据包`)
|
||
} else {
|
||
addLog(`服务端:瞬间下发最新全局状态帧`)
|
||
}
|
||
|
||
// 模拟极快传输
|
||
setTimeout(() => {
|
||
activeMessages.value = activeMessages.value.filter(m => m.id !== msgObj.id)
|
||
if (sender === 'client') addLog('服务端:光速收到玩家操作响应。')
|
||
else addLog('客户端:光速渲染 Boss 动画!')
|
||
}, 800)
|
||
}
|
||
|
||
onUnmounted(() => {
|
||
isConnected.value = false
|
||
})
|
||
</script>
|
||
|
||
<style scoped>
|
||
.demo-wrapper {
|
||
background: var(--vp-c-bg-soft);
|
||
border: 1px solid var(--vp-c-divider);
|
||
border-radius: 12px;
|
||
padding: 1.5rem;
|
||
margin: 1.5rem 0;
|
||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
|
||
}
|
||
|
||
.demo-header {
|
||
font-weight: bold;
|
||
font-size: 0.9rem;
|
||
color: var(--vp-c-text-2);
|
||
margin-bottom: 1rem;
|
||
}
|
||
|
||
.network-stage {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 2rem 1rem;
|
||
background: var(--vp-c-bg);
|
||
border-radius: 8px;
|
||
border: 1px dashed var(--vp-c-divider);
|
||
position: relative;
|
||
}
|
||
|
||
.node {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
width: 130px;
|
||
z-index: 2;
|
||
}
|
||
|
||
.node-icon {
|
||
font-size: 3rem;
|
||
margin-bottom: 0.5rem;
|
||
}
|
||
|
||
.node-label {
|
||
font-weight: 600;
|
||
font-size: 0.85rem;
|
||
color: var(--vp-c-text-1);
|
||
}
|
||
|
||
.action-btn {
|
||
margin-top: 0.5rem;
|
||
padding: 0.4rem 0.6rem;
|
||
font-size: 0.75rem;
|
||
font-weight: bold;
|
||
border-radius: 6px;
|
||
cursor: pointer;
|
||
transition: 0.2s;
|
||
color: white;
|
||
}
|
||
|
||
.client-btn {
|
||
background: #3b82f6; /* Blue for client sending */
|
||
}
|
||
.client-btn:hover { background: #2563eb; }
|
||
|
||
.server-btn {
|
||
background: #eab308; /* Yellow for server sending */
|
||
}
|
||
.server-btn:hover { background: #ca8a04; }
|
||
|
||
.channel {
|
||
flex-grow: 1;
|
||
position: relative;
|
||
height: 60px;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.ws-pipe {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 0;
|
||
right: 0;
|
||
height: 40px;
|
||
transform: translateY(-50%);
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: space-between;
|
||
}
|
||
|
||
.line {
|
||
height: 4px;
|
||
width: 100%;
|
||
background: repeating-linear-gradient(90deg, #10b981 0px, #10b981 10px, transparent 10px, transparent 20px);
|
||
}
|
||
.top-line {
|
||
animation: slideRight 1s linear infinite;
|
||
}
|
||
.bottom-line {
|
||
animation: slideLeft 1s linear infinite;
|
||
}
|
||
|
||
@keyframes slideRight {
|
||
from { background-position: 0 0; }
|
||
to { background-position: 20px 0; }
|
||
}
|
||
@keyframes slideLeft {
|
||
from { background-position: 0 0; }
|
||
to { background-position: -20px 0; }
|
||
}
|
||
|
||
.ws-packet {
|
||
position: absolute;
|
||
font-size: 0.7rem;
|
||
font-weight: bold;
|
||
padding: 0.3rem 0.6rem;
|
||
color: white;
|
||
border-radius: 20px;
|
||
white-space: nowrap;
|
||
animation-duration: 0.8s;
|
||
animation-timing-function: ease-in-out;
|
||
animation-fill-mode: forwards;
|
||
z-index: 5;
|
||
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
|
||
}
|
||
|
||
.ws-packet.client {
|
||
background: #3b82f6;
|
||
top: 0;
|
||
left: 0;
|
||
animation-name: shootRight;
|
||
}
|
||
|
||
.ws-packet.server {
|
||
background: #eab308;
|
||
bottom: 0;
|
||
right: 0;
|
||
animation-name: shootLeft;
|
||
}
|
||
|
||
@keyframes shootRight {
|
||
0% { left: 0; opacity: 1; transform: scale(0.8); }
|
||
50% { transform: scale(1.1); }
|
||
100% { left: 85%; opacity: 0; transform: scale(0.5); }
|
||
}
|
||
|
||
@keyframes shootLeft {
|
||
0% { right: 0; opacity: 1; transform: scale(0.8); }
|
||
50% { transform: scale(1.1); }
|
||
100% { right: 85%; opacity: 0; transform: scale(0.5); }
|
||
}
|
||
|
||
.status-panel {
|
||
margin-top: 1.5rem;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 1rem;
|
||
}
|
||
|
||
.toggle-btn {
|
||
padding: 0.6rem 1.2rem;
|
||
border: 2px solid var(--vp-c-divider);
|
||
border-radius: 6px;
|
||
background: var(--vp-c-bg);
|
||
font-weight: bold;
|
||
font-size: 0.9rem;
|
||
transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||
}
|
||
|
||
.toggle-btn:hover {
|
||
transform: translateY(-2px);
|
||
}
|
||
|
||
.toggle-btn.active {
|
||
border-color: #10b981;
|
||
color: #10b981;
|
||
background: rgba(16, 185, 129, 0.1);
|
||
}
|
||
|
||
.log-box {
|
||
background: #1e293b;
|
||
color: #6ee7b7; /* lighter green for WS logs */
|
||
padding: 0.8rem;
|
||
border-radius: 6px;
|
||
font-family: monospace;
|
||
font-size: 0.8rem;
|
||
min-height: 100px;
|
||
}
|
||
</style>
|