status-desktop/ui/app/AppLayouts/Profile/popups/ChangePasswordModal.qml

155 lines
5.0 KiB
QML
Raw Normal View History

2021-08-11 09:55:59 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.12
import utils 1.0
import shared 1.0
import shared.panels 1.0
import shared.controls 1.0
2021-08-11 09:55:59 +00:00
import StatusQ.Popups 0.1
import StatusQ.Controls 0.1
StatusModal {
id: popup
width: 480
2021-08-11 09:55:59 +00:00
height: 510
closePolicy: Popup.NoAutoClose
header.title: qsTr("Change password")
2021-08-11 09:55:59 +00:00
onOpened: {
reset();
}
property var privacyStore
property var successPopup
property string indicationText: ""
property bool passwordInputValid
property bool currPasswordInputValid
property string currPasswordValidationError: ""
function reset() {
passwordInput.text = "";
currentPasswordInput.text = "";
currentPasswordInput.forceActiveFocus(Qt.MouseFocusReason);
popup.indicationText = "At least 6 characters. Your password protects your keys. You need it to unlock Status and transact.";
popup.currPasswordValidationError = "";
passwordInput.validationError = "";
popup.passwordInputValid = false;
popup.currPasswordInputValid = false;
}
function onChangePasswordResponse(success) {
if (success) {
popup.successPopup.open();
submitBtn.enabled = false;
} else {
reset();
passwordInput.validationError = " ";
popup.currPasswordValidationError = qsTr("Incorrect password");
}
submitBtn.loading = false;
}
2021-08-11 09:55:59 +00:00
Connections {
target: popup.privacyStore.privacyModule
onPasswordChanged: onChangePasswordResponse(success)
2021-08-11 09:55:59 +00:00
}
contentItem: ColumnLayout {
id: contentItem
2021-08-11 09:55:59 +00:00
anchors.fill: parent
anchors {
topMargin: (Style.current.xlPadding + popup.topPadding)
leftMargin: Style.current.xlPadding
rightMargin: Style.current.xlPadding
bottomMargin: (Style.current.xlPadding + popup.bottomPadding)
}
spacing: Style.current.padding
2021-08-11 09:55:59 +00:00
//TODO replace with StatusInput as soon as it supports password
2021-08-11 09:55:59 +00:00
Input {
id: currentPasswordInput
2021-08-11 09:55:59 +00:00
anchors.left: undefined
anchors.right: undefined
Layout.fillWidth: true
placeholderText: ""
label: qsTr("Current password")
2021-08-11 09:55:59 +00:00
textField.echoMode: TextInput.Password
onTextChanged: {
popup.currPasswordInputValid = (currentPasswordInput.text.length >= 6);
}
2021-08-11 09:55:59 +00:00
}
//TODO replace with StatusInput as soon as it supports password
2021-08-11 09:55:59 +00:00
Input {
id: passwordInput
2021-08-11 09:55:59 +00:00
anchors.left: undefined
anchors.right: undefined
Layout.fillWidth: true
placeholderText: ""
label: qsTrId("new-password...")
2021-08-11 09:55:59 +00:00
textField.echoMode: TextInput.Password
onTextChanged: {
popup.passwordInputValid = ((passwordInput.text !== "") && (passwordInput.text.length >= 6));
//setting validationError so that input becomes red
passwordInput.validationError = (!popup.passwordInputValid) ? " " : "";
popup.indicationText = (!popup.passwordInputValid ? "<font color=\"#FF2D55\">" : "")
+ "At least 6 characters." + (!popup.passwordInputValid ? "</font>" : "")
+ "Your password protects your keys. You need it to unlock Status and transact."
}
2021-08-11 09:55:59 +00:00
}
Item {
Layout.fillHeight: true
2021-08-11 09:55:59 +00:00
}
StyledText {
id: validationError
Layout.preferredWidth: parent.width
Layout.alignment: Qt.AlignHCenter
horizontalAlignment: Text.AlignHCenter
visible: (text !== "")
font.pixelSize: Style.current.tertiaryTextFontSize
color: Style.current.danger
text: popup.currPasswordValidationError
}
StyledText {
text: qsTr(indicationText)
2021-08-11 09:55:59 +00:00
wrapMode: Text.WordWrap
Layout.preferredWidth: 340
Layout.alignment: Qt.AlignHCenter
horizontalAlignment: Text.AlignHCenter
color: Style.current.secondaryText
2021-08-12 12:09:57 +00:00
font.pixelSize: Style.current.tertiaryTextFontSize
2021-08-11 09:55:59 +00:00
}
}
rightButtons: [
2021-08-11 09:55:59 +00:00
StatusButton {
id: submitBtn
text: qsTr("Change password")
enabled: (popup.passwordInputValid && popup.currPasswordInputValid && !submitBtn.loading)
property Timer sim: Timer {
id: pause
interval: 20
onTriggered: {
popup.privacyStore.changePassword(currentPasswordInput.text, passwordInput.text)
}
}
2021-08-11 09:55:59 +00:00
onClicked: {
submitBtn.loading = true;
//changePassword operation blocks the UI so loading = true; will never
//have any affect until changePassword is done. Getting around it with a
//small pause (timer) in order to get the desired behavior
pause.start();
}
2021-08-11 09:55:59 +00:00
}
]
2021-08-11 09:55:59 +00:00
}