[PR #370] [MERGED] Add Healtcheck, OTP improvements, and Event Timeline view #patch #417

Closed
opened 2026-03-04 01:36:45 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/370
Author: @lts-rad
Created: 9/13/2024
Status: Merged
Merged: 9/13/2024
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • afda87d [base] Allow dns for setup
  • 5f7b546 sprlab cleanup
  • c873307 [ui] Skip button, text msg if wired device, cleanup
  • 4afbd36 [ui] https check and status msg
  • 6104364 [ui] https check and status msg
  • 639434d [base] allow port 80 if setup_interface
  • 9e4c754 [ui] send put for new device again after 1s if fail
  • 118c34e [ui] mock setup routes
  • 8d91e0e [ui] fix for tests
  • 05570b4 [setup] Allow HTTP during setup

📊 Changes

21 files changed (+908 additions, -410 deletions)

View changed files

📝 RELEASE-NOTES.md (+10 -0)
📝 api/code/api.go (+3 -2)
📝 frontend/src/AppContext.js (+1 -0)
📝 frontend/src/api/API.js (+3 -1)
frontend/src/components/Alerts/EventTimelineChart.js (+8 -0)
frontend/src/components/Alerts/EventTimelineChart.web.js (+167 -0)
📝 frontend/src/components/Auth/OTPValidate.js (+4 -11)
📝 frontend/src/components/DNS/DNSLogHistoryList.js (+2 -2)
📝 frontend/src/components/Dashboard/HealthCheck.js (+34 -21)
📝 frontend/src/components/Dashboard/Intro.js (+1 -1)
📝 frontend/src/components/Dashboard/ServicesWidgets.js (+121 -68)
📝 frontend/src/components/Dashboard/WifiWidgets.js (+64 -70)
📝 frontend/src/components/DatePicker.web.js (+10 -5)
📝 frontend/src/components/Logs/LogListDb.js (+348 -118)
📝 frontend/src/components/Logs/LogListItem.js (+14 -0)
📝 frontend/src/components/System/Release.js (+21 -15)
📝 frontend/src/components/Wifi/WifiClients.js (+2 -1)
📝 frontend/src/layouts/Admin.js (+8 -0)
📝 frontend/src/views/Home.js (+78 -15)
📝 frontend/src/views/Mesh.js (+0 -69)

...and 1 more files

📄 Description

v0.3.24

Improvements

  • Service healthcheck
  • Events view with multiple event types
  • Timeline view for events
  • WiFi AP Widget now shows frequency
    Fixes
  • OTP Code required for backups, feature setting

🔄 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/spr-networks/super/pull/370 **Author:** [@lts-rad](https://github.com/lts-rad) **Created:** 9/13/2024 **Status:** ✅ Merged **Merged:** 9/13/2024 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`afda87d`](https://github.com/spr-networks/super/commit/afda87d014e05e5625aeae10ae46428508d4bf5d) [base] Allow dns for setup - [`5f7b546`](https://github.com/spr-networks/super/commit/5f7b5468a119f8ea27aa807982b95a12c494bfc6) sprlab cleanup - [`c873307`](https://github.com/spr-networks/super/commit/c873307c9cfe9e0891b81bb73253806271dc9a44) [ui] Skip button, text msg if wired device, cleanup - [`4afbd36`](https://github.com/spr-networks/super/commit/4afbd36aaeaca4b874bb241517ff31dca8c35534) [ui] https check and status msg - [`6104364`](https://github.com/spr-networks/super/commit/61043642cb6c21b6d14507b3798bb43dbdffa6fb) [ui] https check and status msg - [`639434d`](https://github.com/spr-networks/super/commit/639434dff61936fd4d6fd35c53bb6c6383503a5e) [base] allow port 80 if setup_interface - [`9e4c754`](https://github.com/spr-networks/super/commit/9e4c754530a59ece55d8724bf63510e238283772) [ui] send put for new device again after 1s if fail - [`118c34e`](https://github.com/spr-networks/super/commit/118c34ef33d175dcab879576a2d73f99c9ddf69c) [ui] mock setup routes - [`8d91e0e`](https://github.com/spr-networks/super/commit/8d91e0e88a35f3fc09d305673b06e3cb4d35bd14) [ui] fix for tests - [`05570b4`](https://github.com/spr-networks/super/commit/05570b41c46dbdf10d919c577063976b038e9d39) [setup] Allow HTTP during setup ### 📊 Changes **21 files changed** (+908 additions, -410 deletions) <details> <summary>View changed files</summary> 📝 `RELEASE-NOTES.md` (+10 -0) 📝 `api/code/api.go` (+3 -2) 📝 `frontend/src/AppContext.js` (+1 -0) 📝 `frontend/src/api/API.js` (+3 -1) ➕ `frontend/src/components/Alerts/EventTimelineChart.js` (+8 -0) ➕ `frontend/src/components/Alerts/EventTimelineChart.web.js` (+167 -0) 📝 `frontend/src/components/Auth/OTPValidate.js` (+4 -11) 📝 `frontend/src/components/DNS/DNSLogHistoryList.js` (+2 -2) 📝 `frontend/src/components/Dashboard/HealthCheck.js` (+34 -21) 📝 `frontend/src/components/Dashboard/Intro.js` (+1 -1) 📝 `frontend/src/components/Dashboard/ServicesWidgets.js` (+121 -68) 📝 `frontend/src/components/Dashboard/WifiWidgets.js` (+64 -70) 📝 `frontend/src/components/DatePicker.web.js` (+10 -5) 📝 `frontend/src/components/Logs/LogListDb.js` (+348 -118) 📝 `frontend/src/components/Logs/LogListItem.js` (+14 -0) 📝 `frontend/src/components/System/Release.js` (+21 -15) 📝 `frontend/src/components/Wifi/WifiClients.js` (+2 -1) 📝 `frontend/src/layouts/Admin.js` (+8 -0) 📝 `frontend/src/views/Home.js` (+78 -15) 📝 `frontend/src/views/Mesh.js` (+0 -69) _...and 1 more files_ </details> ### 📄 Description ## v0.3.24 **Improvements** - Service healthcheck - Events view with multiple event types - Timeline view for events - WiFi AP Widget now shows frequency **Fixes** - OTP Code required for backups, feature setting --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-04 01:36:45 +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/super#417
No description provided.