From 8714b1a3acf036f8b860425dfc1dc2858dcfee00 Mon Sep 17 00:00:00 2001 From: David Hill Date: Sat, 24 Jan 2026 23:07:12 +0000 Subject: add active state to comment cards in prompt input --- packages/app/src/context/comments.tsx | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'packages/app/src/context') diff --git a/packages/app/src/context/comments.tsx b/packages/app/src/context/comments.tsx index 12ee977e9..41123042d 100644 --- a/packages/app/src/context/comments.tsx +++ b/packages/app/src/context/comments.tsx @@ -38,6 +38,7 @@ function createCommentSession(dir: string, id: string | undefined) { ) const [focus, setFocus] = createSignal(null) + const [active, setActive] = createSignal(null) const list = (file: string) => store.comments[file] ?? [] @@ -76,6 +77,9 @@ function createCommentSession(dir: string, id: string | undefined) { focus: createMemo(() => focus()), setFocus, clearFocus: () => setFocus(null), + active: createMemo(() => active()), + setActive, + clearActive: () => setActive(null), } } @@ -135,6 +139,9 @@ export const { use: useComments, provider: CommentsProvider } = createSimpleCont focus: () => session().focus(), setFocus: (focus: CommentFocus | null) => session().setFocus(focus), clearFocus: () => session().clearFocus(), + active: () => session().active(), + setActive: (active: CommentFocus | null) => session().setActive(active), + clearActive: () => session().clearActive(), } }, }) -- cgit v1.2.3