Single Flutter package at the repo root. All code, tests, assets, and platform directories moved from app/ to root. Package renamed from clide_app to clide — all imports rewritten. Merged pubspec combines core (ffi) and app (flutter, yaml, xterm) dependencies. Makefile simplified: no APP_PRESENT conditionals, no cd, no daemon lifecycle. 317 tests pass. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
116 lines
2.9 KiB
Dart
116 lines
2.9 KiB
Dart
import 'package:clide/kernel/src/theme/controller.dart';
|
|
import 'package:clide/widgets/src/clide_icon.dart';
|
|
import 'package:clide/widgets/src/clide_tooltip.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
class ClideIconRailItem {
|
|
const ClideIconRailItem({
|
|
required this.id,
|
|
required this.icon,
|
|
required this.tooltip,
|
|
});
|
|
|
|
final String id;
|
|
final ClideIconPainter icon;
|
|
final String tooltip;
|
|
}
|
|
|
|
class ClideIconRail extends StatefulWidget {
|
|
const ClideIconRail({
|
|
super.key,
|
|
required this.items,
|
|
required this.activeId,
|
|
required this.onSelect,
|
|
});
|
|
|
|
final List<ClideIconRailItem> items;
|
|
final String? activeId;
|
|
final ValueChanged<String> onSelect;
|
|
|
|
@override
|
|
State<ClideIconRail> createState() => _ClideIconRailState();
|
|
}
|
|
|
|
class _ClideIconRailState extends State<ClideIconRail> {
|
|
String? _hoveredId;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MouseRegion(
|
|
onExit: (_) => setState(() => _hoveredId = null),
|
|
child: SizedBox(
|
|
width: double.infinity,
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
for (final item in widget.items)
|
|
_RailButton(
|
|
item: item,
|
|
active: item.id == widget.activeId,
|
|
hovered: item.id == _hoveredId,
|
|
onHover: () => setState(() => _hoveredId = item.id),
|
|
onTap: () => widget.onSelect(item.id),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _RailButton extends StatelessWidget {
|
|
const _RailButton({
|
|
required this.item,
|
|
required this.active,
|
|
required this.hovered,
|
|
required this.onHover,
|
|
required this.onTap,
|
|
});
|
|
|
|
final ClideIconRailItem item;
|
|
final bool active;
|
|
final bool hovered;
|
|
final VoidCallback onHover;
|
|
final VoidCallback onTap;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final tokens = ClideTheme.of(context).surface;
|
|
final color = active
|
|
? tokens.globalForeground
|
|
: hovered
|
|
? tokens.sidebarForeground
|
|
: tokens.sidebarSectionHeader;
|
|
|
|
return Semantics(
|
|
button: true,
|
|
selected: active,
|
|
label: item.tooltip,
|
|
child: ClideTooltip(
|
|
message: item.tooltip,
|
|
child: MouseRegion(
|
|
cursor: SystemMouseCursors.click,
|
|
onEnter: (_) => onHover(),
|
|
child: GestureDetector(
|
|
onTap: onTap,
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 4),
|
|
decoration: BoxDecoration(
|
|
border: Border(
|
|
bottom: BorderSide(
|
|
color: active
|
|
? tokens.tabActiveBorder
|
|
: const Color(0x00000000),
|
|
width: 2,
|
|
),
|
|
),
|
|
),
|
|
child: ClideIcon(item.icon, size: 16, color: color),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|