add ClidePane primitive + focus-driven status-bar slot

Replace the MessageBus-based pane-context slot with a focus-driven one.
Panes keep their status widget locally; the FocusTracker holds the
focused pane's widget (activeStatusWidget) and ClidePane conveys it to
the shared slot only while its contribution is focused, re-conveying on
change and clearing on blur. The status-bar item just renders
focus.activeStatusWidget, height-clamped and marquee-scrolled when it
overflows. Removes the publish/subscribe race the bus version had.

T-150.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-23 11:23:30 +02:00
co-authored by Claude Opus 4.7
parent 9590f555c9
commit 478cff6050
13 changed files with 492 additions and 116 deletions
+22 -1
View File
@@ -11,6 +11,7 @@ import 'package:flutter/widgets.dart';
class FocusTracker extends ChangeNotifier {
SlotId? _slot;
String? _contributionId;
Widget? _activeStatusWidget;
final Map<SlotId, FocusScopeNode> _scopes = {};
/// Static order panels cycle through. Matches the visual left-to-right
@@ -26,17 +27,37 @@ class FocusTracker extends ChangeNotifier {
SlotId? get activeSlot => _slot;
String? get activeContributionId => _contributionId;
/// The focused pane's status-bar widget (T-150). The status bar renders
/// this; it's null when the focused contribution has no status, so the
/// bar clears automatically on focus change.
Widget? get activeStatusWidget => _activeStatusWidget;
void setActive({required SlotId slot, required String contributionId}) {
if (_slot == slot && _contributionId == contributionId) return;
_slot = slot;
_contributionId = contributionId;
// Focus moved — the previous pane's status no longer applies. The
// newly-focused pane re-conveys its own via [setStatusWidget].
_activeStatusWidget = null;
notifyListeners();
}
/// Convey [widget] (or null) as the status-bar content for
/// [contributionId]. Applied only while that contribution is focused —
/// a background pane's update is ignored, so it keeps its content
/// locally and re-conveys when it regains focus (T-150).
void setStatusWidget(String contributionId, Widget? widget) {
if (contributionId != _contributionId) return;
if (identical(_activeStatusWidget, widget)) return;
_activeStatusWidget = widget;
notifyListeners();
}
void clear() {
if (_slot == null && _contributionId == null) return;
if (_slot == null && _contributionId == null && _activeStatusWidget == null) return;
_slot = null;
_contributionId = null;
_activeStatusWidget = null;
notifyListeners();
}