feat: settings, wallet, notifications, and identity verification pages

This commit is contained in:
zetaloop
2026-02-20 15:34:15 +08:00
parent 6523556d8b
commit 5b21793ede
4 changed files with 464 additions and 9 deletions
+113 -2
View File
@@ -1,8 +1,119 @@
import { Bell, CheckCheck, MessageSquare, ShoppingBag } from "lucide-react"
import Link from "next/link"
import { Badge } from "@/components/ui/badge"
import { Button } from "@/components/ui/button"
import { Card, CardContent } from "@/components/ui/card"
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
import { mockNotifications } from "@/lib/mock-data"
import type { Notification } from "@/lib/types"
const typeIcons: Record<Notification["type"], typeof Bell> = {
order: ShoppingBag,
community: MessageSquare,
system: Bell,
}
const typeLabels: Record<Notification["type"], string> = {
order: "订单",
community: "社区",
system: "系统",
}
function NotificationItem({ notification }: { notification: Notification }) {
const Icon = typeIcons[notification.type]
const content = (
<div className="flex items-start gap-3 rounded-md border p-3 hover:bg-muted/50 transition-colors">
<div className="h-8 w-8 rounded-full bg-muted flex items-center justify-center shrink-0 mt-0.5">
<Icon className="h-4 w-4" />
</div>
<div className="flex-1 min-w-0">
<div className="flex items-center gap-2">
<span className="text-sm font-medium">{notification.title}</span>
{!notification.read && <span className="h-2 w-2 rounded-full bg-primary shrink-0" />}
</div>
<p className="text-sm text-muted-foreground mt-0.5">{notification.content}</p>
<p className="text-xs text-muted-foreground mt-1">
{new Date(notification.createdAt).toLocaleString("zh-CN")}
</p>
</div>
<Badge variant="outline" className="text-[10px] shrink-0">
{typeLabels[notification.type]}
</Badge>
</div>
)
return notification.link ? <Link href={notification.link}>{content}</Link> : content
}
export default function NotificationsPage() { export default function NotificationsPage() {
const unreadCount = mockNotifications.filter((n) => !n.read).length
const orderNotifs = mockNotifications.filter((n) => n.type === "order")
const communityNotifs = mockNotifications.filter((n) => n.type === "community")
const systemNotifs = mockNotifications.filter((n) => n.type === "system")
return ( return (
<div> <div className="max-w-2xl space-y-6">
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<h1 className="text-2xl font-bold"></h1> <h1 className="text-2xl font-bold"></h1>
<p className="mt-2 text-muted-foreground"></p> {unreadCount > 0 && <Badge>{unreadCount} </Badge>}
</div>
<Button variant="outline" size="sm">
<CheckCheck className="mr-1 h-4 w-4" />
</Button>
</div>
<Tabs defaultValue="all">
<TabsList>
<TabsTrigger value="all"></TabsTrigger>
<TabsTrigger value="order"></TabsTrigger>
<TabsTrigger value="community"></TabsTrigger>
<TabsTrigger value="system"></TabsTrigger>
</TabsList>
<TabsContent value="all" className="space-y-2 mt-4">
{mockNotifications.map((n) => (
<NotificationItem key={n.id} notification={n} />
))}
</TabsContent>
<TabsContent value="order" className="space-y-2 mt-4">
{orderNotifs.length === 0 ? (
<Card>
<CardContent className="py-8 text-center text-sm text-muted-foreground">
</CardContent>
</Card>
) : (
orderNotifs.map((n) => <NotificationItem key={n.id} notification={n} />)
)}
</TabsContent>
<TabsContent value="community" className="space-y-2 mt-4">
{communityNotifs.length === 0 ? (
<Card>
<CardContent className="py-8 text-center text-sm text-muted-foreground">
</CardContent>
</Card>
) : (
communityNotifs.map((n) => <NotificationItem key={n.id} notification={n} />)
)}
</TabsContent>
<TabsContent value="system" className="space-y-2 mt-4">
{systemNotifs.length === 0 ? (
<Card>
<CardContent className="py-8 text-center text-sm text-muted-foreground">
</CardContent>
</Card>
) : (
systemNotifs.map((n) => <NotificationItem key={n.id} notification={n} />)
)}
</TabsContent>
</Tabs>
</div> </div>
) )
} }
+118 -2
View File
@@ -1,8 +1,124 @@
"use client"
import { Camera } from "lucide-react"
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"
import { Button } from "@/components/ui/button"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"
import { Separator } from "@/components/ui/separator"
import { Switch } from "@/components/ui/switch"
import { Textarea } from "@/components/ui/textarea"
import { currentUser } from "@/lib/mock-data"
import { useAuthStore } from "@/store/auth"
export default function SettingsPage() { export default function SettingsPage() {
const { currentRole, switchRole } = useAuthStore()
return ( return (
<div> <div className="max-w-2xl space-y-6">
<h1 className="text-2xl font-bold"></h1> <h1 className="text-2xl font-bold"></h1>
<p className="mt-2 text-muted-foreground"></p>
<Card>
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="flex items-center gap-4">
<div className="relative">
<Avatar className="h-20 w-20">
<AvatarImage src={currentUser.avatar} />
<AvatarFallback className="text-lg">{currentUser.nickname[0]}</AvatarFallback>
</Avatar>
<button
type="button"
className="absolute bottom-0 right-0 h-7 w-7 rounded-full bg-primary text-primary-foreground flex items-center justify-center"
>
<Camera className="h-3.5 w-3.5" />
</button>
</div>
<p className="text-sm text-muted-foreground"> JPGPNG </p>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="nickname"></Label>
<Input id="nickname" defaultValue={currentUser.nickname} />
</div>
<div className="space-y-2">
<Label htmlFor="bio"></Label>
<Textarea id="bio" defaultValue={currentUser.bio} rows={3} />
</div>
<div className="space-y-2">
<Label htmlFor="phone"></Label>
<Input id="phone" defaultValue={currentUser.phone} disabled />
<p className="text-xs text-muted-foreground"></p>
</div>
<Button></Button>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="space-y-3">
<p className="text-sm text-muted-foreground"></p>
<RadioGroup
value={currentRole}
onValueChange={(v) => switchRole(v as "consumer" | "player" | "owner")}
>
<div className="flex items-center space-x-2">
<RadioGroupItem value="consumer" id="role-consumer" />
<Label htmlFor="role-consumer"></Label>
</div>
<div className="flex items-center space-x-2">
<RadioGroupItem value="player" id="role-player" />
<Label htmlFor="role-player"></Label>
</div>
<div className="flex items-center space-x-2">
<RadioGroupItem value="owner" id="role-owner" />
<Label htmlFor="role-owner"></Label>
</div>
</RadioGroup>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center justify-between">
<div>
<p className="text-sm font-medium"></p>
<p className="text-xs text-muted-foreground"></p>
</div>
<Switch defaultChecked />
</div>
<Separator />
<div className="flex items-center justify-between">
<div>
<p className="text-sm font-medium"></p>
<p className="text-xs text-muted-foreground"></p>
</div>
<Switch defaultChecked />
</div>
<Separator />
<div className="flex items-center justify-between">
<div>
<p className="text-sm font-medium"></p>
<p className="text-xs text-muted-foreground"></p>
</div>
<Switch />
</div>
</CardContent>
</Card>
</div> </div>
) )
} }
+119 -2
View File
@@ -1,8 +1,125 @@
"use client"
import { CheckCircle, Clock, ShieldCheck, Upload } from "lucide-react"
import { useState } from "react"
import { Badge } from "@/components/ui/badge"
import { Button } from "@/components/ui/button"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select"
import { Separator } from "@/components/ui/separator"
import { Textarea } from "@/components/ui/textarea"
export default function VerifyPage() { export default function VerifyPage() {
const [submitted, setSubmitted] = useState(false)
if (submitted) {
return ( return (
<div> <div className="max-w-2xl space-y-6">
<h1 className="text-2xl font-bold"></h1> <h1 className="text-2xl font-bold"></h1>
<p className="mt-2 text-muted-foreground"></p> <Card>
<CardContent className="py-12 text-center space-y-4">
<Clock className="h-12 w-12 mx-auto text-muted-foreground" />
<h2 className="text-xl font-bold"></h2>
<p className="text-sm text-muted-foreground">
1-3
</p>
<Badge variant="outline" className="text-sm">
<Clock className="mr-1 h-3.5 w-3.5" />
</Badge>
</CardContent>
</Card>
</div>
)
}
return (
<div className="max-w-2xl space-y-6">
<h1 className="text-2xl font-bold"></h1>
<Card>
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="space-y-3 text-sm text-muted-foreground">
<div className="flex items-start gap-2">
<ShieldCheck className="h-4 w-4 shrink-0 mt-0.5 text-primary" />
<span></span>
</div>
<div className="flex items-start gap-2">
<CheckCircle className="h-4 w-4 shrink-0 mt-0.5 text-primary" />
<span></span>
</div>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="space-y-6">
<div className="space-y-2">
<Label></Label>
<Select>
<SelectTrigger>
<SelectValue placeholder="选择认证类型" />
</SelectTrigger>
<SelectContent>
<SelectItem value="player"></SelectItem>
<SelectItem value="owner"></SelectItem>
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="real-name"></Label>
<Input id="real-name" placeholder="请输入真实姓名" />
</div>
<div className="space-y-2">
<Label htmlFor="id-number"></Label>
<Input id="id-number" placeholder="请输入身份证号" />
</div>
<Separator />
<div className="space-y-2">
<Label></Label>
<Textarea placeholder="请描述你的游戏经历、段位、擅长游戏等" rows={3} />
</div>
<div className="space-y-2">
<Label></Label>
<div className="flex gap-2">
<div className="h-24 w-24 rounded-md border-2 border-dashed border-muted-foreground/25 flex flex-col items-center justify-center gap-1 text-muted-foreground cursor-pointer hover:border-muted-foreground/50 transition-colors">
<Upload className="h-5 w-5" />
<span className="text-[10px]"></span>
</div>
<div className="h-24 w-24 rounded-md border-2 border-dashed border-muted-foreground/25 flex flex-col items-center justify-center gap-1 text-muted-foreground cursor-pointer hover:border-muted-foreground/50 transition-colors">
<Upload className="h-5 w-5" />
<span className="text-[10px]"></span>
</div>
<div className="h-24 w-24 rounded-md border-2 border-dashed border-muted-foreground/25 flex flex-col items-center justify-center gap-1 text-muted-foreground cursor-pointer hover:border-muted-foreground/50 transition-colors">
<Upload className="h-5 w-5" />
<span className="text-[10px]"></span>
</div>
</div>
<p className="text-xs text-muted-foreground"> JPGPNG 5MB</p>
</div>
<Button className="w-full" onClick={() => setSubmitted(true)}>
</Button>
</CardContent>
</Card>
</div> </div>
) )
} }
+113 -2
View File
@@ -1,8 +1,119 @@
import {
ArrowDownLeft,
ArrowUpRight,
CreditCard,
DollarSign,
RefreshCw,
Wallet,
} from "lucide-react"
import { Badge } from "@/components/ui/badge"
import { Button } from "@/components/ui/button"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Input } from "@/components/ui/input"
import { Separator } from "@/components/ui/separator"
import { mockTransactions, walletBalance } from "@/lib/mock-data"
const typeLabels: Record<string, string> = {
topup: "充值",
payment: "支付",
income: "收入",
withdrawal: "提现",
refund: "退款",
}
const typeIcons: Record<string, typeof ArrowUpRight> = {
topup: ArrowDownLeft,
payment: ArrowUpRight,
income: ArrowDownLeft,
withdrawal: ArrowUpRight,
refund: ArrowDownLeft,
}
export default function WalletPage() { export default function WalletPage() {
return ( return (
<div> <div className="max-w-2xl space-y-6">
<h1 className="text-2xl font-bold"></h1> <h1 className="text-2xl font-bold"></h1>
<p className="mt-2 text-muted-foreground"></p>
<Card>
<CardContent className="pt-6">
<div className="flex items-center justify-between">
<div>
<p className="text-sm text-muted-foreground"></p>
<p className="text-3xl font-bold mt-1">¥{walletBalance.toFixed(2)}</p>
</div>
<Wallet className="h-10 w-10 text-muted-foreground" />
</div>
<div className="flex gap-2 mt-4">
<Button>
<DollarSign className="mr-1 h-4 w-4" />
</Button>
<Button variant="outline">
<CreditCard className="mr-1 h-4 w-4" />
</Button>
</div>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid grid-cols-3 gap-2">
{[50, 100, 200, 500, 1000, 2000].map((amount) => (
<Button key={`amount-${amount}`} variant="outline" className="h-12">
¥{amount}
</Button>
))}
</div>
<Separator />
<div className="flex gap-2">
<Input placeholder="自定义金额" type="number" />
<Button></Button>
</div>
</CardContent>
</Card>
<Card>
<CardHeader className="flex flex-row items-center justify-between">
<CardTitle className="text-base"></CardTitle>
<Button variant="ghost" size="sm">
<RefreshCw className="mr-1 h-3.5 w-3.5" />
</Button>
</CardHeader>
<CardContent className="space-y-3">
{mockTransactions.map((tx) => {
const Icon = typeIcons[tx.type]
const isIncome = tx.amount > 0
return (
<div key={tx.id} className="flex items-center justify-between">
<div className="flex items-center gap-3">
<div className="h-8 w-8 rounded-full bg-muted flex items-center justify-center">
<Icon className="h-4 w-4" />
</div>
<div>
<p className="text-sm font-medium">{tx.description}</p>
<p className="text-xs text-muted-foreground">
{new Date(tx.createdAt).toLocaleString("zh-CN")}
</p>
</div>
</div>
<div className="text-right">
<p className={`text-sm font-medium ${isIncome ? "text-green-600" : ""}`}>
{isIncome ? "+" : ""}¥{Math.abs(tx.amount).toFixed(2)}
</p>
<Badge variant="outline" className="text-[10px]">
{typeLabels[tx.type]}
</Badge>
</div>
</div>
)
})}
</CardContent>
</Card>
</div> </div>
) )
} }