public inbox for pdm-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Dominik Csapak <d.csapak@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH datacenter-manager 10/18] ui: views: make 'view' name property optional
Date: Wed, 12 Nov 2025 17:11:45 +0100	[thread overview]
Message-ID: <20251112161900.75032-11-d.csapak@proxmox.com> (raw)
In-Reply-To: <20251112161900.75032-1-d.csapak@proxmox.com>

and make the default dashboard the default case

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
 ui/src/dashboard/view.rs | 61 +++++++++++++++++++++-------------------
 ui/src/main_menu.rs      |  2 +-
 2 files changed, 33 insertions(+), 30 deletions(-)

diff --git a/ui/src/dashboard/view.rs b/ui/src/dashboard/view.rs
index b3e827ec..4ab66e08 100644
--- a/ui/src/dashboard/view.rs
+++ b/ui/src/dashboard/view.rs
@@ -51,7 +51,7 @@ pub enum EditingMessage {
 
 #[derive(Properties, PartialEq)]
 pub struct View {
-    view: AttrValue,
+    view: Option<AttrValue>,
 }
 
 impl From<View> for VNode {
@@ -62,7 +62,7 @@ impl From<View> for VNode {
 }
 
 impl View {
-    pub fn new(view: impl Into<AttrValue>) -> Self {
+    pub fn new(view: impl Into<Option<AttrValue>>) -> Self {
         Self { view: view.into() }
     }
 }
@@ -259,14 +259,17 @@ impl Component for ViewComp {
     type Properties = View;
 
     fn create(ctx: &yew::Context<Self>) -> Self {
-        let refresh_config: PersistentState<RefreshConfig> = PersistentState::new(
-            StorageLocation::local(refresh_config_id(ctx.props().view.as_str())),
-        );
+        let view = ctx.props().view.clone();
+        let refresh_id = match view.as_ref() {
+            Some(view) => format!("view-{view}"),
+            None => "dashboard".to_string(),
+        };
+        let refresh_config: PersistentState<RefreshConfig> =
+            PersistentState::new(StorageLocation::local(refresh_config_id(&refresh_id)));
 
         let async_pool = AsyncPool::new();
-        let view = ctx.props().view.clone();
-        async_pool.send_future(ctx.link().clone(), async move {
-            Msg::ViewTemplateLoaded(load_template(Some(view)).await)
+        async_pool.send_future(ctx.link().clone(), {
+            async move { Msg::ViewTemplateLoaded(load_template(view).await) }
         });
 
         Self {
@@ -355,7 +358,7 @@ impl Component for ViewComp {
         self.load_finished_time = None;
         let view = ctx.props().view.clone();
         self.async_pool.send_future(ctx.link().clone(), async move {
-            Msg::ViewTemplateLoaded(load_template(Some(view)).await)
+            Msg::ViewTemplateLoaded(load_template(view).await)
         });
         true
     }
@@ -379,9 +382,7 @@ impl Component for ViewComp {
                         ctx.link().callback(Msg::Reload),
                         ctx.link().callback(|_| Msg::ConfigWindow(true)),
                     )
-                    .editing_state(
-                        (props.view != "dashboard").then_some(self.editing_state.clone()),
-                    ),
+                    .editing_state(props.view.is_some().then_some(self.editing_state.clone())),
                 ),
         );
 
@@ -435,24 +436,26 @@ impl Component for ViewComp {
                 .as_ref()
                 .map(|err| error_message(&err.to_string())),
         );
-        view.add_optional_child(
-            self.show_config_window.then_some(
-                create_refresh_config_edit_window(&ctx.props().view)
-                    .on_close(ctx.link().callback(|_| Msg::ConfigWindow(false)))
-                    .on_submit({
-                        let link = ctx.link().clone();
-                        move |ctx: FormContext| {
-                            let link = link.clone();
-                            async move {
-                                let data: RefreshConfig =
-                                    serde_json::from_value(ctx.get_submit_data())?;
-                                link.send_message(Msg::UpdateConfig(data));
-                                Ok(())
-                            }
+        view.add_optional_child(self.show_config_window.then_some({
+            let refresh_config_id = match &props.view {
+                Some(view) => format!("view-{view}"),
+                None => "dashboard".to_string(),
+            };
+            create_refresh_config_edit_window(&refresh_config_id)
+                .on_close(ctx.link().callback(|_| Msg::ConfigWindow(false)))
+                .on_submit({
+                    let link = ctx.link().clone();
+                    move |ctx: FormContext| {
+                        let link = link.clone();
+                        async move {
+                            let data: RefreshConfig =
+                                serde_json::from_value(ctx.get_submit_data())?;
+                            link.send_message(Msg::UpdateConfig(data));
+                            Ok(())
                         }
-                    }),
-            ),
-        );
+                    }
+                })
+        }));
         view.add_optional_child(self.show_create_wizard.map(|remote_type| {
             AddWizard::new(remote_type)
                 .on_close(ctx.link().callback(|_| Msg::CreateWizard(None)))
diff --git a/ui/src/main_menu.rs b/ui/src/main_menu.rs
index 43cc2923..883c482a 100644
--- a/ui/src/main_menu.rs
+++ b/ui/src/main_menu.rs
@@ -142,7 +142,7 @@ impl Component for PdmMainMenu {
             tr!("Dashboard"),
             "dashboard",
             Some("fa fa-tachometer"),
-            move |_| View::new("dashboard").into(),
+            move |_| View::new(None).into(),
         );
 
         register_view(
-- 
2.47.3



_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel


  parent reply	other threads:[~2025-11-12 16:19 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-12 16:11 [pdm-devel] [PATCH datacenter-manager 00/18] enable custom views on the UI Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 01/18] lib: pdm-config: views: add locking/saving methods Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 02/18] lib: api-types: add 'layout' property to ViewConfig Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 03/18] server: api: implement CRUD api for views Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 04/18] server: api: resources: add 'view' category to search syntax Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 05/18] ui: remote selector: allow forcing of value Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 06/18] ui: dashboard types: add missing 'default' to de-serialization Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 07/18] ui: dashboard: status row: add optional 'editing state' Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 08/18] ui: dashboard: prepare view for editing custom views Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 09/18] ui: views: implement view loading from api Dominik Csapak
2025-11-12 16:11 ` Dominik Csapak [this message]
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 11/18] ui: views: add 'view' parameter to api calls Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 12/18] ui: views: save updated layout to backend Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 13/18] ui: add view list context Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 14/18] ui: configuration: add view CRUD panels Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 15/18] ui: main menu: add optional view_list property Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 16/18] ui: load view list on page init Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 17/18] lib/ui: move views types to pdm-api-types Dominik Csapak
2025-11-12 16:11 ` [pdm-devel] [PATCH datacenter-manager 18/18] server: api: views: check layout string for validity Dominik Csapak
2025-11-14 10:20 ` [pdm-devel] [PATCH datacenter-manager 00/18] enable custom views on the UI Lukas Wagner
2025-11-14 10:56   ` Dominik Csapak
2025-11-14 12:13 ` [pdm-devel] superseded: " Dominik Csapak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20251112161900.75032-11-d.csapak@proxmox.com \
    --to=d.csapak@proxmox.com \
    --cc=pdm-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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