Buckets:
| import type { TuiPlugin, TuiPluginApi } from "@opencode-ai/plugin/tui" | |
| import type { BuiltinTuiPlugin } from "../builtins" | |
| import { createMemo, For, Show, createSignal } from "solid-js" | |
| import { Locale } from "../../util/locale" | |
| const id = "internal:sidebar-files" | |
| function changeCountWidth(item: { additions: number; deletions: number }) { | |
| return [item.additions ? `+${item.additions}` : "", item.deletions ? `-${item.deletions}` : ""] | |
| .filter(Boolean) | |
| .join(" ").length | |
| } | |
| function View(props: { api: TuiPluginApi; session_id: string }) { | |
| const [open, setOpen] = createSignal(true) | |
| const theme = () => props.api.theme.current | |
| const list = createMemo(() => props.api.state.session.diff(props.session_id)) | |
| return ( | |
| <Show when={list().length > 0}> | |
| <box> | |
| <box flexDirection="row" gap={1} onMouseDown={() => list().length > 2 && setOpen((x) => !x)}> | |
| <Show when={list().length > 2}> | |
| <text fg={theme().text}>{open() ? "▼" : "▶"}</text> | |
| </Show> | |
| <text fg={theme().text}> | |
| <b>Modified Files</b> | |
| </text> | |
| </box> | |
| <Show when={list().length <= 2 || open()}> | |
| <For each={list()}> | |
| {(item) => ( | |
| <box flexDirection="row" gap={1} justifyContent="space-between"> | |
| <text fg={theme().textMuted} wrapMode="none"> | |
| {Locale.truncateLeft(item.file, Math.max(2, 36 - changeCountWidth(item)))} | |
| </text> | |
| <box flexDirection="row" gap={1} flexShrink={0}> | |
| <Show when={item.additions}> | |
| <text fg={theme().diffAdded}>+{item.additions}</text> | |
| </Show> | |
| <Show when={item.deletions}> | |
| <text fg={theme().diffRemoved}>-{item.deletions}</text> | |
| </Show> | |
| </box> | |
| </box> | |
| )} | |
| </For> | |
| </Show> | |
| </box> | |
| </Show> | |
| ) | |
| } | |
| const tui: TuiPlugin = async (api) => { | |
| api.slots.register({ | |
| order: 500, | |
| slots: { | |
| sidebar_content(_ctx, props) { | |
| return <View api={api} session_id={props.session_id} /> | |
| }, | |
| }, | |
| }) | |
| } | |
| const plugin: BuiltinTuiPlugin = { | |
| id, | |
| tui, | |
| } | |
| export default plugin | |
Xet Storage Details
- Size:
- 2.26 kB
- Xet hash:
- 440fe6259556b8c9cf9222154931b03e77a8f7c05775350bce36e2b609bb7173
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.