| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388 |
- import { useQuery } from '@tanstack/react-query';
- import { useState, useEffect, useMemo } from 'react';
- import { useTranslation } from 'react-i18next';
- import {
- Package,
- Clock,
- CheckCircle,
- XCircle,
- DollarSign,
- Target,
- Zap,
- AlertTriangle,
- TrendingDown,
- FileSpreadsheet,
- FileText,
- Loader2,
- Eye,
- RotateCcw,
- Calculator,
- Calendar,
- ChevronDown,
- Users,
- BarChart3,
- } from 'lucide-react';
- import {
- BarChart,
- Bar,
- XAxis,
- YAxis,
- CartesianGrid,
- Tooltip,
- ResponsiveContainer,
- } from 'recharts';
- import { Button } from '../components/Button';
- import { useToast } from '../contexts/ToastContext';
- import { useAuth } from '../contexts/AuthContext';
- import { api, type ArchiveSlim } from '../api/client';
- import { PrintCalendar } from '../components/PrintCalendar';
- import { FilamentTrends } from '../components/FilamentTrends';
- import { Dashboard, type DashboardWidget } from '../components/Dashboard';
- import { getCurrencySymbol } from '../utils/currency';
- import { formatWeight } from '../utils/weight';
- import { parseUTCDate, formatDuration } from '../utils/date';
- import { MetricToggle, type Metric } from '../components/MetricToggle';
- // Timeframe types and helpers
- type TimeframePreset = 'today' | 'this-week' | 'this-month' | 'last-7' | 'last-30' | 'last-90' | 'this-year' | 'all-time' | 'custom';
- interface TimeframeState {
- preset: TimeframePreset;
- dateFrom: string | undefined; // YYYY-MM-DD
- dateTo: string | undefined; // YYYY-MM-DD
- }
- function computeDateRange(preset: TimeframePreset): { dateFrom?: string; dateTo?: string } {
- const now = new Date();
- const y = now.getUTCFullYear(), m = now.getUTCMonth(), d = now.getUTCDate();
- const fmt = (dt: Date) => dt.toISOString().split('T')[0];
- const todayStr = fmt(now);
- switch (preset) {
- case 'today':
- return { dateFrom: todayStr, dateTo: todayStr };
- case 'this-week': {
- const day = now.getUTCDay();
- const start = new Date(Date.UTC(y, m, d - (day === 0 ? 6 : day - 1)));
- return { dateFrom: fmt(start), dateTo: todayStr };
- }
- case 'this-month':
- return { dateFrom: fmt(new Date(Date.UTC(y, m, 1))), dateTo: todayStr };
- case 'last-7':
- return { dateFrom: fmt(new Date(Date.UTC(y, m, d - 6))), dateTo: todayStr };
- case 'last-30':
- return { dateFrom: fmt(new Date(Date.UTC(y, m, d - 29))), dateTo: todayStr };
- case 'last-90':
- return { dateFrom: fmt(new Date(Date.UTC(y, m, d - 89))), dateTo: todayStr };
- case 'this-year':
- return { dateFrom: fmt(new Date(Date.UTC(y, 0, 1))), dateTo: todayStr };
- case 'all-time':
- return { dateFrom: undefined, dateTo: undefined };
- case 'custom':
- return {};
- }
- }
- const TIMEFRAME_PRESETS: TimeframePreset[] = [
- 'today', 'this-week', 'this-month',
- 'last-7', 'last-30', 'last-90',
- 'this-year', 'all-time',
- ];
- // Constants
- const DAY_LABELS = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'];
- const HOUR_LABELS = [
- '12am', '1am', '2am', '3am', '4am', '5am',
- '6am', '7am', '8am', '9am', '10am', '11am',
- '12pm', '1pm', '2pm', '3pm', '4pm', '5pm',
- '6pm', '7pm', '8pm', '9pm', '10pm', '11pm',
- ];
- const DURATION_BUCKETS = [
- { key: '<30m', max: 1800 },
- { key: '30m-1h', max: 3600 },
- { key: '1-2h', max: 7200 },
- { key: '2-4h', max: 14400 },
- { key: '4-8h', max: 28800 },
- { key: '8-12h', max: 43200 },
- { key: '12-24h', max: 86400 },
- { key: '24h+', max: Infinity },
- ];
- const RECHARTS_TOOLTIP_STYLE = {
- backgroundColor: '#2d2d2d',
- border: '1px solid #3d3d3d',
- borderRadius: '8px',
- };
- // Widget Components
- function QuickStatsWidget({
- stats,
- currency,
- }: {
- stats: {
- total_prints: number;
- successful_prints: number;
- failed_prints: number;
- total_print_time_hours: number;
- total_filament_grams: number;
- total_cost: number;
- total_energy_kwh: number;
- total_energy_cost: number;
- energy_data_warming_up?: boolean;
- } | undefined;
- currency: string;
- }) {
- const { t } = useTranslation();
- const warmingUp = stats?.energy_data_warming_up === true;
- const warmingUpTooltip = warmingUp ? t('stats.energyWarmingUpTooltip') : undefined;
- const items = [
- { icon: Package, color: 'text-bambu-green', label: t('stats.totalPrints'), value: `${stats?.total_prints || 0}` },
- { icon: Clock, color: 'text-blue-400', label: t('stats.printTime'), value: `${stats?.total_print_time_hours?.toFixed(1) ?? '0'}h` },
- { icon: Package, color: 'text-orange-400', label: t('stats.filamentUsed'), value: formatWeight(stats?.total_filament_grams || 0) },
- { icon: DollarSign, color: 'text-green-400', label: t('stats.filamentCost'), value: `${currency} ${stats?.total_cost?.toFixed(2) ?? '0.00'}` },
- {
- icon: Zap,
- color: 'text-yellow-400',
- label: t('stats.energyUsed'),
- value: `${stats?.total_energy_kwh?.toFixed(3) ?? '0.000'} kWh`,
- warning: warmingUp,
- tooltip: warmingUpTooltip,
- },
- {
- icon: DollarSign,
- color: 'text-yellow-500',
- label: t('stats.energyCost'),
- value: `${currency} ${stats?.total_energy_cost?.toFixed(2) ?? '0.00'}`,
- warning: warmingUp,
- tooltip: warmingUpTooltip,
- },
- ];
- return (
- <div className="grid grid-cols-2 sm:grid-cols-3 gap-4">
- {items.map((item) => (
- <div key={item.label} className="flex items-start gap-3" title={item.tooltip}>
- <div className={`p-2 rounded-lg bg-bambu-dark ${item.color}`}>
- <item.icon className="w-5 h-5" />
- </div>
- <div>
- <p className="text-xs text-bambu-gray flex items-center gap-1">
- {item.label}
- {item.warning && <AlertTriangle className="w-3 h-3 text-yellow-400" aria-label={item.tooltip} />}
- </p>
- <p className="text-xl font-bold text-white">{item.value}</p>
- </div>
- </div>
- ))}
- </div>
- );
- }
- function SuccessRateWidget({
- stats,
- printerMap,
- size = 1,
- }: {
- stats: {
- total_prints: number;
- successful_prints: number;
- failed_prints: number;
- prints_by_printer: Record<string, number>;
- } | undefined;
- printerMap: Map<string, string>;
- size?: 1 | 2 | 4;
- }) {
- const { t } = useTranslation();
- const completedAndFailed = (stats?.successful_prints || 0) + (stats?.failed_prints || 0);
- const successRate = completedAndFailed
- ? Math.round((stats!.successful_prints / completedAndFailed) * 100)
- : 0;
- // Scale gauge size based on widget size
- const gaugeSize = size === 1 ? 112 : size === 2 ? 128 : 144;
- const radius = gaugeSize / 2 - 8;
- const circumference = radius * 2 * Math.PI;
- return (
- <div className="flex items-center gap-6">
- <div className="relative flex-shrink-0" style={{ width: gaugeSize, height: gaugeSize }}>
- <svg className="w-full h-full -rotate-90">
- <circle
- cx={gaugeSize / 2}
- cy={gaugeSize / 2}
- r={radius}
- fill="none"
- stroke="#3d3d3d"
- strokeWidth="10"
- />
- <circle
- cx={gaugeSize / 2}
- cy={gaugeSize / 2}
- r={radius}
- fill="none"
- stroke="#00ae42"
- strokeWidth="10"
- strokeLinecap="round"
- strokeDasharray={`${(successRate / 100) * circumference} ${circumference}`}
- />
- </svg>
- <div className="absolute inset-0 flex items-center justify-center">
- <span className={`font-bold text-white ${size >= 2 ? 'text-2xl' : 'text-xl'}`}>{successRate}%</span>
- </div>
- </div>
- <div className="flex-1 min-w-0">
- <div className="space-y-2">
- <div className="flex items-center gap-2">
- <CheckCircle className="w-4 h-4 text-status-ok flex-shrink-0" />
- <span className="text-sm text-bambu-gray">{t('stats.successful')}</span>
- <span className="text-sm text-white font-medium">{stats?.successful_prints || 0}</span>
- </div>
- <div className="flex items-center gap-2">
- <XCircle className="w-4 h-4 text-status-error flex-shrink-0" />
- <span className="text-sm text-bambu-gray">{t('stats.failed')}</span>
- <span className="text-sm text-white font-medium">{stats?.failed_prints || 0}</span>
- </div>
- </div>
- {/* Show per-printer breakdown when expanded */}
- {size >= 2 && stats?.prints_by_printer && Object.keys(stats.prints_by_printer).length > 0 && (
- <div className="mt-4 pt-4 border-t border-bambu-dark-tertiary">
- <p className="text-xs text-bambu-gray font-medium mb-2">{t('stats.printsByPrinter')}</p>
- <div className={`grid gap-x-6 gap-y-1 ${size === 4 ? 'grid-cols-3' : 'grid-cols-2'}`} style={{ width: 'fit-content' }}>
- {Object.entries(stats.prints_by_printer).map(([printerId, count]) => (
- <div key={printerId} className="flex items-center gap-3 text-sm">
- <span className="text-bambu-gray truncate max-w-[120px]">
- {printerMap.get(printerId) || `${t('common.printer')} ${printerId}`}
- </span>
- <span className="text-white font-medium">{count}</span>
- </div>
- ))}
- </div>
- </div>
- )}
- </div>
- </div>
- );
- }
- function TimeAccuracyWidget({
- stats,
- printerMap,
- size = 1,
- }: {
- stats: {
- average_time_accuracy: number | null;
- time_accuracy_by_printer: Record<string, number> | null;
- } | undefined;
- printerMap: Map<string, string>;
- size?: 1 | 2 | 4;
- }) {
- const { t } = useTranslation();
- const accuracy = stats?.average_time_accuracy;
- if (accuracy === null || accuracy === undefined) {
- return (
- <div className="flex items-center justify-center h-full">
- <p className="text-bambu-gray text-center py-4">{t('stats.noTimeAccuracyData')}</p>
- </div>
- );
- }
- // Normalize accuracy for display (100% = perfect, clamp between 50-150 for gauge)
- const displayValue = Math.min(150, Math.max(50, accuracy));
- const normalizedForGauge = ((displayValue - 50) / 100) * 100; // 50-150 -> 0-100
- // Color based on accuracy
- const getColor = (acc: number) => {
- if (acc >= 95 && acc <= 105) return '#00ae42'; // Green - within 5%
- if (acc > 105) return '#3b82f6'; // Blue - faster than expected
- return '#f97316'; // Orange - slower than expected
- };
- const color = getColor(accuracy);
- const deviation = accuracy - 100;
- // Scale gauge size based on widget size
- const gaugeSize = size === 1 ? 112 : size === 2 ? 128 : 144;
- const radius = gaugeSize / 2 - 8;
- const circumference = radius * 2 * Math.PI;
- // Show more printers when expanded
- const maxPrinters = size === 1 ? 3 : size === 2 ? 6 : 999;
- const printerEntries = stats?.time_accuracy_by_printer
- ? Object.entries(stats.time_accuracy_by_printer).slice(0, maxPrinters)
- : [];
- return (
- <div className="flex items-center gap-6">
- <div className="relative flex-shrink-0" style={{ width: gaugeSize, height: gaugeSize }}>
- <svg className="w-full h-full -rotate-90">
- <circle
- cx={gaugeSize / 2}
- cy={gaugeSize / 2}
- r={radius}
- fill="none"
- stroke="#3d3d3d"
- strokeWidth="10"
- />
- <circle
- cx={gaugeSize / 2}
- cy={gaugeSize / 2}
- r={radius}
- fill="none"
- stroke={color}
- strokeWidth="10"
- strokeLinecap="round"
- strokeDasharray={`${(normalizedForGauge / 100) * circumference} ${circumference}`}
- />
- </svg>
- <div className="absolute inset-0 flex flex-col items-center justify-center">
- <span className={`font-bold text-white ${size >= 2 ? 'text-2xl' : 'text-xl'}`}>{accuracy.toFixed(0)}%</span>
- <span className={`text-xs ${deviation >= 0 ? 'text-blue-400' : 'text-orange-400'}`}>
- {deviation >= 0 ? '+' : ''}{deviation.toFixed(0)}%
- </span>
- </div>
- </div>
- <div className="flex-1 min-w-0">
- <div className="flex items-center gap-2 text-xs text-bambu-gray">
- <Target className="w-3 h-3 flex-shrink-0" />
- <span>{t('stats.perfectEstimate')}</span>
- </div>
- {printerEntries.length > 0 && (
- <div className={`mt-2 ${size === 4 ? 'grid grid-cols-3 gap-x-6 gap-y-1' : size === 2 ? 'grid grid-cols-2 gap-x-6 gap-y-1' : 'space-y-1'}`} style={{ width: 'fit-content' }}>
- {printerEntries.map(([printerId, acc]) => (
- <div key={printerId} className="flex items-center gap-2 text-xs">
- <span className="text-bambu-gray truncate max-w-[100px]">
- {printerMap.get(printerId) || `${t('common.printer')} ${printerId}`}
- </span>
- <span className={`font-medium ${
- acc >= 95 && acc <= 105 ? 'text-status-ok' :
- acc > 105 ? 'text-blue-400' : 'text-status-warning'
- }`}>
- {acc.toFixed(0)}%
- </span>
- </div>
- ))}
- </div>
- )}
- </div>
- </div>
- );
- }
- function HourlyHeatmap({ printDates, dateFrom, dateTo }: { printDates: string[]; dateFrom: string; dateTo: string }) {
- const { days, hourlyCounts, maxCount } = useMemo(() => {
- const start = new Date(dateFrom + 'T00:00:00');
- const end = new Date(dateTo + 'T00:00:00');
- const days: { key: string; label: string }[] = [];
- const fmtLocal = (d: Date) =>
- `${d.getFullYear()}-${String(d.getMonth() + 1).padStart(2, '0')}-${String(d.getDate()).padStart(2, '0')}`;
- const current = new Date(start);
- while (current <= end) {
- days.push({
- key: fmtLocal(current),
- label: current.toLocaleDateString(undefined, { weekday: 'short', month: 'short', day: 'numeric' }),
- });
- current.setDate(current.getDate() + 1);
- }
- // Count prints per (day, hour)
- const counts: Record<string, number> = {};
- let max = 0;
- printDates.forEach(d => {
- const date = parseUTCDate(d);
- if (!date) return;
- const dayKey = `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}`;
- const k = `${dayKey}-${date.getHours()}`;
- counts[k] = (counts[k] || 0) + 1;
- if (counts[k] > max) max = counts[k];
- });
- return { days, hourlyCounts: counts, maxCount: Math.max(1, max) };
- }, [printDates, dateFrom, dateTo]);
- const getColor = (count: number) => {
- if (count === 0) return 'bg-bambu-dark';
- const intensity = count / maxCount;
- if (intensity <= 0.25) return 'bg-bambu-green/30';
- if (intensity <= 0.5) return 'bg-bambu-green/50';
- if (intensity <= 0.75) return 'bg-bambu-green/75';
- return 'bg-bambu-green';
- };
- const cellSize = 20;
- const gap = 2;
- const dayLabelWidth = 80;
- return (
- <div className="w-full overflow-x-auto">
- <div className="inline-flex flex-col" style={{ gap }}>
- {/* Hour labels row */}
- <div className="flex" style={{ gap, marginLeft: dayLabelWidth + 4 }}>
- {HOUR_LABELS.map((label, i) => (
- <div
- key={i}
- className="text-bambu-gray text-[10px] text-center"
- style={{ width: cellSize, visibility: i % 2 === 0 ? 'visible' : 'hidden' }}
- >
- {label}
- </div>
- ))}
- </div>
- {/* Day rows */}
- {days.map(day => (
- <div key={day.key} className="flex items-center" style={{ gap }}>
- <div
- className="text-bambu-gray text-[10px] flex-shrink-0 truncate"
- style={{ width: dayLabelWidth }}
- >
- {day.label}
- </div>
- {Array.from({ length: 24 }, (_, hour) => {
- const count = hourlyCounts[`${day.key}-${hour}`] || 0;
- return (
- <div
- key={hour}
- className={`rounded-sm ${getColor(count)}`}
- style={{ width: cellSize, height: cellSize }}
- title={`${day.label} ${HOUR_LABELS[hour]}: ${count} print${count !== 1 ? 's' : ''}`}
- />
- );
- })}
- </div>
- ))}
- </div>
- {/* Legend */}
- <div className="flex items-center gap-2 mt-3 text-bambu-gray text-xs">
- <span>Less</span>
- <div className="flex" style={{ gap }}>
- <div className="rounded-sm bg-bambu-dark" style={{ width: cellSize, height: cellSize }} />
- <div className="rounded-sm bg-bambu-green/30" style={{ width: cellSize, height: cellSize }} />
- <div className="rounded-sm bg-bambu-green/50" style={{ width: cellSize, height: cellSize }} />
- <div className="rounded-sm bg-bambu-green/75" style={{ width: cellSize, height: cellSize }} />
- <div className="rounded-sm bg-bambu-green" style={{ width: cellSize, height: cellSize }} />
- </div>
- <span>More</span>
- </div>
- </div>
- );
- }
- function PrintActivityWidget({
- printDates,
- size = 2,
- dateFrom,
- dateTo,
- }: {
- printDates: string[];
- size?: 1 | 2 | 4;
- dateFrom?: string;
- dateTo?: string;
- }) {
- const spanDays = useMemo(() => {
- if (dateFrom && dateTo) {
- return Math.max((new Date(dateTo).getTime() - new Date(dateFrom).getTime()) / 86400000, 0) + 1;
- }
- if (dateFrom) {
- return Math.max((Date.now() - new Date(dateFrom).getTime()) / 86400000, 0) + 1;
- }
- return Infinity;
- }, [dateFrom, dateTo]);
- if (spanDays <= 7 && dateFrom && dateTo) {
- return <HourlyHeatmap printDates={printDates} dateFrom={dateFrom} dateTo={dateTo} />;
- }
- // Calculate months from the timeframe span, fall back to size-based default for all-time
- const sizeDefault = size === 1 ? 3 : size === 2 ? 6 : 12;
- const months = spanDays === Infinity
- ? sizeDefault
- : Math.max(1, Math.ceil(spanDays / 30));
- return <PrintCalendar printDates={printDates} months={months} />;
- }
- function PrinterStatsWidget({
- stats,
- archives,
- printerMap,
- }: {
- stats: { prints_by_printer: Record<string, number> } | undefined;
- archives: ArchiveSlim[];
- printerMap: Map<string, string>;
- }) {
- const { t } = useTranslation();
- const [printerMetric, setPrinterMetric] = useState<Metric>('weight');
- const [habitsMetric, setHabitsMetric] = useState<Metric>('weight');
- // Per-printer data
- const printerData = useMemo(() => {
- const map = new Map<string, { prints: number; weight: number; time: number }>();
- if (stats?.prints_by_printer) {
- Object.entries(stats.prints_by_printer).forEach(([id, count]) => {
- const entry = map.get(id) || { prints: 0, weight: 0, time: 0 };
- entry.prints = count;
- map.set(id, entry);
- });
- }
- archives.forEach(a => {
- if (!a.printer_id) return;
- const id = String(a.printer_id);
- const entry = map.get(id) || { prints: 0, weight: 0, time: 0 };
- entry.weight += a.filament_used_grams || 0;
- entry.time += a.actual_time_seconds || a.print_time_seconds || 0;
- if (!stats?.prints_by_printer) entry.prints++;
- map.set(id, entry);
- });
- return Array.from(map.entries())
- .map(([id, v]) => ({
- name: printerMap.get(id) || `${t('common.printer')} ${id}`,
- value: printerMetric === 'prints' ? v.prints :
- printerMetric === 'weight' ? Math.round(v.weight) :
- Math.round((v.time / 3600) * 10) / 10,
- }))
- .sort((a, b) => b.value - a.value);
- }, [stats, archives, printerMap, printerMetric, t]);
- // Hourly distribution (time of day)
- const hourlyData = useMemo(() => {
- const hours = Array.from({ length: 24 }, (_, i) => ({
- hour: i,
- label: HOUR_LABELS[i],
- total: 0,
- failures: 0,
- }));
- archives.forEach(a => {
- if (!a.started_at) return;
- const date = parseUTCDate(a.started_at);
- if (!date) return;
- const h = date.getHours();
- hours[h].total++;
- if (a.status === 'failed') {
- hours[h].failures++;
- }
- });
- return hours;
- }, [archives]);
- // Duration distribution
- const durationData = useMemo(() => {
- const counts = DURATION_BUCKETS.map(b => ({ name: b.key, count: 0 }));
- archives.forEach(a => {
- const seconds = a.actual_time_seconds || a.print_time_seconds;
- if (!seconds || seconds <= 0) return;
- for (let i = 0; i < DURATION_BUCKETS.length; i++) {
- if (seconds <= DURATION_BUCKETS[i].max) {
- counts[i].count++;
- break;
- }
- }
- });
- return counts;
- }, [archives]);
- // Habits (avg per day-of-week)
- const habitsData = useMemo(() => {
- const dayValues = [0, 0, 0, 0, 0, 0, 0];
- const weeksSet = new Set<string>();
- archives.forEach(a => {
- const date = parseUTCDate(a.created_at) || new Date(a.created_at);
- let day = date.getDay() - 1;
- if (day < 0) day = 6;
- if (habitsMetric === 'prints') dayValues[day]++;
- else if (habitsMetric === 'weight') dayValues[day] += a.filament_used_grams || 0;
- else dayValues[day] += (a.actual_time_seconds || a.print_time_seconds || 0) / 3600;
- const weekStart = new Date(date);
- weekStart.setDate(date.getDate() - ((date.getDay() + 6) % 7));
- weeksSet.add(`${weekStart.getFullYear()}-${String(weekStart.getMonth() + 1).padStart(2, '0')}-${String(weekStart.getDate()).padStart(2, '0')}`);
- });
- const numWeeks = Math.max(weeksSet.size, 1);
- return DAY_LABELS.map((name, i) => ({
- name,
- avg: Math.round((dayValues[i] / numWeeks) * 10) / 10,
- }));
- }, [archives, habitsMetric]);
- const metricStyle = (m: Metric) => ({
- unit: m === 'weight' ? 'g' : m === 'time' ? 'h' : '',
- color: m === 'weight' ? '#00ae42' : m === 'time' ? '#3b82f6' : '#f59e0b',
- });
- const ps = metricStyle(printerMetric);
- const pLabel = printerMetric === 'weight' ? t('stats.filamentByWeight') : printerMetric === 'time' ? t('stats.hours') : t('common.prints');
- const hs = metricStyle(habitsMetric);
- const hLabel = habitsMetric === 'weight' ? t('stats.avgWeight') : habitsMetric === 'time' ? t('stats.avgTime') : t('stats.avgPrints');
- return (
- <div className="space-y-4">
- {/* By Printer */}
- <div className="bg-bambu-dark rounded-lg p-4">
- <div className="flex items-center justify-between mb-3">
- <h4 className="text-sm font-medium text-bambu-gray">{t('stats.printsByPrinter')}</h4>
- <MetricToggle value={printerMetric} onChange={setPrinterMetric} />
- </div>
- {printerData.length > 0 ? (
- <ResponsiveContainer width="100%" height={Math.max(140, printerData.length * 40)}>
- <BarChart data={printerData} layout="vertical" margin={{ left: 10 }}>
- <CartesianGrid strokeDasharray="3 3" stroke="#3d3d3d" />
- <XAxis type="number" stroke="#9ca3af" tick={{ fontSize: 11 }} unit={ps.unit} />
- <YAxis type="category" dataKey="name" stroke="#9ca3af" tick={{ fontSize: 11 }} width={100} />
- <Tooltip
- contentStyle={RECHARTS_TOOLTIP_STYLE}
- formatter={(v: number | undefined) => [
- printerMetric === 'weight' ? formatWeight(Number(v ?? 0)) : `${v ?? 0}${ps.unit}`,
- pLabel,
- ]}
- />
- <Bar dataKey="value" fill={ps.color} radius={[0, 4, 4, 0]} />
- </BarChart>
- </ResponsiveContainer>
- ) : (
- <p className="text-bambu-gray text-center py-4">{t('stats.noPrinterData')}</p>
- )}
- </div>
- <div className="grid grid-cols-1 lg:grid-cols-3 gap-4">
- {/* Print Duration */}
- <div className="bg-bambu-dark rounded-lg p-4">
- <h4 className="text-sm font-medium text-bambu-gray mb-3">{t('stats.printDuration')}</h4>
- {archives.length > 0 ? (
- <ResponsiveContainer width="100%" height={160}>
- <BarChart data={durationData}>
- <CartesianGrid strokeDasharray="3 3" stroke="#3d3d3d" />
- <XAxis dataKey="name" stroke="#9ca3af" tick={{ fontSize: 11 }} />
- <YAxis stroke="#9ca3af" tick={{ fontSize: 11 }} allowDecimals={false} />
- <Tooltip contentStyle={RECHARTS_TOOLTIP_STYLE} />
- <Bar dataKey="count" name={t('common.prints')} fill="#00ae42" radius={[4, 4, 0, 0]} />
- </BarChart>
- </ResponsiveContainer>
- ) : (
- <p className="text-bambu-gray text-center py-4">{t('stats.noArchiveData')}</p>
- )}
- </div>
- {/* Print Habits */}
- <div className="bg-bambu-dark rounded-lg p-4">
- <div className="flex items-center justify-between mb-3">
- <h4 className="text-sm font-medium text-bambu-gray">{t('stats.printHabits')}</h4>
- <MetricToggle value={habitsMetric} onChange={setHabitsMetric} />
- </div>
- {archives.length > 0 ? (
- <ResponsiveContainer width="100%" height={160}>
- <BarChart data={habitsData}>
- <CartesianGrid strokeDasharray="3 3" stroke="#3d3d3d" />
- <XAxis dataKey="name" stroke="#9ca3af" tick={{ fontSize: 11 }} />
- <YAxis stroke="#9ca3af" tick={{ fontSize: 11 }} unit={hs.unit} />
- <Tooltip contentStyle={RECHARTS_TOOLTIP_STYLE} formatter={(v: number | undefined) => [`${v ?? 0}${hs.unit}`, hLabel]} />
- <Bar dataKey="avg" fill={hs.color} radius={[4, 4, 0, 0]} />
- </BarChart>
- </ResponsiveContainer>
- ) : (
- <p className="text-bambu-gray text-center py-4">{t('stats.noArchiveData')}</p>
- )}
- </div>
- {/* Print Time of Day */}
- <div className="bg-bambu-dark rounded-lg p-4">
- <h4 className="text-sm font-medium text-bambu-gray mb-3">{t('stats.printTimeOfDay')}</h4>
- {archives.length > 0 ? (
- <ResponsiveContainer width="100%" height={160}>
- <BarChart data={hourlyData}>
- <CartesianGrid strokeDasharray="3 3" stroke="#3d3d3d" />
- <XAxis dataKey="label" stroke="#9ca3af" tick={{ fontSize: 10 }} interval={5} />
- <YAxis stroke="#9ca3af" tick={{ fontSize: 11 }} allowDecimals={false} />
- <Tooltip contentStyle={RECHARTS_TOOLTIP_STYLE} />
- <Bar dataKey="total" name={t('stats.totalPrints')} fill="#00ae42" radius={[2, 2, 0, 0]} />
- <Bar dataKey="failures" name={t('stats.failed')} fill="#ef4444" radius={[2, 2, 0, 0]} />
- </BarChart>
- </ResponsiveContainer>
- ) : (
- <p className="text-bambu-gray text-center py-4">{t('stats.noArchiveData')}</p>
- )}
- </div>
- </div>
- </div>
- );
- }
- function FilamentTrendsWidget({
- archives,
- currency,
- dateFrom,
- dateTo,
- }: {
- archives: Parameters<typeof FilamentTrends>[0]['archives'];
- currency: string;
- dateFrom?: string;
- dateTo?: string;
- }) {
- const { t } = useTranslation();
- if (!archives || archives.length === 0) {
- return <p className="text-bambu-gray text-center py-4">{t('stats.noPrintData')}</p>;
- }
- return <FilamentTrends archives={archives} currency={currency} dateFrom={dateFrom} dateTo={dateTo} />;
- }
- function FailureAnalysisWidget({ size = 1, dateFrom, dateTo, createdById }: {
- size?: 1 | 2 | 4;
- dateFrom?: string;
- dateTo?: string;
- createdById?: number;
- }) {
- const { t } = useTranslation();
- const hasDateRange = !!(dateFrom || dateTo);
- const { data: analysis, isLoading } = useQuery({
- queryKey: ['failureAnalysis', dateFrom, dateTo, createdById ?? 'all'],
- queryFn: () => api.getFailureAnalysis({
- ...(hasDateRange ? { dateFrom, dateTo } : { days: 30 }),
- createdById,
- }),
- });
- if (isLoading) {
- return (
- <div className="flex justify-center py-4">
- <Loader2 className="w-6 h-6 text-bambu-green animate-spin" />
- </div>
- );
- }
- if (!analysis || analysis.total_prints === 0) {
- return <p className="text-bambu-gray text-center py-4">{hasDateRange ? t('stats.noPrintDataInRange') : t('stats.noPrintDataLast30Days')}</p>;
- }
- // Show more reasons when expanded
- const maxReasons = size === 1 ? 5 : size === 2 ? 8 : 999;
- const allReasons = Object.entries(analysis.failures_by_reason).sort(([, a], [, b]) => b - a);
- const topReasons = allReasons.slice(0, maxReasons);
- const hasMore = allReasons.length > maxReasons;
- return (
- <div className={`${size >= 2 ? 'flex gap-8' : 'space-y-4'}`}>
- {/* Summary */}
- <div className={size >= 2 ? 'flex-shrink-0' : ''}>
- <div className="flex items-center gap-4">
- <div className="flex items-center gap-2">
- <AlertTriangle className={`w-5 h-5 ${analysis.failure_rate > 20 ? 'text-status-error' : analysis.failure_rate > 10 ? 'text-status-warning' : 'text-status-ok'}`} />
- <span className={`font-bold text-white ${size >= 2 ? 'text-3xl' : 'text-2xl'}`}>{analysis.failure_rate.toFixed(1)}%</span>
- </div>
- </div>
- <div className="text-sm text-bambu-gray mt-1">
- {t('stats.failedPrintsCount', { failed: analysis.failed_prints, total: analysis.total_prints })}
- </div>
- {/* Trend indicator */}
- {analysis.trend && analysis.trend.length >= 2 && (
- <div className={`${size >= 2 ? 'mt-4' : 'mt-2 pt-2 border-t border-bambu-dark-tertiary'}`}>
- <div className="flex items-center gap-2 text-sm">
- <TrendingDown className={`w-4 h-4 ${
- analysis.trend[analysis.trend.length - 1].failure_rate < analysis.trend[analysis.trend.length - 2].failure_rate
- ? 'text-status-ok'
- : 'text-status-error'
- }`} />
- <span className="text-bambu-gray">
- {t('stats.lastWeekRate', { rate: analysis.trend[analysis.trend.length - 1].failure_rate.toFixed(1) })}
- </span>
- </div>
- </div>
- )}
- </div>
- {/* Failure Reasons */}
- {topReasons.length > 0 && (
- <div className={`flex-1 ${size >= 2 ? 'border-l border-bambu-dark-tertiary pl-8' : 'pt-2'}`}>
- <p className="text-xs text-bambu-gray font-medium mb-2">
- {size >= 2 ? t('stats.failureReasons') : t('stats.topFailureReasons')}
- </p>
- <div className={`${size === 4 ? 'grid grid-cols-2 gap-x-6 gap-y-1' : 'space-y-1'}`}>
- {topReasons.map(([reason, count]) => (
- <div key={reason} className="flex items-center justify-between text-sm">
- <span className={`text-white truncate ${size === 4 ? 'max-w-[200px]' : 'max-w-[160px]'}`}>
- {reason || t('common.unknown')}
- </span>
- <span className="text-bambu-gray ml-2">{count}</span>
- </div>
- ))}
- </div>
- {hasMore && (
- <p className="text-xs text-bambu-gray mt-2">
- {t('common.more', { count: allReasons.length - maxReasons })}
- </p>
- )}
- </div>
- )}
- </div>
- );
- }
- function RecordsWidget({ archives, currency }: { archives: ArchiveSlim[]; currency: string }) {
- const { t } = useTranslation();
- const records = useMemo(() => {
- const result: Array<{
- icon: typeof Clock;
- iconColor: string;
- label: string;
- value: string;
- detail: string | null;
- }> = [];
- if (archives.length === 0) return result;
- // Find the archive with the highest value for a given field
- const findMax = (getter: (a: ArchiveSlim) => number | null | undefined): { archive: ArchiveSlim | null; value: number } => {
- let best: ArchiveSlim | null = null;
- let bestVal = 0;
- archives.forEach(a => {
- const v = getter(a);
- if (v && v > bestVal) { bestVal = v; best = a; }
- });
- return { archive: best, value: bestVal };
- };
- const longest = findMax(a => a.actual_time_seconds);
- if (longest.archive) {
- result.push({
- icon: Clock, iconColor: 'text-blue-400', label: t('stats.longestPrint'),
- value: formatDuration(longest.value),
- detail: longest.archive.print_name || null,
- });
- }
- const heaviest = findMax(a => a.filament_used_grams);
- if (heaviest.archive) {
- result.push({
- icon: Package, iconColor: 'text-orange-400', label: t('stats.heaviestPrint'),
- value: formatWeight(heaviest.value),
- detail: heaviest.archive.print_name || null,
- });
- }
- const costliest = findMax(a => a.cost);
- if (costliest.archive) {
- result.push({
- icon: DollarSign, iconColor: 'text-green-400', label: t('stats.mostExpensivePrint'),
- value: `${currency}${costliest.value.toFixed(2)}`,
- detail: costliest.archive.print_name || null,
- });
- }
- // Busiest day
- const dayCounts = new Map<string, number>();
- archives.forEach(a => {
- const date = parseUTCDate(a.created_at) || new Date(a.created_at);
- const key = `${date.getFullYear()}-${String(date.getMonth() + 1).padStart(2, '0')}-${String(date.getDate()).padStart(2, '0')}`;
- dayCounts.set(key, (dayCounts.get(key) || 0) + 1);
- });
- let busiestDay = '';
- let busiestCount = 0;
- dayCounts.forEach((count, day) => {
- if (count > busiestCount) {
- busiestCount = count;
- busiestDay = day;
- }
- });
- if (busiestCount > 1) {
- result.push({
- icon: Calendar,
- iconColor: 'text-purple-400',
- label: t('stats.busiestDay'),
- value: `${busiestCount} ${t('common.prints')}`,
- detail: (() => { const [y, m, d] = busiestDay.split('-').map(Number); return new Date(y, m - 1, d).toLocaleDateString(undefined, { month: 'short', day: 'numeric', year: 'numeric' }); })(),
- });
- }
- // Success streak
- const sorted = [...archives]
- .filter(a => a.status === 'completed' || a.status === 'failed')
- .sort((a, b) => new Date(b.completed_at || b.created_at).getTime() - new Date(a.completed_at || a.created_at).getTime());
- let streak = 0;
- for (const a of sorted) {
- if (a.status === 'completed') streak++;
- else break;
- }
- if (streak > 0) {
- result.push({
- icon: Zap,
- iconColor: 'text-yellow-400',
- label: t('stats.successStreak'),
- value: `${streak}`,
- detail: streak === 1 ? t('stats.streakPrint') : t('stats.streakPrints', { count: streak }),
- });
- }
- return result;
- }, [archives, currency, t]);
- if (records.length === 0) {
- return <p className="text-bambu-gray text-center py-4">{t('stats.noArchiveData')}</p>;
- }
- return (
- <div className="space-y-3">
- {records.map((record, i) => (
- <div key={i} className="flex items-center gap-3">
- <div className={`p-1.5 rounded-lg bg-bambu-dark ${record.iconColor}`}>
- <record.icon className="w-4 h-4" />
- </div>
- <div className="flex-1 min-w-0">
- <p className="text-xs text-bambu-gray">{record.label}</p>
- <div className="flex items-baseline gap-2">
- <span className="text-sm font-bold text-white">{record.value}</span>
- {record.detail && (
- <span className="text-xs text-bambu-gray truncate">{record.detail}</span>
- )}
- </div>
- </div>
- </div>
- ))}
- </div>
- );
- }
- export function StatsPage() {
- const { t } = useTranslation();
- const { showToast } = useToast();
- const { hasPermission, authEnabled } = useAuth();
- const [isExporting, setIsExporting] = useState(false);
- const [showExportMenu, setShowExportMenu] = useState(false);
- const [dashboardKey, setDashboardKey] = useState(0);
- const [hiddenCount, setHiddenCount] = useState(0);
- const [isRecalculating, setIsRecalculating] = useState(false);
- const [selectedUserId, setSelectedUserId] = useState<number | null>(null);
- const [showUserPicker, setShowUserPicker] = useState(false);
- const canFilterByUser = authEnabled && hasPermission('stats:filter_by_user');
- const [timeframe, setTimeframe] = useState<TimeframeState>(() => {
- try {
- const saved = localStorage.getItem('bambusy-stats-timeframe');
- if (saved) {
- const parsed = JSON.parse(saved);
- if (parsed.preset) return parsed;
- }
- } catch { /* ignore */ }
- return { preset: 'all-time', dateFrom: undefined, dateTo: undefined };
- });
- const [showTimeframePicker, setShowTimeframePicker] = useState(false);
- // Persist timeframe selection
- useEffect(() => {
- localStorage.setItem('bambusy-stats-timeframe', JSON.stringify(timeframe));
- }, [timeframe]);
- const effectiveDateRange = useMemo(() => {
- if (timeframe.preset === 'custom') {
- return { dateFrom: timeframe.dateFrom, dateTo: timeframe.dateTo };
- }
- return computeDateRange(timeframe.preset);
- }, [timeframe]);
- // Read hidden count from localStorage
- useEffect(() => {
- const updateHiddenCount = () => {
- try {
- const saved = localStorage.getItem('bambusy-dashboard-layout-v2');
- if (saved) {
- const layout = JSON.parse(saved);
- setHiddenCount(layout.hidden?.length || 0);
- }
- } catch {
- setHiddenCount(0);
- }
- };
- updateHiddenCount();
- // Listen for storage changes
- window.addEventListener('storage', updateHiddenCount);
- // Also poll for changes (since storage event doesn't fire for same-tab changes)
- const interval = setInterval(updateHiddenCount, 2000);
- return () => {
- window.removeEventListener('storage', updateHiddenCount);
- clearInterval(interval);
- };
- }, [dashboardKey]);
- // Only pass createdById when a user is actually selected (not "All Users")
- const createdByIdParam = selectedUserId !== null ? selectedUserId : undefined;
- const { data: stats, isLoading, isFetching: isStatsFetching, refetch: refetchStats } = useQuery({
- queryKey: ['archiveStats', effectiveDateRange.dateFrom, effectiveDateRange.dateTo, createdByIdParam ?? 'all'],
- queryFn: () => api.getArchiveStats({
- dateFrom: effectiveDateRange.dateFrom,
- dateTo: effectiveDateRange.dateTo,
- createdById: createdByIdParam,
- }),
- });
- const { data: printers } = useQuery({
- queryKey: ['printers'],
- queryFn: api.getPrinters,
- });
- const { data: archives, isFetching: isArchivesFetching, refetch: refetchArchives } = useQuery({
- queryKey: ['archivesSlim', effectiveDateRange.dateFrom, effectiveDateRange.dateTo, createdByIdParam ?? 'all'],
- queryFn: () => api.getArchivesSlim(effectiveDateRange.dateFrom, effectiveDateRange.dateTo, createdByIdParam),
- });
- const { data: settings } = useQuery({
- queryKey: ['settings'],
- queryFn: api.getSettings,
- });
- const { data: users } = useQuery({
- queryKey: ['users'],
- queryFn: api.getUsers,
- enabled: canFilterByUser,
- });
- const selectedUserLabel = useMemo(() => {
- if (selectedUserId === null) return t('stats.allUsers', 'All Users');
- if (selectedUserId === -1) return t('stats.noUser', 'No User (System)');
- return users?.find(u => u.id === selectedUserId)?.username ?? '?';
- }, [selectedUserId, users, t]);
- const handleExport = async (format: 'csv' | 'xlsx') => {
- setShowExportMenu(false);
- setIsExporting(true);
- try {
- const { blob, filename } = await api.exportStats({ format, days: 90, createdById: createdByIdParam });
- const url = URL.createObjectURL(blob);
- const a = document.createElement('a');
- a.href = url;
- a.download = filename;
- a.click();
- URL.revokeObjectURL(url);
- showToast(t('stats.exportDownloaded'));
- } catch {
- showToast(t('stats.exportFailed'), 'error');
- } finally {
- setIsExporting(false);
- }
- };
- const handleRecalculateCosts = async () => {
- setIsRecalculating(true);
- try {
- const result = await api.recalculateCosts();
- await Promise.all([refetchStats(), refetchArchives()]);
- showToast(t('stats.recalculatedCosts', { count: result.updated }));
- } catch {
- showToast(t('stats.recalculateFailed'), 'error');
- } finally {
- setIsRecalculating(false);
- }
- };
- const isRefetching = (isStatsFetching || isArchivesFetching) && !isLoading;
- const currency = getCurrencySymbol(settings?.currency || 'USD');
- const printerMap = new Map(printers?.map((p) => [String(p.id), p.name]) || []);
- const printDates = useMemo(() => archives?.map((a) => a.created_at) || [], [archives]);
- if (isLoading) {
- return (
- <div className="p-4 md:p-8">
- <div className="text-center py-12 text-bambu-gray">{t('stats.loadingStats')}</div>
- </div>
- );
- }
- // Define dashboard widgets
- // Sizes: 1 = quarter (1/4), 2 = half (1/2), 4 = full width
- // Widgets can use render functions to receive the current size for responsive content
- const widgets: DashboardWidget[] = [
- {
- id: 'quick-stats',
- title: t('stats.quickStats'),
- component: <QuickStatsWidget stats={stats} currency={currency} />,
- defaultSize: 2,
- },
- {
- id: 'success-rate',
- title: t('stats.successRate'),
- component: (size) => <SuccessRateWidget stats={stats} printerMap={printerMap} size={size} />,
- defaultSize: 1,
- },
- {
- id: 'time-accuracy',
- title: t('stats.timeAccuracy'),
- component: (size) => <TimeAccuracyWidget stats={stats} printerMap={printerMap} size={size} />,
- defaultSize: 1,
- },
- {
- id: 'failure-analysis',
- title: t('stats.failureAnalysis'),
- component: (size) => <FailureAnalysisWidget size={size} dateFrom={effectiveDateRange.dateFrom} dateTo={effectiveDateRange.dateTo} createdById={createdByIdParam} />,
- defaultSize: 1,
- },
- {
- id: 'print-activity',
- title: t('stats.printActivity'),
- component: (size) => <PrintActivityWidget printDates={printDates} size={size} dateFrom={effectiveDateRange.dateFrom} dateTo={effectiveDateRange.dateTo} />,
- defaultSize: 2,
- },
- {
- id: 'records',
- title: t('stats.records'),
- component: <RecordsWidget archives={archives || []} currency={currency} />,
- defaultSize: 1,
- },
- {
- id: 'printer-stats',
- title: t('stats.printerStats'),
- component: <PrinterStatsWidget stats={stats} archives={archives || []} printerMap={printerMap} />,
- defaultSize: 4,
- },
- {
- id: 'filament-trends',
- title: t('stats.filamentTrends'),
- component: <FilamentTrendsWidget archives={archives || []} currency={currency} dateFrom={effectiveDateRange.dateFrom} dateTo={effectiveDateRange.dateTo} />,
- defaultSize: 4,
- },
- ];
- return (
- <div className="p-4 md:p-8">
- <div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4 mb-6">
- <div>
- <div className="flex items-center gap-2">
- <h1 className="text-2xl font-bold text-white flex items-center gap-3">
- <BarChart3 className="w-7 h-7 text-bambu-green" />
- {t('stats.title')}
- </h1>
- {isRefetching && <Loader2 className="w-5 h-5 text-bambu-green animate-spin" />}
- </div>
- <p className="text-bambu-gray mt-1">{t('stats.subtitle')}</p>
- </div>
- <div className="flex items-center gap-2 flex-wrap">
- {/* Hidden widgets button - toggles panel in Dashboard */}
- {hiddenCount > 0 && (
- <Button
- variant="secondary"
- onClick={() => {
- // Toggle the hidden panel in Dashboard by triggering a custom event
- window.dispatchEvent(new CustomEvent('toggle-hidden-panel'));
- }}
- >
- <Eye className="w-4 h-4" />
- {t('stats.hiddenCount', { count: hiddenCount })}
- </Button>
- )}
- {/* Reset Layout */}
- <Button
- variant="secondary"
- onClick={() => {
- localStorage.removeItem('bambusy-dashboard-layout-v2');
- setDashboardKey(prev => prev + 1);
- showToast(t('stats.layoutReset'));
- }}
- disabled={!hasPermission('settings:update')}
- title={!hasPermission('settings:update') ? t('stats.noPermissionResetLayout') : undefined}
- >
- <RotateCcw className="w-4 h-4" />
- {t('stats.resetLayout')}
- </Button>
- {/* Recalculate Costs */}
- <Button
- variant="secondary"
- onClick={handleRecalculateCosts}
- disabled={isRecalculating || !hasPermission('archives:update_all')}
- title={!hasPermission('archives:update_all') ? t('stats.noPermissionRecalculate') : t('stats.recalculateCostsHint')}
- >
- {isRecalculating ? (
- <Loader2 className="w-4 h-4 animate-spin" />
- ) : (
- <Calculator className="w-4 h-4" />
- )}
- {t('stats.recalculateCosts')}
- </Button>
- {/* Export dropdown */}
- <div className="relative">
- <Button
- variant="secondary"
- onClick={() => setShowExportMenu(!showExportMenu)}
- disabled={isExporting}
- >
- {isExporting ? (
- <Loader2 className="w-4 h-4 animate-spin" />
- ) : (
- <FileSpreadsheet className="w-4 h-4" />
- )}
- {t('stats.exportStats')}
- </Button>
- {showExportMenu && (
- <div className="absolute right-0 top-full mt-1 w-48 bg-bambu-dark-secondary border border-bambu-dark-tertiary rounded-lg shadow-xl z-20">
- <button
- className="w-full px-4 py-2 text-left text-white hover:bg-bambu-dark-tertiary transition-colors flex items-center gap-2 rounded-t-lg"
- onClick={() => handleExport('csv')}
- >
- <FileText className="w-4 h-4" />
- {t('stats.exportAsCsv')}
- </button>
- <button
- className="w-full px-4 py-2 text-left text-white hover:bg-bambu-dark-tertiary transition-colors flex items-center gap-2 rounded-b-lg"
- onClick={() => handleExport('xlsx')}
- >
- <FileSpreadsheet className="w-4 h-4" />
- {t('stats.exportAsExcel')}
- </button>
- </div>
- )}
- </div>
- {/* User Filter */}
- {canFilterByUser && users && users.length > 0 && (
- <div className="relative">
- <Button
- variant="secondary"
- onClick={() => setShowUserPicker(!showUserPicker)}
- >
- <Users className="w-4 h-4" />
- {selectedUserLabel}
- <ChevronDown className="w-3 h-3" />
- </Button>
- {showUserPicker && (
- <>
- <div
- className="fixed inset-0 z-10"
- onClick={() => setShowUserPicker(false)}
- />
- <div className="absolute right-0 top-full mt-1 w-48 bg-bambu-dark-secondary border border-bambu-dark-tertiary rounded-lg shadow-xl z-20 p-2 max-h-64 overflow-y-auto">
- <button
- className={`w-full px-3 py-2 text-left text-sm rounded-md transition-colors ${
- selectedUserId === null
- ? 'bg-bambu-green text-white'
- : 'text-white hover:bg-bambu-dark-tertiary'
- }`}
- onClick={() => { setSelectedUserId(null); setShowUserPicker(false); }}
- >
- {t('stats.allUsers', 'All Users')}
- </button>
- <button
- className={`w-full px-3 py-2 text-left text-sm rounded-md transition-colors ${
- selectedUserId === -1
- ? 'bg-bambu-green text-white'
- : 'text-white hover:bg-bambu-dark-tertiary'
- }`}
- onClick={() => { setSelectedUserId(-1); setShowUserPicker(false); }}
- >
- {t('stats.noUser', 'No User (System)')}
- </button>
- <div className="border-t border-bambu-dark-tertiary my-1" />
- {users.map(u => (
- <button
- key={u.id}
- className={`w-full px-3 py-2 text-left text-sm rounded-md transition-colors ${
- selectedUserId === u.id
- ? 'bg-bambu-green text-white'
- : 'text-white hover:bg-bambu-dark-tertiary'
- }`}
- onClick={() => { setSelectedUserId(u.id); setShowUserPicker(false); }}
- >
- {u.username}
- </button>
- ))}
- </div>
- </>
- )}
- </div>
- )}
- {/* Timeframe Selector */}
- <div className="relative">
- <Button
- variant="secondary"
- onClick={() => setShowTimeframePicker(!showTimeframePicker)}
- >
- <Calendar className="w-4 h-4" />
- {t(`stats.timeframe.${timeframe.preset}`)}
- <ChevronDown className="w-3 h-3" />
- </Button>
- {showTimeframePicker && (
- <>
- <div
- className="fixed inset-0 z-10"
- onClick={() => setShowTimeframePicker(false)}
- />
- <div className="absolute right-0 top-full mt-1 w-64 bg-bambu-dark-secondary border border-bambu-dark-tertiary rounded-lg shadow-xl z-20 p-2">
- {TIMEFRAME_PRESETS.map((preset) => (
- <button
- key={preset}
- className={`w-full px-3 py-2 text-left text-sm rounded-md transition-colors ${
- timeframe.preset === preset
- ? 'bg-bambu-green text-white'
- : 'text-white hover:bg-bambu-dark-tertiary'
- }`}
- onClick={() => {
- setTimeframe({ preset, dateFrom: undefined, dateTo: undefined });
- setShowTimeframePicker(false);
- }}
- >
- {t(`stats.timeframe.${preset}`)}
- </button>
- ))}
- <div className="border-t border-bambu-dark-tertiary my-2" />
- <button
- className={`w-full px-3 py-2 text-left text-sm rounded-md transition-colors ${
- timeframe.preset === 'custom'
- ? 'bg-bambu-green text-white'
- : 'text-white hover:bg-bambu-dark-tertiary'
- }`}
- onClick={() => setTimeframe(prev => ({ ...prev, preset: 'custom' }))}
- >
- {t('stats.timeframe.custom')}
- </button>
- {timeframe.preset === 'custom' && (
- <div className="mt-2 px-1 pb-1 space-y-2">
- <div>
- <label className="text-xs text-bambu-gray block mb-1">{t('stats.timeframe.from')}</label>
- <input
- type="date"
- value={timeframe.dateFrom || ''}
- max={timeframe.dateTo || new Date().toISOString().split('T')[0]}
- onChange={(e) => setTimeframe(prev => ({ ...prev, dateFrom: e.target.value || undefined }))}
- className="w-full bg-bambu-dark border border-bambu-dark-tertiary rounded-md px-3 py-1.5 text-sm text-white [color-scheme:dark]"
- />
- </div>
- <div>
- <label className="text-xs text-bambu-gray block mb-1">{t('stats.timeframe.to')}</label>
- <input
- type="date"
- value={timeframe.dateTo || ''}
- min={timeframe.dateFrom}
- max={new Date().toISOString().split('T')[0]}
- onChange={(e) => setTimeframe(prev => ({ ...prev, dateTo: e.target.value || undefined }))}
- className="w-full bg-bambu-dark border border-bambu-dark-tertiary rounded-md px-3 py-1.5 text-sm text-white [color-scheme:dark]"
- />
- </div>
- <Button
- variant="primary"
- onClick={() => setShowTimeframePicker(false)}
- className="w-full"
- >
- {t('common.apply')}
- </Button>
- </div>
- )}
- </div>
- </>
- )}
- </div>
- </div>
- </div>
- <Dashboard
- key={dashboardKey}
- widgets={widgets}
- storageKey="bambusy-dashboard-layout-v2"
- stackBelow={640}
- hideControls
- />
- </div>
- );
- }
|