mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-16 05:57:58 +00:00
161 lines
2.9 KiB
JavaScript
161 lines
2.9 KiB
JavaScript
Ext.define('PVE.dc.HttpProxyEdit', {
|
|
extend: 'PVE.window.Edit',
|
|
|
|
initComponent : function() {
|
|
var me = this;
|
|
|
|
Ext.applyIf(me, {
|
|
subject: gettext('HTTP proxy'),
|
|
items: {
|
|
xtype: 'pvetextfield',
|
|
name: 'http_proxy',
|
|
vtype: 'HttpProxy',
|
|
emptyText: gettext('Do not use any proxy'),
|
|
deleteEmpty: true,
|
|
value: '',
|
|
fieldLabel: gettext('HTTP proxy')
|
|
}
|
|
});
|
|
|
|
me.callParent();
|
|
|
|
me.load();
|
|
}
|
|
});
|
|
|
|
Ext.define('PVE.dc.KeyboardEdit', {
|
|
extend: 'PVE.window.Edit',
|
|
|
|
initComponent : function() {
|
|
var me = this;
|
|
|
|
Ext.applyIf(me, {
|
|
subject: gettext('Keyboard Layout'),
|
|
items: {
|
|
xtype: 'VNCKeyboardSelector',
|
|
name: 'keyboard',
|
|
value: '',
|
|
fieldLabel: gettext('Keyboard Layout')
|
|
}
|
|
});
|
|
|
|
me.callParent();
|
|
|
|
me.load();
|
|
}
|
|
});
|
|
|
|
Ext.define('PVE.dc.ConsoleViewerEdit', {
|
|
extend: 'PVE.window.Edit',
|
|
|
|
initComponent : function() {
|
|
var me = this;
|
|
|
|
var data = [];
|
|
|
|
Ext.Array.each(['', 'applet', 'vv'], function(value) {
|
|
data.push([value, PVE.Utils.render_console_viewer(value)]);
|
|
});
|
|
|
|
Ext.applyIf(me, {
|
|
subject: gettext('Console Viewer'),
|
|
items: {
|
|
xtype: 'pveKVComboBox',
|
|
name: 'console',
|
|
data: data,
|
|
value: '',
|
|
fieldLabel: gettext('Console Viewer')
|
|
}
|
|
});
|
|
|
|
me.callParent();
|
|
|
|
me.load();
|
|
}
|
|
});
|
|
|
|
Ext.define('PVE.dc.OptionView', {
|
|
extend: 'PVE.grid.ObjectGrid',
|
|
alias: ['widget.pveDcOptionView'],
|
|
|
|
noProxyText: gettext('Do not use any proxy'),
|
|
|
|
initComponent : function() {
|
|
var me = this;
|
|
|
|
var reload = function() {
|
|
me.rstore.load();
|
|
};
|
|
|
|
var rows = {
|
|
keyboard: {
|
|
header: gettext('Keyboard Layout'),
|
|
editor: 'PVE.dc.KeyboardEdit',
|
|
renderer: PVE.Utils.render_kvm_language,
|
|
required: true
|
|
},
|
|
http_proxy: {
|
|
header: gettext('HTTP proxy'),
|
|
editor: 'PVE.dc.HttpProxyEdit',
|
|
required: true,
|
|
renderer: function(value) {
|
|
if (!value) {
|
|
return me.noProxyText;
|
|
}
|
|
return value;
|
|
}
|
|
},
|
|
console: {
|
|
header: gettext('Console Viewer'),
|
|
editor: 'PVE.dc.ConsoleViewerEdit',
|
|
required: true,
|
|
renderer: PVE.Utils.render_console_viewer
|
|
}
|
|
};
|
|
|
|
var sm = Ext.create('Ext.selection.RowModel', {});
|
|
|
|
var run_editor = function() {
|
|
var rec = sm.getSelection()[0];
|
|
if (!rec) {
|
|
return;
|
|
}
|
|
|
|
var rowdef = rows[rec.data.key];
|
|
if (!rowdef.editor) {
|
|
return;
|
|
}
|
|
|
|
var win = Ext.create(rowdef.editor, {
|
|
url: "/api2/extjs/cluster/options",
|
|
confid: rec.data.key
|
|
});
|
|
win.show();
|
|
win.on('destroy', reload);
|
|
};
|
|
|
|
var edit_btn = new PVE.button.Button({
|
|
text: gettext('Edit'),
|
|
disabled: true,
|
|
selModel: sm,
|
|
handler: run_editor
|
|
});
|
|
|
|
Ext.applyIf(me, {
|
|
url: "/api2/json/cluster/options",
|
|
cwidth1: 130,
|
|
interval: 1000,
|
|
selModel: sm,
|
|
tbar: [ edit_btn ],
|
|
rows: rows,
|
|
listeners: {
|
|
itemdblclick: run_editor
|
|
}
|
|
});
|
|
|
|
me.callParent();
|
|
|
|
me.on('show', reload);
|
|
}
|
|
});
|