wire the output dock into the layout — toggle, tabs, persistence (T-54)

The D-87 bottom dock, end to end. New Slots.dock in the classic preset
(hidden by default); RootLayout renders it full-width above the status bar
when open, capped at half the window so Claude stays largest (the D-47
amendment). LogRing now lives on KernelServices (boot tees the kernel logger
into it; main.dart also tees the IPC/MCP logger), so the dock shows logs from
every subsystem.

OutputExtension contributes the Output tab, the merged health/toggle
status-bar widget (green check when clean, warn/error counts otherwise) that
replaces the old ipc-status item, and the dock.toggle command (Ctrl+J).
Problems moves out of the sidebar into the dock. open/height persist per
workspace via the default-layout extension.

Drag-resize of the dock height is deferred (DragResizeHandle needs a dock
sign case); height is the persisted default for now. Boot verified via
testmode; full suite green.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-07 09:58:29 +02:00
co-authored by Claude Opus 4.8
parent e0c65aba06
commit 49f480481a
13 changed files with 302 additions and 6 deletions
+8 -1
View File
@@ -18,6 +18,7 @@ import 'package:clide/kernel/src/i18n/catalog_loader.dart';
import 'package:clide/kernel/src/i18n/i18n.dart';
import 'package:clide/kernel/src/ipc/client.dart';
import 'package:clide/kernel/src/log.dart';
import 'package:clide/kernel/src/log_ring.dart';
import 'package:clide/kernel/src/net.dart';
import 'package:clide/kernel/src/notify.dart';
import 'package:clide/kernel/src/os.dart';
@@ -74,6 +75,7 @@ class KernelServices {
required this.keymap,
required this.textZoom,
required this.toast,
required this.logRing,
});
final Logger log;
@@ -109,6 +111,9 @@ class KernelServices {
final TextZoom textZoom;
final ToastService toast;
/// Bounded retention of [log] records, for the output dock (T-54 / D-87).
final LogRing logRing;
static Future<KernelServices> boot({
required Directory appDir,
required List<ThemeDefinition> bundledThemes,
@@ -126,7 +131,8 @@ class KernelServices {
Future<String?> Function(String path)? onValidateProject,
DaemonBus? sharedBus,
}) async {
final log = Logger();
final logRing = LogRing();
final log = Logger(sinks: [stderrSink, logRing.add]);
final events = sharedBus ?? DaemonBus();
final messages = MessageBus();
@@ -226,6 +232,7 @@ class KernelServices {
return KernelServices(
log: log,
logRing: logRing,
settings: settings,
events: events,
messages: messages,
+8
View File
@@ -32,6 +32,14 @@ LayoutPresetContribution classicPreset() => const LayoutPresetContribution(
minSize: 220,
maxSize: 1000,
),
LayoutSlot(
slot: Slots.dock,
position: SlotPosition.bottom,
defaultSize: 200,
minSize: 100,
maxSize: 600,
visible: false,
),
LayoutSlot(
slot: Slots.statusbar,
position: SlotPosition.bottom,
+4
View File
@@ -22,6 +22,10 @@ abstract class Slots {
static const workspace = SlotId('workspace');
static const contextPanel = SlotId('context');
static const statusbar = SlotId('statusbar');
/// Bottom output dock — read-only logs + problems (T-54 / D-87). Toggled;
/// hidden by default.
static const dock = SlotId('dock');
static const toolbar = SlotId('toolbar.main');
static const commandPalette = SlotId('commandPalette');
static const tray = SlotId('tray');