Icons now declared on TabContribution via the icon field — the hardcoded switch in _BottomRail is a fallback only. All sidebar and context extensions set their Phosphor icon explicitly. PanelRegistry supports setTabOrder(slot, List<String>) — tabs render in the order specified by project.layout.sidebar.order / context.order in settings.yaml. Falls back to registration order. Priority field removed from all contributions. Context tabs are static again — persist with their last content, selection just loads new data and switches focus. No spawn/despawn. Tickets sidebar priority set to -200 (leftmost, default open). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
839 B
Dart
30 lines
839 B
Dart
import 'package:clide/builtin/problems/src/problems_view.dart';
|
|
import 'package:clide/extension/extension.dart';
|
|
import 'package:clide/kernel/kernel.dart';
|
|
import 'package:clide/widgets/widgets.dart';
|
|
|
|
class ProblemsExtension extends ClideExtension {
|
|
@override
|
|
String get id => 'builtin.problems';
|
|
@override
|
|
String get title => 'Problems';
|
|
@override
|
|
String get version => '0.1.0';
|
|
@override
|
|
List<String> get dependsOn => const ['builtin.pql'];
|
|
|
|
@override
|
|
List<ContributionPoint> get contributions => [
|
|
TabContribution(
|
|
id: 'problems.panel',
|
|
slot: Slots.sidebar,
|
|
title: 'Problems',
|
|
icon: PhosphorIcons.warningCircle,
|
|
titleKey: 'tab.title',
|
|
i18nNamespace: id,
|
|
priority: -50,
|
|
build: (_) => const ProblemsView(),
|
|
),
|
|
];
|
|
}
|