feat: add Git diff preload toggle in Settings and respect it in diff loading #298
+196
−4
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.
Motivation
Description
Preload git diffssettings section and navigation entry in the settings UI with the subtitleMake viewing git diff faster, and a toggle wired toappSettings.preloadGitDiffs(frontend:src/features/settings/components/SettingsView.tsx).preloadGitDiffsin the sharedAppSettingstypes and defaults on the frontend and backend (src/types.ts,src/features/settings/hooks/useAppSettings.ts, andsrc-tauri/src/types.rs) and persist it via existing settings storage.useGitPanelControllernow acceptsgitDiffPreloadEnabledand gates background preload/loading logic so diffs are only preloaded when enabled or loaded on-demand when a file is explicitly selected (src/features/app/hooks/useGitPanelController.ts,src/App.tsx).src/features/settings/components/SettingsView.test.tsx).Testing
npm run lint, which completed successfully.npm run test(Vitest), which passed: 52 test files, 259 tests total (all passed).npm run typecheck(tsc --noEmit), which completed successfully.cargo checkinsrc-taurito validate Rust changes; it failed in this environment due to a missing system dependency (glib-2.0/ pkg-config), so Rust build validation is blocked by the environment rather than code errors.Codex Task