-
-
Notifications
You must be signed in to change notification settings - Fork 675
Fix repeated project save prompts #1938
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
629da55
fix: remember project save choices
giswqs d91f757
style: auto-format (ruff + oxfmt) [pre-commit.ci]
pre-commit-ci[bot] 12a382f
fix: cancel stale save prompts on project switch
giswqs 948fee2
fix: invalidate suspended saves on project switch
giswqs 80ac7ef
fix: preserve save safety across project changes
giswqs 76102dc
fix: reject stale HTML export results
giswqs 5ffe347
fix: reconfirm expanded credential saves
giswqs 160d0ea
Address Claude review feedback
giswqs 6a564b1
Address Claude review feedback
giswqs a6f255e
Address Claude review feedback
giswqs ce59232
Address Claude review feedback
giswqs 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
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| /** How credentials should be handled when the current project is saved. */ | ||
| export type CredentialSaveChoice = "strip" | "keep"; | ||
|
|
||
| /** How local vector data should be handled when the current project is saved. */ | ||
| export type VectorDataSaveChoice = "embed" | "noembed"; | ||
|
|
||
| /** Save choices remembered for one loaded project during the current session. */ | ||
| export interface ProjectSaveChoices { | ||
| projectGeneration: number; | ||
| credentials?: CredentialSaveChoice; | ||
| vectorData?: VectorDataSaveChoice; | ||
| /** Whether the user accepted embedding after seeing the large-data warning. */ | ||
| largeEmbedWarningAcknowledged?: boolean; | ||
| } | ||
|
|
||
| /** | ||
| * Returns remembered choices only when they belong to the current project. | ||
| * | ||
| * The store increments `projectGeneration` for every new or loaded project, so | ||
| * this keeps potentially sensitive save decisions from leaking into another | ||
| * project while allowing repeated saves of the same project to stay silent. | ||
| * | ||
| * @param remembered - Choices retained by the project-file hook, if any. | ||
| * @param projectGeneration - Generation of the currently loaded project. | ||
| * @returns Existing choices for this project, or an empty choice set. | ||
| */ | ||
| export function saveChoicesForProject( | ||
| remembered: ProjectSaveChoices | null, | ||
| projectGeneration: number, | ||
| ): ProjectSaveChoices { | ||
| return remembered?.projectGeneration === projectGeneration ? remembered : { projectGeneration }; | ||
| } | ||
|
|
||
| /** | ||
| * Remembers one or more save choices for the current project. | ||
| * | ||
| * @param remembered - Choices retained by the project-file hook, if any. | ||
| * @param projectGeneration - Generation of the currently loaded project. | ||
| * @param choices - New choices to retain. | ||
| * @returns Updated choices scoped to the supplied project generation. | ||
| */ | ||
| export function rememberProjectSaveChoices( | ||
| remembered: ProjectSaveChoices | null, | ||
| projectGeneration: number, | ||
| choices: Partial<Omit<ProjectSaveChoices, "projectGeneration">>, | ||
| ): ProjectSaveChoices { | ||
| return { | ||
| ...saveChoicesForProject(remembered, projectGeneration), | ||
| ...choices, | ||
| }; | ||
| } | ||
|
|
||
| /** | ||
| * Returns a remembered vector-data choice when no new size warning is needed. | ||
| * | ||
| * @param remembered - Choices scoped to the current project. | ||
| * @param largeEmbedWarningRequired - Whether the current data crosses the warning threshold. | ||
| * @returns The reusable choice, or undefined when the user must confirm a large embed. | ||
| */ | ||
| export function reusableVectorDataChoice( | ||
| remembered: ProjectSaveChoices, | ||
| largeEmbedWarningRequired: boolean, | ||
| ): VectorDataSaveChoice | undefined { | ||
| return remembered.vectorData === "embed" && | ||
| largeEmbedWarningRequired && | ||
| remembered.largeEmbedWarningAcknowledged !== true | ||
| ? undefined | ||
| : remembered.vectorData; | ||
| } | ||
|
giswqs marked this conversation as resolved.
|
||
Oops, something went wrong.
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.