mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-18 18:03:44 +00:00
- Image component returns correct number of lines (rows) for TUI accounting - Empty lines rendered first, then cursor moves up and image is drawn - This clears the space the image occupies before rendering - Add spacer before inline images in tool output - Create ShowImagesSelectorComponent with borders like other selectors - Use showSelector pattern for /show-images command
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { Container, type SelectItem, SelectList } from "@mariozechner/pi-tui";
|
|
import { getSelectListTheme } from "../theme/theme.js";
|
|
import { DynamicBorder } from "./dynamic-border.js";
|
|
|
|
/**
|
|
* Component that renders a show images selector with borders
|
|
*/
|
|
export class ShowImagesSelectorComponent extends Container {
|
|
private selectList: SelectList;
|
|
|
|
constructor(currentValue: boolean, onSelect: (show: boolean) => void, onCancel: () => void) {
|
|
super();
|
|
|
|
const items: SelectItem[] = [
|
|
{ value: "yes", label: "Yes", description: "Show images inline in terminal" },
|
|
{ value: "no", label: "No", description: "Show text placeholder instead" },
|
|
];
|
|
|
|
// Add top border
|
|
this.addChild(new DynamicBorder());
|
|
|
|
// Create selector
|
|
this.selectList = new SelectList(items, 5, getSelectListTheme());
|
|
|
|
// Preselect current value
|
|
this.selectList.setSelectedIndex(currentValue ? 0 : 1);
|
|
|
|
this.selectList.onSelect = (item) => {
|
|
onSelect(item.value === "yes");
|
|
};
|
|
|
|
this.selectList.onCancel = () => {
|
|
onCancel();
|
|
};
|
|
|
|
this.addChild(this.selectList);
|
|
|
|
// Add bottom border
|
|
this.addChild(new DynamicBorder());
|
|
}
|
|
|
|
getSelectList(): SelectList {
|
|
return this.selectList;
|
|
}
|
|
}
|