ui: tape/ChangerStatus: rework EraseWindow
to make it more like a 'dangerous' remove window also works in the singleDrive logic to hide/show the driveselector Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
committed by
Dietmar Maurer
parent
4c3eabeaf3
commit
88e1f7997c
@ -8,7 +8,11 @@ Ext.define('PBS.TapeManagement.EraseWindow', {
|
||||
|
||||
cbindData: function(config) {
|
||||
let me = this;
|
||||
return {};
|
||||
return {
|
||||
singleDrive: me.singleDrive,
|
||||
hasSingleDrive: !!me.singleDrive,
|
||||
warning: Ext.String.format(gettext("Are you sure you want to erase tape '{0}' ?"), me.label),
|
||||
};
|
||||
},
|
||||
|
||||
title: gettext('Format/Erase'),
|
||||
@ -20,32 +24,72 @@ Ext.define('PBS.TapeManagement.EraseWindow', {
|
||||
return `${url}/${drive}/format-media`;
|
||||
},
|
||||
|
||||
layout: 'hbox',
|
||||
width: 400,
|
||||
method: 'POST',
|
||||
isCreate: true,
|
||||
submitText: gettext('Ok'),
|
||||
items: [
|
||||
{
|
||||
xtype: 'displayfield',
|
||||
cls: 'pmx-hint',
|
||||
value: gettext('Make sure to insert the tape into the selected drive.'),
|
||||
cbind: {
|
||||
hidden: '{changer}',
|
||||
},
|
||||
},
|
||||
{
|
||||
xtype: 'displayfield',
|
||||
name: 'label-text',
|
||||
submitValue: true,
|
||||
fieldLabel: gettext('Media'),
|
||||
cbind: {
|
||||
value: '{label}',
|
||||
},
|
||||
},
|
||||
{
|
||||
xtype: 'pbsDriveSelector',
|
||||
fieldLabel: gettext('Drive'),
|
||||
name: 'drive',
|
||||
cbind: {
|
||||
changer: '{changer}',
|
||||
xtype: 'container',
|
||||
padding: 0,
|
||||
layout: {
|
||||
type: 'hbox',
|
||||
align: 'stretch',
|
||||
},
|
||||
items: [
|
||||
{
|
||||
xtype: 'component',
|
||||
cls: [Ext.baseCSSPrefix + 'message-box-icon',
|
||||
Ext.baseCSSPrefix + 'message-box-warning',
|
||||
Ext.baseCSSPrefix + 'dlg-icon'],
|
||||
},
|
||||
{
|
||||
xtype: 'container',
|
||||
flex: 1,
|
||||
items: [
|
||||
{
|
||||
xtype: 'displayfield',
|
||||
cbind: {
|
||||
value: '{warning}',
|
||||
},
|
||||
},
|
||||
{
|
||||
xtype: 'displayfield',
|
||||
cls: 'pmx-hint',
|
||||
value: gettext('Make sure to insert the tape into the selected drive.'),
|
||||
cbind: {
|
||||
hidden: '{changer}',
|
||||
},
|
||||
},
|
||||
{
|
||||
xtype: 'hidden',
|
||||
name: 'label-text',
|
||||
cbind: {
|
||||
value: '{label}',
|
||||
},
|
||||
},
|
||||
{
|
||||
xtype: 'hidden',
|
||||
name: 'drive',
|
||||
cbind: {
|
||||
disabled: '{!hasSingleDrive}',
|
||||
value: '{singleDrive}',
|
||||
},
|
||||
},
|
||||
{
|
||||
xtype: 'pbsDriveSelector',
|
||||
fieldLabel: gettext('Drive'),
|
||||
name: 'drive',
|
||||
cbind: {
|
||||
changer: '{changer}',
|
||||
disabled: '{hasSingleDrive}',
|
||||
hidden: '{hasSingleDrive}',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
});
|
||||
|
Reference in New Issue
Block a user