feat: 增强钱包 API 与玩家会话管理

- 新增钱包 API 函数:getWalletLogs(获取钱包日志)、postWalletTransferIn(充值)及 postWalletTransferOut(提现)
- 更新钱包相关类型定义,提升类型安全性
- 改进玩家会话管理:若当前无玩家资料,则自动拉取玩家信息
- 增强入口网关对过期会话的错误处理能力
- 更新 UI 组件,以适配新的结构与功能
This commit is contained in:
2026-05-09 15:22:08 +08:00
parent 14c297fe1a
commit 7743c14e83
28 changed files with 1719 additions and 33 deletions

View File

@@ -0,0 +1,47 @@
"use client";
import { UserRound } from "lucide-react";
import { cn } from "@/lib/utils";
import { usePlayerSessionStore } from "@/stores/player-session-store";
/**
* 顶栏:当前玩家称呼 + 默认币种(依赖入口或 Hydrate 拉取的 profile
*/
export function PlayerSessionBar({ className }: { className?: string }) {
const profile = usePlayerSessionStore((s) => s.profile);
const label =
profile?.nickname?.trim() ||
profile?.username?.trim() ||
(profile?.id != null ? `玩家 #${profile.id}` : null);
return (
<div
className={cn(
"flex min-w-0 max-w-[55%] items-center gap-1.5 sm:max-w-[60%]",
className,
)}
>
<span className="flex size-7 shrink-0 items-center justify-center rounded-full bg-muted">
<UserRound className="size-3.5 text-muted-foreground" aria-hidden />
</span>
<div className="min-w-0 leading-tight">
<p className="truncate text-xs font-medium text-foreground">
{label ?? "…"}
</p>
{profile?.default_currency ? (
<p className="truncate text-[10px] text-muted-foreground">
{profile.default_currency.toUpperCase()}
{profile.locale ? (
<span className="text-muted-foreground/80">
{" "}
· {profile.locale}
</span>
) : null}
</p>
) : null}
</div>
</div>
);
}