Redesign navigation, home overview, user portrait, and valuation pages with improved functionality and responsive design. Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
257 lines
10 KiB
TypeScript
257 lines
10 KiB
TypeScript
"use client"
|
||
|
||
import { useState } from "react"
|
||
import { ChevronLeft, Filter, Search, RefreshCw, ArrowRightLeft, AlertCircle } from "lucide-react"
|
||
import { Card } from "@/components/ui/card"
|
||
import { Button } from "@/components/ui/button"
|
||
import { Input } from "@/components/ui/input"
|
||
import { Badge } from "@/components/ui/badge"
|
||
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"
|
||
import { useRouter } from "next/navigation"
|
||
import {
|
||
Pagination,
|
||
PaginationContent,
|
||
PaginationItem,
|
||
PaginationLink,
|
||
PaginationNext,
|
||
PaginationPrevious,
|
||
} from "@/components/ui/pagination"
|
||
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from "@/components/ui/dialog"
|
||
import { toast } from "@/components/ui/use-toast"
|
||
import { Progress } from "@/components/ui/progress"
|
||
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip"
|
||
|
||
interface WechatAccount {
|
||
id: string
|
||
avatar: string
|
||
nickname: string
|
||
wechatId: string
|
||
deviceId: string
|
||
deviceName: string
|
||
friendCount: number
|
||
todayAdded: number
|
||
remainingAdds: number
|
||
maxDailyAdds: number
|
||
status: "normal" | "abnormal"
|
||
lastActive: string
|
||
}
|
||
|
||
const generateRandomWechatAccounts = (count: number): WechatAccount[] => {
|
||
return Array.from({ length: count }, (_, index) => ({
|
||
id: `account-${index + 1}`,
|
||
avatar:
|
||
"https://hebbkx1anhila5yf.public.blob.vercel-storage.com/img_v3_02jn_e7fcc2a4-3560-478d-911a-4ccd69c6392g.jpg-a8zVtwxMuSrPWN9dfWH93EBY0yM3Dh.jpeg",
|
||
nickname: `卡若-${["25vig", "zok7e", "ip9ob", "2kna3"][index % 4]}`,
|
||
wechatId: `wxid_${Math.random().toString(36).substr(2, 8)}`,
|
||
deviceId: `device-${Math.floor(index / 3) + 1}`,
|
||
deviceName: `设备${Math.floor(index / 3) + 1}`,
|
||
friendCount: Math.floor(Math.random() * (6300 - 520)) + 520,
|
||
todayAdded: Math.floor(Math.random() * 15),
|
||
remainingAdds: Math.floor(Math.random() * 10) + 5,
|
||
maxDailyAdds: 20,
|
||
status: Math.random() > 0.2 ? "normal" : "abnormal",
|
||
lastActive: new Date(Date.now() - Math.random() * 86400000).toLocaleString(),
|
||
}))
|
||
}
|
||
|
||
export default function WechatAccountsPage() {
|
||
const router = useRouter()
|
||
const [accounts] = useState<WechatAccount[]>(generateRandomWechatAccounts(42))
|
||
const [searchQuery, setSearchQuery] = useState("")
|
||
const [currentPage, setCurrentPage] = useState(1)
|
||
const [isTransferDialogOpen, setIsTransferDialogOpen] = useState(false)
|
||
const [selectedAccount, setSelectedAccount] = useState<WechatAccount | null>(null)
|
||
const accountsPerPage = 10
|
||
|
||
const filteredAccounts = accounts.filter(
|
||
(account) =>
|
||
account.nickname.toLowerCase().includes(searchQuery.toLowerCase()) ||
|
||
account.wechatId.toLowerCase().includes(searchQuery.toLowerCase()),
|
||
)
|
||
|
||
const paginatedAccounts = filteredAccounts.slice((currentPage - 1) * accountsPerPage, currentPage * accountsPerPage)
|
||
|
||
const totalPages = Math.ceil(filteredAccounts.length / accountsPerPage)
|
||
|
||
const handleTransferFriends = (account: WechatAccount) => {
|
||
setSelectedAccount(account)
|
||
setIsTransferDialogOpen(true)
|
||
}
|
||
|
||
const handleConfirmTransfer = () => {
|
||
if (!selectedAccount) return
|
||
|
||
toast({
|
||
title: "好友转移计划已创建",
|
||
description: "请在场景获客中查看详情",
|
||
})
|
||
setIsTransferDialogOpen(false)
|
||
router.push("/scenarios")
|
||
}
|
||
|
||
return (
|
||
<div className="flex-1 bg-gradient-to-b from-blue-50 to-white min-h-screen">
|
||
<header className="sticky top-0 z-10 bg-white/80 backdrop-blur-sm border-b">
|
||
<div className="flex items-center p-4">
|
||
<Button variant="ghost" size="icon" onClick={() => router.back()}>
|
||
<ChevronLeft className="h-5 w-5" />
|
||
</Button>
|
||
<h1 className="ml-2 text-lg font-medium">微信号</h1>
|
||
</div>
|
||
</header>
|
||
|
||
<div className="p-4">
|
||
<Card className="p-4 mb-4">
|
||
<div className="flex items-center space-x-4">
|
||
<div className="relative flex-1">
|
||
<Search className="w-4 h-4 absolute left-3 top-3 text-gray-400" />
|
||
<Input
|
||
className="pl-9"
|
||
placeholder="搜索微信号/昵称"
|
||
value={searchQuery}
|
||
onChange={(e) => setSearchQuery(e.target.value)}
|
||
/>
|
||
</div>
|
||
<Button variant="outline" size="icon">
|
||
<Filter className="h-4 w-4" />
|
||
</Button>
|
||
<Button variant="outline" size="icon">
|
||
<RefreshCw className="h-4 w-4" />
|
||
</Button>
|
||
</div>
|
||
</Card>
|
||
|
||
<div className="grid gap-3">
|
||
{paginatedAccounts.map((account) => (
|
||
<Card
|
||
key={account.id}
|
||
className="p-4 hover:shadow-lg transition-all cursor-pointer"
|
||
onClick={() => router.push(`/wechat-accounts/${account.id}`)}
|
||
>
|
||
<div className="flex items-start space-x-4">
|
||
<Avatar className="h-12 w-12 ring-2 ring-offset-2 ring-blue-500/20">
|
||
<AvatarImage src={account.avatar} />
|
||
<AvatarFallback>{account.nickname[0]}</AvatarFallback>
|
||
</Avatar>
|
||
<div className="flex-1 min-w-0">
|
||
<div className="flex items-center justify-between">
|
||
<div className="flex items-center space-x-2">
|
||
<h3 className="font-medium truncate">{account.nickname}</h3>
|
||
<Badge variant={account.status === "normal" ? "success" : "destructive"}>
|
||
{account.status === "normal" ? "正常" : "异常"}
|
||
</Badge>
|
||
</div>
|
||
<Button
|
||
variant="ghost"
|
||
size="sm"
|
||
onClick={(e) => {
|
||
e.stopPropagation()
|
||
handleTransferFriends(account)
|
||
}}
|
||
>
|
||
<ArrowRightLeft className="h-4 w-4 mr-2" />
|
||
好友转移
|
||
</Button>
|
||
</div>
|
||
<div className="mt-1 text-sm text-gray-500 space-y-1">
|
||
<div>微信号:{account.wechatId}</div>
|
||
<div className="flex items-center justify-between">
|
||
<div>好友数量:{account.friendCount}</div>
|
||
<div className="text-green-600">今日新增:+{account.todayAdded}</div>
|
||
</div>
|
||
<div className="space-y-1">
|
||
<div className="flex items-center justify-between text-sm">
|
||
<div className="flex items-center space-x-1">
|
||
<span>今日可添加:</span>
|
||
<span className="font-medium">{account.remainingAdds}</span>
|
||
<TooltipProvider>
|
||
<Tooltip>
|
||
<TooltipTrigger>
|
||
<AlertCircle className="h-4 w-4 text-gray-400" />
|
||
</TooltipTrigger>
|
||
<TooltipContent>
|
||
<p>每日最多添加 {account.maxDailyAdds} 个好友</p>
|
||
</TooltipContent>
|
||
</Tooltip>
|
||
</TooltipProvider>
|
||
</div>
|
||
<span className="text-sm text-gray-500">
|
||
{account.todayAdded}/{account.maxDailyAdds}
|
||
</span>
|
||
</div>
|
||
<Progress value={(account.todayAdded / account.maxDailyAdds) * 100} className="h-2" />
|
||
</div>
|
||
<div className="flex items-center justify-between text-xs text-gray-500 pt-2">
|
||
<div>所属设备:{account.deviceName}</div>
|
||
<div>最后活跃:{account.lastActive}</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
))}
|
||
</div>
|
||
|
||
<div className="mt-4 flex justify-center">
|
||
<Pagination>
|
||
<PaginationContent>
|
||
<PaginationItem>
|
||
<PaginationPrevious
|
||
href="#"
|
||
onClick={(e) => {
|
||
e.preventDefault()
|
||
setCurrentPage((prev) => Math.max(1, prev - 1))
|
||
}}
|
||
/>
|
||
</PaginationItem>
|
||
{Array.from({ length: totalPages }, (_, i) => i + 1).map((page) => (
|
||
<PaginationItem key={page}>
|
||
<PaginationLink
|
||
href="#"
|
||
isActive={currentPage === page}
|
||
onClick={(e) => {
|
||
e.preventDefault()
|
||
setCurrentPage(page)
|
||
}}
|
||
>
|
||
{page}
|
||
</PaginationLink>
|
||
</PaginationItem>
|
||
))}
|
||
<PaginationItem>
|
||
<PaginationNext
|
||
href="#"
|
||
onClick={(e) => {
|
||
e.preventDefault()
|
||
setCurrentPage((prev) => Math.min(totalPages, prev + 1))
|
||
}}
|
||
/>
|
||
</PaginationItem>
|
||
</PaginationContent>
|
||
</Pagination>
|
||
</div>
|
||
</div>
|
||
|
||
<Dialog open={isTransferDialogOpen} onOpenChange={setIsTransferDialogOpen}>
|
||
<DialogContent>
|
||
<DialogHeader>
|
||
<DialogTitle>好友转移确认</DialogTitle>
|
||
</DialogHeader>
|
||
<div className="py-4">
|
||
<p className="text-sm text-gray-500">
|
||
确认要将 {selectedAccount?.nickname} 的 {selectedAccount?.friendCount}{" "}
|
||
个好友转移到场景获客吗?系统将自动创建一个获客计划。
|
||
</p>
|
||
</div>
|
||
<DialogFooter>
|
||
<Button variant="outline" onClick={() => setIsTransferDialogOpen(false)}>
|
||
取消
|
||
</Button>
|
||
<Button onClick={handleConfirmTransfer}>确认转移</Button>
|
||
</DialogFooter>
|
||
</DialogContent>
|
||
</Dialog>
|
||
</div>
|
||
)
|
||
}
|