* [pbs-devel] [PATCH proxmox-backup 1/1] ui: mask unmounted datastores in datastore overview
@ 2024-11-28 10:40 Stefan Hanreich
2024-11-28 10:48 ` Shannon Sterz
2024-11-28 10:50 ` Stefan Hanreich
0 siblings, 2 replies; 3+ messages in thread
From: Stefan Hanreich @ 2024-11-28 10:40 UTC (permalink / raw)
To: pbs-devel
Currently, showing the Datastore summary page leads to errors since
the status returned by the API does not contain any fields that are
checked by the component rendering the datastore summary. We solve
this by checking if the datastore is currently mounted first and mask
the element if it is currently unmounted.
Signed-off-by: Stefan Hanreich <s.hanreich@proxmox.com>
---
www/datastore/DataStoreListSummary.js | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/www/datastore/DataStoreListSummary.js b/www/datastore/DataStoreListSummary.js
index f7ea83e7..b43f1ab2 100644
--- a/www/datastore/DataStoreListSummary.js
+++ b/www/datastore/DataStoreListSummary.js
@@ -35,6 +35,13 @@ Ext.define('PBS.datastore.DataStoreListSummary', {
let me = this;
let vm = me.getViewModel();
+ if (statusData['mount-status'] === 'notmounted') {
+ let maskMessage = gettext('Datastore is not mounted');
+ let maskIcon = 'fa pbs-unplugged-mask';
+ me.mask(maskMessage, maskIcon);
+ return;
+ }
+
if (statusData.error !== undefined) {
Proxmox.Utils.API2Request({
url: `/config/datastore/${statusData.store}`,
--
2.39.5
_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [pbs-devel] [PATCH proxmox-backup 1/1] ui: mask unmounted datastores in datastore overview
2024-11-28 10:40 [pbs-devel] [PATCH proxmox-backup 1/1] ui: mask unmounted datastores in datastore overview Stefan Hanreich
@ 2024-11-28 10:48 ` Shannon Sterz
2024-11-28 10:50 ` Stefan Hanreich
1 sibling, 0 replies; 3+ messages in thread
From: Shannon Sterz @ 2024-11-28 10:48 UTC (permalink / raw)
To: Proxmox Backup Server development discussion
On Thu Nov 28, 2024 at 11:40 AM CET, Stefan Hanreich wrote:
> Currently, showing the Datastore summary page leads to errors since
> the status returned by the API does not contain any fields that are
> checked by the component rendering the datastore summary. We solve
> this by checking if the datastore is currently mounted first and mask
> the element if it is currently unmounted.
>
> Signed-off-by: Stefan Hanreich <s.hanreich@proxmox.com>
> ---
> www/datastore/DataStoreListSummary.js | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/www/datastore/DataStoreListSummary.js b/www/datastore/DataStoreListSummary.js
> index f7ea83e7..b43f1ab2 100644
> --- a/www/datastore/DataStoreListSummary.js
> +++ b/www/datastore/DataStoreListSummary.js
> @@ -35,6 +35,13 @@ Ext.define('PBS.datastore.DataStoreListSummary', {
> let me = this;
> let vm = me.getViewModel();
>
> + if (statusData['mount-status'] === 'notmounted') {
> + let maskMessage = gettext('Datastore is not mounted');
> + let maskIcon = 'fa pbs-unplugged-mask';
> + me.mask(maskMessage, maskIcon);
> + return;
> + }
> +
> if (statusData.error !== undefined) {
> Proxmox.Utils.API2Request({
> url: `/config/datastore/${statusData.store}`,
tested this and seems to works as intended (no more error in the
console, datastore is properly masked), so consider this:
Tested-by: Shannon Sterz <s.sterz@proxmox.com>
code also looks fine to me
_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [pbs-devel] [PATCH proxmox-backup 1/1] ui: mask unmounted datastores in datastore overview
2024-11-28 10:40 [pbs-devel] [PATCH proxmox-backup 1/1] ui: mask unmounted datastores in datastore overview Stefan Hanreich
2024-11-28 10:48 ` Shannon Sterz
@ 2024-11-28 10:50 ` Stefan Hanreich
1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hanreich @ 2024-11-28 10:50 UTC (permalink / raw)
To: pbs-devel
just found something - element doesn't get unmasked if the store gets
mounted while the summary page is open. will send a v2.
_______________________________________________
pbs-devel mailing list
pbs-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-11-28 10:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-11-28 10:40 [pbs-devel] [PATCH proxmox-backup 1/1] ui: mask unmounted datastores in datastore overview Stefan Hanreich
2024-11-28 10:48 ` Shannon Sterz
2024-11-28 10:50 ` Stefan Hanreich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox