[PR #19] [MERGED] Feature/filter view #25

Closed
opened 2026-03-03 00:06:12 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/aurc/loggo/pull/19
Author: @aurc
Created: 7/31/2022
Status: Merged
Merged: 7/31/2022
Merged by: @aurc

Base: mainHead: feature/filter_view


📝 Commits (6)

  • f98dbb8 Added filter view
  • e8c3fa9 Major refactorings and rework on key bindings
  • c133734 Major feature added - Local filtering
  • 06d71de Fixed non-deterministic sorting for adaptative template config.
  • 7ae1b45 Added keybindings for non-focused json view.
  • a9a8d29 Tweaks on the README.md

📊 Changes

20 files changed (+973 additions, -365 deletions)

View changed files

📝 .goreleaser.yaml (+1 -1)
📝 README.md (+5 -2)
📝 go.mod (+3 -2)
📝 go.sum (+6 -2)
📝 img/loggo_log.png (+0 -0)
📝 internal/color/color.go (+3 -0)
📝 internal/config/adpatative_log_confiig.go (+3 -3)
📝 internal/config/log_config.go (+4 -16)
📝 internal/loggo/app_scaffold.go (+1 -0)
📝 internal/loggo/filter_view.go (+149 -46)
internal/loggo/init.go (+51 -0)
📝 internal/loggo/log_view.go (+84 -288)
internal/loggo/log_view_key_events.go (+63 -0)
internal/loggo/log_view_nav_menu.go (+192 -0)
internal/loggo/log_view_readers.go (+148 -0)
internal/loggo/log_view_table_data.go (+138 -0)
internal/loggo/separator_view.go (+51 -0)
📝 internal/uitest/filter_view/main_filter_view.go (+11 -4)
📝 internal/uitest/helper/json_gen.go (+1 -1)
internal/util/log.go (+59 -0)

📄 Description

Enable local filter feature, plus several other improvements.


🔄 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/aurc/loggo/pull/19 **Author:** [@aurc](https://github.com/aurc) **Created:** 7/31/2022 **Status:** ✅ Merged **Merged:** 7/31/2022 **Merged by:** [@aurc](https://github.com/aurc) **Base:** `main` ← **Head:** `feature/filter_view` --- ### 📝 Commits (6) - [`f98dbb8`](https://github.com/aurc/loggo/commit/f98dbb8f4fd3ad1883f6fe29fdd7f03d1ad33b15) Added filter view - [`e8c3fa9`](https://github.com/aurc/loggo/commit/e8c3fa992c49491ec41900944ca692d8f8a2e3ba) Major refactorings and rework on key bindings - [`c133734`](https://github.com/aurc/loggo/commit/c13373456cc58b147f3c216bdc2d11843091f11a) Major feature added - Local filtering - [`06d71de`](https://github.com/aurc/loggo/commit/06d71deca352fd925885e6664808df403e71c255) Fixed non-deterministic sorting for adaptative template config. - [`7ae1b45`](https://github.com/aurc/loggo/commit/7ae1b45e2ca123dcc19f25f2ce3244af40072340) Added keybindings for non-focused json view. - [`a9a8d29`](https://github.com/aurc/loggo/commit/a9a8d2966aae1abfad68ccb53706618256686257) Tweaks on the README.md ### 📊 Changes **20 files changed** (+973 additions, -365 deletions) <details> <summary>View changed files</summary> 📝 `.goreleaser.yaml` (+1 -1) 📝 `README.md` (+5 -2) 📝 `go.mod` (+3 -2) 📝 `go.sum` (+6 -2) 📝 `img/loggo_log.png` (+0 -0) 📝 `internal/color/color.go` (+3 -0) 📝 `internal/config/adpatative_log_confiig.go` (+3 -3) 📝 `internal/config/log_config.go` (+4 -16) 📝 `internal/loggo/app_scaffold.go` (+1 -0) 📝 `internal/loggo/filter_view.go` (+149 -46) ➕ `internal/loggo/init.go` (+51 -0) 📝 `internal/loggo/log_view.go` (+84 -288) ➕ `internal/loggo/log_view_key_events.go` (+63 -0) ➕ `internal/loggo/log_view_nav_menu.go` (+192 -0) ➕ `internal/loggo/log_view_readers.go` (+148 -0) ➕ `internal/loggo/log_view_table_data.go` (+138 -0) ➕ `internal/loggo/separator_view.go` (+51 -0) 📝 `internal/uitest/filter_view/main_filter_view.go` (+11 -4) 📝 `internal/uitest/helper/json_gen.go` (+1 -1) ➕ `internal/util/log.go` (+59 -0) </details> ### 📄 Description Enable local filter feature, plus several other improvements. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:06:12 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/loggo#25
No description provided.