summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop/src
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-10-29 14:08:52 -0500
committerAdam <[email protected]>2025-10-29 16:04:34 -0500
commitcdeb82e9ca0213960202447896493c8d18cb867b (patch)
tree931a7ea706760691ae06b2b90c06729a0b943dac /packages/desktop/src
parenta9cae7b33563cb23c3aab88884d6e9b215fc0ba7 (diff)
downloadopencode-cdeb82e9ca0213960202447896493c8d18cb867b.tar.gz
opencode-cdeb82e9ca0213960202447896493c8d18cb867b.zip
wip: desktop work
Diffstat (limited to 'packages/desktop/src')
-rw-r--r--packages/desktop/src/pages/index.tsx134
1 files changed, 42 insertions, 92 deletions
diff --git a/packages/desktop/src/pages/index.tsx b/packages/desktop/src/pages/index.tsx
index ac6b6f9c8..341da2d95 100644
--- a/packages/desktop/src/pages/index.tsx
+++ b/packages/desktop/src/pages/index.tsx
@@ -670,98 +670,6 @@ export default function Page() {
<Message message={message} parts={parts()} />
</div>
</Show>
- {/* Response */}
- <div class="w-full flex flex-col gap-2">
- <Collapsible variant="ghost" open={expanded()} onOpenChange={setExpanded}>
- <Collapsible.Trigger class="text-text-weak hover:text-text-strong">
- <div class="flex items-center gap-1 self-stretch">
- <h2 class="text-12-medium">
- <Switch>
- <Match when={expanded()}>Hide steps</Match>
- <Match when={!expanded()}>Show steps</Match>
- </Switch>
- </h2>
- <Collapsible.Arrow />
- </div>
- </Collapsible.Trigger>
- <Collapsible.Content>
- <div class="w-full flex flex-col items-start self-stretch gap-8">
- <For each={assistantMessages()}>
- {(assistantMessage) => {
- const parts = createMemo(() => sync.data.part[assistantMessage.id])
- return <Message message={assistantMessage} parts={parts()} />
- }}
- </For>
- </div>
- </Collapsible.Content>
- </Collapsible>
- <Show when={working() && !expanded()}>
- {(_) => {
- const lastMessageWithText = createMemo(() =>
- assistantMessages().findLast((m) => {
- const parts = sync.data.part[m.id]
- return parts?.find((p) => p.type === "text")
- }),
- )
- const lastMessageWithReasoning = createMemo(() =>
- assistantMessages().findLast((m) => {
- const parts = sync.data.part[m.id]
- return parts?.find((p) => p.type === "reasoning")
- }),
- )
- const lastMessageWithTool = createMemo(() =>
- assistantMessages().findLast((m) => {
- const parts = sync.data.part[m.id]
- return parts?.find(
- (p) => p.type === "tool" && p.state.status === "completed",
- )
- }),
- )
- return (
- <div class="w-full flex flex-col gap-2">
- <Switch>
- <Match when={lastMessageWithText()}>
- {(last) => {
- const lastTextPart = createMemo(() =>
- sync.data.part[last().id].findLast((p) => p.type === "text"),
- )
- return (
- <Part message={last()} part={lastTextPart()!} hideDetails />
- )
- }}
- </Match>
- <Match when={lastMessageWithReasoning()}>
- {(last) => {
- const lastReasoningPart = createMemo(() =>
- sync.data.part[last().id].findLast(
- (p) => p.type === "reasoning",
- ),
- )
- return (
- <Part
- message={last()}
- part={lastReasoningPart()!}
- hideDetails
- />
- )
- }}
- </Match>
- </Switch>
- <Show when={lastMessageWithTool()}>
- {(last) => {
- const lastToolPart = createMemo(() =>
- sync.data.part[last().id].findLast(
- (p) => p.type === "tool" && p.state.status === "completed",
- ),
- )
- return <Part message={last()} part={lastToolPart()!} hideDetails />
- }}
- </Show>
- </div>
- )
- }}
- </Show>
- </div>
{/* Summary */}
<Show when={!working()}>
<div class="w-full flex flex-col gap-6 items-start self-stretch">
@@ -817,6 +725,48 @@ export default function Page() {
</Accordion>
</div>
</Show>
+ {/* Response */}
+ <div class="w-full">
+ <Switch>
+ <Match when={working()}>
+ <div class="w-full flex flex-col-reverse items-start self-stretch gap-6 max-h-30 overflow-y-auto no-scrollbar pointer-events-none mask-alpha mask-y-from-66% mask-y-from-background-base mask-y-to-transparent">
+ <For each={assistantMessages()?.toReversed()}>
+ {(assistantMessage) => {
+ const parts = createMemo(() => sync.data.part[assistantMessage.id])
+ return <Message message={assistantMessage} parts={parts()} />
+ }}
+ </For>
+ </div>
+ </Match>
+ <Match when={!working()}>
+ <Collapsible variant="ghost" open={expanded()} onOpenChange={setExpanded}>
+ <Collapsible.Trigger class="text-text-weak hover:text-text-strong">
+ <div class="flex items-center gap-1 self-stretch">
+ <div class="text-12-medium">
+ <Switch>
+ <Match when={expanded()}>Hide steps</Match>
+ <Match when={!expanded()}>Show steps</Match>
+ </Switch>
+ </div>
+ <Collapsible.Arrow />
+ </div>
+ </Collapsible.Trigger>
+ <Collapsible.Content>
+ <div class="w-full flex flex-col-reverse items-start self-stretch gap-8">
+ <For each={assistantMessages()}>
+ {(assistantMessage) => {
+ const parts = createMemo(
+ () => sync.data.part[assistantMessage.id],
+ )
+ return <Message message={assistantMessage} parts={parts()} />
+ }}
+ </For>
+ </div>
+ </Collapsible.Content>
+ </Collapsible>
+ </Match>
+ </Switch>
+ </div>
</div>
)
}}