File size: 9,485 Bytes
d4d3fde
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
"""Shared transcript rendering used by both UIs.

Both ``local_ui.py`` (driving a raw ``opencode serve``) and the deployed
``server/gradio_ui.py`` (driving an in-sandbox ``opencode serve`` through
the env's MCP tools) consume the same opencode message+parts shape:

    messages: [
        {
            "info":  {id, role, sessionID, time, ...},
            "parts": [
                {"type": "step-start", ...},
                {"type": "reasoning", "text": ..., "id": ...},
                {"type": "text", "text": ..., "id": ...},
                {"type": "tool", "tool": "...", "state": {status, input, output}, ...},
                {"type": "step-finish", "tokens": {...}, ...},
            ],
        },
        ...
    ]

or the flat SSE form:

    events: [{"type": "message.part.updated", "properties": {"part": {...}}}, ...]

Both reduce to an ordered list of parts keyed on ``part.id``.
"""

from __future__ import annotations

import html as _html
import json
from typing import Any


# ── Part collection ────────────────────────────────────────────────────────


def collect_parts_from_events(events: list[dict[str, Any]]) -> list[dict[str, Any]]:
    """Reduce SSE ``message.part.updated`` frames to latest snapshot per ``part.id``.

    Used by ``local_ui.py`` (direct SSE consumer).
    """
    order: list[str] = []
    latest: dict[str, dict[str, Any]] = {}
    for ev in events:
        if ev.get("type") != "message.part.updated":
            continue
        p = (ev.get("properties") or {}).get("part") or {}
        pid = p.get("id")
        if not pid:
            continue
        if pid not in latest:
            order.append(pid)
        latest[pid] = p
    return [latest[i] for i in order]


def collect_parts_from_messages(
    messages: list[dict[str, Any]],
) -> list[dict[str, Any]]:
    """Flatten the ``GET /session/:id/message`` shape into an ordered parts list.

    Used by the deployed Gradio UI which polls via ``get_messages`` MCP tool.
    Message order is preserved; within a message the server returns parts in
    emission order so no further sorting is needed.
    """
    parts: list[dict[str, Any]] = []
    for m in messages or []:
        if not isinstance(m, dict):
            continue
        for p in m.get("parts") or []:
            if isinstance(p, dict):
                parts.append(p)
    return parts


# ── Rendering ──────────────────────────────────────────────────────────────


def _esc(s: Any) -> str:
    return _html.escape("" if s is None else str(s))


def _cap(s: str, n: int = 6000) -> str:
    if len(s) <= n:
        return s
    return s[:n] + f"\n… ({len(s) - n} chars hidden)"


def _todo_icon(status: str | None) -> str:
    return {"completed": "βœ…", "in_progress": "πŸ”„"}.get(status or "", "⏳")


def fmt_tool(name: str, state: dict[str, Any], raw: dict[str, Any]) -> str:
    """Per-tool card β€” mirrors opencode's own UI shapes."""
    status = (state or {}).get("status") or "?"
    inp = (state or {}).get("input") or raw.get("input") or {}
    out = (state or {}).get("output") or raw.get("output") or ""
    badge = {"completed": "ok", "error": "err", "running": "run"}.get(status, "")

    if name == "read":
        summary = f"πŸ“– read <code>{_esc(inp.get('filePath') or inp.get('path'))}</code>"
        body = f"<pre>{_esc(_cap(str(out)))}</pre>"
    elif name == "write":
        path = inp.get("filePath") or inp.get("path")
        content = inp.get("content") or ""
        summary = f"✍️ write <code>{_esc(path)}</code> ({len(content)} chars)"
        body = f"<pre>{_esc(_cap(content))}</pre>"
    elif name == "edit":
        path = inp.get("filePath") or inp.get("path")
        old = inp.get("oldString") or ""
        new = inp.get("newString") or ""
        summary = f"✏️ edit <code>{_esc(path)}</code>"
        body = (
            f"<div class='lbl'>- old</div><pre class='del'>{_esc(_cap(old, 3000))}</pre>"
            f"<div class='lbl'>+ new</div><pre class='add'>{_esc(_cap(new, 3000))}</pre>"
        )
        if out:
            body += f"<div class='lbl'>output</div><pre>{_esc(_cap(str(out), 2000))}</pre>"
    elif name == "bash":
        cmd = inp.get("command") or inp.get("cmd") or ""
        summary = f"⚑ bash <code>{_esc(cmd[:160])}</code>"
        body = f"<pre>{_esc(_cap(str(out)))}</pre>"
    elif name in ("glob", "find"):
        pattern = inp.get("pattern") or inp.get("query") or ""
        summary = f"πŸ”Ž {name} <code>{_esc(pattern)}</code>"
        body = f"<pre>{_esc(_cap(str(out), 4000))}</pre>"
    elif name == "grep":
        pattern = inp.get("pattern") or ""
        path = inp.get("path") or ""
        summary = f"πŸ”Ž grep <code>{_esc(pattern)}</code>" + (
            f" in <code>{_esc(path)}</code>" if path else ""
        )
        body = f"<pre>{_esc(_cap(str(out), 4000))}</pre>"
    elif name == "todowrite":
        todos = inp.get("todos") or []
        summary = f"πŸ“ todowrite ({len(todos)} items)"
        body = "<ul>" + "".join(
            f"<li>{_todo_icon(t.get('status'))} {_esc(t.get('content'))}</li>"
            for t in todos
        ) + "</ul>"
    elif name == "task":
        desc = inp.get("description") or inp.get("prompt") or ""
        summary = f"🧩 task β€” {_esc(desc[:160])}"
        body = f"<pre>{_esc(_cap(str(out), 4000))}</pre>"
    elif name == "webfetch":
        summary = f"🌐 webfetch <code>{_esc(inp.get('url'))}</code>"
        body = f"<pre>{_esc(_cap(str(out), 4000))}</pre>"
    else:
        summary = f"πŸ”§ {_esc(name)}"
        body = (
            f"<div class='lbl'>input</div><pre>{_esc(_cap(json.dumps(inp, indent=2, default=str), 4000))}</pre>"
            f"<div class='lbl'>output</div><pre>{_esc(_cap(str(out), 4000))}</pre>"
        )
    return (
        "<details class='tool' open>"
        f"<summary>{summary} <span class='badge {badge}'>{_esc(status)}</span></summary>"
        f"<div class='tbody'>{body}</div>"
        "</details>"
    )


def render_transcript(
    parts: list[dict[str, Any]], errors: list[str] | None = None
) -> str:
    """Render a parts list as HTML cards. Emits wrapped CSS-friendly markup.

    Consumers should inject the CSS from :data:`TRANSCRIPT_CSS`.
    """
    out: list[str] = []
    if errors:
        out.append(
            "<div class='errbox'><b>⚠️ errors</b><ul>"
            + "".join(f"<li>{_esc(e)}</li>" for e in errors[:8])
            + "</ul></div>"
        )
    if not parts:
        out.append("<div class='empty'>waiting for first part…</div>")
        return "".join(out)
    out.append("<div class='chat'>")
    for p in parts:
        t = p.get("type")
        if t == "step-start":
            out.append("<div class='step'>── new step ──</div>")
        elif t == "reasoning":
            txt = (p.get("text") or "").strip()
            if txt:
                out.append(
                    "<details class='reasoning'><summary>🧠 reasoning</summary>"
                    f"<pre>{_esc(_cap(txt, 4000))}</pre></details>"
                )
        elif t == "text":
            txt = (p.get("text") or "").strip()
            if txt:
                out.append(f"<div class='assistant'><pre>{_esc(txt)}</pre></div>")
        elif t == "tool":
            out.append(fmt_tool(p.get("tool") or "?", p.get("state") or {}, p))
        elif t == "step-finish":
            tokens = p.get("tokens") or (p.get("state") or {}).get("tokens") or {}
            if tokens:
                out.append(
                    f"<div class='stepfin'>tokens: "
                    f"{_esc(json.dumps(tokens, default=str))}</div>"
                )
    out.append("</div>")
    return "".join(out)


TRANSCRIPT_CSS = """
.chat { font-size:14px; }
.assistant pre { background:#0e1013; padding:10px; border-radius:8px;
                 white-space:pre-wrap; color:#eee; margin:6px 0; }
.reasoning { opacity:0.8; margin:4px 0; }
.reasoning pre { background:#0a0b0d; color:#aab; padding:8px; white-space:pre-wrap; }
.tool { border:1px solid #2a2f3a; border-radius:8px; padding:6px 10px;
        margin:6px 0; background:#12161c; }
.tool summary { cursor:pointer; color:#ddd; }
.tool code { background:#222; color:#9cf; padding:1px 4px; border-radius:3px; }
.tbody { margin-top:6px; }
.tbody pre { background:#0a0b0d; padding:8px; border-radius:4px;
             white-space:pre-wrap; max-height:400px; overflow:auto;
             font-size:12px; color:#ddd; margin:2px 0; }
.tbody pre.add { border-left:3px solid #2e6; }
.tbody pre.del { border-left:3px solid #e53; }
.tbody .lbl { color:#888; font-size:11px; margin-top:6px; }
.badge { padding:1px 6px; border-radius:8px; font-size:11px;
         background:#333; color:#ddd; }
.badge.ok { background:#1f6f43; color:white; }
.badge.err { background:#7a1e1e; color:white; }
.badge.run { background:#7a5c1e; color:white; }
.step { color:#555; text-align:center; margin:10px 0; font-size:11px; }
.stepfin { color:#666; font-size:11px; margin:4px 0 12px; }
.empty { color:#666; font-style:italic; padding:12px; }
.errbox { background:#2a1414; border:1px solid #7a1e1e; border-radius:6px;
          padding:6px 10px; margin:6px 0; color:#f88; font-size:13px; }
.errbox ul { margin:2px 0 0 18px; }
"""