[pbs-devel] [PATCH proxmox-backup v2 4/5] ui: show consent banner before login
Gabriel Goller
g.goller at proxmox.com
Tue Jun 4 14:50:07 CEST 2024
Before showing the LoginView, check if we got a non-empty consent text
from the template. If there is a non-empty text, display it in a modal.
Signed-off-by: Gabriel Goller <g.goller at proxmox.com>
---
www/LoginView.js | 9 +++++++++
www/config/NodeOptionView.js | 6 ++++++
www/index.hbs | 1 +
3 files changed, 16 insertions(+)
diff --git a/www/LoginView.js b/www/LoginView.js
index d4d8e73e..96f97da7 100644
--- a/www/LoginView.js
+++ b/www/LoginView.js
@@ -20,6 +20,15 @@ Ext.define('PBS.LoginView', {
controller: {
xclass: 'Ext.app.ViewController',
+ init: async function() {
+ if (Proxmox.consentText !== "") {
+ Ext.create('Proxmox.window.ConsentModal', {
+ autoShow: true,
+ consent: Proxmox.consentText,
+ });
+ }
+ },
+
submitForm: async function() {
var me = this;
var loginForm = me.lookupReference('loginForm');
diff --git a/www/config/NodeOptionView.js b/www/config/NodeOptionView.js
index ae6453fe..35938f9a 100644
--- a/www/config/NodeOptionView.js
+++ b/www/config/NodeOptionView.js
@@ -54,5 +54,11 @@ Ext.define('PBS.NodeOptionView', {
deleteEmpty: true,
renderer: Proxmox.Utils.render_language,
},
+ {
+ xtype: 'textareafield',
+ name: 'consent-text',
+ text: gettext('Consent Text'),
+ deleteEmpty: true,
+ },
],
});
diff --git a/www/index.hbs b/www/index.hbs
index 824268e3..f1729cef 100644
--- a/www/index.hbs
+++ b/www/index.hbs
@@ -38,6 +38,7 @@
UserName: "{{ UserName }}",
defaultLang: "{{ language }}",
CSRFPreventionToken: "{{ CSRFPreventionToken }}",
+ consentText: decodeURI("{{ consentText }}"),
};
</script>
<script type="text/javascript" src="/widgettoolkit/proxmoxlib.js"></script>
--
2.43.0
More information about the pbs-devel
mailing list