Files
oott/frontend/lib/widgets/polled_stale_indicator.dart
T
rzuastiandClaude Sonnet 4.6 b5da90be59 Pause polling and show a banner when the backend is unreachable
Adds a centralized BackendReachability singleton fed by a Dio
interceptor (connection-level failures only) and connectivity_plus.
PolledValue subscribes to it and pauses on offline / reloads
immediately on reconnect, replacing the previous per-card error
cascade. MainShell renders a global OfflineBanner with Retry and
Settings actions; cards downgrade error→stale when offline so the
banner is the only red element.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 18:21:55 -04:00

62 lines
1.6 KiB
Dart

import 'dart:async';
import 'package:flutter/material.dart';
import '../utils/backend_reachability.dart';
import '../utils/duration_formatter.dart';
import '../utils/polled_value.dart';
class PolledStaleIndicator extends StatefulWidget {
const PolledStaleIndicator({super.key, required this.polled});
final PolledValue polled;
@override
State<PolledStaleIndicator> createState() => _PolledStaleIndicatorState();
}
class _PolledStaleIndicatorState extends State<PolledStaleIndicator> {
Timer? _ticker;
@override
void initState() {
super.initState();
_ticker = Timer.periodic(const Duration(seconds: 1), (_) {
if (mounted) setState(() {});
});
}
@override
void dispose() {
_ticker?.cancel();
super.dispose();
}
@override
Widget build(BuildContext context) {
final lastSuccessAt = widget.polled.lastSuccessAt;
final ago = lastSuccessAt != null
? formatSeconds(
DateTime.now().difference(lastSuccessAt).inSeconds.toDouble(),
)
: 'a while';
final isOffline = !BackendReachability.instance.isOnline;
final String message;
if (isOffline) {
message = 'Offline — last updated $ago ago';
} else if (widget.polled.lastErrorMessage != null) {
message = 'Last updated $ago ago — ${widget.polled.lastErrorMessage}';
} else {
message = 'Last updated $ago ago';
}
return Tooltip(
message: message,
child: Icon(
Icons.warning_amber_rounded,
size: 14,
color: Theme.of(context).colorScheme.onSurfaceVariant,
),
);
}
}