From: Shannon Sterz <s.sterz@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH datacenter-manager 5/6] ui: node status: handle the request via an AsyncAbortGuard
Date: Thu, 27 Nov 2025 16:36:08 +0100 [thread overview]
Message-ID: <20251127153609.440415-7-s.sterz@proxmox.com> (raw)
In-Reply-To: <20251127153609.440415-1-s.sterz@proxmox.com>
this makes it possible to abort a request when another one is
triggered here. in theory this could also trigger a race condition
with a potential login. however, as a user would need to trigger it
manually, this is rather unlikely to happen in practice.
Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
---
ui/src/administration/node_status.rs | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
diff --git a/ui/src/administration/node_status.rs b/ui/src/administration/node_status.rs
index cce3426..a3338bb 100644
--- a/ui/src/administration/node_status.rs
+++ b/ui/src/administration/node_status.rs
@@ -7,6 +7,7 @@ use proxmox_node_status::NodePowerCommand;
use proxmox_yew_comp::{http_post, ConfirmButton, NodeStatusPanel};
use pwt::prelude::*;
use pwt::widget::{Column, Container, Row};
+use pwt::AsyncAbortGuard;
#[derive(Properties, Clone, PartialEq)]
pub(crate) struct NodeStatus {}
@@ -31,18 +32,22 @@ enum Msg {
struct PdmNodeStatus {
error: Option<Error>,
+ abort_guard: Option<AsyncAbortGuard>,
}
impl PdmNodeStatus {
- fn change_power_state(&self, ctx: &yew::Context<Self>, command: NodePowerCommand) {
- ctx.link().send_future(async move {
+ fn change_power_state(&mut self, ctx: &yew::Context<Self>, command: NodePowerCommand) {
+ let link = ctx.link().clone();
+ self.abort_guard.replace(AsyncAbortGuard::spawn(async move {
let data = Some(serde_json::json!({"command": command}));
- match http_post("/nodes/localhost/status", data).await {
+ let res = match http_post("/nodes/localhost/status", data).await {
Ok(()) => Msg::Reload,
Err(e) => Msg::Error(e),
- }
- });
+ };
+
+ link.send_message(res);
+ }));
}
}
@@ -51,7 +56,10 @@ impl Component for PdmNodeStatus {
type Properties = NodeStatus;
fn create(_ctx: &yew::Context<Self>) -> Self {
- Self { error: None }
+ Self {
+ error: None,
+ abort_guard: None,
+ }
}
fn update(&mut self, ctx: &yew::Context<Self>, msg: Self::Message) -> bool {
--
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-27 15:36 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-27 15:36 [pdm-devel] [PATCH datacenter-manager/yew-widget-toolkit 0/7] avoid more race conditions on log in Shannon Sterz
2025-11-27 15:36 ` [pdm-devel] [PATCH yew-widget-toolkit 1/1] loader: add helper to allow aborting a load Shannon Sterz
2025-11-27 18:22 ` [pdm-devel] applied: " Thomas Lamprecht
2025-11-27 15:36 ` [pdm-devel] [PATCH datacenter-manager 1/6] ui: main: abort running task load on log out Shannon Sterz
2025-11-27 15:36 ` [pdm-devel] [PATCH datacenter-manager 2/6] ui: main: move requests into an async pool and drop it on logout Shannon Sterz
2025-11-27 15:36 ` [pdm-devel] [PATCH datacenter-manager 3/6] ui: main: only render acl context when we are logged in Shannon Sterz
2025-11-27 15:36 ` [pdm-devel] [PATCH datacenter-manager 4/6] ui: resource tree: use an async pool for requests Shannon Sterz
2025-11-27 15:36 ` Shannon Sterz [this message]
2025-11-27 15:36 ` [pdm-devel] [PATCH datacenter-manager 6/6] ui: top nav bar: use an abort guard for loading the version Shannon Sterz
2025-11-27 20:54 ` [pdm-devel] applied: [PATCH datacenter-manager/yew-widget-toolkit 0/7] avoid more race conditions on log in 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=20251127153609.440415-7-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.