5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-07 17:18:03 +03:00
proxmox-backup/www/window/DataStoreEdit.js
Fiona Ebner 87f2087789 ui: datastore edit: fix emptytext for path field
It is a relative path for removable datastores.

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
2024-11-27 12:05:53 +01:00

160 lines
3.5 KiB
JavaScript

Ext.define('PBS.DataStoreEdit', {
extend: 'Proxmox.window.Edit',
alias: 'widget.pbsDataStoreEdit',
mixins: ['Proxmox.Mixin.CBind'],
subject: gettext('Datastore'),
isAdd: true,
bodyPadding: 0,
showProgress: true,
cbindData: function(initialConfig) {
var me = this;
let name = initialConfig.name;
let baseurl = '/api2/extjs/config/datastore';
me.isCreate = !name;
if (!me.isCreate) {
me.defaultFocus = 'textfield[name=comment]';
}
me.url = name ? baseurl + '/' + name : baseurl;
me.method = name ? 'PUT' : 'POST';
me.scheduleValue = name ? null : 'daily';
me.autoLoad = !!name;
return {};
},
items: {
xtype: 'tabpanel',
bodyPadding: 10,
listeners: {
tabchange: function(tb, newCard) {
Ext.GlobalEvents.fireEvent('proxmoxShowHelp', newCard.onlineHelp);
},
},
items: [
{
title: gettext('General'),
xtype: 'inputpanel',
onlineHelp: 'datastore_intro',
cbind: {
isCreate: '{isCreate}',
},
column1: [
{
xtype: 'pmxDisplayEditField',
cbind: {
editable: '{isCreate}',
},
name: 'name',
allowBlank: false,
fieldLabel: gettext('Name'),
},
{
xtype: 'pmxDisplayEditField',
cbind: {
editable: '{isCreate}',
},
name: 'path',
allowBlank: false,
fieldLabel: gettext('Backing Path'),
emptyText: gettext('An absolute path'),
validator: val => val?.trim() !== '/',
},
{
xtype: 'pbsPartitionSelector',
fieldLabel: gettext('Device'),
name: 'backing-device',
disabled: true,
allowBlank: true,
cbind: {
editable: '{isCreate}',
},
emptyText: gettext('Device path'),
},
],
column2: [
{
xtype: 'pbsCalendarEvent',
name: 'gc-schedule',
fieldLabel: gettext("GC Schedule"),
emptyText: gettext('none'),
cbind: {
deleteEmpty: '{!isCreate}',
value: '{scheduleValue}',
},
},
{
xtype: 'pbsCalendarEvent',
name: 'prune-schedule',
fieldLabel: gettext("Prune Schedule"),
value: 'daily',
emptyText: gettext('none'),
cbind: {
deleteEmpty: '{!isCreate}',
value: '{scheduleValue}',
},
},
],
columnB: [
{
xtype: 'checkbox',
boxLabel: gettext('Removable datastore'),
submitValue: false,
listeners: {
change: function(checkbox, isRemovable) {
let inputPanel = checkbox.up('inputpanel');
let pathField = inputPanel.down('[name=path]');
let uuidEditField = inputPanel.down('[name=backing-device]');
uuidEditField.setDisabled(!isRemovable);
uuidEditField.allowBlank = !isRemovable;
uuidEditField.setValue('');
if (isRemovable) {
pathField.setFieldLabel(gettext('Path on Device'));
pathField.setEmptyText(gettext('A relative path'));
} else {
pathField.setFieldLabel(gettext('Backing Path'));
pathField.setEmptyText(gettext('An absolute path'));
}
},
},
},
{
xtype: 'textfield',
name: 'comment',
fieldLabel: gettext('Comment'),
},
],
advancedColumn1: [
{
xtype: 'checkbox',
name: 'reuse-datastore',
fieldLabel: gettext('Reuse existing datastore'),
},
],
onGetValues: function(values) {
let me = this;
if (me.isCreate) {
// New datastores default to using the notification system
values['notification-mode'] = 'notification-system';
}
return values;
},
},
{
title: gettext('Prune Options'),
xtype: 'pbsPruneInputPanel',
cbind: {
isCreate: '{isCreate}',
},
onlineHelp: 'backup_pruning',
},
],
},
});