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 7BD7A65643 for ; Tue, 3 Nov 2020 14:53:29 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 6BB462CF3F for ; Tue, 3 Nov 2020 14:52:59 +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 B28222CF35 for ; Tue, 3 Nov 2020 14:52:58 +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 7A6E146013 for ; Tue, 3 Nov 2020 14:52:58 +0100 (CET) To: Proxmox Backup Server development discussion , Dominik Csapak References: <20201030140215.13329-1-d.csapak@proxmox.com> From: Thomas Lamprecht Message-ID: <353dbddf-c9b4-9b41-b585-85f006e9cfb7@proxmox.com> Date: Tue, 3 Nov 2020 14:52:57 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:83.0) Gecko/20100101 Thunderbird/83.0 MIME-Version: 1.0 In-Reply-To: <20201030140215.13329-1-d.csapak@proxmox.com> Content-Type: text/plain; charset=UTF-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable X-SPAM-LEVEL: Spam detection results: 0 AWL -0.119 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. [proxmox.com, status.rs, tasks.rs] Subject: [pbs-devel] applied-series: [PATCH widget-toolkit/proxmox-backup] improve Administration/Task panel 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, 03 Nov 2020 13:53:29 -0000 On 30.10.20 15:02, Dominik Csapak wrote: > this series extends the node/tasks api call with several new filters, > and adds a new task panel to the ui that makes use of these filters >=20 > the type selector will show all tasks in the current Proxmox.Utils obje= ct, > so this will work best when [0] is applied >=20 > 0: https://lists.proxmox.com/pipermail/pve-devel/2020-October/045730.ht= ml >=20 > proxmox-widget-toolkit: >=20 > Dominik Csapak (1): > add form/TaskTypeSelector >=20 > src/Makefile | 1 + > src/form/TaskTypeSelector.js | 12 ++++++++++++ > 2 files changed, 13 insertions(+) > create mode 100644 src/form/TaskTypeSelector.js >=20 > proxmox-backup: >=20 > Dominik Csapak (6): > server/worker_task: add tasktype to return the api type of a taskstat= e > api2/node/tasks: change limit behaviour when it is 0 > api2/node/tasks: add optional since/typefilter/statusfilter > api2/status: remove list_task api call > api2/node/tasks: add optional until filter > ui: add panel/Tasks and use it for the node tasks >=20 > src/api2/node/tasks.rs | 67 ++++++- > src/api2/status.rs | 99 ---------- > src/server/worker_task.rs | 11 +- > www/Dashboard.js | 3 +- > www/Makefile | 1 + > www/ServerAdministration.js | 2 +- > www/dashboard/TaskSummary.js | 3 +- > www/panel/Tasks.js | 362 +++++++++++++++++++++++++++++++++++= > 8 files changed, 438 insertions(+), 110 deletions(-) > create mode 100644 www/panel/Tasks.js >=20 applied remaining series, thanks! Did some field reordering to use more of the extra vertical space instead= of shrinking the task grid to much for the filters. Also, button icons, a clear trigger for task type, fieldLabel fixes and a= emptyText for clarity - just for the record.