From: Thomas Lamprecht <t.lamprecht@proxmox.com>
To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>,
Christian Ebner <c.ebner@proxmox.com>,
pbs-devel@lists.proxmox.com
Subject: Re: [pve-devel] [PATCH proxmox-widget-toolkit 1/2] panel: disk list: return consistent value for unknown smart status
Date: Tue, 25 Feb 2025 17:17:33 +0100 [thread overview]
Message-ID: <ed3133a4-cd25-481c-94a7-cd2f00fcd387@proxmox.com> (raw)
In-Reply-To: <20241129104134.127763-1-c.ebner@proxmox.com>
Am 29.11.24 um 11:41 schrieb Christian Ebner:
> Until now, the reported smart value is returned unconditionally, even
> if the drive might report an `UNKNOWN` status.
> To allow for better handling of the unknown smart state, also return
> the utils helper text in that case. This allows for better handling
> of e.g. conditionally showing the smart values window.
>
> Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
> ---
> src/panel/DiskList.js | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/src/panel/DiskList.js b/src/panel/DiskList.js
> index dc10ac5..dfd8c8e 100644
> --- a/src/panel/DiskList.js
> +++ b/src/panel/DiskList.js
> @@ -7,7 +7,12 @@ Ext.define('pmx-disk-list', {
> {
> name: 'status',
> convert: function(value, rec) {
> - if (value) return value;
> + if (value) {
> + if (value.toLowerCase() === 'unknown') {
> + return Proxmox.Utils.unknownText;
> + }
hmm, using translated strings for internal state is not fully ideal IMO.
Maybe just normalize it here to lowercase and place a renderer on where
it matters?
> + return value;
> + }
> if (rec.data.health) {
> return rec.data.health;
> }
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
WARNING: multiple messages have this Message-ID
From: Thomas Lamprecht <t.lamprecht@proxmox.com>
To: Proxmox VE development discussion <pve-devel@lists.proxmox.com>,
Christian Ebner <c.ebner@proxmox.com>,
pbs-devel@lists.proxmox.com
Subject: Re: [pbs-devel] [pve-devel] [PATCH proxmox-widget-toolkit 1/2] panel: disk list: return consistent value for unknown smart status
Date: Tue, 25 Feb 2025 17:17:33 +0100 [thread overview]
Message-ID: <ed3133a4-cd25-481c-94a7-cd2f00fcd387@proxmox.com> (raw)
In-Reply-To: <20241129104134.127763-1-c.ebner@proxmox.com>
Am 29.11.24 um 11:41 schrieb Christian Ebner:
> Until now, the reported smart value is returned unconditionally, even
> if the drive might report an `UNKNOWN` status.
> To allow for better handling of the unknown smart state, also return
> the utils helper text in that case. This allows for better handling
> of e.g. conditionally showing the smart values window.
>
> Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
> ---
> src/panel/DiskList.js | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/src/panel/DiskList.js b/src/panel/DiskList.js
> index dc10ac5..dfd8c8e 100644
> --- a/src/panel/DiskList.js
> +++ b/src/panel/DiskList.js
> @@ -7,7 +7,12 @@ Ext.define('pmx-disk-list', {
> {
> name: 'status',
> convert: function(value, rec) {
> - if (value) return value;
> + if (value) {
> + if (value.toLowerCase() === 'unknown') {
> + return Proxmox.Utils.unknownText;
> + }
hmm, using translated strings for internal state is not fully ideal IMO.
Maybe just normalize it here to lowercase and place a renderer on where
it matters?
> + return value;
> + }
> if (rec.data.health) {
> return rec.data.health;
> }
_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
next prev parent reply other threads:[~2025-02-25 16:18 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-29 10:41 Christian Ebner
2024-11-29 10:41 ` [pbs-devel] " Christian Ebner
2024-11-29 10:41 ` [pve-devel] [PATCH proxmox-widget-toolkit 2/2] disk list: disable show smart values button if status unknown Christian Ebner
2024-11-29 10:41 ` [pbs-devel] " Christian Ebner
2025-02-25 16:19 ` [pve-devel] " Thomas Lamprecht
2025-02-25 16:19 ` [pbs-devel] " Thomas Lamprecht
2025-02-25 16:22 ` Christian Ebner
2025-02-25 16:22 ` [pbs-devel] " Christian Ebner
2025-02-25 16:41 ` Thomas Lamprecht
2025-02-25 16:41 ` [pbs-devel] " Thomas Lamprecht
2025-02-25 16:17 ` Thomas Lamprecht [this message]
2025-02-25 16:17 ` [pbs-devel] [pve-devel] [PATCH proxmox-widget-toolkit 1/2] panel: disk list: return consistent value for unknown smart status 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=ed3133a4-cd25-481c-94a7-cd2f00fcd387@proxmox.com \
--to=t.lamprecht@proxmox.com \
--cc=c.ebner@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
--cc=pve-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.