From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id B8E9D62ABE for ; Tue, 27 Oct 2020 16:21:15 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id B80EA18C44 for ; Tue, 27 Oct 2020 16:20:18 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id E65CB18C05 for ; Tue, 27 Oct 2020 16:20:13 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 9C99045F6D for ; Tue, 27 Oct 2020 16:20:13 +0100 (CET) From: Dominik Csapak To: pbs-devel@lists.proxmox.com Date: Tue, 27 Oct 2020 16:20:03 +0100 Message-Id: <20201027152011.7373-1-d.csapak@proxmox.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.452 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [verify.rs, sync.rs] Subject: [pbs-devel] [PATCH proxmox-backup 0/8] improve datstore ux X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Oct 2020 15:21:15 -0000 this series aims to improve the datastore ux by * moving all datastore relevant settings/options/views into the datastore tabpanel * adding a 'Summary' panel with some important information * improving tab selection between datastores/browser reloads/etc. this needs my previous series: "improve and extend admin/datastore/status api" to work some things are still to be improved, namely: * multiline comments for datastores * automatic ids for sync/verify jobs * improved prune/gc panel (e.g. with status of last run) * comments for backup snapshots Dominik Csapak (8): api/{verify,syncjobs}: add optional datastore parameter ui: DataStoreContent: add 'Verify All' button ui: add DataStorePruneAndGC panel and add it to datastore panel ui: add DataStoreSummary and move Statistics into it ui: move sync/verify jobs to the datastores ui: NavigationTree: add 'Add Datastore' button below datastore list ui: MainView/NavigationTree: improve tree selection handling ui: DataStorePanel: save active tab statefully src/api2/admin/sync.rs | 19 ++- src/api2/admin/verify.rs | 19 ++- www/DataStoreContent.js | 23 +++ www/DataStoreNotes.js | 104 ++++++++++++ www/DataStorePanel.js | 52 +++++- www/DataStorePruneAndGC.js | 164 +++++++++++++++++++ www/DataStoreStatistic.js | 104 ------------ www/DataStoreSummary.js | 296 ++++++++++++++++++++++++++++++++++ www/MainView.js | 70 ++++---- www/Makefile | 5 +- www/NavigationTree.js | 101 ++++++++---- www/config/DataStoreConfig.js | 227 -------------------------- www/config/SyncView.js | 14 +- www/config/VerifyView.js | 20 ++- www/window/DataStoreEdit.js | 147 +++++++++-------- www/window/SyncJobEdit.js | 6 +- www/window/VerifyJobEdit.js | 6 +- 17 files changed, 898 insertions(+), 479 deletions(-) create mode 100644 www/DataStoreNotes.js create mode 100644 www/DataStorePruneAndGC.js delete mode 100644 www/DataStoreStatistic.js create mode 100644 www/DataStoreSummary.js delete mode 100644 www/config/DataStoreConfig.js -- 2.20.1