refactor: overhaul UI for streamlined user experience

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>
This commit is contained in:
v0
2025-07-18 13:47:12 +00:00
parent 440b310c6f
commit 2408d50cb0
316 changed files with 55785 additions and 0 deletions

View File

@@ -0,0 +1,212 @@
"use client"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
export function PoolAnalytics() {
return (
<div className="space-y-6">
<div className="flex justify-between items-center">
<h2 className="text-xl font-semibold"></h2>
<div className="flex space-x-2">
<Select defaultValue="7days">
<SelectTrigger className="w-[180px]">
<SelectValue placeholder="选择时间范围" />
</SelectTrigger>
<SelectContent>
<SelectItem value="7days">7</SelectItem>
<SelectItem value="30days">30</SelectItem>
<SelectItem value="90days">90</SelectItem>
<SelectItem value="custom"></SelectItem>
</SelectContent>
</Select>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
<Card>
<CardHeader className="pb-2">
<CardTitle className="text-sm font-medium"></CardTitle>
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">12</div>
<p className="text-xs text-muted-foreground"> 2</p>
</CardContent>
</Card>
<Card>
<CardHeader className="pb-2">
<CardTitle className="text-sm font-medium"></CardTitle>
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">8</div>
<p className="text-xs text-muted-foreground"> 1</p>
</CardContent>
</Card>
<Card>
<CardHeader className="pb-2">
<CardTitle className="text-sm font-medium"></CardTitle>
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">24.8%</div>
<p className="text-xs text-muted-foreground"> 2.3%</p>
</CardContent>
</Card>
</div>
<Tabs defaultValue="overview">
<TabsList>
<TabsTrigger value="overview"></TabsTrigger>
<TabsTrigger value="performance"></TabsTrigger>
<TabsTrigger value="conversion"></TabsTrigger>
</TabsList>
<TabsContent value="overview" className="space-y-4">
<Card className="p-4">
<CardHeader>
<CardTitle></CardTitle>
</CardHeader>
<CardContent className="pt-0">
<div className="h-[300px] flex items-center justify-center">
<p className="text-muted-foreground"></p>
</div>
</CardContent>
</Card>
</TabsContent>
<TabsContent value="performance" className="space-y-4">
<Card className="p-4">
<CardHeader>
<CardTitle></CardTitle>
</CardHeader>
<CardContent className="pt-0">
<div className="h-[300px] flex items-center justify-center">
<p className="text-muted-foreground"></p>
</div>
</CardContent>
</Card>
</TabsContent>
<TabsContent value="conversion" className="space-y-4">
<Card className="p-4">
<CardHeader>
<CardTitle></CardTitle>
</CardHeader>
<CardContent className="pt-0">
<div className="h-[300px] flex items-center justify-center">
<p className="text-muted-foreground"></p>
</div>
</CardContent>
</Card>
</TabsContent>
</Tabs>
</div>
)
}
// 保持已有的 KeywordAnalytics 函数
export function KeywordAnalytics() {
return (
<div className="space-y-6">
<div className="flex justify-between items-center">
<h2 className="text-xl font-semibold"></h2>
<div className="flex space-x-2">
<Select defaultValue="7days">
<SelectTrigger className="w-[180px]">
<SelectValue placeholder="选择时间范围" />
</SelectTrigger>
<SelectContent>
<SelectItem value="7days">7</SelectItem>
<SelectItem value="30days">30</SelectItem>
<SelectItem value="90days">90</SelectItem>
<SelectItem value="custom"></SelectItem>
</SelectContent>
</Select>
</div>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
<Card>
<CardHeader className="pb-2">
<CardTitle className="text-sm font-medium"></CardTitle>
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">125</div>
<p className="text-xs text-muted-foreground"> 12%</p>
</CardContent>
</Card>
<Card>
<CardHeader className="pb-2">
<CardTitle className="text-sm font-medium"></CardTitle>
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">24,521</div>
<p className="text-xs text-muted-foreground"> 8%</p>
</CardContent>
</Card>
<Card>
<CardHeader className="pb-2">
<CardTitle className="text-sm font-medium"></CardTitle>
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">68.3%</div>
<p className="text-xs text-muted-foreground"> 2.1%</p>
</CardContent>
</Card>
</div>
<Tabs defaultValue="trends">
<TabsList>
<TabsTrigger value="trends"></TabsTrigger>
<TabsTrigger value="distribution"></TabsTrigger>
<TabsTrigger value="performance"></TabsTrigger>
</TabsList>
<TabsContent value="trends" className="space-y-4">
<Card className="p-4">
<CardHeader>
<CardTitle></CardTitle>
</CardHeader>
<CardContent className="pt-0">
<div className="h-[300px] flex items-center justify-center">
<p className="text-muted-foreground"></p>
</div>
</CardContent>
</Card>
</TabsContent>
<TabsContent value="distribution" className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<Card className="p-4">
<CardHeader>
<CardTitle></CardTitle>
</CardHeader>
<CardContent className="pt-0">
<div className="h-[250px] flex items-center justify-center">
<p className="text-muted-foreground"></p>
</div>
</CardContent>
</Card>
<Card className="p-4">
<CardHeader>
<CardTitle></CardTitle>
</CardHeader>
<CardContent className="pt-0">
<div className="h-[250px] flex items-center justify-center">
<p className="text-muted-foreground"></p>
</div>
</CardContent>
</Card>
</div>
</TabsContent>
<TabsContent value="performance" className="space-y-4">
<Card className="p-4">
<CardHeader>
<CardTitle></CardTitle>
</CardHeader>
<CardContent className="pt-0">
<div className="h-[300px] flex items-center justify-center">
<p className="text-muted-foreground"></p>
</div>
</CardContent>
</Card>
</TabsContent>
</Tabs>
</div>
)
}

View File

@@ -0,0 +1,246 @@
"use client"
import { useState } from "react"
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
import { Button } from "@/components/ui/button"
import { Badge } from "@/components/ui/badge"
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
import { Checkbox } from "@/components/ui/checkbox"
import { MoreHorizontal, Edit, Trash2, BarChart2, Tag } from "lucide-react"
interface TrafficPool {
id: string
keyword: string
source: string
category: string
volume: "high" | "medium" | "low"
matchedUsers: number
createdAt: Date
updatedAt: Date
tags: string[]
}
interface TrafficPoolListProps {
searchQuery: string
}
export function TrafficPoolList({ searchQuery }: TrafficPoolListProps) {
const [selectedKeywords, setSelectedKeywords] = useState<string[]>([])
// 模拟数据
const keywords: TrafficPool[] = [
{
id: "1",
keyword: "数字营销",
source: "搜索引擎",
category: "营销",
volume: "high",
matchedUsers: 1250,
createdAt: new Date(2023, 5, 15),
updatedAt: new Date(2023, 6, 20),
tags: ["高意向", "B端客户"],
},
{
id: "2",
keyword: "用户画像",
source: "社交媒体",
category: "数据分析",
volume: "high",
matchedUsers: 980,
createdAt: new Date(2023, 4, 10),
updatedAt: new Date(2023, 6, 18),
tags: ["数据分析", "企业客户"],
},
{
id: "3",
keyword: "流量获取",
source: "广告投放",
category: "营销",
volume: "medium",
matchedUsers: 645,
createdAt: new Date(2023, 3, 5),
updatedAt: new Date(2023, 5, 25),
tags: ["获客", "营销人员"],
},
{
id: "4",
keyword: "数据可视化",
source: "内容营销",
category: "数据分析",
volume: "medium",
matchedUsers: 520,
createdAt: new Date(2023, 2, 20),
updatedAt: new Date(2023, 6, 19),
tags: ["技术", "数据分析师"],
},
{
id: "5",
keyword: "精准营销",
source: "搜索引擎",
category: "营销",
volume: "high",
matchedUsers: 1100,
createdAt: new Date(2023, 1, 15),
updatedAt: new Date(2023, 4, 10),
tags: ["高转化", "营销经理"],
},
]
// 过滤关键词
const filteredKeywords = keywords.filter(
(keyword) =>
keyword.keyword.toLowerCase().includes(searchQuery.toLowerCase()) ||
keyword.source.toLowerCase().includes(searchQuery.toLowerCase()) ||
keyword.category.toLowerCase().includes(searchQuery.toLowerCase()) ||
keyword.tags.some((tag) => tag.toLowerCase().includes(searchQuery.toLowerCase())),
)
const toggleSelectAll = () => {
if (selectedKeywords.length === filteredKeywords.length) {
setSelectedKeywords([])
} else {
setSelectedKeywords(filteredKeywords.map((k) => k.id))
}
}
const toggleSelectKeyword = (id: string) => {
if (selectedKeywords.includes(id)) {
setSelectedKeywords(selectedKeywords.filter((k) => k !== id))
} else {
setSelectedKeywords([...selectedKeywords, id])
}
}
const getVolumeBadge = (volume: string) => {
switch (volume) {
case "high":
return <Badge className="bg-green-500"></Badge>
case "medium":
return <Badge className="bg-blue-500"></Badge>
case "low":
return <Badge className="bg-gray-500"></Badge>
default:
return <Badge></Badge>
}
}
const formatDate = (date: Date) => {
return date.toLocaleDateString("zh-CN", {
year: "numeric",
month: "2-digit",
day: "2-digit",
})
}
return (
<div className="space-y-4">
{selectedKeywords.length > 0 && (
<div className="bg-muted p-2 rounded-md flex items-center justify-between">
<span className="text-sm"> {selectedKeywords.length} </span>
<div className="space-x-2">
<Button variant="outline" size="sm">
<Tag className="mr-2 h-4 w-4" />
</Button>
<Button variant="outline" size="sm" className="text-red-500">
<Trash2 className="mr-2 h-4 w-4" />
</Button>
</div>
</div>
)}
<div className="rounded-md border">
<Table>
<TableHeader>
<TableRow>
<TableHead className="w-12">
<Checkbox
checked={selectedKeywords.length === filteredKeywords.length && filteredKeywords.length > 0}
onCheckedChange={toggleSelectAll}
aria-label="Select all"
/>
</TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead className="text-right"></TableHead>
</TableRow>
</TableHeader>
<TableBody>
{filteredKeywords.map((keyword) => (
<TableRow key={keyword.id}>
<TableCell>
<Checkbox
checked={selectedKeywords.includes(keyword.id)}
onCheckedChange={() => toggleSelectKeyword(keyword.id)}
aria-label={`Select ${keyword.keyword}`}
/>
</TableCell>
<TableCell className="font-medium">{keyword.keyword}</TableCell>
<TableCell>{keyword.source}</TableCell>
<TableCell>{keyword.category}</TableCell>
<TableCell>{getVolumeBadge(keyword.volume)}</TableCell>
<TableCell>{keyword.matchedUsers.toLocaleString()}</TableCell>
<TableCell>{formatDate(keyword.createdAt)}</TableCell>
<TableCell>{formatDate(keyword.updatedAt)}</TableCell>
<TableCell>
<div className="flex flex-wrap gap-1">
{keyword.tags.map((tag) => (
<Badge key={tag} variant="outline" className="text-xs">
{tag}
</Badge>
))}
</div>
</TableCell>
<TableCell className="text-right">
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="ghost" size="icon">
<MoreHorizontal className="h-4 w-4" />
<span className="sr-only"></span>
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuLabel></DropdownMenuLabel>
<DropdownMenuSeparator />
<DropdownMenuItem>
<Edit className="mr-2 h-4 w-4" />
</DropdownMenuItem>
<DropdownMenuItem>
<BarChart2 className="mr-2 h-4 w-4" />
</DropdownMenuItem>
<DropdownMenuItem>
<Tag className="mr-2 h-4 w-4" />
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem className="text-red-500">
<Trash2 className="mr-2 h-4 w-4" />
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</div>
</div>
)
}

View File

@@ -0,0 +1,263 @@
"use client"
import { useState } from "react"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Badge } from "@/components/ui/badge"
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
import { Checkbox } from "@/components/ui/checkbox"
import { PlusCircle, Search, Tag, ArrowRight } from "lucide-react"
interface TagMapping {
id: string
keywordId: string
keyword: string
tagId: string
tagName: string
tagCategory: string
matchRule: string
priority: number
createdAt: Date
status: "active" | "inactive"
}
export function UserTagMapping() {
const [searchQuery, setSearchQuery] = useState("")
const [selectedMappings, setSelectedMappings] = useState<string[]>([])
// 模拟数据
const mappings: TagMapping[] = [
{
id: "1",
keywordId: "1",
keyword: "数字营销",
tagId: "101",
tagName: "营销决策者",
tagCategory: "职业角色",
matchRule: "精确匹配",
priority: 1,
createdAt: new Date(2023, 5, 15),
status: "active",
},
{
id: "2",
keywordId: "2",
keyword: "用户画像",
tagId: "102",
tagName: "数据分析师",
tagCategory: "职业角色",
matchRule: "包含匹配",
priority: 2,
createdAt: new Date(2023, 4, 10),
status: "active",
},
{
id: "3",
keywordId: "3",
keyword: "流量获取",
tagId: "103",
tagName: "营销专员",
tagCategory: "职业角色",
matchRule: "精确匹配",
priority: 3,
createdAt: new Date(2023, 3, 5),
status: "active",
},
{
id: "4",
keywordId: "4",
keyword: "数据可视化",
tagId: "104",
tagName: "技术人员",
tagCategory: "职业角色",
matchRule: "包含匹配",
priority: 2,
createdAt: new Date(2023, 2, 20),
status: "inactive",
},
{
id: "5",
keywordId: "5",
keyword: "精准营销",
tagId: "105",
tagName: "营销经理",
tagCategory: "职业角色",
matchRule: "精确匹配",
priority: 1,
createdAt: new Date(2023, 1, 15),
status: "active",
},
]
// 过滤映射
const filteredMappings = mappings.filter(
(mapping) =>
mapping.keyword.toLowerCase().includes(searchQuery.toLowerCase()) ||
mapping.tagName.toLowerCase().includes(searchQuery.toLowerCase()) ||
mapping.tagCategory.toLowerCase().includes(searchQuery.toLowerCase()),
)
const toggleSelectAll = () => {
if (selectedMappings.length === filteredMappings.length) {
setSelectedMappings([])
} else {
setSelectedMappings(filteredMappings.map((m) => m.id))
}
}
const toggleSelectMapping = (id: string) => {
if (selectedMappings.includes(id)) {
setSelectedMappings(selectedMappings.filter((m) => m !== id))
} else {
setSelectedMappings([...selectedMappings, id])
}
}
const formatDate = (date: Date) => {
return date.toLocaleDateString("zh-CN", {
year: "numeric",
month: "2-digit",
day: "2-digit",
})
}
return (
<div className="space-y-6">
<div className="flex justify-between items-center">
<h2 className="text-xl font-semibold"></h2>
<Button>
<PlusCircle className="mr-2 h-4 w-4" />
</Button>
</div>
<Card>
<CardHeader>
<CardTitle></CardTitle>
</CardHeader>
<CardContent>
<div className="space-y-4">
<div className="flex justify-between items-center">
<div className="flex space-x-2">
<Select defaultValue="all">
<SelectTrigger className="w-[150px]">
<SelectValue placeholder="状态" />
</SelectTrigger>
<SelectContent>
<SelectItem value="all"></SelectItem>
<SelectItem value="active"></SelectItem>
<SelectItem value="inactive"></SelectItem>
</SelectContent>
</Select>
<Select defaultValue="all">
<SelectTrigger className="w-[150px]">
<SelectValue placeholder="标签分类" />
</SelectTrigger>
<SelectContent>
<SelectItem value="all"></SelectItem>
<SelectItem value="role"></SelectItem>
<SelectItem value="interest"></SelectItem>
<SelectItem value="behavior"></SelectItem>
</SelectContent>
</Select>
</div>
<div className="relative w-64">
<Search className="absolute left-2 top-2.5 h-4 w-4 text-muted-foreground" />
<Input
placeholder="搜索关键词或标签..."
className="pl-8"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
/>
</div>
</div>
{selectedMappings.length > 0 && (
<div className="bg-muted p-2 rounded-md flex items-center justify-between">
<span className="text-sm"> {selectedMappings.length} </span>
<div className="space-x-2">
<Button variant="outline" size="sm">
</Button>
<Button variant="outline" size="sm">
</Button>
<Button variant="outline" size="sm" className="text-red-500">
</Button>
</div>
</div>
)}
<div className="rounded-md border">
<Table>
<TableHeader>
<TableRow>
<TableHead className="w-12">
<Checkbox
checked={selectedMappings.length === filteredMappings.length && filteredMappings.length > 0}
onCheckedChange={toggleSelectAll}
aria-label="Select all"
/>
</TableHead>
<TableHead></TableHead>
<TableHead className="w-12 text-center"></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead></TableHead>
<TableHead className="text-right"></TableHead>
</TableRow>
</TableHeader>
<TableBody>
{filteredMappings.map((mapping) => (
<TableRow key={mapping.id}>
<TableCell>
<Checkbox
checked={selectedMappings.includes(mapping.id)}
onCheckedChange={() => toggleSelectMapping(mapping.id)}
aria-label={`Select ${mapping.keyword} to ${mapping.tagName} mapping`}
/>
</TableCell>
<TableCell className="font-medium">{mapping.keyword}</TableCell>
<TableCell className="text-center">
<ArrowRight className="h-4 w-4 mx-auto" />
</TableCell>
<TableCell>
<Badge variant="outline" className="font-normal">
<Tag className="mr-1 h-3 w-3" />
{mapping.tagName}
</Badge>
</TableCell>
<TableCell>{mapping.tagCategory}</TableCell>
<TableCell>{mapping.matchRule}</TableCell>
<TableCell>{mapping.priority}</TableCell>
<TableCell>{formatDate(mapping.createdAt)}</TableCell>
<TableCell>
<Badge
variant={mapping.status === "active" ? "default" : "secondary"}
className={mapping.status === "active" ? "bg-green-500" : ""}
>
{mapping.status === "active" ? "已启用" : "已禁用"}
</Badge>
</TableCell>
<TableCell className="text-right">
<Button variant="ghost" size="sm">
</Button>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</div>
</div>
</CardContent>
</Card>
</div>
)
}