Files
clide/lib/builtin/tickets/src/ticket_detail_controller.dart
T
jpmschweitzerandClaude b8c8826b9e
test / unit + widget + golden + a11y (push) Failing after 26s
test / integration_test (xvfb) (push) Has been skipped
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped
use pql --with-context for ticket detail loading
Replaces the N+1 parent-chain walk (one IPC call per ancestor, one
per decision ref) with a single pql ticket show --with-context call.
pql now returns ancestors and decisions arrays inline.

Updates PqlClient.ticketShow to accept withContext/withChildren flags,
removes the obsolete withDecision flag.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-04-24 10:54:17 +02:00

75 lines
2.3 KiB
Dart

import 'dart:async';
import 'package:clide/kernel/kernel.dart';
import 'package:clide/kernel/src/events/message_bus.dart';
import 'package:flutter/foundation.dart';
class TicketDetail {
const TicketDetail({required this.ticket, this.parents = const [], this.decisions = const []});
final Map<String, Object?> ticket;
final List<Map<String, Object?>> parents;
final List<Map<String, Object?>> decisions;
String get id => ticket['id'] as String? ?? '';
String get title => ticket['title'] as String? ?? '';
String? get type => ticket['type'] as String?;
String? get status => ticket['status'] as String?;
String? get priority => ticket['priority'] as String?;
String? get description => ticket['description'] as String?;
String? get parentId => ticket['parent_id'] as String?;
String? get decisionRef => ticket['decision_ref'] as String?;
String? get assignedTo => ticket['assigned_to'] as String?;
}
class TicketDetailController extends ChangeNotifier {
TicketDetailController({required this.ipc, required this.messages, required this.panels}) {
_sub = messages.subscribe(publisher: 'builtin.tickets', channel: 'selection').listen(_onSelection);
}
final DaemonClient ipc;
final MessageBus messages;
final PanelRegistry panels;
StreamSubscription<Message>? _sub;
TicketDetail? _detail;
TicketDetail? get detail => _detail;
bool _loading = false;
bool get loading => _loading;
void _onSelection(Message msg) {
final id = msg.data['id'] as String?;
if (id != null) {
panels.activateTab(Slots.contextPanel, 'tickets.detail');
unawaited(load(id));
}
}
Future<void> load(String id) async {
_loading = true;
notifyListeners();
final resp = await ipc.request('pql.tickets.show', args: {'id': id, 'withContext': true});
if (!resp.ok) {
_loading = false;
notifyListeners();
return;
}
final ticket = resp.data;
final ancestors = (ticket['ancestors'] as List?)?.cast<Map<String, Object?>>() ?? const [];
final decisions = (ticket['decisions'] as List?)?.cast<Map<String, Object?>>() ?? const [];
_detail = TicketDetail(ticket: ticket, parents: ancestors, decisions: decisions);
_loading = false;
messages.publish('builtin.tickets', 'focus', {'id': id});
notifyListeners();
}
@override
void dispose() {
_sub?.cancel();
super.dispose();
}
}