mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-22 10:14:22 +01:00
Co-authored-by: GitHub Action <action@github.com> Co-authored-by: Liang-Shih Lin <liangshihlin@proton.me> Co-authored-by: Dominik Engelhardt <dominikengelhardt@ymail.com> Co-authored-by: Jay V <air@live.ca> Co-authored-by: adamdottv <2363879+adamdottv@users.noreply.github.com>
665 lines
22 KiB
TypeScript
665 lines
22 KiB
TypeScript
import { createMemo, createSignal, For, Match, Show, Switch, type JSX, type ParentProps } from "solid-js"
|
|
import {
|
|
IconCheckCircle,
|
|
IconChevronDown,
|
|
IconChevronRight,
|
|
IconHashtag,
|
|
IconSparkles,
|
|
IconGlobeAlt,
|
|
IconDocument,
|
|
IconQueueList,
|
|
IconCommandLine,
|
|
IconDocumentPlus,
|
|
IconPencilSquare,
|
|
IconRectangleStack,
|
|
IconMagnifyingGlass,
|
|
IconDocumentMagnifyingGlass,
|
|
} from "../icons"
|
|
import styles from "./part.module.css"
|
|
import type { MessageV2 } from "opencode/session/message-v2"
|
|
import { ContentText } from "./content-text"
|
|
import { ContentMarkdown } from "./content-markdown"
|
|
import { DateTime } from "luxon"
|
|
import CodeBlock from "../CodeBlock"
|
|
import map from "lang-map"
|
|
import type { Diagnostic } from "vscode-languageserver-types"
|
|
|
|
import { ContentCode } from "./content-code"
|
|
import { ContentDiff } from "./content-diff"
|
|
|
|
export interface PartProps {
|
|
index: number
|
|
message: MessageV2.Info
|
|
part: MessageV2.AssistantPart | MessageV2.UserPart
|
|
last: boolean
|
|
}
|
|
|
|
export function Part(props: PartProps) {
|
|
const [copied, setCopied] = createSignal(false)
|
|
const id = createMemo(() => props.message.id + "-" + props.index)
|
|
|
|
return (
|
|
<div
|
|
class={styles.root}
|
|
id={id()}
|
|
data-component="part"
|
|
data-type={props.part.type}
|
|
data-role={props.message.role}
|
|
data-copied={copied() ? true : undefined}
|
|
>
|
|
<div data-component="decoration">
|
|
<div data-slot="anchor" title="Link to this message">
|
|
<a
|
|
href={`#${id()}`}
|
|
onClick={(e) => {
|
|
e.preventDefault()
|
|
const anchor = e.currentTarget
|
|
const hash = anchor.getAttribute("href") || ""
|
|
const { origin, pathname, search } = window.location
|
|
navigator.clipboard
|
|
.writeText(`${origin}${pathname}${search}${hash}`)
|
|
.catch((err) => console.error("Copy failed", err))
|
|
|
|
setCopied(true)
|
|
setTimeout(() => setCopied(false), 3000)
|
|
}}
|
|
>
|
|
<Switch>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "todowrite"}>
|
|
<IconQueueList width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "todoread"}>
|
|
<IconQueueList width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "bash"}>
|
|
<IconCommandLine width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "edit"}>
|
|
<IconPencilSquare width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "write"}>
|
|
<IconDocumentPlus width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "read"}>
|
|
<IconDocument width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "grep"}>
|
|
<IconDocumentMagnifyingGlass width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "list"}>
|
|
<IconRectangleStack width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "glob"}>
|
|
<IconMagnifyingGlass width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "webfetch"}>
|
|
<IconGlobeAlt width={18} height={18} />
|
|
</Match>
|
|
<Match when={props.part.type === "tool" && props.part.tool === "task"}>
|
|
<IconRectangleStack width={18} height={18} />
|
|
</Match>
|
|
<Match when={true}>
|
|
<IconSparkles width={18} height={18} />
|
|
</Match>
|
|
</Switch>
|
|
<IconHashtag width={18} height={18} />
|
|
<IconCheckCircle width={18} height={18} />
|
|
</a>
|
|
<span data-slot="tooltip">Copied!</span>
|
|
</div>
|
|
<div data-slot="bar"></div>
|
|
</div>
|
|
<div data-component="content">
|
|
{props.message.role === "user" && props.part.type === "text" && (
|
|
<>
|
|
<ContentText text={props.part.text} expand={props.last} /> <Spacer />
|
|
</>
|
|
)}
|
|
{props.message.role === "assistant" && props.part.type === "text" && (
|
|
<>
|
|
<ContentMarkdown expand={props.last} text={props.part.text} />
|
|
{props.last && props.message.role === "assistant" && props.message.time.completed && (
|
|
<Footer
|
|
title={DateTime.fromMillis(props.message.time.completed).toLocaleString(
|
|
DateTime.DATETIME_FULL_WITH_SECONDS,
|
|
)}
|
|
>
|
|
{DateTime.fromMillis(props.message.time.completed).toLocaleString(DateTime.DATETIME_MED)}
|
|
</Footer>
|
|
)}
|
|
<Spacer />
|
|
</>
|
|
)}
|
|
{props.part.type === "step-start" && props.message.role === "assistant" && (
|
|
<div data-component="step-start">
|
|
<div data-slot="provider">{props.message.providerID}</div>
|
|
<div data-slot="model">{props.message.modelID}</div>
|
|
</div>
|
|
)}
|
|
{props.part.type === "tool" &&
|
|
props.part.state.status === "completed" &&
|
|
props.message.role === "assistant" && (
|
|
<div data-component="tool" data-tool={props.part.tool}>
|
|
<Switch>
|
|
<Match when={props.part.tool === "grep"}>
|
|
<GrepTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
<Match when={props.part.tool === "glob"}>
|
|
<GlobTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
<Match when={props.part.tool === "list"}>
|
|
<ListTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
<Match when={props.part.tool === "read"}>
|
|
<ReadTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
<Match when={props.part.tool === "write"}>
|
|
<WriteTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
<Match when={props.part.tool === "edit"}>
|
|
<EditTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
<Match when={props.part.tool === "bash"}>
|
|
<BashTool
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
message={props.message}
|
|
/>
|
|
</Match>
|
|
<Match when={props.part.tool === "todowrite"}>
|
|
<TodoWriteTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
<Match when={props.part.tool === "webfetch"}>
|
|
<WebFetchTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
<Match when={true}>
|
|
<FallbackTool
|
|
message={props.message}
|
|
id={props.part.id}
|
|
tool={props.part.tool}
|
|
state={props.part.state}
|
|
/>
|
|
</Match>
|
|
</Switch>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
type ToolProps = {
|
|
id: MessageV2.ToolPart["id"]
|
|
tool: MessageV2.ToolPart["tool"]
|
|
state: MessageV2.ToolStateCompleted
|
|
message: MessageV2.Assistant
|
|
isLastPart?: boolean
|
|
}
|
|
|
|
interface Todo {
|
|
id: string
|
|
content: string
|
|
status: "pending" | "in_progress" | "completed"
|
|
priority: "low" | "medium" | "high"
|
|
}
|
|
|
|
function stripWorkingDirectory(filePath?: string, workingDir?: string) {
|
|
if (filePath === undefined || workingDir === undefined) return filePath
|
|
|
|
const prefix = workingDir.endsWith("/") ? workingDir : workingDir + "/"
|
|
|
|
if (filePath === workingDir) {
|
|
return ""
|
|
}
|
|
|
|
if (filePath.startsWith(prefix)) {
|
|
return filePath.slice(prefix.length)
|
|
}
|
|
|
|
return filePath
|
|
}
|
|
|
|
function getShikiLang(filename: string) {
|
|
const ext = filename.split(".").pop()?.toLowerCase() ?? ""
|
|
const langs = map.languages(ext)
|
|
const type = langs?.[0]?.toLowerCase()
|
|
|
|
const overrides: Record<string, string> = {
|
|
conf: "shellscript",
|
|
}
|
|
|
|
return type ? (overrides[type] ?? type) : "plaintext"
|
|
}
|
|
|
|
function getDiagnostics(diagnosticsByFile: Record<string, Diagnostic[]>, currentFile: string): JSX.Element[] {
|
|
const result: JSX.Element[] = []
|
|
|
|
if (diagnosticsByFile === undefined || diagnosticsByFile[currentFile] === undefined) return result
|
|
|
|
for (const diags of Object.values(diagnosticsByFile)) {
|
|
for (const d of diags) {
|
|
if (d.severity !== 1) continue
|
|
|
|
const line = d.range.start.line + 1
|
|
const column = d.range.start.character + 1
|
|
|
|
result.push(
|
|
<pre>
|
|
<span data-color="red" data-marker="label">
|
|
Error
|
|
</span>
|
|
<span data-color="dimmed" data-separator>
|
|
[{line}:{column}]
|
|
</span>
|
|
<span>{d.message}</span>
|
|
</pre>,
|
|
)
|
|
}
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
function formatErrorString(error: string): JSX.Element {
|
|
const errorMarker = "Error: "
|
|
const startsWithError = error.startsWith(errorMarker)
|
|
|
|
return startsWithError ? (
|
|
<pre>
|
|
<span data-color="red" data-marker="label" data-separator>
|
|
Error
|
|
</span>
|
|
<span>{error.slice(errorMarker.length)}</span>
|
|
</pre>
|
|
) : (
|
|
<pre>
|
|
<span data-color="dimmed">{error}</span>
|
|
</pre>
|
|
)
|
|
}
|
|
|
|
export function TodoWriteTool(props: ToolProps) {
|
|
const priority: Record<Todo["status"], number> = {
|
|
in_progress: 0,
|
|
pending: 1,
|
|
completed: 2,
|
|
}
|
|
const todos = createMemo(() =>
|
|
((props.state.input?.todos ?? []) as Todo[]).slice().sort((a, b) => priority[a.status] - priority[b.status]),
|
|
)
|
|
const starting = () => todos().every((t: Todo) => t.status === "pending")
|
|
const finished = () => todos().every((t: Todo) => t.status === "completed")
|
|
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">
|
|
<Switch fallback="Updating plan">
|
|
<Match when={starting()}>Creating plan</Match>
|
|
<Match when={finished()}>Completing plan</Match>
|
|
</Switch>
|
|
</span>
|
|
</div>
|
|
<Show when={todos().length > 0}>
|
|
<ul data-component="todos">
|
|
<For each={todos()}>
|
|
{(todo) => (
|
|
<li data-slot="item" data-status={todo.status}>
|
|
<span></span>
|
|
{todo.content}
|
|
</li>
|
|
)}
|
|
</For>
|
|
</ul>
|
|
</Show>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function GrepTool(props: ToolProps) {
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">Grep</span>
|
|
<span data-slot="target">“{props.state.input.pattern}”</span>
|
|
</div>
|
|
<div data-component="tool-result">
|
|
<Switch>
|
|
<Match when={props.state.metadata?.matches && props.state.metadata?.matches > 0}>
|
|
<ResultsButton
|
|
showCopy={props.state.metadata?.matches === 1 ? "1 match" : `${props.state.metadata?.matches} matches`}
|
|
>
|
|
<ContentText expand compact text={props.state.output} />
|
|
</ResultsButton>
|
|
</Match>
|
|
<Match when={props.state.output}>
|
|
<ContentText expand compact text={props.state.output} data-size="sm" data-color="dimmed" />
|
|
</Match>
|
|
</Switch>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function ListTool(props: ToolProps) {
|
|
const path = createMemo(() =>
|
|
props.state.input?.path !== props.message.path.cwd
|
|
? stripWorkingDirectory(props.state.input?.path, props.message.path.cwd)
|
|
: props.state.input?.path,
|
|
)
|
|
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">LS</span>
|
|
<span data-slot="target" title={props.state.input?.path}>
|
|
{path()}
|
|
</span>
|
|
</div>
|
|
<div data-component="tool-result">
|
|
<Switch>
|
|
<Match when={props.state.output}>
|
|
<ResultsButton>
|
|
<ContentText expand compact text={props.state.output} />
|
|
</ResultsButton>
|
|
</Match>
|
|
</Switch>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function WebFetchTool(props: ToolProps) {
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">Fetch</span>
|
|
<span data-slot="target">{props.state.input.url}</span>
|
|
</div>
|
|
<div data-component="tool-result">
|
|
<Switch>
|
|
<Match when={props.state.metadata?.error}>
|
|
<div data-component="error">{formatErrorString(props.state.output)}</div>
|
|
</Match>
|
|
<Match when={props.state.output}>
|
|
<ResultsButton>
|
|
<CodeBlock lang={props.state.input.format || "text"} code={props.state.output} />
|
|
</ResultsButton>
|
|
</Match>
|
|
</Switch>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function ReadTool(props: ToolProps) {
|
|
const filePath = createMemo(() => stripWorkingDirectory(props.state.input?.filePath, props.message.path.cwd))
|
|
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">Read</span>
|
|
<span data-slot="target" title={props.state.input?.filePath}>
|
|
{filePath()}
|
|
</span>
|
|
</div>
|
|
<div data-component="tool-result">
|
|
<Switch>
|
|
<Match when={props.state.metadata?.error}>
|
|
<div data-component="error">{formatErrorString(props.state.output)}</div>
|
|
</Match>
|
|
<Match when={typeof props.state.metadata?.preview === "string"}>
|
|
<ResultsButton showCopy="Show preview" hideCopy="Hide preview">
|
|
<ContentCode lang={getShikiLang(filePath() || "")} code={props.state.metadata?.preview} />
|
|
</ResultsButton>
|
|
</Match>
|
|
<Match when={typeof props.state.metadata?.preview !== "string" && props.state.output}>
|
|
<ResultsButton>
|
|
<ContentText expand compact text={props.state.output} />
|
|
</ResultsButton>
|
|
</Match>
|
|
</Switch>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function WriteTool(props: ToolProps) {
|
|
const filePath = createMemo(() => stripWorkingDirectory(props.state.input?.filePath, props.message.path.cwd))
|
|
const diagnostics = createMemo(() => getDiagnostics(props.state.metadata?.diagnostics, props.state.input.filePath))
|
|
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">Write</span>
|
|
<span data-slot="target" title={props.state.input?.filePath}>
|
|
{filePath()}
|
|
</span>
|
|
</div>
|
|
<Show when={diagnostics().length > 0}>
|
|
<div data-component="error">{diagnostics()}</div>
|
|
</Show>
|
|
<div data-component="tool-result">
|
|
<Switch>
|
|
<Match when={props.state.metadata?.error}>
|
|
<div data-component="error">{formatErrorString(props.state.output)}</div>
|
|
</Match>
|
|
<Match when={props.state.input?.content}>
|
|
<ResultsButton showCopy="Show contents" hideCopy="Hide contents">
|
|
<ContentCode lang={getShikiLang(filePath() || "")} code={props.state.input?.content} />
|
|
</ResultsButton>
|
|
</Match>
|
|
</Switch>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function EditTool(props: ToolProps) {
|
|
const filePath = createMemo(() => stripWorkingDirectory(props.state.input.filePath, props.message.path.cwd))
|
|
const diagnostics = createMemo(() => getDiagnostics(props.state.metadata?.diagnostics, props.state.input.filePath))
|
|
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">Edit</span>
|
|
<span data-slot="target" title={props.state.input?.filePath}>
|
|
{filePath()}
|
|
</span>
|
|
</div>
|
|
<div data-component="tool-result">
|
|
<Switch>
|
|
<Match when={props.state.metadata?.error}>
|
|
<div data-component="error">{formatErrorString(props.state.metadata?.message || "")}</div>
|
|
</Match>
|
|
<Match when={props.state.metadata?.diff}>
|
|
<div data-component="diff">
|
|
<ContentDiff diff={props.state.metadata?.diff} lang={getShikiLang(filePath() || "")} />
|
|
</div>
|
|
</Match>
|
|
</Switch>
|
|
</div>
|
|
<Show when={diagnostics().length > 0}>
|
|
<div data-component="error">{diagnostics()}</div>
|
|
</Show>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function BashTool(props: ToolProps) {
|
|
return (
|
|
<>
|
|
<div data-component="terminal" data-size="sm">
|
|
<div data-slot="body">
|
|
<div data-slot="header">
|
|
<span>{props.state.metadata.description}</span>
|
|
</div>
|
|
<div data-slot="content">
|
|
<ContentCode flush lang="bash" code={props.state.input.command} />
|
|
<ContentCode flush lang="console" code={props.state.metadata?.stdout || ""} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function GlobTool(props: ToolProps) {
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">Glob</span>
|
|
<span data-slot="target">“{props.state.input.pattern}”</span>
|
|
</div>
|
|
<Switch>
|
|
<Match when={props.state.metadata?.count && props.state.metadata?.count > 0}>
|
|
<div data-component="tool-result">
|
|
<ResultsButton
|
|
showCopy={props.state.metadata?.count === 1 ? "1 result" : `${props.state.metadata?.count} results`}
|
|
>
|
|
<ContentText expand compact text={props.state.output} />
|
|
</ResultsButton>
|
|
</div>
|
|
</Match>
|
|
<Match when={props.state.output}>
|
|
<ContentText expand text={props.state.output} data-size="sm" data-color="dimmed" />
|
|
</Match>
|
|
</Switch>
|
|
</>
|
|
)
|
|
}
|
|
|
|
interface ResultsButtonProps extends ParentProps {
|
|
showCopy?: string
|
|
hideCopy?: string
|
|
}
|
|
function ResultsButton(props: ResultsButtonProps) {
|
|
const [show, setShow] = createSignal(false)
|
|
|
|
return (
|
|
<>
|
|
<button type="button" data-component="button-text" data-more onClick={() => setShow((e) => !e)}>
|
|
<span>{show() ? props.hideCopy || "Hide results" : props.showCopy || "Show results"}</span>
|
|
<span data-slot="icon">
|
|
<Show when={show()} fallback={<IconChevronRight width={11} height={11} />}>
|
|
<IconChevronDown width={11} height={11} />
|
|
</Show>
|
|
</span>
|
|
</button>
|
|
<Show when={show()}>{props.children}</Show>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export function Spacer() {
|
|
return <div data-component="spacer"></div>
|
|
}
|
|
|
|
function Footer(props: ParentProps<{ title: string }>) {
|
|
return (
|
|
<div data-component="content-footer" title={props.title}>
|
|
{props.children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export function FallbackTool(props: ToolProps) {
|
|
return (
|
|
<>
|
|
<div data-component="tool-title">
|
|
<span data-slot="name">{props.tool}</span>
|
|
</div>
|
|
<div data-component="tool-args">
|
|
<For each={flattenToolArgs(props.state.input)}>
|
|
{(arg) => (
|
|
<>
|
|
<div></div>
|
|
<div>{arg[0]}</div>
|
|
<div>{arg[1]}</div>
|
|
</>
|
|
)}
|
|
</For>
|
|
</div>
|
|
<Switch>
|
|
<Match when={props.state.output}>
|
|
<div data-component="tool-result">
|
|
<ResultsButton>
|
|
<ContentText expand compact text={props.state.output} data-size="sm" data-color="dimmed" />
|
|
</ResultsButton>
|
|
</div>
|
|
</Match>
|
|
</Switch>
|
|
</>
|
|
)
|
|
}
|
|
|
|
// Converts nested objects/arrays into [path, value] pairs.
|
|
// E.g. {a:{b:{c:1}}, d:[{e:2}, 3]} => [["a.b.c",1], ["d[0].e",2], ["d[1]",3]]
|
|
function flattenToolArgs(obj: any, prefix: string = ""): Array<[string, any]> {
|
|
const entries: Array<[string, any]> = []
|
|
|
|
for (const [key, value] of Object.entries(obj)) {
|
|
const path = prefix ? `${prefix}.${key}` : key
|
|
|
|
if (value !== null && typeof value === "object") {
|
|
if (Array.isArray(value)) {
|
|
value.forEach((item, index) => {
|
|
const arrayPath = `${path}[${index}]`
|
|
if (item !== null && typeof item === "object") {
|
|
entries.push(...flattenToolArgs(item, arrayPath))
|
|
} else {
|
|
entries.push([arrayPath, item])
|
|
}
|
|
})
|
|
} else {
|
|
entries.push(...flattenToolArgs(value, path))
|
|
}
|
|
} else {
|
|
entries.push([path, value])
|
|
}
|
|
}
|
|
|
|
return entries
|
|
}
|