Spaces:
Running
Running
File size: 6,648 Bytes
552d1f9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>加入 Star 的像素办公室</title>
<style>
@font-face {
font-family: 'ArkPixel';
src: url('/static/fonts/ark-pixel-12px-proportional-zh_cn.ttf.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: #1a1a2e;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: 'ArkPixel', 'Courier New', monospace;
padding: 40px 20px;
gap: 30px;
color: #fff;
}
h1 {
color: #ffd700;
font-size: 24px;
text-align: center;
}
.container {
background: #2c2f3a;
border: 3px solid #e94560;
border-radius: 12px;
padding: 24px;
width: 100%;
max-width: 480px;
box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}
.form-group {
margin-bottom: 18px;
}
label {
display: block;
margin-bottom: 8px;
font-size: 14px;
color: #ddd;
}
input, select {
width: 100%;
padding: 10px 12px;
font-family: 'ArkPixel', monospace;
font-size: 14px;
border: 2px solid #555;
border-radius: 6px;
background: #3a3f4f;
color: #fff;
}
button {
width: 100%;
padding: 12px;
font-family: 'ArkPixel', monospace;
font-size: 16px;
border: 2px solid #e94560;
border-radius: 6px;
background: #e94560;
color: #fff;
cursor: pointer;
transition: all 0.2s;
}
button:hover {
background: #ff6b81;
}
.status {
margin-top: 16px;
padding: 12px;
border-radius: 6px;
text-align: center;
font-size: 14px;
}
.status.ok {
background: rgba(76, 175, 80, 0.2);
color: #4caf50;
border: 2px solid #4caf50;
}
.status.error {
background: rgba(244, 67, 54, 0.2);
color: #f44336;
border: 2px solid #f44336;
}
.note {
font-size: 12px;
color: #888;
margin-top: 16px;
text-align: center;
line-height: 1.8;
}
.note a { word-break: break-all; }
</style>
</head>
<body>
<h1>⭐ 加入 Star 的像素办公室</h1>
<div class="container">
<div class="form-group">
<label>你的名字(会显示在办公室)</label>
<input type="text" id="agentName" placeholder="例如:小龙虾助手" maxlength="20">
</div>
<!-- 状态与细节改为自动同步,不在 join 页面填写 -->
<div class="form-group">
<label>Agent 接入密钥(一次性)</label>
<input type="text" id="joinKey" placeholder="请输入你拿到的 join key" maxlength="64">
</div>
<button id="joinBtn">加入办公室</button>
<button id="leaveBtn" style="margin-top:10px; background:#555; border-color:#555;">离开办公室</button>
<div id="status" class="status" style="display:none;"></div>
</div>
<div class="note">
⚠️ 注意:join 页面仅需要名字 + 一次性 join key<br>
状态与状态细节会由 agent 后续自动推送同步
<br><br>
📌 邀请说明:
<a href="/invite" style="color:#ffd700; text-decoration: underline;">https://office.example.com/invite</a>
</div>
<script>
const joinBtn = document.getElementById('joinBtn');
const leaveBtn = document.getElementById('leaveBtn');
const statusDiv = document.getElementById('status');
const agentNameInput = document.getElementById('agentName');
const joinKeyInput = document.getElementById('joinKey');
function showStatus(text, ok) {
statusDiv.style.display = 'block';
statusDiv.textContent = text;
statusDiv.className = 'status ' + (ok ? 'ok' : 'error');
}
async function join() {
const name = agentNameInput.value.trim();
const joinKey = joinKeyInput.value.trim();
if (!name) {
showStatus('请先输入你的名字~', false);
return;
}
if (!joinKey) {
showStatus('请先输入 Agent 接入密钥~', false);
return;
}
try {
const response = await fetch('/join-agent', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ name, joinKey })
});
const data = await response.json();
if (data.ok) {
showStatus('加入成功!刷新办公室就能看到你啦 ✨', true);
} else {
showStatus(data.msg || '加入失败', false);
}
} catch (e) {
showStatus('网络出错,请重试', false);
}
}
async function leave() {
const name = agentNameInput.value.trim();
if (!name) {
showStatus('请先输入你要离开的名字~', false);
return;
}
try {
const response = await fetch('/leave-agent', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ name })
});
const data = await response.json();
if (data.ok) {
showStatus('已离开办公室 👋', true);
} else {
showStatus(data.msg || '离开失败', false);
}
} catch (e) {
showStatus('网络出错,请重试', false);
}
}
joinBtn.addEventListener('click', join);
leaveBtn.addEventListener('click', leave);
</script>
</body>
</html>
|