-
Notifications
You must be signed in to change notification settings - Fork 5.5k
fix(web): keep citation comment when popover is dismissed #10831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
flamboh
wants to merge
4
commits into
pingdotgg:main
Choose a base branch
from
flamboh:fix/web-citation-comment-dismiss
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+137
−3
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
fc31318
fix(web): keep citation comment when popover is dismissed
flamboh b1296bf
fix(web): keep citation popover open when dismissal save is refused
flamboh 042fa48
fix(web): treat whitespace-only comment differences as unchanged
flamboh 0e77c4f
chore(web): drop citation dismissal comments
flamboh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 80 additions & 0 deletions
80
apps/web/src/components/chat/assistantCitationCommentDismissal.test.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| import { ASSISTANT_CITATION_MAX_COMMENT_LENGTH } from "@t3tools/contracts"; | ||
| import { describe, expect, it } from "vite-plus/test"; | ||
|
|
||
| import { resolveAssistantCitationCommentDismissal } from "./assistantCitationCommentDismissal"; | ||
|
|
||
| describe("resolveAssistantCitationCommentDismissal", () => { | ||
| it("commits typed text when the popover is dismissed by clicking away", () => { | ||
| expect( | ||
| resolveAssistantCitationCommentDismissal({ | ||
| reason: "outside-press", | ||
| draft: "needs a retry", | ||
| savedComment: undefined, | ||
| }), | ||
| ).toEqual({ kind: "commit", comment: "needs a retry" }); | ||
| }); | ||
|
|
||
| it("commits an edited comment when focus leaves the popover", () => { | ||
| expect( | ||
| resolveAssistantCitationCommentDismissal({ | ||
| reason: "focus-out", | ||
| draft: "second thought", | ||
| savedComment: "first thought", | ||
| }), | ||
| ).toEqual({ kind: "commit", comment: "second thought" }); | ||
| }); | ||
|
|
||
| it("closes without saving when nothing changed", () => { | ||
| expect( | ||
| resolveAssistantCitationCommentDismissal({ | ||
| reason: "outside-press", | ||
| draft: null, | ||
| savedComment: "kept", | ||
| }), | ||
| ).toEqual({ kind: "close" }); | ||
| expect( | ||
| resolveAssistantCitationCommentDismissal({ | ||
| reason: "outside-press", | ||
| draft: " kept ", | ||
| savedComment: "kept", | ||
| }), | ||
| ).toEqual({ kind: "close" }); | ||
| expect( | ||
| resolveAssistantCitationCommentDismissal({ | ||
| reason: "outside-press", | ||
| draft: "kept", | ||
| savedComment: " kept ", | ||
| }), | ||
| ).toEqual({ kind: "close" }); | ||
| }); | ||
|
|
||
| it("clears a comment when the draft was emptied", () => { | ||
| expect( | ||
| resolveAssistantCitationCommentDismissal({ | ||
| reason: "trigger-press", | ||
| draft: "", | ||
| savedComment: "old", | ||
| }), | ||
| ).toEqual({ kind: "commit", comment: "" }); | ||
| }); | ||
|
|
||
| it("keeps Escape as an explicit discard", () => { | ||
| expect( | ||
| resolveAssistantCitationCommentDismissal({ | ||
| reason: "escape-key", | ||
| draft: "unsaved", | ||
| savedComment: undefined, | ||
| }), | ||
| ).toEqual({ kind: "close" }); | ||
| }); | ||
|
|
||
| it("keeps the popover open instead of dropping an over-length draft", () => { | ||
| expect( | ||
| resolveAssistantCitationCommentDismissal({ | ||
| reason: "outside-press", | ||
| draft: "x".repeat(ASSISTANT_CITATION_MAX_COMMENT_LENGTH + 1), | ||
| savedComment: undefined, | ||
| }), | ||
| ).toEqual({ kind: "keep-open" }); | ||
| }); | ||
| }); |
21 changes: 21 additions & 0 deletions
21
apps/web/src/components/chat/assistantCitationCommentDismissal.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import { ASSISTANT_CITATION_MAX_COMMENT_LENGTH } from "@t3tools/contracts"; | ||
|
|
||
| export type AssistantCitationCommentDismissal = | ||
| | { kind: "commit"; comment: string } | ||
| | { kind: "close" } | ||
| | { kind: "keep-open" }; | ||
|
|
||
| export function resolveAssistantCitationCommentDismissal({ | ||
| reason, | ||
| draft, | ||
| savedComment, | ||
| }: { | ||
| reason: string; | ||
| draft: string | null; | ||
| savedComment: string | undefined; | ||
| }): AssistantCitationCommentDismissal { | ||
| if (reason === "escape-key" || draft === null) return { kind: "close" }; | ||
| if (draft.trim() === (savedComment ?? "").trim()) return { kind: "close" }; | ||
| if (draft.length > ASSISTANT_CITATION_MAX_COMMENT_LENGTH) return { kind: "keep-open" }; | ||
|
flamboh marked this conversation as resolved.
|
||
| return { kind: "commit", comment: draft }; | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.