public inbox for yew-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [PATCH yew-comp/yew-mobile-gui 00/20] firewall tabs and clean up for pve-yew-mobile-gui
@ 2026-05-08 15:05 Shannon Sterz
  2026-05-08 15:05 ` [PATCH yew-comp 01/20] firewall rules panel: correct the url for the pve cluster firewall rules Shannon Sterz
                   ` (20 more replies)
  0 siblings, 21 replies; 24+ messages in thread
From: Shannon Sterz @ 2026-05-08 15:05 UTC (permalink / raw)
  To: yew-devel

this series cleans up the pve-yew-mobile-gui a little bit. it does so by first
fixing a bug in proxmox-yew-comp. then pve-yew-mobile-gui is made clippy clean
again. the last six patches add, unify and clean up functionality in the gui.
the main changes are as follows:

* properly populate the rules tab of the existing firewall tabs and comment out
  empty sub-tabs.
* add a firewall tab for container guests and nodes
* two small ui clean ups in how subscription levels and cpu utilization is
  rendered


yew-comp:

Shannon Sterz (1):
  firewall rules panel: correct the url for the pve cluster firewall
    rules

 src/configuration/pve/firewall/firewall_rules_panel.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


yew-mobile-gui:

Shannon Sterz (19):
  cargo.toml: globally ignore certain clippy lints
  main: avoid unnecessary clones
  tree-wide: collapse if statements
  tree-wide: implement the `From` trait instead of the `Into` trait
  tree-wide: implement `Default` for types with an `new()` constructor
  tree-wide: remove unnecessary lazy evaluations
  tree-wide: remove needless borrows
  configuration page: remove redundant static lifetimes
  resources/configuration page: remove useless `.into()` calls
  tree-wide: fix several clippy lints
  dashboard: use proper plural translation string instead of "CPU(s)"
  configuration: clarify that "Firewall" shows the cluster's firewall
  cluster/qemu firewall: use rules panel and comment out unused tabs
  lxc page: align layout for lxc guest with qemu guests
  lxc: add support for a rudimentary firewall tab for lxc guests
  node status: align layout for node status with guest pages
  node: add a rudimentary firewall tab for cluster nodes
  api types: remove unused file
  resources page: map subscription level analogous to dashboard

 Cargo.toml                                    |   5 +
 src/api_types.rs                              | 131 -------------
 src/main.rs                                   |  25 ++-
 src/pages/mod.rs                              |  13 ++
 src/pages/page_cluster_firewall/mod.rs        |  35 ++--
 src/pages/page_configuartion.rs               |  22 ++-
 src/pages/page_dashboard.rs                   |  43 ++---
 src/pages/page_login.rs                       |  12 +-
 src/pages/page_lxc_status/dashboard_panel.rs  |  70 ++++---
 src/pages/page_lxc_status/firewall_panel.rs   | 172 ++++++++++++++++++
 src/pages/page_lxc_status/mod.rs              |  47 ++++-
 src/pages/page_lxc_tasks.rs                   |   6 +-
 src/pages/page_node_status/dashboard_panel.rs |   6 +-
 src/pages/page_node_status/firewall_panel.rs  | 163 +++++++++++++++++
 src/pages/page_node_status/mod.rs             |  37 +++-
 src/pages/page_node_status/services_panel.rs  |   2 +-
 src/pages/page_node_tasks.rs                  |   6 +-
 src/pages/page_qemu_status/dashboard_panel.rs |  77 ++++----
 src/pages/page_qemu_status/firewall_panel.rs  |  33 ++--
 src/pages/page_qemu_status/mod.rs             |   6 +-
 src/pages/page_qemu_tasks.rs                  |   6 +-
 src/pages/page_resources.rs                   |  50 ++---
 src/pages/page_settings.rs                    |  12 +-
 src/pages/page_storage_status.rs              |   6 +-
 src/pages/page_task_status.rs                 |   6 +-
 src/widgets/guest_backup_panel.rs             |   4 +-
 src/widgets/task_list_button.rs               |  29 +--
 src/widgets/tasks_panel.rs                    |   2 +-
 src/widgets/top_nav_bar.rs                    |  12 +-
 29 files changed, 671 insertions(+), 367 deletions(-)
 delete mode 100644 src/api_types.rs
 create mode 100644 src/pages/page_lxc_status/firewall_panel.rs
 create mode 100644 src/pages/page_node_status/firewall_panel.rs


Summary over all repositories:
  30 files changed, 672 insertions(+), 368 deletions(-)

-- 
Generated by murpp 0.10.0




^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2026-05-08 15:59 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-08 15:05 [PATCH yew-comp/yew-mobile-gui 00/20] firewall tabs and clean up for pve-yew-mobile-gui Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-comp 01/20] firewall rules panel: correct the url for the pve cluster firewall rules Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 02/20] cargo.toml: globally ignore certain clippy lints Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 03/20] main: avoid unnecessary clones Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 04/20] tree-wide: collapse if statements Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 05/20] tree-wide: implement the `From` trait instead of the `Into` trait Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 06/20] tree-wide: implement `Default` for types with an `new()` constructor Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 07/20] tree-wide: remove unnecessary lazy evaluations Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 08/20] tree-wide: remove needless borrows Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 09/20] configuration page: remove redundant static lifetimes Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 10/20] resources/configuration page: remove useless `.into()` calls Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 11/20] tree-wide: fix several clippy lints Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 12/20] dashboard: use proper plural translation string instead of "CPU(s)" Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 13/20] configuration: clarify that "Firewall" shows the cluster's firewall Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 14/20] cluster/qemu firewall: use rules panel and comment out unused tabs Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 15/20] lxc page: align layout for lxc guest with qemu guests Shannon Sterz
2026-05-08 15:43   ` Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 16/20] lxc: add support for a rudimentary firewall tab for lxc guests Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 17/20] node status: align layout for node status with guest pages Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 18/20] node: add a rudimentary firewall tab for cluster nodes Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 19/20] api types: remove unused file Shannon Sterz
2026-05-08 15:05 ` [PATCH yew-mobile-gui 20/20] resources page: map subscription level analogous to dashboard Shannon Sterz
2026-05-08 15:22   ` Shan Shaji
2026-05-08 15:59 ` Superseded: Re: [PATCH yew-comp/yew-mobile-gui 00/20] firewall tabs and clean up for pve-yew-mobile-gui Shannon Sterz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal