| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525 |
- package chat
- import (
- "fmt"
- "log/slog"
- "path/filepath"
- "slices"
- "strings"
- "time"
- "unicode"
- "github.com/charmbracelet/lipgloss"
- "github.com/charmbracelet/x/ansi"
- "github.com/sst/opencode/internal/app"
- "github.com/sst/opencode/internal/components/diff"
- "github.com/sst/opencode/internal/layout"
- "github.com/sst/opencode/internal/styles"
- "github.com/sst/opencode/internal/theme"
- "github.com/sst/opencode/pkg/client"
- "golang.org/x/text/cases"
- "golang.org/x/text/language"
- )
- func toMarkdown(content string, width int) string {
- r := styles.GetMarkdownRenderer(width)
- content = strings.ReplaceAll(content, app.Info.Path.Root+"/", "")
- rendered, _ := r.Render(content)
- lines := strings.Split(rendered, "\n")
- if len(lines) > 0 {
- firstLine := lines[0]
- cleaned := ansi.Strip(firstLine)
- nospace := strings.ReplaceAll(cleaned, " ", "")
- if nospace == "" {
- lines = lines[1:]
- }
- if len(lines) > 0 {
- lastLine := lines[len(lines)-1]
- cleaned = ansi.Strip(lastLine)
- nospace = strings.ReplaceAll(cleaned, " ", "")
- if nospace == "" {
- lines = lines[:len(lines)-1]
- }
- }
- }
- content = strings.Join(lines, "\n")
- return strings.TrimSuffix(content, "\n")
- }
- type blockRenderer struct {
- align *lipgloss.Position
- borderColor *lipgloss.AdaptiveColor
- fullWidth bool
- paddingTop int
- paddingBottom int
- }
- type renderingOption func(*blockRenderer)
- func WithFullWidth() renderingOption {
- return func(c *blockRenderer) {
- c.fullWidth = true
- }
- }
- func WithAlign(align lipgloss.Position) renderingOption {
- return func(c *blockRenderer) {
- c.align = &align
- }
- }
- func WithBorderColor(color lipgloss.AdaptiveColor) renderingOption {
- return func(c *blockRenderer) {
- c.borderColor = &color
- }
- }
- func WithPaddingTop(padding int) renderingOption {
- return func(c *blockRenderer) {
- c.paddingTop = padding
- }
- }
- func WithPaddingBottom(padding int) renderingOption {
- return func(c *blockRenderer) {
- c.paddingBottom = padding
- }
- }
- func renderContentBlock(content string, options ...renderingOption) string {
- t := theme.CurrentTheme()
- renderer := &blockRenderer{
- fullWidth: false,
- }
- for _, option := range options {
- option(renderer)
- }
- style := styles.BaseStyle().
- PaddingTop(1).
- PaddingBottom(1).
- PaddingLeft(2).
- PaddingRight(2).
- Background(t.BackgroundSubtle()).
- Foreground(t.TextMuted()).
- BorderStyle(lipgloss.ThickBorder())
- align := lipgloss.Left
- if renderer.align != nil {
- align = *renderer.align
- }
- borderColor := t.BackgroundSubtle()
- if renderer.borderColor != nil {
- borderColor = *renderer.borderColor
- }
- switch align {
- case lipgloss.Left:
- style = style.
- BorderLeft(true).
- BorderRight(true).
- AlignHorizontal(align).
- BorderLeftForeground(borderColor).
- BorderLeftBackground(t.Background()).
- BorderRightForeground(t.BackgroundSubtle()).
- BorderRightBackground(t.Background())
- case lipgloss.Right:
- style = style.
- BorderRight(true).
- BorderLeft(true).
- AlignHorizontal(align).
- BorderRightForeground(borderColor).
- BorderRightBackground(t.Background()).
- BorderLeftForeground(t.BackgroundSubtle()).
- BorderLeftBackground(t.Background())
- }
- content = styles.ForceReplaceBackgroundWithLipgloss(content, t.BackgroundSubtle())
- if renderer.fullWidth {
- style = style.Width(layout.Current.Container.Width - 2)
- }
- content = style.Render(content)
- if renderer.paddingTop > 0 {
- content = strings.Repeat("\n", renderer.paddingTop) + content
- }
- if renderer.paddingBottom > 0 {
- content = content + strings.Repeat("\n", renderer.paddingBottom)
- }
- content = lipgloss.PlaceHorizontal(
- layout.Current.Container.Width,
- align,
- content,
- lipgloss.WithWhitespaceBackground(t.Background()),
- )
- content = lipgloss.PlaceHorizontal(
- layout.Current.Viewport.Width,
- lipgloss.Center,
- content,
- lipgloss.WithWhitespaceBackground(t.Background()),
- )
- return content
- }
- func renderText(message client.MessageInfo, text string, author string) string {
- t := theme.CurrentTheme()
- width := layout.Current.Container.Width
- padding := 0
- switch layout.Current.Size {
- case layout.LayoutSizeSmall:
- padding = 5
- case layout.LayoutSizeNormal:
- padding = 10
- case layout.LayoutSizeLarge:
- padding = 15
- }
- timestamp := time.UnixMilli(int64(message.Metadata.Time.Created)).Local().Format("02 Jan 2006 03:04 PM")
- if time.Now().Format("02 Jan 2006") == timestamp[:11] {
- // don't show the date if it's today
- timestamp = timestamp[12:]
- }
- info := styles.BaseStyle().
- Foreground(t.TextMuted()).
- Render(fmt.Sprintf("%s (%s)", author, timestamp))
- align := lipgloss.Left
- switch message.Role {
- case client.User:
- align = lipgloss.Right
- case client.Assistant:
- align = lipgloss.Left
- }
- textWidth := lipgloss.Width(text)
- markdownWidth := min(textWidth, width-padding-4) // -4 for the border and padding
- content := toMarkdown(text, markdownWidth)
- content = lipgloss.JoinVertical(align, content, info)
- switch message.Role {
- case client.User:
- return renderContentBlock(content,
- WithAlign(lipgloss.Right),
- WithBorderColor(t.Secondary()),
- )
- case client.Assistant:
- return renderContentBlock(content,
- WithAlign(lipgloss.Left),
- WithBorderColor(t.Primary()),
- )
- }
- return ""
- }
- func renderToolInvocation(
- toolCall client.MessageToolInvocationToolCall,
- result *string,
- metadata map[string]any,
- showResult bool,
- ) string {
- ignoredTools := []string{"opencode_todoread"}
- if slices.Contains(ignoredTools, toolCall.ToolName) {
- return ""
- }
- padding := 1
- outerWidth := layout.Current.Container.Width - 1 // subtract 1 for the border
- innerWidth := outerWidth - padding - 4 // -4 for the border and padding
- t := theme.CurrentTheme()
- style := styles.Muted().
- Width(outerWidth).
- PaddingLeft(padding).
- BorderLeft(true).
- BorderForeground(t.BorderSubtle()).
- BorderStyle(lipgloss.ThickBorder())
- if toolCall.State == "partial-call" {
- style = style.Foreground(t.TextMuted())
- return style.Render(renderToolAction(toolCall.ToolName))
- }
- toolArgs := ""
- toolArgsMap := make(map[string]any)
- if toolCall.Args != nil {
- value := *toolCall.Args
- m, ok := value.(map[string]any)
- if ok {
- toolArgsMap = m
- firstKey := ""
- for key := range toolArgsMap {
- firstKey = key
- break
- }
- toolArgs = renderArgs(&toolArgsMap, firstKey)
- }
- }
- if len(toolArgsMap) == 0 {
- slog.Debug("no args")
- }
- body := ""
- finished := result != nil && *result != ""
- if finished {
- body = *result
- }
- if metadata["error"] != nil && metadata["message"] != nil {
- body = styles.BaseStyle().
- Width(outerWidth).
- Foreground(t.Error()).
- Render(metadata["message"].(string))
- }
- elapsed := ""
- if metadata["time"] != nil {
- timeMap := metadata["time"].(map[string]any)
- start := timeMap["start"].(float64)
- end := timeMap["end"].(float64)
- durationMs := end - start
- duration := time.Duration(durationMs * float64(time.Millisecond))
- roundedDuration := time.Duration(duration.Round(time.Millisecond))
- if durationMs > 1000 {
- roundedDuration = time.Duration(duration.Round(time.Second))
- }
- elapsed = styles.Muted().Render(roundedDuration.String())
- }
- title := ""
- switch toolCall.ToolName {
- case "opencode_read":
- toolArgs = renderArgs(&toolArgsMap, "filePath")
- title = fmt.Sprintf("Read: %s %s", toolArgs, elapsed)
- body = ""
- filename := toolArgsMap["filePath"].(string)
- if metadata["preview"] != nil {
- body = metadata["preview"].(string)
- body = renderFile(filename, body, WithTruncate(6))
- }
- case "opencode_edit":
- filename := toolArgsMap["filePath"].(string)
- title = fmt.Sprintf("Edit: %s %s", relative(filename), elapsed)
- if metadata["diff"] != nil {
- patch := metadata["diff"].(string)
- diffWidth := min(layout.Current.Viewport.Width, 120)
- formattedDiff, _ := diff.FormatDiff(filename, patch, diff.WithTotalWidth(diffWidth))
- body = strings.TrimSpace(formattedDiff)
- body = lipgloss.Place(
- layout.Current.Viewport.Width,
- lipgloss.Height(body)+2,
- lipgloss.Center,
- lipgloss.Center,
- body,
- lipgloss.WithWhitespaceBackground(t.Background()),
- )
- }
- case "opencode_write":
- filename := toolArgsMap["filePath"].(string)
- title = fmt.Sprintf("Write: %s %s", relative(filename), elapsed)
- content := toolArgsMap["content"].(string)
- body = renderFile(filename, content)
- case "opencode_bash":
- description := toolArgsMap["description"].(string)
- title = fmt.Sprintf("Shell: %s %s", description, elapsed)
- if metadata["stdout"] != nil {
- command := toolArgsMap["command"].(string)
- stdout := metadata["stdout"].(string)
- body = fmt.Sprintf("```console\n> %s\n%s```", command, stdout)
- body = toMarkdown(body, innerWidth)
- body = renderContentBlock(body, WithFullWidth(), WithPaddingTop(1), WithPaddingBottom(1))
- }
- case "opencode_webfetch":
- title = fmt.Sprintf("Fetching: %s %s", toolArgs, elapsed)
- format := toolArgsMap["format"].(string)
- body = truncateHeight(body, 10)
- if format == "html" || format == "markdown" {
- body = toMarkdown(body, innerWidth)
- }
- body = renderContentBlock(body, WithFullWidth(), WithPaddingTop(1), WithPaddingBottom(1))
- case "opencode_todowrite":
- title = fmt.Sprintf("Planning... %s", elapsed)
- if finished && metadata["todos"] != nil {
- body = ""
- todos := metadata["todos"].([]any)
- for _, todo := range todos {
- t := todo.(map[string]any)
- content := t["content"].(string)
- switch t["status"].(string) {
- case "completed":
- body += fmt.Sprintf("- [x] %s\n", content)
- // case "in-progress":
- // body += fmt.Sprintf("- [ ] _%s_\n", content)
- default:
- body += fmt.Sprintf("- [ ] %s\n", content)
- }
- }
- body = toMarkdown(body, innerWidth)
- body = renderContentBlock(body, WithFullWidth(), WithPaddingTop(1), WithPaddingBottom(1))
- }
- default:
- toolName := renderToolName(toolCall.ToolName)
- title = fmt.Sprintf("%s: %s %s", toolName, toolArgs, elapsed)
- body = truncateHeight(body, 10)
- body = renderContentBlock(body, WithFullWidth(), WithPaddingTop(1), WithPaddingBottom(1))
- }
- content := style.Render(title)
- content = lipgloss.PlaceHorizontal(layout.Current.Viewport.Width, lipgloss.Center, content)
- content = styles.ForceReplaceBackgroundWithLipgloss(content, t.Background())
- if showResult && body != "" {
- content += "\n" + body
- }
- return content
- }
- func renderToolName(name string) string {
- switch name {
- // case agent.AgentToolName:
- // return "Task"
- case "opencode_ls":
- return "List"
- case "opencode_webfetch":
- return "Fetch"
- case "opencode_todoread":
- return "Planning"
- case "opencode_todowrite":
- return "Planning"
- default:
- normalizedName := name
- if strings.HasPrefix(name, "opencode_") {
- normalizedName = strings.TrimPrefix(name, "opencode_")
- }
- return cases.Title(language.Und).String(normalizedName)
- }
- }
- type fileRenderer struct {
- filename string
- content string
- height int
- }
- type fileRenderingOption func(*fileRenderer)
- func WithTruncate(height int) fileRenderingOption {
- return func(c *fileRenderer) {
- c.height = height
- }
- }
- func renderFile(filename string, content string, options ...fileRenderingOption) string {
- renderer := &fileRenderer{
- filename: filename,
- content: content,
- }
- for _, option := range options {
- option(renderer)
- }
- // TODO: is this even needed?
- lines := []string{}
- for line := range strings.SplitSeq(content, "\n") {
- line = strings.TrimRightFunc(line, unicode.IsSpace)
- line = strings.ReplaceAll(line, "\t", " ")
- lines = append(lines, line)
- }
- content = strings.Join(lines, "\n")
- width := layout.Current.Container.Width - 6
- if renderer.height > 0 {
- content = truncateHeight(content, renderer.height)
- }
- content = fmt.Sprintf("```%s\n%s\n```", extension(renderer.filename), content)
- content = toMarkdown(content, width)
- // ensure no line is wider than the width
- // truncated := []string{}
- // for line := range strings.SplitSeq(content, "\n") {
- // line = strings.TrimRightFunc(line, unicode.IsSpace)
- // // if lipgloss.Width(line) > width-3 {
- // line = ansi.Truncate(line, width-3, "")
- // // }
- // truncated = append(truncated, line)
- // }
- // content = strings.Join(truncated, "\n")
- return renderContentBlock(content, WithFullWidth(), WithPaddingTop(1), WithPaddingBottom(1))
- }
- func renderToolAction(name string) string {
- switch name {
- // case agent.AgentToolName:
- // return "Preparing prompt..."
- case "opencode_bash":
- return "Building command..."
- case "opencode_edit":
- return "Preparing edit..."
- case "opencode_fetch":
- return "Writing fetch..."
- case "opencode_glob":
- return "Finding files..."
- case "opencode_grep":
- return "Searching content..."
- case "opencode_ls":
- return "Listing directory..."
- case "opencode_read":
- return "Reading file..."
- case "opencode_write":
- return "Preparing write..."
- case "opencode_patch":
- return "Preparing patch..."
- case "opencode_batch":
- return "Running batch operations..."
- }
- return "Working..."
- }
- func renderArgs(args *map[string]any, titleKey string) string {
- if args == nil || len(*args) == 0 {
- return ""
- }
- title := ""
- parts := []string{}
- for key, value := range *args {
- if value == nil {
- continue
- }
- if key == "filePath" || key == "path" {
- value = relative(value.(string))
- }
- if key == titleKey {
- title = fmt.Sprintf("%s", value)
- continue
- }
- parts = append(parts, fmt.Sprintf("%s=%v", key, value))
- }
- if len(parts) == 0 {
- return title
- }
- return fmt.Sprintf("%s (%s)", title, strings.Join(parts, ", "))
- }
- func truncateHeight(content string, height int) string {
- lines := strings.Split(content, "\n")
- if len(lines) > height {
- return strings.Join(lines[:height], "\n")
- }
- return content
- }
- func relative(path string) string {
- return strings.TrimPrefix(path, app.Info.Path.Root+"/")
- }
- func extension(path string) string {
- ext := filepath.Ext(path)
- if ext == "" {
- ext = ""
- } else {
- ext = strings.ToLower(ext[1:])
- }
- return ext
- }
|