Buckets:
| import type { TuiPlugin, TuiPluginApi } from "@opencode-ai/plugin/tui" | |
| import type { BuiltinTuiPlugin } from "../builtins" | |
| import { createMemo, For, Show, createSignal } from "solid-js" | |
| import { TodoItem } from "../../component/todo-item" | |
| const id = "internal:sidebar-todo" | |
| 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.todo(props.session_id)) | |
| const show = createMemo(() => list().length > 0 && list().some((item) => item.status !== "completed")) | |
| return ( | |
| <Show when={show()}> | |
| <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>Todo</b> | |
| </text> | |
| </box> | |
| <Show when={list().length <= 2 || open()}> | |
| <For each={list()}>{(item) => <TodoItem status={item.status} content={item.content} />}</For> | |
| </Show> | |
| </box> | |
| </Show> | |
| ) | |
| } | |
| const tui: TuiPlugin = async (api) => { | |
| api.slots.register({ | |
| order: 400, | |
| 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:
- 1.48 kB
- Xet hash:
- f9ef85fb492d8b4a079f9b10a1386627d092eab82bb7a76e96fe745c510aee5c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.