[PR #183] [MERGED] iOS UI updates #patch #363

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

📋 Pull Request Information

Original PR: https://github.com/spr-networks/super/pull/183
Author: @lts-po
Created: 7/28/2023
Status: Merged
Merged: 8/2/2023
Merged by: @lts-rad

Base: mainHead: dev


📝 Commits (10+)

  • dc0664e [ui] add useSwipe component for swipe left and right
  • f81e227 [ui] mobile view
  • 1925f11 [ui] show device name if available
  • ced6abb [ui] new edit device view
  • 36cf4b2 [ui] mac address
  • ca9485d [ui] helper text for trailing dot on domain names, issue #166
  • 29975f1 [ui] bugfix multiple modal popups
  • 353267b [ui] add swipe up/down
  • 5d08101 [ui] swipe to refresh on mobile. also show time ago for query
  • bfc051d [ui] skip useSwipe for now

📊 Changes

25 files changed (+639 additions, -557 deletions)

View changed files

📝 frontend/ios/Podfile.lock (+2 -2)
📝 frontend/package.json (+1 -1)
📝 frontend/src/FontAwesomeUtils.js (+110 -140)
📝 frontend/src/api/MockAPI.js (+111 -12)
📝 frontend/src/components/DNS/DNSBlocklist.js (+9 -5)
📝 frontend/src/components/DNS/DNSLogHistoryList.js (+1 -0)
📝 frontend/src/components/Dashboard/WifiWidgets.js (+1 -0)
📝 frontend/src/components/Devices/AddDevice.js (+1 -1)
📝 frontend/src/components/Devices/Device.js (+1 -1)
📝 frontend/src/components/Devices/EditDevice.js (+16 -21)
📝 frontend/src/components/Groups/GroupListing.js (+48 -52)
📝 frontend/src/components/IconItem.js (+0 -5)
📝 frontend/src/components/IconPicker.js (+3 -2)
📝 frontend/src/components/Sidebar/Sidebar.js (+11 -3)
📝 frontend/src/components/Traffic/TimeSeriesList.js (+2 -2)
📝 frontend/src/components/Wireguard/PeerList.js (+38 -34)
📝 frontend/src/layouts/Admin.js (+3 -7)
📝 frontend/src/views/Groups/Dhcp.js (+14 -10)
📝 frontend/src/views/Groups/Groups.js (+75 -57)
📝 frontend/src/views/LANLinkConfiguration.js (+23 -16)

...and 5 more files

📄 Description

No description provided


🔄 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/183 **Author:** [@lts-po](https://github.com/lts-po) **Created:** 7/28/2023 **Status:** ✅ Merged **Merged:** 8/2/2023 **Merged by:** [@lts-rad](https://github.com/lts-rad) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`dc0664e`](https://github.com/spr-networks/super/commit/dc0664e2f1ecff7623b3994b3364eb3f60db7f86) [ui] add useSwipe component for swipe left and right - [`f81e227`](https://github.com/spr-networks/super/commit/f81e227282048b708b4da053fbc7f2bbcb69a9d3) [ui] mobile view - [`1925f11`](https://github.com/spr-networks/super/commit/1925f11ff39a19fbe897b5d839e45d1891f83716) [ui] show device name if available - [`ced6abb`](https://github.com/spr-networks/super/commit/ced6abbbfc4c5c4cd4c88dca8ef8e08d9811e068) [ui] new edit device view - [`36cf4b2`](https://github.com/spr-networks/super/commit/36cf4b28b913dffa5d93b15d0a56a5f66ff97d94) [ui] mac address - [`ca9485d`](https://github.com/spr-networks/super/commit/ca9485db4c977a38c3bd74e4bc15d54c88ceeec8) [ui] helper text for trailing dot on domain names, issue #166 - [`29975f1`](https://github.com/spr-networks/super/commit/29975f100fa6c6c7acd3a2144782ef3068768965) [ui] bugfix multiple modal popups - [`353267b`](https://github.com/spr-networks/super/commit/353267bc61fa6ac1d04d978b952f2767986e7dbe) [ui] add swipe up/down - [`5d08101`](https://github.com/spr-networks/super/commit/5d08101a4cc5291c5fb1c66a71a663d3caaa156b) [ui] swipe to refresh on mobile. also show time ago for query - [`bfc051d`](https://github.com/spr-networks/super/commit/bfc051d6beb4443daacbef5954ead23354ff68db) [ui] skip useSwipe for now ### 📊 Changes **25 files changed** (+639 additions, -557 deletions) <details> <summary>View changed files</summary> 📝 `frontend/ios/Podfile.lock` (+2 -2) 📝 `frontend/package.json` (+1 -1) 📝 `frontend/src/FontAwesomeUtils.js` (+110 -140) 📝 `frontend/src/api/MockAPI.js` (+111 -12) 📝 `frontend/src/components/DNS/DNSBlocklist.js` (+9 -5) 📝 `frontend/src/components/DNS/DNSLogHistoryList.js` (+1 -0) 📝 `frontend/src/components/Dashboard/WifiWidgets.js` (+1 -0) 📝 `frontend/src/components/Devices/AddDevice.js` (+1 -1) 📝 `frontend/src/components/Devices/Device.js` (+1 -1) 📝 `frontend/src/components/Devices/EditDevice.js` (+16 -21) 📝 `frontend/src/components/Groups/GroupListing.js` (+48 -52) 📝 `frontend/src/components/IconItem.js` (+0 -5) 📝 `frontend/src/components/IconPicker.js` (+3 -2) 📝 `frontend/src/components/Sidebar/Sidebar.js` (+11 -3) 📝 `frontend/src/components/Traffic/TimeSeriesList.js` (+2 -2) 📝 `frontend/src/components/Wireguard/PeerList.js` (+38 -34) 📝 `frontend/src/layouts/Admin.js` (+3 -7) 📝 `frontend/src/views/Groups/Dhcp.js` (+14 -10) 📝 `frontend/src/views/Groups/Groups.js` (+75 -57) 📝 `frontend/src/views/LANLinkConfiguration.js` (+23 -16) _...and 5 more files_ </details> ### 📄 Description _No description provided_ --- <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:29 +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#363
No description provided.