import { html } from "lit"; import { SquareTerminal } from "lucide"; import { i18n } from "../../utils/i18n.js"; import { renderHeader } from "../renderer-registry.js"; // Bash tool has undefined details (only uses output) export class BashRenderer { render(params, result) { const state = result ? (result.isError ? "error" : "complete") : "inprogress"; // With result: show command + output if (result && params?.command) { const output = result.content ?.filter((c) => c.type === "text") .map((c) => c.text) .join("\n") || ""; const combined = output ? `> ${params.command}\n\n${output}` : `> ${params.command}`; return { content: html `
${renderHeader(state, SquareTerminal, i18n("Running command..."))}
`, isCustom: false, }; } // Just params (streaming or waiting) if (params?.command) { return { content: html `
${renderHeader(state, SquareTerminal, i18n("Running command..."))} ${params.command}`}>
`, isCustom: false, }; } // No params yet return { content: renderHeader(state, SquareTerminal, i18n("Waiting for command...")), isCustom: false }; } } //# sourceMappingURL=BashRenderer.js.map