From: Lukas Wagner <l.wagner@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH datacenter-manager v3 2/2] ui: use task descriptions from yew-comp for PBS and PVE
Date: Thu, 18 Dec 2025 14:28:09 +0100 [thread overview]
Message-ID: <20251218132809.241210-6-l.wagner@proxmox.com> (raw)
In-Reply-To: <20251218132809.241210-1-l.wagner@proxmox.com>
Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
---
ui/src/tasks.rs | 109 +++---------------------------------------------
1 file changed, 5 insertions(+), 104 deletions(-)
diff --git a/ui/src/tasks.rs b/ui/src/tasks.rs
index 7e40863d..f0931c9e 100644
--- a/ui/src/tasks.rs
+++ b/ui/src/tasks.rs
@@ -1,4 +1,7 @@
-use proxmox_yew_comp::utils::{format_task_description, format_upid, register_task_description};
+use proxmox_yew_comp::utils::{
+ format_task_description, format_upid, register_pbs_tasks, register_pve_tasks,
+ register_task_description,
+};
use pwt::tr;
use pdm_api_types::{NativeUpid, RemoteUpid};
@@ -6,112 +9,10 @@ use yew::virtual_dom::Key;
pub fn register_tasks() {
register_pve_tasks();
+ register_pbs_tasks();
register_pdm_tasks();
}
-fn register_pve_tasks() {
- register_task_description("qmstart", ("VM", tr!("Start")));
- register_task_description("acmedeactivate", ("ACME Account", tr!("Deactivate")));
- register_task_description("acmenewcert", ("SRV", tr!("Order Certificate")));
- register_task_description("acmerefresh", ("ACME Account", tr!("Refresh")));
- register_task_description("acmeregister", ("ACME Account", tr!("Register")));
- register_task_description("acmerenew", ("SRV", tr!("Renew Certificate")));
- register_task_description("acmerevoke", ("SRV", tr!("Revoke Certificate")));
- register_task_description("acmeupdate", ("ACME Account", tr!("Update")));
- register_task_description("auth-realm-sync", (tr!("Realm"), tr!("Sync")));
- register_task_description("auth-realm-sync-test", (tr!("Realm"), tr!("Sync Preview")));
- register_task_description("cephcreatemds", ("Ceph Metadata Server", tr!("Create")));
- register_task_description("cephcreatemgr", ("Ceph Manager", tr!("Create")));
- register_task_description("cephcreatemon", ("Ceph Monitor", tr!("Create")));
- register_task_description("cephcreateosd", ("Ceph OSD", tr!("Create")));
- register_task_description("cephcreatepool", ("Ceph Pool", tr!("Create")));
- register_task_description("cephdestroymds", ("Ceph Metadata Server", tr!("Destroy")));
- register_task_description("cephdestroymgr", ("Ceph Manager", tr!("Destroy")));
- register_task_description("cephdestroymon", ("Ceph Monitor", tr!("Destroy")));
- register_task_description("cephdestroyosd", ("Ceph OSD", tr!("Destroy")));
- register_task_description("cephdestroypool", ("Ceph Pool", tr!("Destroy")));
- register_task_description("cephdestroyfs", ("CephFS", tr!("Destroy")));
- register_task_description("cephfscreate", ("CephFS", tr!("Create")));
- register_task_description("cephsetpool", ("Ceph Pool", tr!("Edit")));
- register_task_description("cephsetflags", tr!("Change global Ceph flags"));
- register_task_description("clustercreate", tr!("Create Cluster"));
- register_task_description("clusterjoin", tr!("Join Cluster"));
- register_task_description("create_zone", tr!("Create EVPN Zone"));
- register_task_description("create_vnet", tr!("Create EVPN VNet"));
- register_task_description("dircreate", (tr!("Directory Storage"), tr!("Create")));
- register_task_description("dirremove", (tr!("Directory"), tr!("Remove")));
- register_task_description("download", (tr!("File"), tr!("Download")));
- register_task_description("hamigrate", ("HA", tr!("Migrate")));
- register_task_description("hashutdown", ("HA", tr!("Shutdown")));
- register_task_description("hastart", ("HA", tr!("Start")));
- register_task_description("hastop", ("HA", tr!("Stop")));
- register_task_description("imgcopy", tr!("Copy data"));
- register_task_description("imgdel", tr!("Erase data"));
- register_task_description("lvmcreate", (tr!("LVM Storage"), tr!("Create")));
- register_task_description("lvmremove", ("Volume Group", tr!("Remove")));
- register_task_description("lvmthincreate", (tr!("LVM-Thin Storage"), tr!("Create")));
- register_task_description("lvmthinremove", ("Thinpool", tr!("Remove")));
- register_task_description("migrateall", tr!("Bulk migrate VMs and Containers"));
- register_task_description("move_volume", ("CT", tr!("Move Volume")));
- register_task_description("pbs-download", ("VM/CT", tr!("File Restore Download")));
- register_task_description("pull_file", ("CT", tr!("Pull file")));
- register_task_description("push_file", ("CT", tr!("Push file")));
- register_task_description("qmclone", ("VM", tr!("Clone")));
- register_task_description("qmconfig", ("VM", tr!("Configure")));
- register_task_description("qmcreate", ("VM", tr!("Create")));
- register_task_description("qmdelsnapshot", ("VM", tr!("Delete Snapshot")));
- register_task_description("qmdestroy", ("VM", tr!("Destroy")));
- register_task_description("qmigrate", ("VM", tr!("Migrate")));
- register_task_description("qmmove", ("VM", tr!("Move disk")));
- register_task_description("qmpause", ("VM", tr!("Pause")));
- register_task_description("qmreboot", ("VM", tr!("Reboot")));
- register_task_description("qmreset", ("VM", tr!("Reset")));
- register_task_description("qmrestore", ("VM", tr!("Restore")));
- register_task_description("qmresume", ("VM", tr!("Resume")));
- register_task_description("qmrollback", ("VM", tr!("Rollback")));
- register_task_description("qmshutdown", ("VM", tr!("Shutdown")));
- register_task_description("qmsnapshot", ("VM", tr!("Snapshot")));
- register_task_description("qmstart", ("VM", tr!("Start")));
- register_task_description("qmstop", ("VM", tr!("Stop")));
- register_task_description("qmsuspend", ("VM", tr!("Hibernate")));
- register_task_description("qmtemplate", ("VM", tr!("Convert to template")));
- register_task_description("reloadnetworkall", tr!("Apply SDN configuration"));
- register_task_description("resize", ("VM/CT", tr!("Resize")));
- register_task_description("spiceproxy", ("VM/CT", tr!("Console") + " (Spice)"));
- register_task_description("spiceshell", tr!("Shell") + " (Spice)");
- register_task_description("srvreload", tr!("Reload network configuration"));
- register_task_description("startall", tr!("Bulk start VMs and Containers"));
- register_task_description("stopall", tr!("Bulk shutdown VMs and Containers"));
- register_task_description("suspendall", tr!("Suspend all VMs"));
- register_task_description("unknownimgdel", tr!("Destroy image from unknown guest"));
- register_task_description("wipedisk", ("Device", tr!("Wipe Disk")));
- register_task_description("vncproxy", ("VM/CT", tr!("Console")));
- register_task_description("vncshell", tr!("Shell"));
- register_task_description("vzclone", ("CT", tr!("Clone")));
- register_task_description("vzcreate", ("CT", tr!("Create")));
- register_task_description("vzdelsnapshot", ("CT", tr!("Delete Snapshot")));
- register_task_description("vzdestroy", ("CT", tr!("Destroy")));
- register_task_description("vzdump", |_ty, id| match id {
- Some(id) => format!("VM/CT {id} - {}", tr!("Backup")),
- None => tr!("Backup Job"),
- });
- register_task_description("vzmigrate", ("CT", tr!("Migrate")));
- register_task_description("vzmount", ("CT", tr!("Mount")));
- register_task_description("vzreboot", ("CT", tr!("Reboot")));
- register_task_description("vzrestore", ("CT", tr!("Restore")));
- register_task_description("vzresume", ("CT", tr!("Resume")));
- register_task_description("vzrollback", ("CT", tr!("Rollback")));
- register_task_description("vzshutdown", ("CT", tr!("Shutdown")));
- register_task_description("vzsnapshot", ("CT", tr!("Snapshot")));
- register_task_description("vzstart", ("CT", tr!("Start")));
- register_task_description("vzstop", ("CT", tr!("Stop")));
- register_task_description("vzsuspend", ("CT", tr!("Suspend")));
- register_task_description("vztemplate", ("CT", tr!("Convert to template")));
- register_task_description("vzumount", ("CT", tr!("Unmount")));
- register_task_description("zfscreate", (tr!("ZFS Storage"), tr!("Create")));
- register_task_description("zfsremove", ("ZFS Pool", tr!("Remove")));
-}
-
fn register_pdm_tasks() {
register_task_description("logrotate", tr!("Log Rotation"));
register_task_description(
--
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-12-18 13:27 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-18 13:28 [pdm-devel] [PATCH datacenter-manager/proxmox-yew-comp v3 0/5] move task description table to yew-comp Lukas Wagner
2025-12-18 13:28 ` [pdm-devel] [PATCH proxmox-yew-comp v3 1/3] utils: move task descriptions to a submodule Lukas Wagner
2025-12-18 13:56 ` [pdm-devel] applied: " Dominik Csapak
2025-12-18 13:28 ` [pdm-devel] [PATCH proxmox-yew-comp v3 2/3] task descriptions: add PBS task descriptions Lukas Wagner
2025-12-18 13:56 ` [pdm-devel] applied: " Dominik Csapak
2025-12-18 13:28 ` [pdm-devel] [PATCH proxmox-yew-comp v3 3/3] task descriptions: add 'create_zone', 'create_vnet' and 'reloadnetworkall' Lukas Wagner
2025-12-18 13:56 ` [pdm-devel] applied: " Dominik Csapak
2025-12-18 13:28 ` [pdm-devel] [PATCH datacenter-manager v3 1/2] ui: register task descriptions for some native PDM tasks Lukas Wagner
2025-12-18 13:28 ` Lukas Wagner [this message]
2025-12-18 13:59 ` [pdm-devel] [PATCH datacenter-manager/proxmox-yew-comp v3 0/5] move task description table to yew-comp 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=20251218132809.241210-6-l.wagner@proxmox.com \
--to=l.wagner@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.