mirror of
https://github.com/harivansh-afk/clanker-agent.git
synced 2026-04-15 08:03:42 +00:00
- Copy all pi-mono source into apps/companion-os/ - Update Dockerfile to COPY pre-built binary instead of downloading from GitHub Releases - Update deploy-staging.yml to build pi from source (bun compile) before Docker build - Add apps/companion-os/** to path triggers - No more cross-repo dispatch needed Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import { readFileSync } from "fs";
|
|
import { Image } from "../src/components/image.js";
|
|
import { Spacer } from "../src/components/spacer.js";
|
|
import { Text } from "../src/components/text.js";
|
|
import { ProcessTerminal } from "../src/terminal.js";
|
|
import { getCapabilities, getImageDimensions } from "../src/terminal-image.js";
|
|
import { TUI } from "../src/tui.js";
|
|
|
|
const testImagePath = process.argv[2] || "/tmp/test-image.png";
|
|
|
|
console.log("Terminal capabilities:", getCapabilities());
|
|
console.log("Loading image from:", testImagePath);
|
|
|
|
let imageBuffer: Buffer;
|
|
try {
|
|
imageBuffer = readFileSync(testImagePath);
|
|
} catch (_e) {
|
|
console.error(`Failed to load image: ${testImagePath}`);
|
|
console.error("Usage: npx tsx test/image-test.ts [path-to-image.png]");
|
|
process.exit(1);
|
|
}
|
|
|
|
const base64Data = imageBuffer.toString("base64");
|
|
const dims = getImageDimensions(base64Data, "image/png");
|
|
|
|
console.log("Image dimensions:", dims);
|
|
console.log("");
|
|
|
|
const terminal = new ProcessTerminal();
|
|
const tui = new TUI(terminal);
|
|
|
|
tui.addChild(new Text("Image Rendering Test", 1, 1));
|
|
tui.addChild(new Spacer(1));
|
|
|
|
if (dims) {
|
|
tui.addChild(
|
|
new Image(
|
|
base64Data,
|
|
"image/png",
|
|
{ fallbackColor: (s) => `\x1b[33m${s}\x1b[0m` },
|
|
{ maxWidthCells: 60 },
|
|
dims,
|
|
),
|
|
);
|
|
} else {
|
|
tui.addChild(new Text("Could not parse image dimensions", 1, 0));
|
|
}
|
|
|
|
tui.addChild(new Spacer(1));
|
|
tui.addChild(new Text("Press Ctrl+C to exit", 1, 0));
|
|
|
|
const editor = {
|
|
handleInput(data: string) {
|
|
if (data.charCodeAt(0) === 3) {
|
|
tui.stop();
|
|
process.exit(0);
|
|
}
|
|
},
|
|
};
|
|
|
|
tui.setFocus(editor as any);
|
|
tui.start();
|