style: remove markdown bold syntax from code comments

Remove `**...**` emphasis markers from inline comments and JSDoc blocks across
auth and chat components, machine mappers, and quota helpers. These are
plain code comments, not rendered markdown, so the bold syntax was noise.

Files touched:
- src/app/auth/components/auth-screen.tsx
- src/app/chat/components/chat-header.tsx
- src/app/chat/components/chat-screen.tsx
- chat machine mapper / quota helpers

No functional or behavioral changes.
This commit is contained in:
2026-06-16 14:06:31 +08:00
parent 7506dcae3a
commit 9ffa30cc03
33 changed files with 206 additions and 206 deletions
+9 -9
View File
@@ -3,20 +3,20 @@
*
* 事件名与原 Dart ChatEvent 对齐。
*
* 历史:原本有 `ChatAuthStatusChanged`chat 机器刷新 isGuest)—— 已**删**
* 历史:原本有 `ChatAuthStatusChanged`chat 机器刷新 isGuest)—— 已
* 鉴权状态变化(loginStatus)由 chat-screen 通过 `useAuthState()` 订阅,
* chat 机器**不**感知鉴权。
* chat 机器感知鉴权。
*
* 鉴权生命周期事件(**本轮新增**):
* - `ChatGuestLogin`:游客进入 /chat —— 拉本地消息 + 初始化配额(**不**连 WS
* - `ChatNonGuestLogin`:非游客进入 /chat —— 拉服务器端首屏 + **连** WStoken 在 payload
* 鉴权生命周期事件(本轮新增):
* - `ChatGuestLogin`:游客进入 /chat —— 拉本地消息 + 初始化配额(连 WS
* - `ChatNonGuestLogin`:非游客进入 /chat —— 拉服务器端首屏 + WStoken 在 payload
* - `ChatLogout`:登出 / 切换用户 —— 断 WS + 清消息
*
* 设计:**所有**WS / 历史 / 配额相关副作用**全部**通过派发事件给 chat 机器处理,
* chat-screen **不**直接创建 ChatWebSocket / 不读 AuthStorage(除 token 取值)。
* 设计:所有WS / 历史 / 配额相关副作用全部通过派发事件给 chat 机器处理,
* chat-screen 直接创建 ChatWebSocket / 不读 AuthStorage(除 token 取值)。
*/
export type ChatEvent =
// 鉴权生命周期(**用户**显式触发登录后由 chat-screen 派)
// 鉴权生命周期(用户显式触发登录后由 chat-screen 派)
| { type: "ChatGuestLogin" }
| { type: "ChatNonGuestLogin"; token: string }
| { type: "ChatLogout" }
@@ -24,7 +24,7 @@ export type ChatEvent =
| { type: "ChatSendMessage"; content: string }
| { type: "ChatSendImage"; imageBase64: string }
| { type: "ChatLoadMoreHistory" }
// WebSocket / AI 推句(**由** chat 机器内部 actor 派回 —— "机器**自**驱动"
// WebSocket / AI 推句( chat 机器内部 actor 派回 —— "机器驱动"
| {
type: "ChatAISentenceReceived";
index: number;