From: Dominik Csapak <d.csapak@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH datacenter-manager] ui: remote wizard: append nodename to tokenname if possible
Date: Wed, 3 Dec 2025 14:40:28 +0100 [thread overview]
Message-ID: <20251203134035.3214495-1-d.csapak@proxmox.com> (raw)
so that multiple PDM instances can access the same remotes without having
their token names clash by default.
Extract the token name from the `Proxmox` object of the index.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
ui/src/remotes/wizard_page_info.rs | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git a/ui/src/remotes/wizard_page_info.rs b/ui/src/remotes/wizard_page_info.rs
index 8bcd1b38..fbe57d63 100644
--- a/ui/src/remotes/wizard_page_info.rs
+++ b/ui/src/remotes/wizard_page_info.rs
@@ -1,8 +1,10 @@
use std::rc::Rc;
use anyhow::Error;
+use gloo_utils::{format::JsValueSerdeExt, window};
use html::IntoEventCallback;
use serde::{Deserialize, Serialize};
+use wasm_bindgen::JsValue;
use yew::virtual_dom::{Key, VComp, VNode};
use proxmox_schema::property_string::PropertyString;
@@ -341,7 +343,10 @@ impl Component for PdmWizardPageInfo {
.disabled(!self.user_mode)
.required(self.user_mode)
.submit(self.user_mode)
- .default("pdm-admin"),
+ .default(match get_nodename() {
+ Some(nodename) => format!("pdm-admin-{nodename}"),
+ None => "pdm-admin".to_string(),
+ }),
)
.with_right_custom_child(Container::new().key("spacer")) //spacer
.with_right_custom_child(
@@ -409,3 +414,15 @@ impl From<WizardPageInfo> for VNode {
VNode::from(comp)
}
}
+
+#[derive(Deserialize)]
+struct ProxmoxServerConfig {
+ #[serde(alias = "NodeName")]
+ pub node_name: String,
+}
+
+fn get_nodename() -> Option<String> {
+ let value = js_sys::Reflect::get(&window(), &JsValue::from_str("Proxmox")).ok()?;
+ let config: ProxmoxServerConfig = JsValueSerdeExt::into_serde(&value).ok()?;
+ Some(config.node_name)
+}
--
2.47.3
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
next reply other threads:[~2025-12-03 13:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-03 13:40 Dominik Csapak [this message]
2025-12-03 14:28 ` Thomas Lamprecht
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=20251203134035.3214495-1-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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.