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

105 lines
3.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.views 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
import StatusQ.Core.Theme 0.1
import "../views"
StatusModal {
id: root
property var privacyStore
signal passwordChanged()
function onChangePasswordResponse(success, errorMsg) {
if (success) {
2022-06-22 12:16:21 +00:00
if (Qt.platform.os === "osx") {
localAccountSettings.storeToKeychainValue = Constants.storeToKeychainValueStore;
root.privacyStore.storeToKeyChain(d.passwordProcessing);
}
passwordChanged()
2022-06-22 12:16:21 +00:00
}
else {
view.reset()
view.errorMsgText = errorMsg
console.warn("TODO: Display error message when change password action failure! ")
}
2022-06-22 12:16:21 +00:00
d.passwordProcessing = "";
submitBtn.enabled = false;
}
2021-08-11 09:55:59 +00:00
QtObject {
id: d
2022-06-22 12:16:21 +00:00
// We temporarly store the password during "changePassword" call
// to store it to KeyChain after successfull change operation.
property string passwordProcessing: ""
function submit() {
submitBtn.loading = true
// ChangePassword operation blocks the UI so loading = true; will never have any affect until changePassword/createPassword is done.
// Getting around it with a small pause (timer) in order to get the desired behavior
pause.start()
}
}
Connections {
target: root.privacyStore.privacyModule
onPasswordChanged: onChangePasswordResponse(success, errorMsg)
2021-08-11 09:55:59 +00:00
}
width: 480
height: 546
closePolicy: Popup.NoAutoClose
header.title: qsTr("Change password")
2021-08-11 09:55:59 +00:00
onOpened: view.reset()
2021-08-11 09:55:59 +00:00
PasswordView {
id: view
anchors.topMargin: Style.current.padding
anchors.centerIn: parent
titleVisible: false
introText: qsTr("Change password used to unlock Status on this device & sign transactions.")
createNewPsw: false
onReturnPressed: if(submitBtn.enabled) d.submit()
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: !submitBtn.loading && view.ready
property Timer sim: Timer {
id: pause
interval: 20
onTriggered: {
// Change current password call action to the backend
2022-06-22 12:16:21 +00:00
d.passwordProcessing = view.newPswText
root.privacyStore.changePassword(view.currentPswText, view.newPswText)
}
}
2021-08-11 09:55:59 +00:00
onClicked: { d.submit() }
2021-08-11 09:55:59 +00:00
}
]
// By clicking anywhere outside password entries fields or focusable element in the view, it is needed to check if passwords entered matches
MouseArea {
anchors.fill: parent
z: view.zBehind // Behind focusable components in the view
onClicked: { view.checkPasswordMatches() }
}
2021-08-11 09:55:59 +00:00
}