mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-11 06:06:30 +00:00
add getSettings methods to src/status fix issue with calling getSettings; document issue remove most direct references to libstatus; document some common issues remove most references to libstatus wallet add mailserver layer to status lib; remove references to libstatus mailservers remove libstatus accounts references move types out of libstatus; remove libstatus types references remove libstatus browser references refactor libstatus utils references remove more references to libstatus stickers remove references to libstatus constants from src/app remove more libstatus references from src/app refactor token_list usage of libstatus refactor stickers usage of libstatus refactor chat usage of libstatus remove libstatus references from the wallet view remove logic from ens manager view fix issue with import & namespace conflict remove unnecessary imports refactor provider view to not depend on libstatus refactor provider view refactor: move accounts specific code to its own section fix account selection move collectibles to their own module update references to wallet transactions refactor: move gas methods to their own file refactor: extract tokens into their own file refactor: extract ens to its own file refactor: extract dappbrowser code to its own file refactor: extract history related code to its own file refactor: extract balance to its own file refactor: extract utils to its own file clean up wallet imports fix: identicon for transaction commands Fixes #2533
129 lines
4.1 KiB
QML
129 lines
4.1 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Dialogs 1.3
|
|
import "../../../../imports"
|
|
import "../../../../shared"
|
|
import "../../../../shared/status"
|
|
|
|
ModalPopup {
|
|
id: popup
|
|
//% "Generate an account"
|
|
title: qsTrId("generate-a-new-account")
|
|
|
|
property int marginBetweenInputs: 38
|
|
property string passwordValidationError: ""
|
|
property string accountNameValidationError: ""
|
|
property bool loading: false
|
|
property var onAfterAddAccount: function() {}
|
|
|
|
function validate() {
|
|
if (passwordInput.text === "") {
|
|
//% "You need to enter a password"
|
|
passwordValidationError = qsTrId("you-need-to-enter-a-password")
|
|
} else if (passwordInput.text.length < 6) {
|
|
//% "Password needs to be 6 characters or more"
|
|
passwordValidationError = qsTrId("password-needs-to-be-6-characters-or-more")
|
|
} else {
|
|
passwordValidationError = ""
|
|
}
|
|
|
|
if (accountNameInput.text === "") {
|
|
//% "You need to enter an account name"
|
|
accountNameValidationError = qsTrId("you-need-to-enter-an-account-name")
|
|
} else {
|
|
accountNameValidationError = ""
|
|
}
|
|
|
|
return passwordValidationError === "" && accountNameValidationError === ""
|
|
}
|
|
|
|
onOpened: {
|
|
passwordValidationError = "";
|
|
accountNameValidationError = "";
|
|
passwordInput.text = "";
|
|
accountNameInput.text = "";
|
|
accountColorInput.selectedColor = Style.current.accountColors[Math.floor(Math.random() * Style.current.accountColors.length)]
|
|
passwordInput.forceActiveFocus(Qt.MouseFocusReason)
|
|
}
|
|
|
|
Input {
|
|
id: passwordInput
|
|
//% "Enter your password…"
|
|
placeholderText: qsTrId("enter-your-password…")
|
|
//% "Password"
|
|
label: qsTrId("password")
|
|
textField.echoMode: TextInput.Password
|
|
validationError: popup.passwordValidationError
|
|
}
|
|
|
|
Input {
|
|
id: accountNameInput
|
|
anchors.top: passwordInput.bottom
|
|
anchors.topMargin: marginBetweenInputs
|
|
//% "Enter an account name..."
|
|
placeholderText: qsTrId("enter-an-account-name...")
|
|
//% "Account name"
|
|
label: qsTrId("account-name")
|
|
validationError: popup.accountNameValidationError
|
|
}
|
|
|
|
StatusWalletColorSelect {
|
|
id: accountColorInput
|
|
selectedColor: Style.current.accountColors[0]
|
|
anchors.top: accountNameInput.bottom
|
|
anchors.topMargin: marginBetweenInputs
|
|
width: parent.width
|
|
}
|
|
|
|
footer: StatusButton {
|
|
anchors.top: parent.top
|
|
anchors.right: parent.right
|
|
text: loading ?
|
|
//% "Loading..."
|
|
qsTrId("loading") :
|
|
//% "Add account"
|
|
qsTrId("add-account")
|
|
|
|
enabled: !loading && passwordInput.text !== "" && accountNameInput.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
|
|
if (!validate()) {
|
|
errorSound.play()
|
|
return loading = false
|
|
}
|
|
|
|
const result = walletModel.accountsView.generateNewAccount(passwordInput.text, accountNameInput.text, accountColorInput.selectedColor)
|
|
loading = false
|
|
if (result) {
|
|
let resultJson = JSON.parse(result);
|
|
errorSound.play();
|
|
if (Utils.isInvalidPasswordMessage(resultJson.error)) {
|
|
//% "Wrong password"
|
|
popup.passwordValidationError = qsTrId("wrong-password")
|
|
} else {
|
|
accountError.text = resultJson.error;
|
|
accountError.open();
|
|
}
|
|
return
|
|
}
|
|
popup.onAfterAddAccount();
|
|
popup.close();
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
|
|
}
|
|
##^##*/
|