2020-10-27 15:20:09 +00:00
|
|
|
Ext.define('pbs-datastore-list', {
|
|
|
|
extend: 'Ext.data.Model',
|
|
|
|
fields: ['name', 'comment'],
|
|
|
|
proxy: {
|
|
|
|
type: 'proxmox',
|
|
|
|
url: "/api2/json/admin/datastore",
|
|
|
|
},
|
|
|
|
idProperty: 'store',
|
|
|
|
});
|
|
|
|
|
2019-01-22 10:48:00 +00:00
|
|
|
Ext.define('PBS.store.NavigationStore', {
|
|
|
|
extend: 'Ext.data.TreeStore',
|
|
|
|
|
|
|
|
storeId: 'NavigationStore',
|
|
|
|
|
|
|
|
root: {
|
|
|
|
expanded: true,
|
|
|
|
children: [
|
2019-12-18 16:29:05 +00:00
|
|
|
{
|
|
|
|
text: gettext('Dashboard'),
|
|
|
|
iconCls: 'fa fa-tachometer',
|
|
|
|
path: 'pbsDashboard',
|
2020-09-25 16:36:58 +00:00
|
|
|
leaf: true,
|
2019-12-18 16:29:05 +00:00
|
|
|
},
|
2019-01-22 10:48:00 +00:00
|
|
|
{
|
|
|
|
text: gettext('Configuration'),
|
|
|
|
iconCls: 'fa fa-gears',
|
|
|
|
path: 'pbsSystemConfiguration',
|
|
|
|
expanded: true,
|
|
|
|
children: [
|
2020-05-18 12:18:38 +00:00
|
|
|
{
|
2020-10-29 15:47:18 +00:00
|
|
|
text: gettext('Access Control'),
|
|
|
|
iconCls: 'fa fa-key',
|
|
|
|
path: 'pbsAccessControlPanel',
|
2020-09-25 16:36:58 +00:00
|
|
|
leaf: true,
|
2020-05-20 10:15:37 +00:00
|
|
|
},
|
2020-05-26 10:23:25 +00:00
|
|
|
{
|
|
|
|
text: gettext('Remotes'),
|
|
|
|
iconCls: 'fa fa-server',
|
|
|
|
path: 'pbsRemoteView',
|
|
|
|
leaf: true,
|
|
|
|
},
|
2019-01-22 10:48:00 +00:00
|
|
|
{
|
|
|
|
text: gettext('Subscription'),
|
|
|
|
iconCls: 'fa fa-support',
|
|
|
|
path: 'pbsSubscription',
|
2020-09-25 16:36:58 +00:00
|
|
|
leaf: true,
|
|
|
|
},
|
|
|
|
],
|
2019-01-22 10:48:00 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: gettext('Administration'),
|
|
|
|
iconCls: 'fa fa-wrench',
|
|
|
|
path: 'pbsServerAdministration',
|
2020-06-16 09:13:34 +00:00
|
|
|
expanded: true,
|
|
|
|
leaf: false,
|
|
|
|
children: [
|
2020-11-04 14:35:08 +00:00
|
|
|
{
|
|
|
|
text: gettext('Shell'),
|
|
|
|
iconCls: 'fa fa-terminal',
|
|
|
|
path: 'pbsXtermJsConsole',
|
|
|
|
leaf: true,
|
|
|
|
},
|
2020-06-16 09:13:34 +00:00
|
|
|
{
|
2020-11-10 09:15:44 +00:00
|
|
|
text: gettext('Storage / Disks'),
|
2020-06-16 09:13:34 +00:00
|
|
|
iconCls: 'fa fa-hdd-o',
|
2020-11-10 09:15:44 +00:00
|
|
|
path: 'pbsStorageAndDiskPanel',
|
|
|
|
leaf: true,
|
2020-09-25 16:36:58 +00:00
|
|
|
},
|
|
|
|
],
|
2020-06-05 08:11:51 +00:00
|
|
|
},
|
|
|
|
{
|
2020-07-02 15:20:38 +00:00
|
|
|
text: gettext('Datastore'),
|
2020-06-05 08:11:51 +00:00
|
|
|
iconCls: 'fa fa-archive',
|
2020-10-27 15:20:09 +00:00
|
|
|
id: 'datastores',
|
2020-11-09 15:01:30 +00:00
|
|
|
path: 'pbsDataStores',
|
2020-06-05 08:11:51 +00:00
|
|
|
expanded: true,
|
2020-10-27 15:20:09 +00:00
|
|
|
expandable: false,
|
2020-09-25 16:36:58 +00:00
|
|
|
leaf: false,
|
2020-10-27 15:20:09 +00:00
|
|
|
children: [
|
|
|
|
{
|
|
|
|
text: gettext('Add Datastore'),
|
|
|
|
iconCls: 'fa fa-plus-circle',
|
|
|
|
leaf: true,
|
|
|
|
id: 'addbutton',
|
|
|
|
},
|
|
|
|
],
|
2020-06-05 08:11:51 +00:00
|
|
|
},
|
2020-09-25 16:36:58 +00:00
|
|
|
],
|
|
|
|
},
|
2019-01-22 10:48:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
Ext.define('PBS.view.main.NavigationTree', {
|
|
|
|
extend: 'Ext.list.Tree',
|
|
|
|
xtype: 'navigationtree',
|
|
|
|
|
2019-12-20 11:46:09 +00:00
|
|
|
controller: {
|
|
|
|
xclass: 'Ext.app.ViewController',
|
|
|
|
|
|
|
|
init: function(view) {
|
|
|
|
view.rstore = Ext.create('Proxmox.data.UpdateStore', {
|
|
|
|
autoStart: true,
|
|
|
|
interval: 15 * 1000,
|
2020-07-25 18:10:06 +00:00
|
|
|
storeId: 'pbs-datastore-list',
|
2019-12-20 11:46:09 +00:00
|
|
|
storeid: 'pbs-datastore-list',
|
2020-09-25 16:36:58 +00:00
|
|
|
model: 'pbs-datastore-list',
|
2019-12-20 11:46:09 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
view.rstore.on('load', this.onLoad, this);
|
|
|
|
view.on('destroy', view.rstore.stopUpdate);
|
|
|
|
},
|
|
|
|
|
|
|
|
onLoad: function(store, records, success) {
|
2020-06-05 08:11:51 +00:00
|
|
|
if (!success) return;
|
2019-12-20 11:46:09 +00:00
|
|
|
var view = this.getView();
|
|
|
|
|
|
|
|
let root = view.getStore().getRoot();
|
|
|
|
|
2020-10-27 15:20:09 +00:00
|
|
|
records.sort((a, b) => a.id.localeCompare(b.id));
|
2020-05-25 17:46:43 +00:00
|
|
|
|
2020-10-27 15:20:09 +00:00
|
|
|
var list = root.findChild('id', 'datastores', false);
|
2019-12-20 11:46:09 +00:00
|
|
|
var length = records.length;
|
|
|
|
var lookup_hash = {};
|
2020-10-27 15:20:09 +00:00
|
|
|
let j = 0;
|
|
|
|
for (let i = 0; i < length; i++) {
|
2020-09-25 16:36:58 +00:00
|
|
|
let name = records[i].id;
|
2019-12-20 11:46:09 +00:00
|
|
|
lookup_hash[name] = true;
|
2020-10-27 15:20:09 +00:00
|
|
|
|
|
|
|
while (name.localeCompare(list.getChildAt(j).data.text) > 0 &&
|
|
|
|
(j + 1) < list.childNodes.length) {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list.getChildAt(j).data.text.localeCompare(name) !== 0) {
|
|
|
|
list.insertChild(j, {
|
2019-12-20 11:46:09 +00:00
|
|
|
text: name,
|
2020-05-20 10:15:38 +00:00
|
|
|
path: `DataStore-${name}`,
|
2019-12-21 08:15:57 +00:00
|
|
|
iconCls: 'fa fa-database',
|
2020-09-25 16:36:58 +00:00
|
|
|
leaf: true,
|
2019-12-20 11:46:09 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var erase_list = [];
|
|
|
|
list.eachChild(function(node) {
|
2020-09-25 16:36:58 +00:00
|
|
|
let name = node.data.text;
|
2020-10-27 15:20:09 +00:00
|
|
|
if (!lookup_hash[name] && node.data.id !== 'addbutton') {
|
2019-12-20 11:46:09 +00:00
|
|
|
erase_list.push(node);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-10-27 15:20:09 +00:00
|
|
|
Ext.Array.forEach(erase_list, function(node) { list.removeChild(node, true); });
|
2020-10-27 15:20:10 +00:00
|
|
|
|
|
|
|
if (view.pathToSelect !== undefined) {
|
|
|
|
let path = view.pathToSelect;
|
|
|
|
delete view.pathToSelect;
|
|
|
|
view.select(path, true);
|
|
|
|
}
|
2020-10-27 15:20:09 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
listeners: {
|
|
|
|
itemclick: function(tl, info) {
|
|
|
|
if (info.node.data.id === 'addbutton') {
|
|
|
|
let me = this;
|
|
|
|
Ext.create('PBS.DataStoreEdit', {
|
|
|
|
listeners: {
|
|
|
|
destroy: function() {
|
|
|
|
me.rstore.reload();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}).show();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2020-09-25 16:36:58 +00:00
|
|
|
},
|
2019-12-20 11:46:09 +00:00
|
|
|
},
|
|
|
|
|
2020-10-27 15:20:10 +00:00
|
|
|
select: function(path, silent) {
|
2019-01-22 10:48:00 +00:00
|
|
|
var me = this;
|
2020-10-27 15:20:10 +00:00
|
|
|
if (me.rstore.isLoaded()) {
|
|
|
|
if (silent) {
|
|
|
|
me.suspendEvents(false);
|
|
|
|
}
|
|
|
|
var item = me.getStore().findRecord('path', path, 0, false, true, true);
|
|
|
|
me.setSelection(item);
|
|
|
|
if (silent) {
|
|
|
|
me.resumeEvents(true);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
me.pathToSelect = path;
|
|
|
|
}
|
2019-01-22 10:48:00 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
animation: false,
|
|
|
|
expanderOnly: true,
|
|
|
|
expanderFirst: false,
|
|
|
|
store: 'NavigationStore',
|
2020-09-25 16:36:58 +00:00
|
|
|
ui: 'nav',
|
2019-01-22 10:48:00 +00:00
|
|
|
});
|