Files
oott/frontend/lib/widgets/device_summary_card.dart
T
rzuastiandClaude Opus 4.8 a51b9c06dc Display unknown values as a dash and centralise repeated literals
Backend: notifications now show a plain "-" for an absent name, vendor, or
device type (was empty string / "(unknown)" / "Unknown"), via a single
UNKNOWN_PLACEHOLDER constant.

Frontend:
- Empty/unknown values render as an em dash everywhere, centralised in a new
  Placeholders.emptyValue constant (replaces inline '—' and '(unknown)').
- Route paths moved to a new Routes class, used by the router and every
  navigation call site.
- Device event type modelled as a DeviceEventType enum mirroring the backend
  (NewDevice/DeviceSeen) instead of bare string comparisons.
- Hardcoded EdgeInsets/SizedBox spacing replaced with existing Insets tokens.

Tests and formatting updated; all backend and frontend tests pass.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-06 16:07:05 -04:00

169 lines
4.9 KiB
Dart

import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import '../model/device_summary.dart';
import '../utils/backend_reachability.dart';
import '../utils/oott_api.dart';
import '../utils/polled_value.dart';
import 'polled_stale_indicator.dart';
import '../theme/dimens.dart';
import '../routes.dart';
class DeviceSummaryCard extends StatefulWidget {
const DeviceSummaryCard({super.key});
@override
State<DeviceSummaryCard> createState() => _DeviceSummaryCardState();
}
class _DeviceSummaryCardState extends State<DeviceSummaryCard> {
late final PolledValue<DeviceSummary> _polled;
@override
void initState() {
super.initState();
_polled = PolledValue<DeviceSummary>(
fetch: ({cancelToken}) =>
BackendAPI.instance.getDeviceSummary(cancelToken: cancelToken),
pollInterval: const Duration(minutes: 1),
staleErrorAfter: const Duration(minutes: 3),
);
}
@override
void dispose() {
_polled.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Card(
clipBehavior: Clip.antiAlias,
child: InkWell(
onTap: () => context.go(Routes.devices),
child: Padding(
padding: const EdgeInsets.all(Insets.lg),
child: ListenableBuilder(
listenable: Listenable.merge([
_polled,
BackendReachability.instance,
]),
builder: (context, _) {
final freshness = effectiveFreshness(_polled);
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
Text(
'Devices',
style: Theme.of(context).textTheme.titleLarge,
),
if (freshness == PolledFreshness.stale) ...[
const SizedBox(width: 6),
PolledStaleIndicator(polled: _polled),
],
],
),
const SizedBox(height: Insets.md),
..._buildBody(context, freshness),
],
);
},
),
),
),
);
}
List<Widget> _buildBody(BuildContext context, PolledFreshness freshness) {
switch (freshness) {
case PolledFreshness.initialLoading:
return const [Center(child: CircularProgressIndicator())];
case PolledFreshness.error:
return [
Text(
_polled.lastErrorMessage ?? 'Error loading device summary',
style: TextStyle(color: Theme.of(context).colorScheme.error),
),
];
case PolledFreshness.fresh:
case PolledFreshness.stale:
final summary = _polled.value!;
return [
_SummaryRow(
label: 'Registered in the system',
value: '${summary.totalRegistered}',
),
const Divider(height: 20),
Text(
'Seen in the last 24 hours',
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
color: Theme.of(context).colorScheme.onSurface,
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 6),
_SummaryRow(
label: 'Registered',
value: '${summary.seenLastDayRegistered}',
),
_SummaryRow(
label: 'Unregistered',
value: '${summary.seenLastDayUnregistered}',
),
const Divider(height: 20),
Text(
'Seen in the last 7 days',
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
color: Theme.of(context).colorScheme.onSurface,
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: 6),
_SummaryRow(
label: 'Registered',
value: '${summary.seenLastWeekRegistered}',
),
_SummaryRow(
label: 'Unregistered',
value: '${summary.seenLastWeekUnregistered}',
),
];
}
}
}
class _SummaryRow extends StatelessWidget {
final String label;
final String value;
const _SummaryRow({required this.label, required this.value});
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(vertical: 2),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
label,
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
),
Text(
value,
style: Theme.of(context).textTheme.bodySmall?.copyWith(
color: Theme.of(context).colorScheme.onSurfaceVariant,
fontWeight: FontWeight.bold,
),
),
],
),
);
}
}