mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-18 19:03:41 +00:00
Add markdown.codeBlockIndent setting to customize indentation prefix for rendered code blocks. Default remains 2 spaces for visual clarity, but setting to empty string removes indentation for easier copy/paste of code snippets to scripts, editors, or other tools. Changes: - tui: add optional codeBlockIndent to MarkdownTheme interface - coding-agent: add MarkdownSettings with codeBlockIndent property - coding-agent: compose theme with settings at call sites (no global state) - coding-agent: update message components to accept optional MarkdownTheme Co-authored-by: Mario Zechner <badlogicgames@gmail.com>
107 lines
2.9 KiB
TypeScript
107 lines
2.9 KiB
TypeScript
import type { TextContent } from "@mariozechner/pi-ai";
|
|
import type { Component } from "@mariozechner/pi-tui";
|
|
import { Box, Container, Markdown, type MarkdownTheme, Spacer, Text } from "@mariozechner/pi-tui";
|
|
import type { MessageRenderer } from "../../../core/extensions/types.js";
|
|
import type { CustomMessage } from "../../../core/messages.js";
|
|
import { getMarkdownTheme, theme } from "../theme/theme.js";
|
|
|
|
/**
|
|
* Component that renders a custom message entry from extensions.
|
|
* Uses distinct styling to differentiate from user messages.
|
|
*/
|
|
export class CustomMessageComponent extends Container {
|
|
private message: CustomMessage<unknown>;
|
|
private customRenderer?: MessageRenderer;
|
|
private box: Box;
|
|
private customComponent?: Component;
|
|
private markdownTheme: MarkdownTheme;
|
|
private _expanded = false;
|
|
|
|
constructor(
|
|
message: CustomMessage<unknown>,
|
|
customRenderer?: MessageRenderer,
|
|
markdownTheme: MarkdownTheme = getMarkdownTheme(),
|
|
) {
|
|
super();
|
|
this.message = message;
|
|
this.customRenderer = customRenderer;
|
|
this.markdownTheme = markdownTheme;
|
|
|
|
this.addChild(new Spacer(1));
|
|
|
|
// Create box with purple background (used for default rendering)
|
|
this.box = new Box(1, 1, (t) => theme.bg("customMessageBg", t));
|
|
|
|
this.rebuild();
|
|
}
|
|
|
|
setExpanded(expanded: boolean): void {
|
|
if (this._expanded !== expanded) {
|
|
this._expanded = expanded;
|
|
this.rebuild();
|
|
}
|
|
}
|
|
|
|
override invalidate(): void {
|
|
super.invalidate();
|
|
this.rebuild();
|
|
}
|
|
|
|
private rebuild(): void {
|
|
// Remove previous content component
|
|
if (this.customComponent) {
|
|
this.removeChild(this.customComponent);
|
|
this.customComponent = undefined;
|
|
}
|
|
this.removeChild(this.box);
|
|
|
|
// Try custom renderer first - it handles its own styling
|
|
if (this.customRenderer) {
|
|
try {
|
|
const component = this.customRenderer(this.message, { expanded: this._expanded }, theme);
|
|
if (component) {
|
|
// Custom renderer provides its own styled component
|
|
this.customComponent = component;
|
|
this.addChild(component);
|
|
return;
|
|
}
|
|
} catch {
|
|
// Fall through to default rendering
|
|
}
|
|
}
|
|
|
|
// Default rendering uses our box
|
|
this.addChild(this.box);
|
|
this.box.clear();
|
|
|
|
// Default rendering: label + content
|
|
const label = theme.fg("customMessageLabel", `\x1b[1m[${this.message.customType}]\x1b[22m`);
|
|
this.box.addChild(new Text(label, 0, 0));
|
|
this.box.addChild(new Spacer(1));
|
|
|
|
// Extract text content
|
|
let text: string;
|
|
if (typeof this.message.content === "string") {
|
|
text = this.message.content;
|
|
} else {
|
|
text = this.message.content
|
|
.filter((c): c is TextContent => c.type === "text")
|
|
.map((c) => c.text)
|
|
.join("\n");
|
|
}
|
|
|
|
// Limit lines when collapsed
|
|
if (!this._expanded) {
|
|
const lines = text.split("\n");
|
|
if (lines.length > 5) {
|
|
text = `${lines.slice(0, 5).join("\n")}\n...`;
|
|
}
|
|
}
|
|
|
|
this.box.addChild(
|
|
new Markdown(text, 0, 0, this.markdownTheme, {
|
|
color: (text: string) => theme.fg("customMessageText", text),
|
|
}),
|
|
);
|
|
}
|
|
}
|