2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2020-06-12 20:47:44 +00:00
|
|
|
import QtQuick.Dialogs 1.3
|
|
|
|
import "../imports"
|
|
|
|
import "../shared"
|
|
|
|
|
|
|
|
ModalPopup {
|
|
|
|
property bool loading: false
|
2020-06-23 19:31:35 +00:00
|
|
|
property string passwordValidationError: ""
|
|
|
|
property string repeatPasswordValidationError: ""
|
|
|
|
|
|
|
|
function validate() {
|
|
|
|
if (firstPasswordField.text === "") {
|
|
|
|
passwordValidationError = qsTr("You need to enter a password")
|
|
|
|
} else if (firstPasswordField.text.length < 4) {
|
|
|
|
passwordValidationError = qsTr("Password needs to be 4 characters or more")
|
|
|
|
} else {
|
|
|
|
passwordValidationError = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if (repeatPasswordField.text === "") {
|
|
|
|
repeatPasswordValidationError = qsTr("You need to repeat your password")
|
|
|
|
} else if (repeatPasswordField.text !== firstPasswordField.text) {
|
|
|
|
repeatPasswordValidationError = qsTr("Both passwords must match")
|
|
|
|
} else {
|
|
|
|
repeatPasswordValidationError = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return passwordValidationError === "" && repeatPasswordValidationError === ""
|
|
|
|
}
|
|
|
|
|
2020-06-12 20:47:44 +00:00
|
|
|
id: popup
|
|
|
|
title: qsTr("Create a password")
|
|
|
|
height: 500
|
|
|
|
|
|
|
|
onOpened: {
|
|
|
|
firstPasswordField.text = "";
|
|
|
|
firstPasswordField.forceActiveFocus(Qt.MouseFocusReason)
|
|
|
|
}
|
|
|
|
|
|
|
|
Input {
|
|
|
|
id: firstPasswordField
|
|
|
|
anchors.rightMargin: 56
|
|
|
|
anchors.leftMargin: 56
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 88
|
|
|
|
placeholderText: qsTr("New password...")
|
|
|
|
textField.echoMode: TextInput.Password
|
2020-06-23 19:31:35 +00:00
|
|
|
validationError: popup.passwordValidationError
|
2020-06-12 20:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Input {
|
|
|
|
id: repeatPasswordField
|
|
|
|
anchors.rightMargin: 0
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
anchors.right: firstPasswordField.right
|
|
|
|
anchors.left: firstPasswordField.left
|
|
|
|
anchors.top: firstPasswordField.bottom
|
|
|
|
anchors.topMargin: Theme.xlPadding
|
|
|
|
placeholderText: qsTr("Confirm password…")
|
|
|
|
textField.echoMode: TextInput.Password
|
2020-06-23 19:31:35 +00:00
|
|
|
validationError: popup.repeatPasswordValidationError
|
2020-06-12 20:47:44 +00:00
|
|
|
Keys.onReturnPressed: {
|
|
|
|
submitBtn.clicked()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-06-12 20:47:44 +00:00
|
|
|
text: qsTr("At least 6 characters. You will use this password to unlock status on this device & sign transactions.")
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.xlPadding
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Theme.xlPadding
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 0
|
|
|
|
color: Theme.darkGrey
|
|
|
|
font.pixelSize: 12
|
|
|
|
}
|
|
|
|
|
2020-06-22 19:32:00 +00:00
|
|
|
footer: Item {
|
|
|
|
anchors.top: parent.bottom
|
2020-06-12 20:47:44 +00:00
|
|
|
anchors.right: parent.right
|
2020-06-22 19:32:00 +00:00
|
|
|
anchors.bottom: popup.bottom
|
|
|
|
anchors.left: parent.left
|
2020-06-12 20:47:44 +00:00
|
|
|
|
2020-06-25 13:23:17 +00:00
|
|
|
SVGImage {
|
2020-06-22 19:32:00 +00:00
|
|
|
id: loadingImg
|
|
|
|
visible: loading
|
|
|
|
anchors.top: submitBtn.top
|
|
|
|
anchors.topMargin: Theme.padding
|
|
|
|
anchors.right: submitBtn.left
|
|
|
|
anchors.rightMargin: Theme.padding
|
|
|
|
source: "../app/img/settings.svg"
|
|
|
|
width: 20
|
|
|
|
height: 20
|
|
|
|
fillMode: Image.Stretch
|
|
|
|
RotationAnimator {
|
|
|
|
target: loadingImg;
|
|
|
|
from: 0;
|
|
|
|
to: 360;
|
|
|
|
duration: 1200
|
|
|
|
running: true
|
|
|
|
loops: Animation.Infinite
|
2020-06-12 20:47:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 19:32:00 +00:00
|
|
|
StyledButton {
|
|
|
|
id: submitBtn
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.topMargin: Theme.padding
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.padding
|
|
|
|
label: loading ? qsTr("Logging in...") : qsTr("Create password")
|
2020-06-12 20:47:44 +00:00
|
|
|
|
2020-06-22 19:32:00 +00:00
|
|
|
disabled: firstPasswordField.text === "" || repeatPasswordField.text === "" || loading
|
|
|
|
|
|
|
|
MessageDialog {
|
|
|
|
id: importError
|
|
|
|
title: qsTr("Error importing account")
|
|
|
|
text: qsTr("An error occurred while importing your account: ")
|
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
|
|
|
onVisibilityChanged: {
|
|
|
|
loading = false
|
|
|
|
}
|
2020-06-12 20:47:44 +00:00
|
|
|
}
|
|
|
|
|
2020-06-22 19:32:00 +00:00
|
|
|
MessageDialog {
|
|
|
|
id: importLoginError
|
|
|
|
title: qsTr("Login failed")
|
|
|
|
text: qsTr("Login failed. Please re-enter your password and try again.")
|
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
|
|
|
onVisibilityChanged: {
|
2020-06-12 20:47:44 +00:00
|
|
|
loading = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-22 19:32:00 +00:00
|
|
|
Connections {
|
|
|
|
target: onboardingModel
|
|
|
|
ignoreUnknownSignals: true
|
|
|
|
onLoginResponseChanged: {
|
|
|
|
if (error) {
|
|
|
|
loading = false
|
|
|
|
importLoginError.open()
|
|
|
|
}
|
|
|
|
}
|
2020-06-12 20:47:44 +00:00
|
|
|
}
|
2020-06-22 19:32:00 +00:00
|
|
|
|
2020-06-23 19:31:35 +00:00
|
|
|
onClicked: {
|
|
|
|
if (!validate()) {
|
2020-06-22 19:32:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// TODO this doesn't seem to work because the function freezes the view
|
|
|
|
loading = true
|
2020-06-29 19:49:34 +00:00
|
|
|
loginModel.isCurrentFlow = false;
|
|
|
|
onboardingModel.isCurrentFlow = true;
|
2020-06-22 19:32:00 +00:00
|
|
|
const result = onboardingModel.storeDerivedAndLogin(repeatPasswordField.text);
|
|
|
|
const error = JSON.parse(result).error
|
|
|
|
if (error) {
|
|
|
|
importError.text += error
|
|
|
|
return importError.open()
|
|
|
|
}
|
2020-06-12 20:47:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
|
|
|
|
}
|
|
|
|
##^##*/
|