Add backend-driven history filters and GitKraken-style graph enhancements#16
Merged
Merged
Conversation
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
GitPilot build artifacts are readyOne CI workflow run built all 3 desktop apps: open workflow run. Download links:
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
get_historycommand to accept filter parameters and build agit log --graph --decorateargument list supporting--author,--since,--until,--grep, branch/ref selection, and file path filtering. (src-tauri/src/commands/history.rs)HistoryFilterstype and changedgitService.getHistoryto send filters and increase the default page size to 500 commits. (src/types/git.ts,src/services/gitService.ts)historyLimit/historyFiltersand aloadHistoryaction that preserves filters and supports loading more commits. (src/store/gitStore.ts)Load 500 more commitsaction. (src/components/graph/GitGraph.tsx)Testing
npm cisuccessfully in the workspace.npm run typecheck(tsc --noEmit) and it passed.npm run build(frontendvite build) and it succeeded.cargo fmt --manifest-path src-tauri/Cargo.toml --checkandgit diff --check, both passed.npm run tauri:checklocally butcargo checkfailed due to a missing systemglib-2.0pkg-config dependency in this container (CI installs Tauri Linux system deps before running the check); frontend and non-system Rust checks completed successfully.Codex Task