[PR #126] [MERGED] Server sent event response viewer #61

Closed
opened 2025-12-29 07:19:08 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/126
Author: @gschier
Created: 10/11/2024
Status: Merged
Merged: 10/11/2024
Merged by: @gschier

Base: masterHead: sse


📝 Commits (6)

📊 Changes

24 files changed (+513 additions, -104 deletions)

View changed files

📝 package-lock.json (+51 -0)
📝 package.json (+1 -0)
📝 src-tauri/Cargo.lock (+42 -0)
📝 src-tauri/Cargo.toml (+3 -1)
📝 src-tauri/gen/schemas/capabilities.json (+1 -1)
📝 src-tauri/src/http_request.rs (+82 -62)
📝 src-tauri/src/lib.rs (+32 -5)
📝 src-tauri/yaak_models/src/queries.rs (+1 -0)
src-tauri/yaak_sse/Cargo.toml (+9 -0)
src-tauri/yaak_sse/bindings/sse.ts (+3 -0)
src-tauri/yaak_sse/index.ts (+1 -0)
src-tauri/yaak_sse/package.json (+6 -0)
src-tauri/yaak_sse/src/lib.rs (+1 -0)
src-tauri/yaak_sse/src/sse.rs (+12 -0)
📝 src-web/components/GrpcConnectionMessagesPane.tsx (+1 -1)
📝 src-web/components/ResponsePane.tsx (+8 -5)
📝 src-web/components/core/InlineCode.tsx (+0 -1)
src-web/components/responseViewers/EventStreamViewer.tsx (+205 -0)
src-web/hooks/useResponseBodyEventSource.ts (+12 -0)
📝 src-web/lib/contentType.ts (+12 -0)

...and 4 more files

📄 Description

image


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mountain-loop/yaak/pull/126 **Author:** [@gschier](https://github.com/gschier) **Created:** 10/11/2024 **Status:** ✅ Merged **Merged:** 10/11/2024 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `master` ← **Head:** `sse` --- ### 📝 Commits (6) - [`501c90a`](https://github.com/mountain-loop/yaak/commit/501c90afcba9b91ff257db706bec35a409b3f5ad) Server-sent events viewer - [`17f2ba6`](https://github.com/mountain-loop/yaak/commit/17f2ba68e8c26665f22ab44cebbda92d5b1ed943) Format event JSON - [`f9e850d`](https://github.com/mountain-loop/yaak/commit/f9e850d3dc5b75b681b3fe072b8ca353e40f81eb) Move parsing to Rust - [`8049c2f`](https://github.com/mountain-loop/yaak/commit/8049c2ff04af964354cd1c2e7d0c2351fef483e0) Switch virtualizer and fix gRPC connection state - [`d536e5d`](https://github.com/mountain-loop/yaak/commit/d536e5d6cbdb83e269448f4c80dba800e4449aab) Remove Lazy - [`c49518b`](https://github.com/mountain-loop/yaak/commit/c49518b098a660808d45eefc90aa9943ff54fa1e) Fix scrolling ### 📊 Changes **24 files changed** (+513 additions, -104 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+51 -0) 📝 `package.json` (+1 -0) 📝 `src-tauri/Cargo.lock` (+42 -0) 📝 `src-tauri/Cargo.toml` (+3 -1) 📝 `src-tauri/gen/schemas/capabilities.json` (+1 -1) 📝 `src-tauri/src/http_request.rs` (+82 -62) 📝 `src-tauri/src/lib.rs` (+32 -5) 📝 `src-tauri/yaak_models/src/queries.rs` (+1 -0) ➕ `src-tauri/yaak_sse/Cargo.toml` (+9 -0) ➕ `src-tauri/yaak_sse/bindings/sse.ts` (+3 -0) ➕ `src-tauri/yaak_sse/index.ts` (+1 -0) ➕ `src-tauri/yaak_sse/package.json` (+6 -0) ➕ `src-tauri/yaak_sse/src/lib.rs` (+1 -0) ➕ `src-tauri/yaak_sse/src/sse.rs` (+12 -0) 📝 `src-web/components/GrpcConnectionMessagesPane.tsx` (+1 -1) 📝 `src-web/components/ResponsePane.tsx` (+8 -5) 📝 `src-web/components/core/InlineCode.tsx` (+0 -1) ➕ `src-web/components/responseViewers/EventStreamViewer.tsx` (+205 -0) ➕ `src-web/hooks/useResponseBodyEventSource.ts` (+12 -0) 📝 `src-web/lib/contentType.ts` (+12 -0) _...and 4 more files_ </details> ### 📄 Description ![image](https://github.com/user-attachments/assets/639b810e-eb78-45e9-b410-057a8f8fda7e) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 07:19:08 +01:00
adam closed this issue 2025-12-29 07:19:08 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#61