status-desktop/ui/app/AppLayouts/Wallet/components/AddAccountWithSeed.qml

159 lines
5.0 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Dialogs 1.3
import "../../../../imports"
import "../../../../shared"
ModalPopup {
id: popup
height: 600
property int marginBetweenInputs: 38
2020-06-22 17:57:06 +00:00
property string passwordValidationError: ""
property string seedValidationError: ""
property string accountNameValidationError: ""
property bool loading: false
2020-06-22 17:57:06 +00:00
function reset() {
passwordInput.text = ""
accountNameInput.text = ""
accountSeedInput.text = ""
}
2020-06-22 17:57:06 +00:00
function validate() {
if (passwordInput.text === "") {
//% "You need to enter a password"
passwordValidationError = qsTrId("you-need-to-enter-a-password")
2020-06-22 17:57:06 +00:00
} else if (passwordInput.text.length < 4) {
//% "Password needs to be 4 characters or more"
passwordValidationError = qsTrId("password-needs-to-be-4-characters-or-more")
2020-06-22 17:57:06 +00:00
} else {
passwordValidationError = ""
}
if (accountNameInput.text === "") {
//% "You need to enter an account name"
accountNameValidationError = qsTrId("you-need-to-enter-an-account-name")
2020-06-22 17:57:06 +00:00
} else {
accountNameValidationError = ""
}
if (accountSeedInput.text === "") {
//% "You need to enter a seed phrase"
seedValidationError = qsTrId("you-need-to-enter-a-seed-phrase")
2020-06-22 17:57:06 +00:00
} else if (!Utils.isMnemonic(accountSeedInput.text)) {
//% "Enter a valid mnemonic"
seedValidationError = qsTrId("enter-a-valid-mnemonic")
2020-06-22 17:57:06 +00:00
} else {
seedValidationError = ""
}
return passwordValidationError === "" && seedValidationError === "" && accountNameValidationError === ""
}
onOpened: {
accountSeedInput.text = "";
passwordInput.text = "";
accountNameInput.text = "";
accountColorInput.selectedColor = Constants.accountColors[Math.floor(Math.random() * Constants.accountColors.length)]
passwordInput.forceActiveFocus(Qt.MouseFocusReason)
}
//% "Add account with a seed phrase"
title: qsTrId("add-seed-account")
Input {
id: passwordInput
//% "Enter your password…"
placeholderText: qsTrId("enter-your-password…")
//% "Password"
label: qsTrId("password")
textField.echoMode: TextInput.Password
2020-06-22 17:57:06 +00:00
validationError: popup.passwordValidationError
}
StyledTextArea {
id: accountSeedInput
anchors.top: passwordInput.bottom
anchors.topMargin: marginBetweenInputs
//% "Enter your seed phrase, separate words with commas or spaces..."
placeholderText: qsTrId("enter-your-seed-phrase,-separate-words-with-commas-or-spaces...")
//% "Seed phrase"
label: qsTrId("recovery-phrase")
customHeight: 88
2020-06-22 17:57:06 +00:00
validationError: popup.seedValidationError
}
StyledText {
text: Utils.seedPhraseWordCountText(accountSeedInput.text)
anchors.right: parent.right
anchors.top: accountSeedInput.bottom
}
Input {
id: accountNameInput
anchors.top: accountSeedInput.bottom
anchors.topMargin: marginBetweenInputs
//% "Enter an account name..."
placeholderText: qsTrId("enter-an-account-name...")
//% "Account name"
label: qsTrId("account-name")
2020-06-22 17:57:06 +00:00
validationError: popup.accountNameValidationError
}
ColorSelector {
id: accountColorInput
model: Constants.accountColors
anchors.top: accountNameInput.bottom
anchors.topMargin: marginBetweenInputs
anchors.left: parent.left
anchors.right: parent.right
}
footer: StyledButton {
anchors.top: parent.top
anchors.right: parent.right
anchors.rightMargin: Style.current.padding
label: loading ?
//% "Loading..."
qsTrId("loading") :
//% "Add account >"
qsTrId("add-account")
disabled: loading || passwordInput.text === "" || accountNameInput.text === "" || accountSeedInput.text === ""
MessageDialog {
id: accountError
title: "Adding the account failed"
icon: StandardIcon.Critical
standardButtons: StandardButton.Ok
}
onClicked : {
// TODO the loaidng doesn't work because the function freezes th eview. Might need to use threads
loading = true
2020-06-22 17:57:06 +00:00
if (!validate()) {
errorSound.play()
return loading = false
}
const error = walletModel.addAccountsFromSeed(accountSeedInput.text, passwordInput.text, accountNameInput.text, accountColorInput.selectedColor)
loading = false
if (error) {
errorSound.play()
accountError.text = error
return accountError.open()
2020-06-22 17:57:06 +00:00
}
popup.reset()
popup.close();
}
}
}
/*##^##
Designer {
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
}
##^##*/