88 lines
1.9 KiB
JavaScript
88 lines
1.9 KiB
JavaScript
|
Ext.define('PBS.Datastore.Options', {
|
||
|
extend: 'Proxmox.grid.ObjectGrid',
|
||
|
xtype: 'pbsDatastoreOptionView',
|
||
|
mixins: ['Proxmox.Mixin.CBind'],
|
||
|
|
||
|
cbindData: function(initial) {
|
||
|
let me = this;
|
||
|
|
||
|
me.datastore = encodeURIComponent(me.datastore);
|
||
|
me.url = `/api2/json/config/datastore/${me.datastore}`;
|
||
|
me.editorConfig = {
|
||
|
url: `/api2/extjs/config/datastore/${me.datastore}`,
|
||
|
datastore: me.datastore,
|
||
|
};
|
||
|
return {};
|
||
|
},
|
||
|
|
||
|
controller: {
|
||
|
xclass: 'Ext.app.ViewController',
|
||
|
|
||
|
edit: function() {
|
||
|
this.getView().run_editor();
|
||
|
},
|
||
|
},
|
||
|
|
||
|
tbar: [
|
||
|
{
|
||
|
xtype: 'proxmoxButton',
|
||
|
text: gettext('Edit'),
|
||
|
disabled: true,
|
||
|
handler: 'edit',
|
||
|
},
|
||
|
],
|
||
|
|
||
|
listeners: {
|
||
|
activate: function() { this.rstore.startUpdate(); },
|
||
|
destroy: function() { this.rstore.stopUpdate(); },
|
||
|
deactivate: function() { this.rstore.stopUpdate(); },
|
||
|
itemdblclick: 'edit',
|
||
|
},
|
||
|
|
||
|
rows: {
|
||
|
"notify": {
|
||
|
required: true,
|
||
|
header: gettext('Notfiy'),
|
||
|
renderer: (value) => {
|
||
|
let notify = PBS.Utils.parsePropertyString(value);
|
||
|
let res = [];
|
||
|
for (const k of ['Verify', 'Sync', 'GC']) {
|
||
|
let v = Ext.String.capitalize(notify[k.toLowerCase()]) || 'Always';
|
||
|
res.push(`${k}=${v}`);
|
||
|
}
|
||
|
return res.join(', ');
|
||
|
},
|
||
|
editor: {
|
||
|
xtype: 'pbsNotifyOptionEdit',
|
||
|
},
|
||
|
},
|
||
|
"notify-user": {
|
||
|
required: true,
|
||
|
defaultValue: 'root@pam',
|
||
|
header: gettext('Notfiy User'),
|
||
|
editor: {
|
||
|
xtype: 'pbsNotifyOptionEdit',
|
||
|
},
|
||
|
},
|
||
|
"verify-new": {
|
||
|
required: true,
|
||
|
header: gettext('Verify New Snapshots'),
|
||
|
defaultValue: false,
|
||
|
renderer: Proxmox.Utils.format_boolean,
|
||
|
editor: {
|
||
|
xtype: 'proxmoxWindowEdit',
|
||
|
title: gettext('Verify New'),
|
||
|
width: 350,
|
||
|
items: {
|
||
|
xtype: 'proxmoxcheckbox',
|
||
|
name: 'verify-new',
|
||
|
boxLabel: gettext("Verify new backups immediately after completion"),
|
||
|
defaultValue: false,
|
||
|
deleteDefaultValue: true,
|
||
|
deleteEmpty: true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
});
|