Introduce global requests history window#448
Draft
julienbourdeau wants to merge 1 commit intomountain-loop:mainfrom
Draft
Introduce global requests history window#448julienbourdeau wants to merge 1 commit intomountain-loop:mainfrom
julienbourdeau wants to merge 1 commit intomountain-loop:mainfrom
Conversation
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.
Summary
This is getting close but it's still a work in progress.
I'm adding a global history window to see all previous requests, with their body, method and so on. It's mostly frontend work but there is some database schema change needed. I believe this should live together with the existing history per request, not replace it.
Small DB change
Because of the way history works now, some attributes are not saved and rely on the current request. Like
method,nameandbody_type. I have added those to the response table.UI and features
I went for a separate window because I like it more. It's accessible via the
cmd + Kpalette.I added a button to collapse all requests, to delete all requests, to delete one request. I'm missing one button to replay/restore a request specifically.
HTTP + Graphql
For now, only http and graphql requests are supported. gRPC and websocket could be handled in a future release. Ideally, I'd add filters at the very top and you can see only one type at the time. They are in different tables so it's annoying to handle pagination and such. And I think you only really need to see one at a time.
Any feedback is very welcome!
Submission
CONTRIBUTING.md.Approved feedback item (required if not a bug fix or small-scope improvement):
https://yaak.app/feedback/posts/show-global-history
Related
Screenshots
Short video
CleanShot.2026-04-25.at.14.04.44.mp4