ui: tfa: rework removal confirmation dialog
present all relevant information about the TFA token to be removed, so that a user can make a better decision. Rework layout to match our commonly used style. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
9a0e115a37
commit
0123039271
@ -145,10 +145,7 @@ Ext.define('PBS.config.TfaView', {
|
|||||||
let me = this;
|
let me = this;
|
||||||
|
|
||||||
Ext.create('PBS.tfa.confirmRemove', {
|
Ext.create('PBS.tfa.confirmRemove', {
|
||||||
message: Ext.String.format(
|
...record.data,
|
||||||
gettext('Are you sure you want to remove entry {0}'),
|
|
||||||
record.data.description,
|
|
||||||
),
|
|
||||||
callback: password => me.removeItem(password, record),
|
callback: password => me.removeItem(password, record),
|
||||||
})
|
})
|
||||||
.show();
|
.show();
|
||||||
@ -271,12 +268,13 @@ Ext.define('PBS.config.TfaView', {
|
|||||||
|
|
||||||
Ext.define('PBS.tfa.confirmRemove', {
|
Ext.define('PBS.tfa.confirmRemove', {
|
||||||
extend: 'Proxmox.window.Edit',
|
extend: 'Proxmox.window.Edit',
|
||||||
|
mixins: ['Proxmox.Mixin.CBind'],
|
||||||
|
|
||||||
title: gettext("Confirm TFA Removal"),
|
title: gettext("Confirm TFA Removal"),
|
||||||
|
|
||||||
modal: true,
|
modal: true,
|
||||||
resizable: false,
|
resizable: false,
|
||||||
width: 512,
|
width: 600,
|
||||||
isCreate: true, // logic
|
isCreate: true, // logic
|
||||||
isRemove: true,
|
isRemove: true,
|
||||||
|
|
||||||
@ -285,8 +283,8 @@ Ext.define('PBS.tfa.confirmRemove', {
|
|||||||
initComponent: function() {
|
initComponent: function() {
|
||||||
let me = this;
|
let me = this;
|
||||||
|
|
||||||
if (!me.message) {
|
if (typeof me.type !== "string") {
|
||||||
throw "missing message";
|
throw "missing type";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!me.callback) {
|
if (!me.callback) {
|
||||||
@ -299,8 +297,6 @@ Ext.define('PBS.tfa.confirmRemove', {
|
|||||||
me.lookup('password').setVisible(false);
|
me.lookup('password').setVisible(false);
|
||||||
me.lookup('password').setDisabled(true);
|
me.lookup('password').setDisabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
me.lookup('message').setHtml(Ext.String.htmlEncode(me.message));
|
|
||||||
},
|
},
|
||||||
|
|
||||||
submit: function() {
|
submit: function() {
|
||||||
@ -316,12 +312,76 @@ Ext.define('PBS.tfa.confirmRemove', {
|
|||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
xtype: 'box',
|
xtype: 'box',
|
||||||
padding: '5 5',
|
padding: '0 0 10 0',
|
||||||
reference: 'message',
|
html: Ext.String.format(
|
||||||
html: '',
|
gettext('Are you sure you want to remove this {0} entry?'),
|
||||||
style: {
|
'TFA',
|
||||||
textAlign: "center",
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'container',
|
||||||
|
layout: {
|
||||||
|
type: 'hbox',
|
||||||
|
align: 'begin',
|
||||||
},
|
},
|
||||||
|
defaults: {
|
||||||
|
border: false,
|
||||||
|
layout: 'anchor',
|
||||||
|
flex: 1,
|
||||||
|
padding: 5,
|
||||||
|
},
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
xtype: 'container',
|
||||||
|
layout: {
|
||||||
|
type: 'vbox',
|
||||||
|
},
|
||||||
|
padding: '0 10 0 0',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
xtype: 'displayfield',
|
||||||
|
fieldLabel: gettext('User'),
|
||||||
|
cbind: {
|
||||||
|
value: '{userid}',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'displayfield',
|
||||||
|
fieldLabel: gettext('Type'),
|
||||||
|
cbind: {
|
||||||
|
value: '{type}',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'container',
|
||||||
|
layout: {
|
||||||
|
type: 'vbox',
|
||||||
|
},
|
||||||
|
padding: '0 0 0 10',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
xtype: 'displayfield',
|
||||||
|
fieldLabel: gettext('Created'),
|
||||||
|
renderer: v => Proxmox.Utils.render_timestamp(v),
|
||||||
|
cbind: {
|
||||||
|
value: '{created}',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'textfield',
|
||||||
|
fieldLabel: gettext('Description'),
|
||||||
|
cbind: {
|
||||||
|
value: '{description}',
|
||||||
|
},
|
||||||
|
emptyText: Proxmox.Utils.NoneText,
|
||||||
|
submitValue: false,
|
||||||
|
editable: false,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'textfield',
|
xtype: 'textfield',
|
||||||
@ -332,8 +392,11 @@ Ext.define('PBS.tfa.confirmRemove', {
|
|||||||
name: 'password',
|
name: 'password',
|
||||||
allowBlank: false,
|
allowBlank: false,
|
||||||
validateBlank: true,
|
validateBlank: true,
|
||||||
padding: '0 0 5 5',
|
padding: '10 0 0 0',
|
||||||
emptyText: gettext('verify current password'),
|
cbind: {
|
||||||
|
emptyText: get =>
|
||||||
|
Ext.String.format(gettext("Confirm password of '{0}'"), get('userid')),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user