ReportsView.tsx
16.2 KB
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import React, { useState } from 'react';
import {
Search,
Download,
Printer,
Calendar,
Filter,
BarChart3,
PieChart,
LineChart,
ArrowUpRight,
RefreshCw,
FileText
} from 'lucide-react';
import { Button } from "../ui/button";
import { Input } from "../ui/input";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "../ui/table";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "../ui/select";
import { Tabs, TabsContent, TabsList, TabsTrigger } from "../ui/tabs";
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "../ui/card";
import { Badge } from "../ui/badge";
import {
BarChart,
Bar,
XAxis,
YAxis,
CartesianGrid,
Tooltip,
Legend,
ResponsiveContainer,
Line,
LineChart as RechartsLineChart
} from 'recharts';
import { toast } from "sonner@2.0.3";
import { cn } from "../ui/utils";
// --- Mock Data ---
const MOCK_PRINT_LOG = [
{
id: '1-251201',
productName: 'Whole Milk',
category: 'Dairy',
printedAt: '2024-03-20 09:30 AM',
printedBy: 'Alice Johnson',
location: 'Downtown Store (101)',
expiryDate: '2024-03-27',
status: 'Valid'
},
{
id: '2-251201',
productName: 'Ground Beef',
category: 'Meat',
printedAt: '2024-03-20 10:15 AM',
printedBy: 'Bob Smith',
location: 'Uptown Store (102)',
expiryDate: '2024-03-23',
status: 'Valid'
},
{
id: '3-251201',
productName: 'Croissant',
category: 'Bakery',
printedAt: '2024-03-19 14:00 PM',
printedBy: 'Charlie Brown',
location: 'Downtown Store (101)',
expiryDate: '2024-03-20',
status: 'Expired'
},
{
id: '4-251201',
productName: 'Caesar Salad',
category: 'Deli',
printedAt: '2024-03-18 11:45 AM',
printedBy: 'Alice Johnson',
location: 'Downtown Store (101)',
expiryDate: '2024-03-21',
status: 'Expiring Soon'
},
{
id: '5-251201',
productName: 'Orange Juice',
category: 'Beverage',
printedAt: '2024-03-18 08:20 AM',
printedBy: 'Bob Smith',
location: 'Airport Kiosk (201)',
expiryDate: '2024-03-25',
status: 'Valid'
},
];
const MOCK_CATEGORY_STATS = [
{ name: 'Dairy', count: 450 },
{ name: 'Meat', count: 320 },
{ name: 'Bakery', count: 280 },
{ name: 'Deli', count: 190 },
{ name: 'Produce', count: 150 },
{ name: 'Beverage', count: 120 },
];
const MOCK_USAGE_TRENDS = [
{ date: 'Mon', count: 120 },
{ date: 'Tue', count: 132 },
{ date: 'Wed', count: 101 },
{ date: 'Thu', count: 134 },
{ date: 'Fri', count: 190 },
{ date: 'Sat', count: 230 },
{ date: 'Sun', count: 210 },
];
export function ReportsView() {
const [activeTab, setActiveTab] = useState('print-log');
const handleReprint = (labelId: string) => {
// Logic to reprint would go here
// For now, we simulate the action
toast.success(`Reprinting label ${labelId}`, {
description: "Watermark 'RePrint' applied.",
});
};
return (
<div className="h-full flex flex-col bg-white">
{/* Toolbar:与 Products/Locations 一致 — 单行、圆角、细边框、bg-gray-50、无标题、框内文字黑色 */}
<div className="border-b border-gray-200 py-4 bg-gray-50">
<div className="flex flex-nowrap items-center gap-2 overflow-x-auto min-w-0">
<div className="relative w-32 shrink-0">
<Search className="absolute left-2.5 top-2.5 h-4 w-4 text-gray-400" />
<Input
placeholder="Search Product or Category..."
className="pl-9 h-9 rounded-lg border border-black bg-white text-black"
/>
</div>
<Select defaultValue="partner-a">
<SelectTrigger className="w-[140px] h-9 rounded-lg border border-black font-medium text-black bg-white shrink-0">
<SelectValue placeholder="Partner" />
</SelectTrigger>
<SelectContent>
<SelectItem value="partner-a">Partner A</SelectItem>
</SelectContent>
</Select>
<Select defaultValue="group-b">
<SelectTrigger className="w-[140px] h-9 rounded-lg border border-black font-medium text-black bg-white shrink-0">
<SelectValue placeholder="Group" />
</SelectTrigger>
<SelectContent>
<SelectItem value="group-b">Group B</SelectItem>
</SelectContent>
</Select>
<Select defaultValue="loc-12345">
<SelectTrigger className="w-[160px] h-9 rounded-lg border border-black font-medium text-black bg-white shrink-0">
<SelectValue placeholder="Location" />
</SelectTrigger>
<SelectContent>
<SelectItem value="loc-12345">Downtown Store</SelectItem>
<SelectItem value="all">All Locations</SelectItem>
</SelectContent>
</Select>
<div className="flex items-center gap-2 shrink-0">
<span className="text-sm font-medium text-gray-700 whitespace-nowrap">Period Search:</span>
<div className="flex items-center bg-white border border-black rounded-lg h-9 px-2 shrink-0">
<Calendar className="w-4 h-4 text-gray-500 mr-2 shrink-0" />
<input type="date" className="text-sm outline-none w-28 bg-transparent" />
<span className="mx-1 text-gray-400">-</span>
<input type="date" className="text-sm outline-none w-28 bg-transparent" />
</div>
</div>
<div className="flex-1 min-w-0" />
<Button variant="outline" className="h-9 rounded-lg border border-black text-black gap-2 bg-white hover:bg-gray-50 shrink-0">
<Download className="w-4 h-4" /> Export Report
</Button>
</div>
</div>
{/* Tabs:参考 Labels 的 tab 形式 */}
<div className="flex overflow-x-auto border-b border-gray-200 bg-gray-50">
{(['print-log', 'label-report'] as const).map((tab) => (
<button
key={tab}
type="button"
onClick={() => setActiveTab(tab)}
className={cn(
"px-6 py-3 text-sm font-medium whitespace-nowrap cursor-pointer transition-colors",
activeTab === tab ? "border-b-2" : "text-gray-500 hover:text-gray-700"
)}
style={activeTab === tab ? { color: '#1b46c7', borderBottomColor: '#1b46c7' } : undefined}
>
{tab === 'print-log' ? 'Print Log' : 'Label Report'}
</button>
))}
</div>
{/* Content Area:与 Products 一致,无内边距 */}
<div className="flex-1 overflow-auto bg-gray-50">
{activeTab === 'print-log' && (
<div className="bg-white border border-gray-200 shadow-sm rounded-sm overflow-hidden">
<Table>
<TableHeader>
<TableRow className="bg-gray-100 hover:bg-gray-100">
<TableHead className="text-gray-900 font-bold border-r">Label ID</TableHead>
<TableHead className="text-gray-900 font-bold border-r">Product Name</TableHead>
<TableHead className="text-gray-900 font-bold border-r">Category</TableHead>
<TableHead className="text-gray-900 font-bold border-r">Printed At</TableHead>
<TableHead className="text-gray-900 font-bold border-r">Printed By</TableHead>
<TableHead className="text-gray-900 font-bold border-r">Location</TableHead>
<TableHead className="text-gray-900 font-bold border-r">Expiry Date</TableHead>
<TableHead className="text-gray-900 font-bold text-center">Action</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{MOCK_PRINT_LOG.map((log) => (
<TableRow key={log.id}>
<TableCell className="border-r font-mono text-gray-600">{log.id}</TableCell>
<TableCell className="border-r font-medium">{log.productName}</TableCell>
<TableCell className="border-r">
<Badge variant="secondary" className="bg-blue-50 text-blue-700 hover:bg-blue-50 border-blue-200">
{log.category}
</Badge>
</TableCell>
<TableCell className="border-r text-gray-600 text-sm">{log.printedAt}</TableCell>
<TableCell className="border-r text-gray-600 text-sm">{log.printedBy}</TableCell>
<TableCell className="border-r text-gray-600 text-sm">{log.location}</TableCell>
<TableCell className="border-r">
<span className={cn(
"text-sm font-medium",
log.status === 'Expired' ? 'text-red-600' :
log.status === 'Expiring Soon' ? 'text-orange-500' : 'text-green-600'
)}>
{log.expiryDate}
</span>
</TableCell>
<TableCell className="text-center">
<Button
size="sm"
variant="outline"
className="h-8 gap-1 hover:bg-gray-100 border-gray-300"
onClick={() => handleReprint(log.id)}
>
<Printer className="w-3 h-3" /> Reprint
</Button>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</div>
)}
{activeTab === 'label-report' && (
<div className="space-y-6">
{/* Summary Cards */}
<div className="grid grid-cols-1 md:grid-cols-4 gap-4">
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium">Total Labels Printed</CardTitle>
<FileText className="h-4 w-4 text-muted-foreground" />
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">2,543</div>
<p className="text-xs text-muted-foreground">+20.1% from last month</p>
</CardContent>
</Card>
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium">Most Printed Category</CardTitle>
<BarChart3 className="h-4 w-4 text-muted-foreground" />
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">Dairy</div>
<p className="text-xs text-muted-foreground">450 labels generated</p>
</CardContent>
</Card>
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium">Top Product</CardTitle>
<ArrowUpRight className="h-4 w-4 text-muted-foreground" />
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">Whole Milk</div>
<p className="text-xs text-muted-foreground">182 labels generated</p>
</CardContent>
</Card>
<Card>
<CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
<CardTitle className="text-sm font-medium">Avg. Daily Prints</CardTitle>
<RefreshCw className="h-4 w-4 text-muted-foreground" />
</CardHeader>
<CardContent>
<div className="text-2xl font-bold">85</div>
<p className="text-xs text-muted-foreground">+12% from last week</p>
</CardContent>
</Card>
</div>
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
{/* Category Breakdown Chart */}
<Card className="col-span-1">
<CardHeader>
<CardTitle>Labels by Category</CardTitle>
<CardDescription>
Distribution of printed labels across product categories.
</CardDescription>
</CardHeader>
<CardContent className="h-[300px]">
<ResponsiveContainer width="100%" height="100%">
<BarChart data={MOCK_CATEGORY_STATS}>
<CartesianGrid strokeDasharray="3 3" vertical={false} />
<XAxis dataKey="name" fontSize={12} tickLine={false} axisLine={false} />
<YAxis fontSize={12} tickLine={false} axisLine={false} tickFormatter={(value) => `${value}`} />
<Tooltip />
<Bar dataKey="count" fill="#facc15" radius={[4, 4, 0, 0]} />
</BarChart>
</ResponsiveContainer>
</CardContent>
</Card>
{/* Usage Trend Chart */}
<Card className="col-span-1">
<CardHeader>
<CardTitle>Print Volume Trends</CardTitle>
<CardDescription>
Daily label printing volume for the last 7 days.
</CardDescription>
</CardHeader>
<CardContent className="h-[300px]">
<ResponsiveContainer width="100%" height="100%">
<RechartsLineChart data={MOCK_USAGE_TRENDS}>
<CartesianGrid strokeDasharray="3 3" vertical={false} />
<XAxis dataKey="date" fontSize={12} tickLine={false} axisLine={false} />
<YAxis fontSize={12} tickLine={false} axisLine={false} />
<Tooltip />
<Line type="monotone" dataKey="count" stroke="#dc2626" strokeWidth={2} dot={{ r: 4 }} activeDot={{ r: 6 }} />
</RechartsLineChart>
</ResponsiveContainer>
</CardContent>
</Card>
</div>
{/* Top Products Table */}
<Card>
<CardHeader>
<CardTitle>Most Used Products</CardTitle>
</CardHeader>
<CardContent>
<Table>
<TableHeader>
<TableRow>
<TableHead>Product Name</TableHead>
<TableHead>Category</TableHead>
<TableHead className="text-right">Total Printed</TableHead>
<TableHead className="text-right">Usage %</TableHead>
</TableRow>
</TableHeader>
<TableBody>
<TableRow>
<TableCell className="font-medium">Whole Milk</TableCell>
<TableCell>Dairy</TableCell>
<TableCell className="text-right">182</TableCell>
<TableCell className="text-right">7.2%</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-medium">Ground Beef 80/20</TableCell>
<TableCell>Meat</TableCell>
<TableCell className="text-right">145</TableCell>
<TableCell className="text-right">5.7%</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-medium">Chicken Breast</TableCell>
<TableCell>Meat</TableCell>
<TableCell className="text-right">132</TableCell>
<TableCell className="text-right">5.2%</TableCell>
</TableRow>
<TableRow>
<TableCell className="font-medium">Sliced Ham</TableCell>
<TableCell>Deli</TableCell>
<TableCell className="text-right">98</TableCell>
<TableCell className="text-right">3.8%</TableCell>
</TableRow>
</TableBody>
</Table>
</CardContent>
</Card>
</div>
)}
</div>
</div>
);
}