[pve-devel] [PATCH manager] dc menu: close 3504: Add datacenter notes
Dominic Jäger
d.jaeger at proxmox.com
Thu Jul 8 13:41:24 CEST 2021
Like notes for nodes.
Signed-off-by: Dominic Jäger <d.jaeger at proxmox.com>
---
Depends on the pve-cluster patch.
www/manager6/dc/Config.js | 6 ++++
www/manager6/panel/NotesView.js | 49 +++++++++++++++++----------------
2 files changed, 32 insertions(+), 23 deletions(-)
diff --git a/www/manager6/dc/Config.js b/www/manager6/dc/Config.js
index a8dcb74e..9fb47afa 100644
--- a/www/manager6/dc/Config.js
+++ b/www/manager6/dc/Config.js
@@ -27,6 +27,12 @@ Ext.define('PVE.dc.Config', {
iconCls: 'fa fa-book',
itemId: 'summary',
},
+ {
+ xtype: 'pveNotesView',
+ title: gettext('Notes'),
+ iconCls: 'fa fa-sticky-note-o',
+ itemId: 'notes',
+ },
{
title: gettext('Cluster'),
xtype: 'pveClusterAdministration',
diff --git a/www/manager6/panel/NotesView.js b/www/manager6/panel/NotesView.js
index b281f892..6e7b55f6 100644
--- a/www/manager6/panel/NotesView.js
+++ b/www/manager6/panel/NotesView.js
@@ -79,37 +79,40 @@ Ext.define('PVE.panel.NotesView', {
}],
initComponent: function() {
- var me = this;
+ const me = this;
+ const type = me.pveSelNode.data.type;
- var nodename = me.pveSelNode.data.node;
- if (!nodename) {
- throw "no node name specified";
- }
+ if (me.pveSelNode.data.id === 'root') {
+ me.url = '/api2/extjs/cluster/options';
+ } else {
+ const nodename = me.pveSelNode.data.node;
+ if (!nodename) {
+ throw "no node name specified";
+ }
- let type = me.pveSelNode.data.type;
- if (!Ext.Array.contains(['node', 'qemu', 'lxc'], type)) {
- throw 'invalid type specified';
- }
+ if (!Ext.Array.contains(['node', 'qemu', 'lxc'], type)) {
+ throw 'invalid type specified';
+ }
- var vmid = me.pveSelNode.data.vmid;
- if (!vmid && type !== 'node') {
- throw "no VM ID specified";
- }
+ const vmid = me.pveSelNode.data.vmid;
+ if (!vmid && type !== 'node') {
+ throw "no VM ID specified";
+ }
- me.url = `/api2/extjs/nodes/${nodename}/`;
+ me.url = `/api2/extjs/nodes/${nodename}/`;
- // add the type specific path if qemu/lxc and set the backend's maxLen
- if (type === 'qemu' || type === 'lxc') {
- me.url += `${type}/${vmid}/`;
- me.maxLength = 8 * 1024;
- } else {
- me.maxLength = 64 * 1024;
+ // add the type specific path if qemu/lxc and set the backend's maxLen
+ if (type === 'qemu' || type === 'lxc') {
+ me.url += `${type}/${vmid}/`;
+ me.maxLength = 8 * 1024;
+ } else {
+ me.maxLength = 64 * 1024;
+ }
+ me.url += 'config';
}
- me.url += 'config';
-
me.callParent();
- if (type === 'node') {
+ if (type === 'node' || type === '') { // is '' for datacenter
me.down('#tbar').setVisible(true);
} else if (me.pveSelNode.data.template !== 1) {
me.setCollapsible(true);
--
2.30.2
More information about the pve-devel
mailing list