Spaces:
Sleeping
Sleeping
File size: 7,238 Bytes
5296912 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
import React, { useState, useEffect } from 'react';
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend } from 'recharts';
import { Upload, RefreshCw, Database, FileText, Settings } from 'lucide-react';
import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card';
import { Alert, AlertDescription } from '@/components/ui/alert';
import { Button } from '@/components/ui/button';
const AdminDashboard = () => {
// Sample data for learning chart
const [learningData, setLearningData] = useState([]);
const [isUpdating, setIsUpdating] = useState(false);
const [chatHistory, setChatHistory] = useState([]);
const [message, setMessage] = useState('');
const [stats, setStats] = useState({});
const [plotData, setPlotData] = useState([]);
const handleKnowledgeUpdate = () => {
setIsUpdating(true);
// Simulate update
setTimeout(() => setIsUpdating(false), 2000);
};
const handleChatSubmit = async () => {
const response = await fetch('http://localhost:7860/api/chat', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ message, history: chatHistory })
});
const data = await response.json();
setChatHistory(data.history);
setMessage('');
};
const handleFileUpload = async (file) => {
const formData = new FormData();
formData.append('file', file);
const response = await fetch('http://localhost:7860/api/upload', {
method: 'POST',
body: formData
});
const data = await response.json();
alert(data.message);
};
const handleShowStats = async () => {
const response = await fetch('http://localhost:7860/api/stats');
const data = await response.json();
setStats(data.stats);
setPlotData(data.plot);
};
useEffect(() => {
// Fetch initial learning data
const fetchLearningData = async () => {
const response = await fetch('http://localhost:7860/api/learning_data');
const data = await response.json();
setLearningData(data);
};
fetchLearningData();
}, []);
return (
<div className="p-6 max-w-7xl mx-auto space-y-6">
{/* Header */}
<div className="flex justify-between items-center">
<h1 className="text-3xl font-bold">Admin Dashboard</h1>
<Button
onClick={handleKnowledgeUpdate}
className="bg-blue-600 hover:bg-blue-700"
disabled={isUpdating}
>
<RefreshCw className={`w-4 h-4 mr-2 ${isUpdating ? 'animate-spin' : ''}`} />
Update Knowledge Base
</Button>
</div>
{/* Statistics Cards */}
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
<Card>
<CardContent className="pt-6">
<div className="text-2xl font-bold">{stats.average_response_time || '89%'}</div>
<div className="text-sm text-gray-500">Current Learning Rate</div>
</CardContent>
</Card>
<Card>
<CardContent className="pt-6">
<div className="text-2xl font-bold">{stats.total_interactions || '1,234'}</div>
<div className="text-sm text-gray-500">Number of Answered Questions</div>
</CardContent>
</Card>
<Card>
<CardContent className="pt-6">
<div className="text-2xl font-bold">{stats.user_satisfaction || '95%'}</div>
<div className="text-sm text-gray-500">User Satisfaction</div>
</CardContent>
</Card>
</div>
{/* Learning Chart */}
<Card>
<CardHeader>
<CardTitle>Learning Rate Trend</CardTitle>
</CardHeader>
<CardContent>
<div className="h-[400px] w-full">
<LineChart
width={800}
height={400}
data={plotData}
margin={{ top: 5, right: 30, left: 20, bottom: 5 }}
>
<CartesianGrid strokeDasharray="3 3" />
<XAxis dataKey="date" />
<YAxis />
<Tooltip />
<Legend />
<Line
type="monotone"
dataKey="rate"
stroke="#2563eb"
name="Learning Rate"
strokeWidth={2}
/>
</LineChart>
</div>
</CardContent>
</Card>
{/* Operation Buttons */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<Button className="h-24 text-lg justify-start p-6" variant="outline">
<FileText className="w-6 h-6 mr-4" />
Manage Files
</Button>
<Button className="h-24 text-lg justify-start p-6" variant="outline">
<Settings className="w-6 h-6 mr-4" />
Learning Settings
</Button>
</div>
{/* Alerts and Announcements */}
<Alert>
<AlertDescription>
Last knowledge base update: Yesterday at 15:30
</AlertDescription>
</Alert>
{/* Chat */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<Card>
<CardHeader>
<CardTitle>Chat</CardTitle>
</CardHeader>
<CardContent>
<div className="h-[400px] w-full overflow-y-auto">
{chatHistory.map((msg, index) => (
<div key={index} className="p-2 border-b">
{msg}
</div>
))}
</div>
<div className="flex mt-4">
<input
type="text"
className="flex-grow p-2 border rounded-l"
value={message}
onChange={(e) => setMessage(e.target.value)}
onKeyPress={(e) => e.key === 'Enter' && handleChatSubmit()}
/>
<button
className="p-2 bg-blue-600 text-white rounded-r"
onClick={handleChatSubmit}
>
Send
</button>
</div>
</CardContent>
</Card>
</div>
{/* Upload Documents */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<Card>
<CardHeader>
<CardTitle>Upload Documents</CardTitle>
</CardHeader>
<CardContent>
<input type="file" onChange={(e) => handleFileUpload(e.target.files[0])} />
</CardContent>
</Card>
</div>
{/* Statistics */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<Card>
<CardHeader>
<CardTitle>Statistics</CardTitle>
</CardHeader>
<CardContent>
<button className="p-2 bg-blue-600 text-white rounded" onClick={handleShowStats}>
Show Stats
</button>
<div className="mt-4">
<pre>{JSON.stringify(stats, null, 2)}</pre>
</div>
</CardContent>
</Card>
</div>
</div>
);
};
export default AdminDashboard;
|