2022-05-11 15:34:34 +00:00
|
|
|
Ext.define('PBS.form.RemoteStoreSelector', {
|
|
|
|
extend: 'Proxmox.form.ComboGrid',
|
|
|
|
alias: 'widget.pbsRemoteStoreSelector',
|
|
|
|
|
|
|
|
queryMode: 'local',
|
|
|
|
|
|
|
|
valueField: 'store',
|
|
|
|
displayField: 'store',
|
|
|
|
notFoundIsValid: true,
|
|
|
|
|
|
|
|
matchFieldWidth: false,
|
|
|
|
listConfig: {
|
|
|
|
loadingText: gettext('Scanning...'),
|
|
|
|
width: 350,
|
|
|
|
columns: [
|
|
|
|
{
|
|
|
|
header: gettext('Datastore'),
|
|
|
|
sortable: true,
|
|
|
|
dataIndex: 'store',
|
|
|
|
renderer: Ext.String.htmlEncode,
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
header: gettext('Comment'),
|
|
|
|
dataIndex: 'comment',
|
|
|
|
renderer: Ext.String.htmlEncode,
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
doRawQuery: function() {
|
|
|
|
// do nothing.
|
|
|
|
},
|
|
|
|
|
|
|
|
setRemote: function(remote) {
|
|
|
|
let me = this;
|
|
|
|
|
|
|
|
if (me.remote === remote) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
me.remote = remote;
|
|
|
|
|
2022-05-11 16:00:15 +00:00
|
|
|
me.store.removeAll();
|
2022-05-11 15:34:34 +00:00
|
|
|
|
|
|
|
if (me.remote) {
|
|
|
|
me.setDisabled(false);
|
|
|
|
if (!me.firstLoad) {
|
|
|
|
me.clearValue();
|
|
|
|
}
|
|
|
|
|
2022-05-11 16:00:15 +00:00
|
|
|
me.store.proxy.url = `/api2/json/config/remote/${encodeURIComponent(me.remote)}/scan`;
|
|
|
|
me.store.load();
|
2022-05-11 15:34:34 +00:00
|
|
|
|
|
|
|
me.firstLoad = false;
|
|
|
|
} else {
|
|
|
|
me.setDisabled(true);
|
|
|
|
me.clearValue();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
initComponent: function() {
|
|
|
|
let me = this;
|
|
|
|
|
|
|
|
me.firstLoad = true;
|
|
|
|
|
|
|
|
let store = Ext.create('Ext.data.Store', {
|
|
|
|
fields: ['store', 'comment'],
|
|
|
|
proxy: {
|
|
|
|
type: 'proxmox',
|
|
|
|
url: '/api2/json/config/remote/' + encodeURIComponent(me.remote) + '/scan',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
store.sort('store', 'ASC');
|
|
|
|
|
|
|
|
Ext.apply(me, {
|
|
|
|
store: store,
|
|
|
|
});
|
|
|
|
|
|
|
|
me.callParent();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
Ext.define('PBS.form.RemoteNamespaceSelector', {
|
|
|
|
extend: 'Proxmox.form.ComboGrid',
|
|
|
|
alias: 'widget.pbsRemoteNamespaceSelector',
|
|
|
|
|
|
|
|
queryMode: 'local',
|
|
|
|
|
|
|
|
valueField: 'ns',
|
|
|
|
displayField: 'ns',
|
|
|
|
emptyText: PBS.Utils.render_optional_namespace(''),
|
|
|
|
notFoundIsValid: true,
|
|
|
|
|
|
|
|
matchFieldWidth: false,
|
|
|
|
listConfig: {
|
|
|
|
loadingText: gettext('Scanning...'),
|
|
|
|
width: 350,
|
|
|
|
columns: [
|
|
|
|
{
|
|
|
|
header: gettext('Namespace'),
|
|
|
|
sortable: true,
|
|
|
|
dataIndex: 'ns',
|
|
|
|
renderer: PBS.Utils.render_optional_namespace, // FIXME proper root-aware renderer
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
header: gettext('Comment'),
|
|
|
|
dataIndex: 'comment',
|
|
|
|
renderer: Ext.String.htmlEncode,
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
doRawQuery: function() {
|
|
|
|
// do nothing.
|
|
|
|
},
|
|
|
|
|
|
|
|
setRemote: function(remote) {
|
|
|
|
let me = this;
|
|
|
|
if (me.remote === remote) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
me.remote = remote;
|
|
|
|
|
2022-05-11 16:00:15 +00:00
|
|
|
me.store.removeAll();
|
2022-05-11 15:34:34 +00:00
|
|
|
|
|
|
|
me.setDisabled(true);
|
|
|
|
me.clearValue();
|
|
|
|
},
|
|
|
|
|
|
|
|
setRemoteStore: function(remoteStore) {
|
|
|
|
let me = this;
|
|
|
|
if (me.remoteStore === remoteStore) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
me.remoteStore = remoteStore;
|
|
|
|
|
2022-05-11 16:00:15 +00:00
|
|
|
me.store.removeAll();
|
2022-05-11 15:34:34 +00:00
|
|
|
|
|
|
|
if (me.remote && me.remoteStore) {
|
|
|
|
me.setDisabled(false);
|
|
|
|
if (!me.firstLoad) {
|
|
|
|
me.clearValue();
|
|
|
|
}
|
2022-05-11 16:00:15 +00:00
|
|
|
let encodedRemote = encodeURIComponent(me.remote);
|
|
|
|
let encodedStore = encodeURIComponent(me.remoteStore);
|
2022-05-11 15:34:34 +00:00
|
|
|
|
2022-05-11 16:00:15 +00:00
|
|
|
me.store.proxy.url = `/api2/json/config/remote/${encodedRemote}/scan/${encodedStore}/namespaces`;
|
|
|
|
me.store.load();
|
2022-05-11 15:34:34 +00:00
|
|
|
|
|
|
|
me.firstLoad = false;
|
|
|
|
} else {
|
|
|
|
me.setDisabled(true);
|
|
|
|
me.clearValue();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
initComponent: function() {
|
|
|
|
let me = this;
|
|
|
|
|
|
|
|
me.firstLoad = true;
|
|
|
|
|
|
|
|
let store = Ext.create('Ext.data.Store', {
|
|
|
|
fields: ['ns', 'comment'],
|
|
|
|
proxy: {
|
|
|
|
type: 'proxmox',
|
2022-05-11 16:00:15 +00:00
|
|
|
url: `/api2/json/config/remote/${encodeURIComponent(me.remote)}/scan`,
|
2022-05-11 15:34:34 +00:00
|
|
|
},
|
|
|
|
});
|
2022-05-11 16:00:15 +00:00
|
|
|
store.sort('ns', 'ASC');
|
2022-05-11 15:34:34 +00:00
|
|
|
|
|
|
|
Ext.apply(me, {
|
|
|
|
store: store,
|
|
|
|
});
|
|
|
|
|
|
|
|
me.callParent();
|
|
|
|
},
|
|
|
|
});
|