Files
oott/frontend/lib/devices/device_event_history.dart
T
rzuastiandClaude Sonnet 4.6 e6ec771f3b Simplify and modularize device, notification, and settings screens
Extract inline widget closures into named StatelessWidgets (_DeviceCard,
_DeviceFilterSheet, _NotificationCard), replace magic ints and hardcoded
repeated widgets with enum-driven loops, fix the InputDecorator/DropdownButton
hack in device_actions, merge symmetric _markAsRead/_markAsNew into _setRead,
and remove dead _isLoading/_isSaving state in settings where operations are
synchronous.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-28 11:14:29 -04:00

309 lines
9.1 KiB
Dart

import 'package:fl_chart/fl_chart.dart';
import 'package:flutter/material.dart';
import 'package:intl/intl.dart';
import '../model/device.dart';
import '../model/device_event.dart';
import '../utils/oott_api.dart';
enum _TimeRange {
today('Today'),
lastWeek('Last week'),
lastThreeMonths('Last 3 months'),
lastSixMonths('Last 6 months'),
lastYear('Last year');
const _TimeRange(this.label);
final String label;
DateTime get cutoff {
final now = DateTime.now();
return switch (this) {
_TimeRange.today => DateTime(now.year, now.month, now.day),
_TimeRange.lastWeek => now.subtract(const Duration(days: 7)),
_TimeRange.lastThreeMonths => now.subtract(const Duration(days: 90)),
_TimeRange.lastSixMonths => now.subtract(const Duration(days: 180)),
_TimeRange.lastYear => now.subtract(const Duration(days: 365)),
};
}
double get xIntervalMs {
const hour = 3600000.0;
const day = 86400000.0;
return switch (this) {
_TimeRange.today => 4 * hour,
_TimeRange.lastWeek => day,
_TimeRange.lastThreeMonths => 14 * day,
_TimeRange.lastSixMonths => 30 * day,
_TimeRange.lastYear => 60 * day,
};
}
String formatLabel(DateTime dt) {
final isCurrentYear = dt.year == DateTime.now().year;
return switch (this) {
_TimeRange.today => DateFormat('HH:mm').format(dt),
_TimeRange.lastWeek =>
isCurrentYear
? DateFormat('EEE').format(dt)
: DateFormat('EEE yyyy').format(dt),
_TimeRange.lastThreeMonths || _TimeRange.lastSixMonths =>
isCurrentYear
? DateFormat('MMM d').format(dt)
: DateFormat('MMM d, yyyy').format(dt),
_TimeRange.lastYear =>
isCurrentYear
? DateFormat('MMM').format(dt)
: DateFormat('MMM yyyy').format(dt),
};
}
}
class DeviceEventHistory extends StatefulWidget {
final Device device;
const DeviceEventHistory({super.key, required this.device});
@override
State<DeviceEventHistory> createState() => _DeviceEventHistoryState();
}
class _DeviceEventHistoryState extends State<DeviceEventHistory> {
List<DeviceEvent>? _events;
bool _isLoading = true;
String? _error;
_TimeRange _selectedRange = _TimeRange.lastWeek;
@override
void initState() {
super.initState();
_loadEvents();
}
Future<void> _loadEvents() async {
setState(() {
_isLoading = true;
_error = null;
});
try {
final events = await BackendAPI.instance.getDeviceEvents(
widget.device.macAddress,
createdFrom: _selectedRange.cutoff,
);
if (!mounted) return;
setState(() {
_events = events;
_isLoading = false;
});
} catch (e) {
if (!mounted) return;
setState(() {
_error = e.toString();
_isLoading = false;
});
}
}
@override
Widget build(BuildContext context) {
if (_isLoading) {
return const Padding(
padding: EdgeInsets.all(32),
child: Center(child: CircularProgressIndicator()),
);
}
if (_error != null) {
return const Padding(
padding: EdgeInsets.symmetric(vertical: 16),
child: Center(child: Text('Failed to load event history')),
);
}
final events = _events ?? [];
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: SegmentedButton<_TimeRange>(
segments: _TimeRange.values
.map((r) => ButtonSegment(value: r, label: Text(r.label)))
.toList(),
selected: {_selectedRange},
onSelectionChanged: (selection) {
setState(() => _selectedRange = selection.first);
_loadEvents();
},
),
),
const SizedBox(height: 16),
if (events.isEmpty)
const Padding(
padding: EdgeInsets.symmetric(vertical: 24),
child: Center(child: Text('No events in this time range')),
)
else
SizedBox(
height: 160,
child: _EventChart(
events: events,
device: widget.device,
range: _selectedRange,
),
),
],
);
}
}
class _EventChart extends StatelessWidget {
final List<DeviceEvent> events;
final Device device;
final _TimeRange range;
const _EventChart({
required this.events,
required this.device,
required this.range,
});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
final now = DateTime.now();
final cutoff = range.cutoff;
final intervalMs = range.xIntervalMs;
final cutoffMs = cutoff.millisecondsSinceEpoch.toDouble();
final nowMs = now.millisecondsSinceEpoch.toDouble();
// Snap axis bounds to interval boundaries so every tick falls within the chart.
// This may add a small margin on each side, which is intentional.
final minX = (cutoffMs / intervalMs).floor() * intervalMs;
final maxX = (nowMs / intervalMs).ceil() * intervalMs;
final spots = events.map((e) {
final isNew = e.eventType == 'NewDevice';
return ScatterSpot(
e.createdOn.millisecondsSinceEpoch.toDouble(),
1.0,
dotPainter: FlDotCirclePainter(
radius: isNew ? 9.0 : 6.0,
color: theme.colorScheme.tertiary,
),
);
}).toList();
return ScatterChart(
ScatterChartData(
scatterSpots: spots,
minX: minX,
maxX: maxX,
minY: 0.0,
maxY: 2.0,
borderData: FlBorderData(show: false),
gridData: FlGridData(
show: true,
drawHorizontalLine: false,
verticalInterval: range.xIntervalMs,
),
titlesData: FlTitlesData(
leftTitles: const AxisTitles(
sideTitles: SideTitles(showTitles: false),
),
rightTitles: const AxisTitles(
sideTitles: SideTitles(showTitles: false),
),
topTitles: const AxisTitles(
sideTitles: SideTitles(showTitles: false),
),
bottomTitles: AxisTitles(
sideTitles: SideTitles(
showTitles: true,
interval: range.xIntervalMs,
reservedSize: 28,
getTitlesWidget: (value, meta) {
final dt = DateTime.fromMillisecondsSinceEpoch(value.toInt());
return SideTitleWidget(
meta: meta,
fitInside: SideTitleFitInsideData.fromTitleMeta(meta),
child: Text(
range.formatLabel(dt),
style: theme.textTheme.labelSmall,
),
);
},
),
),
),
scatterTouchData: ScatterTouchData(
touchTooltipData: ScatterTouchTooltipData(
maxContentWidth: 260,
fitInsideHorizontally: true,
fitInsideVertically: true,
getTooltipColor: (_) => theme.colorScheme.surfaceContainerHighest,
getTooltipItems: (ScatterSpot touchedSpot) {
final idx = events.indexWhere(
(e) =>
e.createdOn.millisecondsSinceEpoch.toDouble() ==
touchedSpot.x,
);
if (idx < 0) return null;
final event = events[idx];
final dt = event.createdOn.toLocal();
final dateStr = DateFormat('MMM d, yyyy HH:mm').format(dt);
final typeLabel = event.eventType == 'NewDevice'
? 'First seen'
: 'Device seen';
final diffs = <TextSpan>[];
if (event.ipv4Address != device.ipv4Address) {
diffs.add(
TextSpan(
text: '\nIP: ${event.ipv4Address}${device.ipv4Address}',
style: TextStyle(
color: theme.colorScheme.error,
fontSize: 11,
fontWeight: FontWeight.w600,
),
),
);
}
if (event.vendor != device.vendor) {
final eventVendor = event.vendor.isEmpty
? '(unknown)'
: event.vendor;
final currentVendor = device.vendor.isEmpty
? '(unknown)'
: device.vendor;
diffs.add(
TextSpan(
text: '\nVendor: $eventVendor$currentVendor',
style: TextStyle(
color: theme.colorScheme.error,
fontSize: 11,
fontWeight: FontWeight.w600,
),
),
);
}
return ScatterTooltipItem(
'$dateStr\n$typeLabel',
textStyle: TextStyle(
color: theme.colorScheme.onSurface,
fontSize: 12,
),
children: diffs.isEmpty ? null : diffs,
);
},
),
),
),
);
}
}