From: Shannon Sterz <s.sterz@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH datacenter-manager v3 1/1] ui: add a Node Status tab to the administration panel
Date: Mon, 10 Nov 2025 09:58:30 +0100 [thread overview]
Message-ID: <20251110085830.21887-4-s.sterz@proxmox.com> (raw)
In-Reply-To: <20251110085830.21887-1-s.sterz@proxmox.com>
it show the current node status via the new NodeStatPanel and has
buttons for shutting down and rebooting the node.
Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
---
the setup in NodeStatus here should make it fairly trivial to add more
panels here in the future and have the layout be similar to the current
dashboard.
ui/src/administration/mod.rs | 9 +++
ui/src/administration/node_status.rs | 114 +++++++++++++++++++++++++++
2 files changed, 123 insertions(+)
create mode 100644 ui/src/administration/node_status.rs
diff --git a/ui/src/administration/mod.rs b/ui/src/administration/mod.rs
index a9f7ac6..e37b59c 100644
--- a/ui/src/administration/mod.rs
+++ b/ui/src/administration/mod.rs
@@ -18,6 +18,8 @@ use pwt_macros::builder;
use proxmox_yew_comp::{AptPackageManager, AptRepositories, ExistingProduct, Syslog, Tasks};
+mod node_status;
+
#[derive(Clone, PartialEq, Properties)]
#[builder]
pub struct ServerAdministration {
@@ -67,6 +69,13 @@ impl Component for PdmServerAdministration {
|_| Services::new().into(),
)
*/
+ .with_item_builder(
+ TabBarItem::new()
+ .key("status")
+ .label(tr!("Node Status"))
+ .icon_class("fa fa-book"),
+ move |_| node_status::NodeStatus::new().into(),
+ )
.with_item_builder(
TabBarItem::new()
.key("updates")
diff --git a/ui/src/administration/node_status.rs b/ui/src/administration/node_status.rs
new file mode 100644
index 0000000..953a728
--- /dev/null
+++ b/ui/src/administration/node_status.rs
@@ -0,0 +1,114 @@
+use std::rc::Rc;
+
+use anyhow::Error;
+use yew::virtual_dom::{VComp, VNode};
+
+use proxmox_node_status::NodePowerCommand;
+use proxmox_yew_comp::{http_post, ConfirmButton, NodeStatusPanel};
+use pwt::prelude::*;
+use pwt::widget::{Column, Container, Row};
+
+#[derive(Properties, Clone, PartialEq)]
+pub(crate) struct NodeStatus {}
+
+impl NodeStatus {
+ pub(crate) fn new() -> Self {
+ yew::props!(Self {})
+ }
+}
+
+impl From<NodeStatus> for VNode {
+ fn from(value: NodeStatus) -> Self {
+ VComp::new::<PdmNodeStatus>(Rc::new(value), None).into()
+ }
+}
+
+enum Msg {
+ Reload,
+ Error(Error),
+ RebootOrShutdown(NodePowerCommand),
+}
+
+struct PdmNodeStatus {
+ error: Option<Error>,
+}
+
+impl PdmNodeStatus {
+ fn change_power_state(&self, ctx: &yew::Context<Self>, command: NodePowerCommand) {
+ ctx.link().send_future(async move {
+ let data = Some(serde_json::json!({"command": command}));
+
+ match http_post("/nodes/localhost/status", data).await {
+ Ok(()) => Msg::Reload,
+ Err(e) => Msg::Error(e),
+ }
+ });
+ }
+}
+
+impl Component for PdmNodeStatus {
+ type Message = Msg;
+ type Properties = NodeStatus;
+
+ fn create(_ctx: &yew::Context<Self>) -> Self {
+ Self { error: None }
+ }
+
+ fn update(&mut self, ctx: &yew::Context<Self>, msg: Self::Message) -> bool {
+ match msg {
+ Msg::RebootOrShutdown(command) => {
+ self.change_power_state(ctx, command);
+ false
+ }
+ Msg::Error(e) => {
+ self.error = Some(e);
+ true
+ }
+ Msg::Reload => true,
+ }
+ }
+
+ fn view(&self, ctx: &yew::Context<Self>) -> Html {
+ Column::new()
+ .class(pwt::css::FlexFit)
+ .with_child(
+ Container::new()
+ .class("pwt-content-spacer-padding")
+ .class("pwt-content-spacer-colors")
+ .class("pwt-default-colors")
+ .with_child(
+ Row::new()
+ .gap(1)
+ .with_child(
+ ConfirmButton::new(tr!("Reboot"))
+ .confirm_message(tr!(
+ "Are you sure you want to reboot the node?"
+ ))
+ .on_activate(ctx.link().callback(|_| {
+ Msg::RebootOrShutdown(NodePowerCommand::Reboot)
+ }))
+ .class(pwt::css::ColorScheme::Neutral)
+ .icon_class("fa fa-undo"),
+ )
+ .with_child(
+ ConfirmButton::new(tr!("Shutdown"))
+ .confirm_message(tr!(
+ "Are you sure you want to shut down the node?"
+ ))
+ .on_activate(ctx.link().callback(|_| {
+ Msg::RebootOrShutdown(NodePowerCommand::Shutdown)
+ }))
+ .class(pwt::css::ColorScheme::Neutral)
+ .icon_class("fa fa-power-off"),
+ ),
+ ),
+ )
+ .with_child(
+ Row::new()
+ .class("pwt-content-spacer")
+ .class(pwt::css::FlexFit)
+ .with_child(NodeStatusPanel::new().status_base_url("/nodes/localhost/status")),
+ )
+ .into()
+ }
+}
--
2.47.3
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
next prev parent reply other threads:[~2025-11-10 8:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-10 8:58 [pdm-devel] [PATCH datacenter-manager/yew-comp v3 0/3] add node status panel to proxmox datacenter manager Shannon Sterz
2025-11-10 8:58 ` [pdm-devel] [PATCH yew-comp v3 1/2] node_info: only use build date from kernel version Shannon Sterz
2025-11-10 8:58 ` [pdm-devel] [PATCH yew-comp v3 2/2] node status panel: remove power management and make fingerprint opt-in Shannon Sterz
2025-11-10 8:58 ` Shannon Sterz [this message]
2025-11-12 14:26 ` [pdm-devel] [PATCH datacenter-manager/yew-comp v3 0/3] add node status panel to proxmox datacenter manager Lukas Wagner
2025-11-12 14:34 ` Shannon Sterz
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=20251110085830.21887-4-s.sterz@proxmox.com \
--to=s.sterz@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.