File size: 26,187 Bytes
fa9c65f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 | import { Panel } from './Panel';
import { t } from '@/services/i18n';
import { marked } from 'marked';
import DOMPurify from 'dompurify';
import { postProcessAnalystHtml } from '@/utils/analyst-markdown';
import { yieldToMain } from '@/utils/after-paint';
import { premiumFetch } from '@/services/premium-fetch';
import { getAuthState } from '@/services/auth-state';
import { readClientEntitlementBelief } from '@/services/panel-gating';
import {
analystDenialMessage,
isBillingVerificationDenial,
PRO_VERIFICATION_RETRY_MESSAGE,
} from '@/services/analyst-denial';
import { classifyDenialResponse } from '@/services/premium-denial';
import { trackAnalystControlAction } from '@/services/analytics';
import { h, replaceChildren, setTrustedHtml, trustedHtml, type TrustedHtml } from '@/utils/dom-utils';
import {
isDashboardControlAction,
parseAgentBusAction,
type AgentBusAction,
type DashboardControlAction,
} from '../../shared/agent-bus-actions';
const API_URL = '/api/chat-analyst';
const MAX_HISTORY = 20;
const DASHBOARD_CONTROL_STORAGE_KEY = 'wm-analyst-dashboard-control-enabled';
interface QuickAction {
label: string;
icon: string;
query: string;
}
const QUICK_ACTIONS: QuickAction[] = [
{ label: 'Situation', icon: '🌍', query: "Summarize today's geopolitical situation" },
{ label: 'Markets', icon: '📈', query: 'Key market moves, macro signals, and commodity moves today' },
{ label: 'Conflicts', icon: '⚔️', query: 'Top active conflicts and military developments' },
{ label: 'Forecasts', icon: '🔮', query: 'Active forecasts and prediction market outlook' },
{ label: 'Risk', icon: '⚠️', query: 'Highest risk countries and instability hotspots' },
];
const DOMAINS = [
{ id: 'all', label: 'All' },
{ id: 'geo', label: 'Geo' },
{ id: 'market', label: 'Market' },
{ id: 'military', label: 'Military' },
{ id: 'economic', label: 'Economic' },
];
interface ChatMessage {
role: 'user' | 'assistant';
content: string;
}
interface MetaEvent {
sources: string[];
degraded: boolean;
}
type DashboardControlStatus = 'applied' | 'denied' | 'invalid' | 'skipped';
/**
* Turn a failed /api/chat-analyst response into user-facing copy.
*
* A 403 has several causes and only one of them is "you need to buy Pro":
* the route 403s on a missing plan (api/chat-analyst.ts:126), and the shared
* gateway also 403s an unidentified caller and a failed entitlement lookup.
* Telling a customer who paid minutes ago to buy a subscription — which is
* what the old blanket `status === 403` branch did during the #5600 poison
* window — is worse than saying nothing (#5608).
*
* Consumes the response body, so it is only called on the !ok path where the
* stream is never read.
*/
async function describeDenial(res: Response): Promise<string> {
// #5622: the route now answers an entitlement it could not VERIFY with a
// retryable 503 + `X-Billing-Verification` instead of flattening it into the
// 403 upsell. Both this check and the verdict-to-copy mapping live in
// src/services/analyst-denial.ts so they are reachable from a test — this
// module imports DOMPurify at scope and cannot be loaded by `tsx --test`.
if (isBillingVerificationDenial(res.status, res.headers.get('X-Billing-Verification'))) {
return PRO_VERIFICATION_RETRY_MESSAGE;
}
const verdict = await classifyDenialResponse(res, readClientEntitlementBelief(getAuthState()));
return analystDenialMessage(res.status, verdict);
}
interface DashboardControlResult {
ok: boolean;
status: DashboardControlStatus;
actionType?: DashboardControlAction['type'];
label?: string;
reason?: string;
message: string;
targets: Array<{ target: string; status: DashboardControlStatus; reason?: string }>;
}
type DashboardActionHandler = (action: DashboardControlAction) => DashboardControlResult;
// Narrow allowlist: text formatting + tables only. No img/a/iframe so
// prompt-injected or hallucinated URLs cannot trigger third-party requests.
const ANALYST_PURIFY_CONFIG = {
ALLOWED_TAGS: ['p', 'strong', 'em', 'b', 'i', 'br', 'hr',
'ul', 'ol', 'li', 'code', 'pre',
'table', 'thead', 'tbody', 'tr', 'th', 'td',
'div', 'span'],
ALLOWED_ATTR: ['class'],
ALLOW_DATA_ATTR: false,
};
function renderMarkdown(raw: string): TrustedHtml {
const sanitized = DOMPurify.sanitize(marked.parse(raw) as string, ANALYST_PURIFY_CONFIG);
return trustedHtml(
postProcessAnalystHtml(sanitized as string),
'Chat analyst markdown is sanitized by DOMPurify before insertion',
);
}
function loadDashboardControlEnabled(): boolean {
try {
return globalThis.localStorage?.getItem(DASHBOARD_CONTROL_STORAGE_KEY) === 'true';
} catch {
return false;
}
}
function saveDashboardControlEnabled(enabled: boolean): void {
try {
globalThis.localStorage?.setItem(DASHBOARD_CONTROL_STORAGE_KEY, enabled ? 'true' : 'false');
} catch { /* storage unavailable */ }
}
export class ChatAnalystPanel extends Panel {
private history: ChatMessage[] = [];
private domainFocus = 'all';
private streamAbort: AbortController | null = null;
private isStreaming = false;
private dashboardActionHandler: DashboardActionHandler | null = null;
private dashboardControlEnabled = loadDashboardControlEnabled();
private dashboardControlPaused = false;
private messagesEl!: HTMLElement;
private inputEl: HTMLTextAreaElement | null = null;
private controlToggleEl: HTMLInputElement | null = null;
private controlStatusEl: HTMLElement | null = null;
private controlPauseBtn: HTMLButtonElement | null = null;
private contentDelegationAttached = false;
constructor() {
super({
id: 'chat-analyst',
title: 'WM Analyst',
premium: 'locked',
defaultRowSpan: 2,
infoTooltip: t('components.chatAnalyst.infoTooltip'),
});
this.buildUI();
}
public setDashboardActionHandler(handler: DashboardActionHandler): void {
this.dashboardActionHandler = handler;
}
private buildUI(): void {
const wrapper = h('div', { className: 'chat-analyst-wrapper' });
// Domain filter chips
const chipBar = h('div', { className: 'chat-analyst-chips' });
for (const d of DOMAINS) {
const chip = h('button', {
className: `chat-chip${d.id === this.domainFocus ? ' active' : ''}`,
dataset: { domain: d.id },
}, d.label);
chipBar.appendChild(chip);
}
const controlBar = this.createDashboardControlBar();
// Messages container
const messages = h('div', { className: 'chat-analyst-messages' });
this.messagesEl = messages;
// Quick actions bar
const quickBar = h('div', { className: 'chat-analyst-quick' });
for (const qa of QUICK_ACTIONS) {
const btn = h('button', {
className: 'chat-quick-btn',
dataset: { quickAction: qa.query },
}, `${qa.icon} ${qa.label}`);
quickBar.appendChild(btn);
}
// Input row
const inputRow = h('div', { className: 'chat-analyst-input-row' });
const textarea = document.createElement('textarea');
textarea.className = 'chat-analyst-input';
textarea.placeholder = 'Ask the analyst...';
textarea.rows = 2;
this.inputEl = textarea;
const sendBtn = h('button', { className: 'chat-analyst-send', dataset: { action: 'send' } }, '▶');
const clearBtn = h('button', { className: 'chat-analyst-clear', dataset: { action: 'clear' } }, '✕');
const exportBtn = h('button', { className: 'chat-analyst-export', dataset: { action: 'export' } }, '↓');
inputRow.appendChild(textarea);
inputRow.appendChild(clearBtn);
inputRow.appendChild(exportBtn);
inputRow.appendChild(sendBtn);
wrapper.appendChild(chipBar);
wrapper.appendChild(controlBar);
wrapper.appendChild(messages);
wrapper.appendChild(quickBar);
wrapper.appendChild(inputRow);
replaceChildren(this.content, wrapper);
this.showWelcome();
this.updateDashboardControlUi();
this.attachListeners();
}
private createDashboardControlBar(): HTMLElement {
const bar = h('div', { className: 'chat-analyst-control-bar' });
const label = h('label', { className: 'chat-control-toggle-label' });
const toggle = document.createElement('input');
toggle.type = 'checkbox';
toggle.className = 'chat-control-toggle';
toggle.dataset.controlToggle = 'dashboard';
this.controlToggleEl = toggle;
label.appendChild(toggle);
label.appendChild(document.createTextNode('Control dashboard'));
const status = h('span', { className: 'chat-control-status' });
this.controlStatusEl = status;
const pauseBtn = h('button', {
className: 'chat-control-pause',
dataset: { action: 'toggle-control-pause' },
type: 'button',
}, 'Pause') as HTMLButtonElement;
this.controlPauseBtn = pauseBtn;
bar.appendChild(label);
bar.appendChild(status);
bar.appendChild(pauseBtn);
return bar;
}
private attachListeners(): void {
// Click + keydown are both delegated on this.content (the persistent
// panel content div), so attaching exactly once survives every buildUI()
// re-render — including the FREE→PRO unlock rebuild path. Re-attaching
// would duplicate handlers and fire send() N times per Enter.
if (this.contentDelegationAttached) return;
this.contentDelegationAttached = true;
this.content.addEventListener('click', (e) => {
const target = e.target as HTMLElement;
const chip = target.closest('[data-domain]') as HTMLElement | null;
if (chip) {
this.setDomain(chip.dataset.domain ?? 'all');
return;
}
const qa = target.closest('[data-quick-action]') as HTMLElement | null;
if (qa) {
const query = qa.dataset.quickAction ?? '';
if (query) this.send(query);
return;
}
const action = target.closest('[data-action]') as HTMLElement | null;
if (action) {
const a = action.dataset.action;
if (a === 'send') this.sendFromInput();
else if (a === 'clear') this.clear();
else if (a === 'export') this.exportChat();
else if (a === 'toggle-control-pause') this.toggleDashboardControlPause();
}
});
this.content.addEventListener('change', (e) => {
const target = e.target as HTMLInputElement | null;
if (target?.dataset?.controlToggle === 'dashboard') {
this.setDashboardControlEnabled(Boolean(target.checked));
}
});
this.content.addEventListener('keydown', (e) => {
const target = e.target as HTMLElement | null;
if (!target || target !== this.inputEl) return;
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
this.sendFromInput();
}
});
}
private setDashboardControlEnabled(enabled: boolean): void {
this.dashboardControlEnabled = enabled;
if (!enabled) this.dashboardControlPaused = false;
saveDashboardControlEnabled(enabled);
this.updateDashboardControlUi();
}
private toggleDashboardControlPause(): void {
if (!this.dashboardControlEnabled) return;
this.dashboardControlPaused = !this.dashboardControlPaused;
this.updateDashboardControlUi();
}
private updateDashboardControlUi(): void {
if (this.controlToggleEl) this.controlToggleEl.checked = this.dashboardControlEnabled;
if (this.controlStatusEl) {
this.controlStatusEl.textContent = this.dashboardControlEnabled
? (this.dashboardControlPaused ? 'Paused' : 'Active')
: 'Off';
this.controlStatusEl.dataset.state = this.dashboardControlEnabled
? (this.dashboardControlPaused ? 'paused' : 'active')
: 'off';
}
if (this.controlPauseBtn) {
this.controlPauseBtn.disabled = !this.dashboardControlEnabled;
this.controlPauseBtn.textContent = this.dashboardControlPaused ? 'Resume' : 'Pause';
}
}
private setDomain(domain: string): void {
this.domainFocus = domain;
const chips = this.content.querySelectorAll('[data-domain]');
for (const chip of chips) {
const el = chip as HTMLElement;
el.classList.toggle('active', el.dataset.domain === domain);
}
}
private sendFromInput(): void {
if (!this.inputEl || this.isStreaming) return;
const query = this.inputEl.value.trim();
if (!query) return;
this.inputEl.value = '';
this.send(query);
}
private showWelcome(): void {
const bubble = h('div', { className: 'chat-msg chat-msg-assistant' },
h('div', { className: 'chat-msg-label' }, 'ANALYST'),
h('div', { className: 'chat-msg-body' },
'Ready. I have live context across geopolitical, market, military, and economic domains. Ask anything.',
),
);
replaceChildren(this.messagesEl, bubble);
}
private appendMessage(role: 'user' | 'assistant', content: string): void {
const label = role === 'user' ? 'YOU' : 'ANALYST';
const body = h('div', { className: 'chat-msg-body' });
if (role === 'assistant') {
this.renderMarkdownDeferred(body, content);
} else {
body.textContent = content;
}
const bubble = h('div', { className: `chat-msg chat-msg-${role}` },
h('div', { className: 'chat-msg-label' }, label),
body,
);
this.messagesEl.appendChild(bubble);
// The assistant branch scrolls inside renderMarkdownDeferred (after its DOM
// lands); the user branch renders synchronously above, so scroll now.
if (role !== 'assistant') this.scrollToBottom();
}
private appendStreamingBubble(): { bubble: HTMLElement; body: HTMLElement } {
const body = h('div', { className: 'chat-msg-body' },
h('span', { className: 'chat-streaming-dot' }),
);
const bubble = h('div', { className: 'chat-msg chat-msg-assistant chat-msg-streaming' },
h('div', { className: 'chat-msg-label' }, 'ANALYST'),
body,
);
this.messagesEl.appendChild(bubble);
this.scrollToBottom();
return { bubble, body };
}
private renderSourceChips(bubble: HTMLElement, meta: MetaEvent): void {
if (meta.sources.length === 0 && !meta.degraded) return;
const chipsRow = document.createElement('div');
chipsRow.className = 'chat-source-chips';
for (const src of meta.sources) {
const chip = document.createElement('span');
chip.className = 'chat-source-chip';
chip.textContent = src;
chipsRow.appendChild(chip);
}
if (meta.degraded) {
const warn = document.createElement('span');
warn.className = 'chat-source-chip chat-source-chip--warn';
warn.textContent = '⚠ partial';
chipsRow.appendChild(warn);
}
// Insert chips row before the body element inside the bubble
const body = bubble.querySelector('.chat-msg-body');
if (body) bubble.insertBefore(chipsRow, body);
}
private renderActionChip(bubble: HTMLElement, action: unknown): void {
const parsed = parseAgentBusAction(action);
if (!parsed.ok) {
this.renderDashboardControlStatus(bubble, {
ok: false,
status: 'invalid',
reason: 'invalid_action',
message: 'Analyst sent an invalid dashboard action.',
targets: [],
});
return;
}
const parsedAction = parsed.action;
if (isDashboardControlAction(parsedAction)) {
this.renderDashboardControlAction(bubble, parsedAction);
return;
}
if (parsedAction.type !== 'suggest-widget') return;
const chip = document.createElement('button');
chip.className = 'chat-action-chip';
chip.textContent = `${parsedAction.label} →`;
chip.addEventListener('click', () => {
this.element.dispatchEvent(new CustomEvent('wm:open-widget-creator', {
bubbles: true,
detail: { initialMessage: parsedAction.prefill },
}));
});
const body = bubble.querySelector('.chat-msg-body');
if (body) bubble.insertBefore(chip, body);
else bubble.appendChild(chip);
}
private renderDashboardControlAction(bubble: HTMLElement, action: DashboardControlAction): void {
let result: DashboardControlResult;
if (!this.dashboardControlEnabled) {
result = this.skippedDashboardAction(action, 'control_disabled', 'Dashboard control is off.');
} else if (this.dashboardControlPaused) {
result = this.skippedDashboardAction(action, 'control_paused', 'Dashboard control is paused.');
} else if (!this.dashboardActionHandler) {
result = this.skippedDashboardAction(action, 'context_unavailable', 'Dashboard context is unavailable.');
} else {
result = this.dashboardActionHandler(action);
}
if (result.actionType) {
trackAnalystControlAction(result.actionType, result.status, result.reason);
}
this.renderDashboardControlStatus(bubble, result, action);
}
private skippedDashboardAction(action: DashboardControlAction, reason: string, message: string): DashboardControlResult {
return {
ok: false,
status: 'skipped',
actionType: action.type,
label: action.label,
reason,
message,
targets: [],
};
}
private renderDashboardControlStatus(
bubble: HTMLElement,
result: DashboardControlResult,
action?: AgentBusAction,
): void {
const chip = document.createElement('span');
chip.className = `chat-action-chip chat-action-chip--control chat-action-chip--${result.ok ? 'applied' : result.status}`;
chip.textContent = result.ok
? `Applied: ${result.label ?? action?.type ?? 'dashboard action'}`
: `${result.label ?? action?.type ?? 'Dashboard action'} not applied`;
chip.title = result.message;
const body = bubble.querySelector('.chat-msg-body');
if (body) bubble.insertBefore(chip, body);
else bubble.appendChild(chip);
}
private scrollToBottom(): void {
requestAnimationFrame(() => {
this.messagesEl.scrollTop = this.messagesEl.scrollHeight;
});
}
private setSendDisabled(disabled: boolean): void {
const btn = this.content.querySelector('[data-action="send"]') as HTMLButtonElement | null;
if (btn) btn.disabled = disabled;
if (this.inputEl) this.inputEl.disabled = disabled;
}
async send(query: string): Promise<void> {
if (this.isStreaming) return;
this.isStreaming = true;
this.setSendDisabled(true);
const trimmedQuery = query.trim().slice(0, 500);
if (!trimmedQuery) {
this.isStreaming = false;
this.setSendDisabled(false);
return;
}
this.appendMessage('user', trimmedQuery);
const trimmedHistory = this.history.slice(-MAX_HISTORY).map((m) => ({
role: m.role,
content: m.content.slice(0, 800),
}));
const { bubble, body: streamingBody } = this.appendStreamingBubble();
let accumulatedText = '';
const controller = new AbortController();
this.streamAbort = controller;
try {
const res = await premiumFetch(API_URL, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
history: trimmedHistory,
query: trimmedQuery,
domainFocus: this.domainFocus,
// geoContext (ISO-2 country focus) is supported by the API but wired in Phase 2
// when the panel can read the map's selected country. Agent callers can pass it directly.
}),
signal: controller.signal,
});
if (!res.ok) {
this.finalizeStreamingBubble(streamingBody, `⚠ ${await describeDenial(res)}`, false);
return;
}
const reader = res.body?.getReader();
if (!reader) {
this.finalizeStreamingBubble(streamingBody, '⚠ Stream unavailable.', false);
return;
}
const finished = await this.readStream(reader, bubble, streamingBody, (text) => { accumulatedText = text; });
if (finished === 'error') return;
if (finished === 'done') {
this.finalizeStreamingBubble(streamingBody, accumulatedText, true);
this.pushHistory(trimmedQuery, accumulatedText);
return;
}
// Stream ended without a done event — response was truncated mid-stream
if (accumulatedText) {
this.finalizeStreamingBubble(streamingBody, `${accumulatedText}\n\n⚠ *Response may be incomplete.*`, false);
// Do not push to history — a truncated answer would corrupt the conversation context
} else {
this.finalizeStreamingBubble(streamingBody, '⚠ Response cut off. Try again.', false);
}
} catch (err) {
if (err instanceof Error && err.name === 'AbortError') {
if (accumulatedText) {
this.finalizeStreamingBubble(streamingBody, `${accumulatedText}\n\n*Response cut off.*`, true);
} else {
this.finalizeStreamingBubble(streamingBody, '⚠ Request cancelled.', false);
}
} else {
this.finalizeStreamingBubble(streamingBody, '⚠ Network error. Try again.', false);
}
} finally {
// Only tear down the shared streaming state if we still OWN it. Every
// exit path here follows an await, and clear() resets isStreaming, so a
// user who clears mid-flight can start a second send before this block
// runs — unconditionally nulling streamAbort would then cancel-proof the
// NEW stream and leave the send button stuck. Keying on controller
// identity makes a superseded invocation clean up only its own bubble.
if (this.streamAbort === controller) {
this.streamAbort = null;
this.isStreaming = false;
this.setSendDisabled(false);
}
bubble.classList.remove('chat-msg-streaming');
}
}
private pushHistory(query: string, response: string): void {
this.history.push({ role: 'user', content: query });
this.history.push({ role: 'assistant', content: response });
if (this.history.length > MAX_HISTORY) this.history = this.history.slice(-MAX_HISTORY);
}
private async readStream(
reader: ReadableStreamDefaultReader<Uint8Array>,
bubble: HTMLElement,
bodyEl: HTMLElement,
onToken: (text: string) => void,
): Promise<'done' | 'error' | 'incomplete'> {
const decoder = new TextDecoder();
let buf = '';
let accumulated = '';
while (true) {
const { done, value } = await reader.read();
if (done) break;
buf += decoder.decode(value, { stream: true });
const lines = buf.split('\n');
buf = lines.pop() ?? '';
for (const line of lines) {
if (!line.startsWith('data: ')) continue;
try {
const payload = JSON.parse(line.slice(6)) as {
delta?: string;
done?: boolean;
error?: string;
meta?: MetaEvent;
action?: unknown;
};
if (payload.error) {
this.finalizeStreamingBubble(bodyEl, '⚠ Analyst unavailable. Try again shortly.', false);
return 'error';
}
if (payload.meta) {
this.renderSourceChips(bubble, payload.meta);
}
if (payload.action) {
this.renderActionChip(bubble, payload.action);
}
if (payload.delta) {
accumulated += payload.delta;
bodyEl.appendChild(document.createTextNode(payload.delta));
onToken(accumulated);
this.scrollToBottom();
}
if (payload.done) return 'done';
} catch { /* malformed SSE chunk */ }
}
}
return 'incomplete';
}
// Defer the synchronous DOMPurify+marked sanitize off the current task so the
// interaction/stream paint lands first — cuts INP processing time (#4537).
// Fire-and-forget (no async ripple through the sync streaming call sites);
// guarded so a detached bubble (panel closed mid-flight) is skipped.
private renderMarkdownDeferred(el: HTMLElement, content: string): void {
void yieldToMain().then(() => {
if (!el.isConnected) return;
setTrustedHtml(el, renderMarkdown(content));
// Scroll AFTER the markdown DOM lands — rendered markdown (headers, code
// fences, lists) is taller than the raw streaming text, so scrolling before
// this undershoots the true bottom on every completion (#4537 follow-up).
this.scrollToBottom();
});
}
private finalizeStreamingBubble(bodyEl: HTMLElement, text: string, success: boolean): void {
if (!success) bodyEl.classList.add('chat-msg-error');
// renderMarkdownDeferred scrolls to bottom after the markdown DOM is written.
this.renderMarkdownDeferred(bodyEl, text);
}
clear(): void {
this.history = [];
this.streamAbort?.abort();
this.streamAbort = null;
this.isStreaming = false;
this.setSendDisabled(false);
this.showWelcome();
}
private exportChat(): void {
if (this.history.length === 0) return;
const lines = [`# WM Analyst Session\n*Exported: ${new Date().toISOString()}*\n`];
for (const msg of this.history) {
const role = msg.role === 'user' ? '**You**' : '**Analyst**';
lines.push(`\n${role}:\n${msg.content}`);
}
const blob = new Blob([lines.join('\n')], { type: 'text/markdown;charset=utf-8' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = `wm-analyst-session-${Date.now()}.md`;
a.click();
URL.revokeObjectURL(url);
}
// Panel.unlockPanel() does `replaceChildren(this.content)` (empties it)
// when a previously-locked panel transitions to unlocked. The chat surface
// (chips, messages, quick actions, input row) lives entirely in buildUI()
// and is only constructed once in the ctor — without a rebuild here, the
// body would stay empty after the FREE→PRO unlock fired by
// panel-layout.ts:updatePanelGating(). Re-detect via querySelector so we
// only pay the cost when the wipe actually happened.
override unlockPanel(): void {
super.unlockPanel();
if (!this.content.querySelector('.chat-analyst-wrapper')) {
this.buildUI();
}
}
override destroy(): void {
this.streamAbort?.abort();
this.streamAbort = null;
super.destroy();
}
}
|