ui: add support for notes on backup groups

Currently done a little bit hacky in a seperate API call following the
initial list_snapshots, as we previously didn't call list_groups at all
and instead calculated the groups from the snapshots.

This calls it async and updates the view with group comments when data
arrives. The editor is simply reused with the 'group-notes' API call,
since the semantics are the same.

Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
This commit is contained in:
Stefan Reiter 2021-07-08 16:45:28 +02:00 committed by Thomas Lamprecht
parent d6688884f6
commit 68e2ea99ba
1 changed files with 48 additions and 11 deletions

View File

@ -125,6 +125,29 @@ Ext.define('PBS.DataStoreContent', {
return groups; return groups;
}, },
updateGroupNotes: function(view) {
Proxmox.Utils.API2Request({
url: `/api2/extjs/admin/datastore/${view.datastore}/groups`,
method: 'GET',
success: function(response) {
let groups = response.result.data;
let map = {};
for (const group of groups) {
map[`${group["backup-type"]}/${group["backup-id"]}`] = group["comment"];
}
view.getRootNode().cascade(node => {
if (node.parentNode && node.parentNode.id === 'root') {
node.set(
'comment',
map[`${node.data.backup_type}/${node.data.backup_id}`],
{ dirty: false },
);
}
});
},
});
},
onLoad: function(store, records, success, operation) { onLoad: function(store, records, success, operation) {
let me = this; let me = this;
let view = this.getView(); let view = this.getView();
@ -242,6 +265,8 @@ Ext.define('PBS.DataStoreContent', {
children: children, children: children,
}); });
this.updateGroupNotes(view);
if (selected !== undefined) { if (selected !== undefined) {
let selection = view.getRootNode().findChildBy(function(item) { let selection = view.getRootNode().findChildBy(function(item) {
let id = item.data.text; let id = item.data.text;
@ -358,19 +383,31 @@ Ext.define('PBS.DataStoreContent', {
}); });
}, },
onNotesEdit: function(view, data) { onNotesEdit: function(view, data, isGroup) {
let me = this; let me = this;
let url = `/admin/datastore/${view.datastore}/notes`; let url = `/admin/datastore/${view.datastore}/`;
url += isGroup ? 'group-notes' : 'notes';
let params;
if (isGroup) {
params = {
"backup-type": data.backup_type,
"backup-id": data.backup_id,
};
} else {
params = {
"backup-type": data["backup-type"],
"backup-id": data["backup-id"],
"backup-time": (data['backup-time'].getTime()/1000).toFixed(0),
};
}
Ext.create('PBS.window.NotesEdit', { Ext.create('PBS.window.NotesEdit', {
url: url, url: url,
autoShow: true, autoShow: true,
apiCallDone: () => me.reload(), // FIXME: do something more efficient? apiCallDone: () => me.reload(), // FIXME: do something more efficient?
extraRequestParams: { extraRequestParams: params,
"backup-type": data["backup-type"],
"backup-id": data["backup-id"],
"backup-time": (data['backup-time'].getTime()/1000).toFixed(0),
},
}); });
}, },
@ -585,7 +622,7 @@ Ext.define('PBS.DataStoreContent', {
flex: 1, flex: 1,
renderer: (v, meta, record) => { renderer: (v, meta, record) => {
let data = record.data; let data = record.data;
if (!data || data.leaf || record.parentNode.id === 'root') { if (!data || data.leaf) {
return ''; return '';
} }
if (v === undefined || v === null) { if (v === undefined || v === null) {
@ -608,17 +645,17 @@ Ext.define('PBS.DataStoreContent', {
} }
let view = tree.up(); let view = tree.up();
let controller = view.controller; let controller = view.controller;
controller.onNotesEdit(view, rec.data); controller.onNotesEdit(view, rec.data, rec.parentNode.id === 'root');
}); });
}, },
dblclick: function(tree, el, row, col, ev, rec) { dblclick: function(tree, el, row, col, ev, rec) {
let data = rec.data || {}; let data = rec.data || {};
if (data.leaf || rec.parentNode.id === 'root') { if (data.leaf) {
return; return;
} }
let view = tree.up(); let view = tree.up();
let controller = view.controller; let controller = view.controller;
controller.onNotesEdit(view, rec.data); controller.onNotesEdit(view, rec.data, rec.parentNode.id === 'root');
}, },
}, },
}, },