Refactor homepage for focused search and data display; streamline data platform; enhance user and tag management; focus AI assistant on data analysis and report generation. Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
517 lines
22 KiB
TypeScript
517 lines
22 KiB
TypeScript
"use client"
|
||
|
||
import { useState } from "react"
|
||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
||
import { Button } from "@/components/ui/button"
|
||
import { Input } from "@/components/ui/input"
|
||
import { Badge } from "@/components/ui/badge"
|
||
import { Textarea } from "@/components/ui/textarea"
|
||
import { Label } from "@/components/ui/label"
|
||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"
|
||
import { Switch } from "@/components/ui/switch"
|
||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"
|
||
import {
|
||
BarChart3,
|
||
Send,
|
||
FileText,
|
||
Mail,
|
||
MessageSquare,
|
||
Download,
|
||
Database,
|
||
Target,
|
||
Zap,
|
||
Eye,
|
||
Share,
|
||
} from "lucide-react"
|
||
import { TooltipHelp, TooltipProvider } from "@/components/ui/tooltip-help"
|
||
import {
|
||
Dialog,
|
||
DialogContent,
|
||
DialogDescription,
|
||
DialogHeader,
|
||
DialogTitle,
|
||
DialogFooter,
|
||
} from "@/components/ui/dialog"
|
||
|
||
export default function AIAssistantPage() {
|
||
const [selectedDatabase, setSelectedDatabase] = useState("all")
|
||
const [reportTitle, setReportTitle] = useState("")
|
||
const [isGeneratingReport, setIsGeneratingReport] = useState(false)
|
||
const [isSendingReport, setIsSendingReport] = useState(false)
|
||
const [selectedReport, setSelectedReport] = useState<string | null>(null)
|
||
|
||
// 数据库列表
|
||
const databases = [
|
||
{ id: "user_behavior", name: "用户行为数据库", records: "1.2M", description: "用户行为轨迹和交互数据" },
|
||
{ id: "user_profile", name: "用户画像数据库", records: "856K", description: "用户基本信息和标签数据" },
|
||
{ id: "transaction", name: "交易数据库", records: "324K", description: "用户交易和消费记录" },
|
||
{ id: "content", name: "内容数据库", records: "567K", description: "内容互动和偏好数据" },
|
||
{ id: "traffic", name: "流量数据库", records: "2.3M", description: "流量关键词和来源数据" },
|
||
]
|
||
|
||
// 生成的报告列表
|
||
const [reports, setReports] = useState([
|
||
{
|
||
id: "1",
|
||
title: "用户行为分析报告",
|
||
database: "用户行为数据库",
|
||
generatedAt: "2024-01-15 14:30",
|
||
status: "completed",
|
||
insights: [
|
||
"用户在晚间时段活跃度最高,占总活跃时间的35%",
|
||
"移动端用户占比87%,其中iOS用户转化率更高",
|
||
"用户平均会话时长为8.5分钟,高于行业平均水平",
|
||
],
|
||
recommendations: [
|
||
"建议在晚间时段增加营销活动投入",
|
||
"优化iOS端用户体验,提升转化率",
|
||
"延长用户会话时长,增加内容推荐精准度",
|
||
],
|
||
},
|
||
{
|
||
id: "2",
|
||
title: "用户价值分析报告",
|
||
database: "用户画像数据库",
|
||
generatedAt: "2024-01-14 16:45",
|
||
status: "completed",
|
||
insights: [
|
||
"高价值用户占比7.2%,贡献了45%的总收入",
|
||
"用户生命周期价值平均为¥2,580",
|
||
"新用户转化为高价值用户的概率为12.5%",
|
||
],
|
||
recommendations: [
|
||
"针对高价值用户制定专属服务策略",
|
||
"优化新用户引导流程,提升转化率",
|
||
"建立用户价值预警机制,及时挽留流失用户",
|
||
],
|
||
},
|
||
{
|
||
id: "3",
|
||
title: "流量关键词分析报告",
|
||
database: "流量数据库",
|
||
generatedAt: "2024-01-13 10:20",
|
||
status: "completed",
|
||
insights: [
|
||
"热门关键词TOP10贡献了60%的流量",
|
||
"长尾关键词转化率普遍高于热门关键词",
|
||
"品牌相关关键词的用户质量最高",
|
||
],
|
||
recommendations: ["加大长尾关键词的投入和优化", "提升品牌关键词的覆盖范围", "建立关键词效果监控体系"],
|
||
},
|
||
])
|
||
|
||
// 生成报告
|
||
const handleGenerateReport = () => {
|
||
if (!reportTitle.trim()) return
|
||
|
||
setIsGeneratingReport(true)
|
||
|
||
// 模拟报告生成过程
|
||
setTimeout(() => {
|
||
const newReport = {
|
||
id: Date.now().toString(),
|
||
title: reportTitle,
|
||
database: databases.find((db) => db.id === selectedDatabase)?.name || "全部数据库",
|
||
generatedAt: new Date().toLocaleString(),
|
||
status: "completed",
|
||
insights: ["AI分析发现的关键洞察1", "AI分析发现的关键洞察2", "AI分析发现的关键洞察3"],
|
||
recommendations: ["基于数据分析的建议1", "基于数据分析的建议2", "基于数据分析的建议3"],
|
||
}
|
||
|
||
setReports((prev) => [newReport, ...prev])
|
||
setReportTitle("")
|
||
setIsGeneratingReport(false)
|
||
}, 3000)
|
||
}
|
||
|
||
// 发送报告
|
||
const handleSendReport = (reportId: string, method: string, target: string) => {
|
||
setIsSendingReport(true)
|
||
|
||
// 模拟发送过程
|
||
setTimeout(() => {
|
||
setIsSendingReport(false)
|
||
setSelectedReport(null)
|
||
// 这里可以添加成功提示
|
||
}, 2000)
|
||
}
|
||
|
||
return (
|
||
<TooltipProvider>
|
||
<div className="container mx-auto p-6 space-y-6">
|
||
<div className="flex items-center justify-between">
|
||
<div>
|
||
<h1 className="text-3xl font-bold">AI智能助手</h1>
|
||
<p className="text-muted-foreground mt-2">专注数据库分析,生成智能数据报告</p>
|
||
</div>
|
||
</div>
|
||
|
||
{/* 核心指标概览 */}
|
||
<div className="grid grid-cols-1 md:grid-cols-4 gap-6">
|
||
<Card>
|
||
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
||
<CardTitle className="text-sm font-medium flex items-center gap-2">
|
||
数据库数量
|
||
<TooltipHelp content="可分析的数据库总数,包含用户、交易、行为等各类数据" />
|
||
</CardTitle>
|
||
<Database className="h-4 w-4 text-muted-foreground" />
|
||
</CardHeader>
|
||
<CardContent>
|
||
<div className="text-2xl font-bold">{databases.length}</div>
|
||
<p className="text-xs text-muted-foreground">覆盖全业务数据</p>
|
||
</CardContent>
|
||
</Card>
|
||
|
||
<Card>
|
||
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
||
<CardTitle className="text-sm font-medium flex items-center gap-2">
|
||
生成报告
|
||
<TooltipHelp content="AI自动生成的数据分析报告总数" />
|
||
</CardTitle>
|
||
<FileText className="h-4 w-4 text-muted-foreground" />
|
||
</CardHeader>
|
||
<CardContent>
|
||
<div className="text-2xl font-bold">{reports.length}</div>
|
||
<p className="text-xs text-muted-foreground">
|
||
<span className="text-green-600">+2</span> 本周新增
|
||
</p>
|
||
</CardContent>
|
||
</Card>
|
||
|
||
<Card>
|
||
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
||
<CardTitle className="text-sm font-medium flex items-center gap-2">
|
||
分析准确率
|
||
<TooltipHelp content="AI数据分析的准确率,基于历史验证结果计算" />
|
||
</CardTitle>
|
||
<Target className="h-4 w-4 text-muted-foreground" />
|
||
</CardHeader>
|
||
<CardContent>
|
||
<div className="text-2xl font-bold">94.2%</div>
|
||
<p className="text-xs text-muted-foreground">
|
||
<span className="text-green-600">+1.8%</span> 较上月
|
||
</p>
|
||
</CardContent>
|
||
</Card>
|
||
|
||
<Card>
|
||
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
|
||
<CardTitle className="text-sm font-medium flex items-center gap-2">
|
||
处理速度
|
||
<TooltipHelp content="AI分析处理的平均速度,包括数据读取和分析时间" />
|
||
</CardTitle>
|
||
<Zap className="h-4 w-4 text-muted-foreground" />
|
||
</CardHeader>
|
||
<CardContent>
|
||
<div className="text-2xl font-bold">2.3s</div>
|
||
<p className="text-xs text-muted-foreground">平均分析时间</p>
|
||
</CardContent>
|
||
</Card>
|
||
</div>
|
||
|
||
<Tabs defaultValue="generate" className="space-y-6">
|
||
<TabsList className="grid w-full grid-cols-2">
|
||
<TabsTrigger value="generate">生成报告</TabsTrigger>
|
||
<TabsTrigger value="reports">报告管理</TabsTrigger>
|
||
</TabsList>
|
||
|
||
<TabsContent value="generate" className="space-y-6">
|
||
<Card>
|
||
<CardHeader>
|
||
<CardTitle className="flex items-center gap-2">
|
||
<BarChart3 className="h-5 w-5" />
|
||
数据库分析报告生成
|
||
<TooltipHelp content="选择数据库并配置分析参数,AI将自动生成详细的数据分析报告" />
|
||
</CardTitle>
|
||
<CardDescription>AI智能分析数据库,生成专业的数据洞察报告</CardDescription>
|
||
</CardHeader>
|
||
<CardContent>
|
||
<div className="space-y-6">
|
||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
||
<div className="space-y-4">
|
||
<div>
|
||
<Label htmlFor="report-title">报告标题</Label>
|
||
<Input
|
||
id="report-title"
|
||
placeholder="请输入报告标题..."
|
||
value={reportTitle}
|
||
onChange={(e) => setReportTitle(e.target.value)}
|
||
className="mt-1"
|
||
/>
|
||
</div>
|
||
|
||
<div>
|
||
<Label htmlFor="database-select">选择数据库</Label>
|
||
<Select value={selectedDatabase} onValueChange={setSelectedDatabase}>
|
||
<SelectTrigger id="database-select" className="mt-1">
|
||
<SelectValue placeholder="选择要分析的数据库" />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
<SelectItem value="all">全部数据库</SelectItem>
|
||
{databases.map((db) => (
|
||
<SelectItem key={db.id} value={db.id}>
|
||
{db.name} ({db.records})
|
||
</SelectItem>
|
||
))}
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
<div>
|
||
<Label htmlFor="analysis-type">分析类型</Label>
|
||
<Select defaultValue="comprehensive">
|
||
<SelectTrigger id="analysis-type" className="mt-1">
|
||
<SelectValue />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
<SelectItem value="comprehensive">综合分析</SelectItem>
|
||
<SelectItem value="behavior">行为分析</SelectItem>
|
||
<SelectItem value="value">价值分析</SelectItem>
|
||
<SelectItem value="trend">趋势分析</SelectItem>
|
||
<SelectItem value="conversion">转化分析</SelectItem>
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
<div>
|
||
<Label htmlFor="time-range">时间范围</Label>
|
||
<Select defaultValue="30days">
|
||
<SelectTrigger id="time-range" className="mt-1">
|
||
<SelectValue />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
<SelectItem value="7days">近7天</SelectItem>
|
||
<SelectItem value="30days">近30天</SelectItem>
|
||
<SelectItem value="90days">近90天</SelectItem>
|
||
<SelectItem value="1year">近1年</SelectItem>
|
||
<SelectItem value="custom">自定义</SelectItem>
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
</div>
|
||
|
||
<div className="space-y-4">
|
||
<div>
|
||
<Label htmlFor="analysis-depth">分析深度</Label>
|
||
<Select defaultValue="standard">
|
||
<SelectTrigger id="analysis-depth" className="mt-1">
|
||
<SelectValue />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
<SelectItem value="basic">基础分析</SelectItem>
|
||
<SelectItem value="standard">标准分析</SelectItem>
|
||
<SelectItem value="deep">深度分析</SelectItem>
|
||
<SelectItem value="expert">专家级分析</SelectItem>
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
<div>
|
||
<Label htmlFor="output-format">输出格式</Label>
|
||
<Select defaultValue="detailed">
|
||
<SelectTrigger id="output-format" className="mt-1">
|
||
<SelectValue />
|
||
</SelectTrigger>
|
||
<SelectContent>
|
||
<SelectItem value="summary">摘要报告</SelectItem>
|
||
<SelectItem value="detailed">详细报告</SelectItem>
|
||
<SelectItem value="executive">高管报告</SelectItem>
|
||
<SelectItem value="technical">技术报告</SelectItem>
|
||
</SelectContent>
|
||
</Select>
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label>包含内容</Label>
|
||
<div className="space-y-2">
|
||
<div className="flex items-center space-x-2">
|
||
<Switch id="include-insights" defaultChecked />
|
||
<Label htmlFor="include-insights">数据洞察</Label>
|
||
</div>
|
||
<div className="flex items-center space-x-2">
|
||
<Switch id="include-recommendations" defaultChecked />
|
||
<Label htmlFor="include-recommendations">优化建议</Label>
|
||
</div>
|
||
<div className="flex items-center space-x-2">
|
||
<Switch id="include-charts" defaultChecked />
|
||
<Label htmlFor="include-charts">图表分析</Label>
|
||
</div>
|
||
<div className="flex items-center space-x-2">
|
||
<Switch id="include-predictions" />
|
||
<Label htmlFor="include-predictions">趋势预测</Label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div className="flex justify-center">
|
||
<Button
|
||
onClick={handleGenerateReport}
|
||
disabled={isGeneratingReport || !reportTitle.trim()}
|
||
className="px-8"
|
||
>
|
||
{isGeneratingReport ? (
|
||
<>
|
||
<div className="animate-spin rounded-full h-4 w-4 border-b-2 border-white mr-2"></div>
|
||
生成中...
|
||
</>
|
||
) : (
|
||
<>
|
||
<BarChart3 className="h-4 w-4 mr-2" />
|
||
生成AI分析报告
|
||
</>
|
||
)}
|
||
</Button>
|
||
</div>
|
||
</div>
|
||
</CardContent>
|
||
</Card>
|
||
</TabsContent>
|
||
|
||
<TabsContent value="reports" className="space-y-6">
|
||
<Card>
|
||
<CardHeader>
|
||
<CardTitle className="flex items-center gap-2">
|
||
<FileText className="h-5 w-5" />
|
||
报告管理
|
||
<TooltipHelp content="管理所有生成的AI分析报告,支持查看、下载和分享" />
|
||
</CardTitle>
|
||
<CardDescription>查看和管理所有AI生成的数据分析报告</CardDescription>
|
||
</CardHeader>
|
||
<CardContent>
|
||
<Table>
|
||
<TableHeader>
|
||
<TableRow>
|
||
<TableHead>报告标题</TableHead>
|
||
<TableHead>数据源</TableHead>
|
||
<TableHead>生成时间</TableHead>
|
||
<TableHead>状态</TableHead>
|
||
<TableHead>操作</TableHead>
|
||
</TableRow>
|
||
</TableHeader>
|
||
<TableBody>
|
||
{reports.map((report) => (
|
||
<TableRow key={report.id}>
|
||
<TableCell className="font-medium">{report.title}</TableCell>
|
||
<TableCell>{report.database}</TableCell>
|
||
<TableCell>{report.generatedAt}</TableCell>
|
||
<TableCell>
|
||
<Badge className="bg-green-100 text-green-800">已完成</Badge>
|
||
</TableCell>
|
||
<TableCell>
|
||
<div className="flex space-x-2">
|
||
<Button variant="ghost" size="sm">
|
||
<Eye className="h-4 w-4 mr-1" />
|
||
查看
|
||
</Button>
|
||
<Button variant="ghost" size="sm">
|
||
<Download className="h-4 w-4 mr-1" />
|
||
下载
|
||
</Button>
|
||
<Button variant="ghost" size="sm" onClick={() => setSelectedReport(report.id)}>
|
||
<Share className="h-4 w-4 mr-1" />
|
||
发送
|
||
</Button>
|
||
</div>
|
||
</TableCell>
|
||
</TableRow>
|
||
))}
|
||
</TableBody>
|
||
</Table>
|
||
</CardContent>
|
||
</Card>
|
||
</TabsContent>
|
||
</Tabs>
|
||
|
||
{/* 发送报告对话框 */}
|
||
<Dialog open={!!selectedReport} onOpenChange={(open) => !open && setSelectedReport(null)}>
|
||
<DialogContent className="sm:max-w-[500px]">
|
||
<DialogHeader>
|
||
<DialogTitle>发送报告</DialogTitle>
|
||
<DialogDescription>选择发送方式,将报告发送到指定邮箱或微信</DialogDescription>
|
||
</DialogHeader>
|
||
<div className="grid gap-4 py-4">
|
||
<div className="space-y-4">
|
||
<div>
|
||
<Label>发送方式</Label>
|
||
<div className="grid grid-cols-2 gap-4 mt-2">
|
||
<Card className="cursor-pointer hover:bg-gray-50 p-4">
|
||
<div className="flex items-center space-x-3">
|
||
<Mail className="h-6 w-6 text-blue-500" />
|
||
<div>
|
||
<div className="font-medium">邮箱发送</div>
|
||
<div className="text-sm text-muted-foreground">发送到指定邮箱</div>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
<Card className="cursor-pointer hover:bg-gray-50 p-4">
|
||
<div className="flex items-center space-x-3">
|
||
<MessageSquare className="h-6 w-6 text-green-500" />
|
||
<div>
|
||
<div className="font-medium">微信发送</div>
|
||
<div className="text-sm text-muted-foreground">发送到微信联系人</div>
|
||
</div>
|
||
</div>
|
||
</Card>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<Label htmlFor="send-target">发送目标</Label>
|
||
<Input id="send-target" placeholder="请输入邮箱地址或微信号" className="mt-1" />
|
||
</div>
|
||
|
||
<div>
|
||
<Label htmlFor="send-message">附加消息</Label>
|
||
<Textarea id="send-message" placeholder="可选:添加附加消息" className="mt-1" rows={3} />
|
||
</div>
|
||
|
||
<div className="space-y-2">
|
||
<Label>发送选项</Label>
|
||
<div className="space-y-2">
|
||
<div className="flex items-center space-x-2">
|
||
<Switch id="include-pdf" defaultChecked />
|
||
<Label htmlFor="include-pdf">包含PDF版本</Label>
|
||
</div>
|
||
<div className="flex items-center space-x-2">
|
||
<Switch id="include-data" />
|
||
<Label htmlFor="include-data">包含原始数据</Label>
|
||
</div>
|
||
<div className="flex items-center space-x-2">
|
||
<Switch id="schedule-send" />
|
||
<Label htmlFor="schedule-send">定时发送</Label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<DialogFooter>
|
||
<Button variant="outline" onClick={() => setSelectedReport(null)}>
|
||
取消
|
||
</Button>
|
||
<Button
|
||
onClick={() => handleSendReport(selectedReport!, "email", "target@example.com")}
|
||
disabled={isSendingReport}
|
||
>
|
||
{isSendingReport ? (
|
||
<>
|
||
<div className="animate-spin rounded-full h-4 w-4 border-b-2 border-white mr-2"></div>
|
||
发送中...
|
||
</>
|
||
) : (
|
||
<>
|
||
<Send className="mr-2 h-4 w-4" />
|
||
发送报告
|
||
</>
|
||
)}
|
||
</Button>
|
||
</DialogFooter>
|
||
</DialogContent>
|
||
</Dialog>
|
||
</div>
|
||
</TooltipProvider>
|
||
)
|
||
}
|