2022-03-28 08:19:57 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Dialogs 1.3
|
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Core.Utils 0.1 as StatusQUtils
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Controls.Validators 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
|
|
|
|
import shared.controls 1.0
|
|
|
|
|
|
|
|
import "../stores"
|
|
|
|
import "../views"
|
2022-03-31 11:46:25 +00:00
|
|
|
import "../panels"
|
2022-03-28 08:19:57 +00:00
|
|
|
|
|
|
|
StatusModal {
|
2022-07-19 15:36:09 +00:00
|
|
|
id: root
|
2022-03-28 08:19:57 +00:00
|
|
|
|
2022-09-08 09:12:30 +00:00
|
|
|
readonly property int marginBetweenInputs: 38
|
2022-03-28 08:19:57 +00:00
|
|
|
property var emojiPopup: null
|
|
|
|
|
2022-08-12 09:02:56 +00:00
|
|
|
header.title: qsTr("Generate an account")
|
2022-10-27 09:26:34 +00:00
|
|
|
closePolicy: nextButton.loading? Popup.NoAutoClose : Popup.CloseOnEscape
|
|
|
|
hasCloseButton: !nextButton.loading
|
2022-04-12 12:50:47 +00:00
|
|
|
|
2022-03-28 08:19:57 +00:00
|
|
|
signal afterAddAccount()
|
|
|
|
|
2022-08-12 09:02:56 +00:00
|
|
|
Connections {
|
|
|
|
target: emojiPopup
|
|
|
|
enabled: root.opened
|
|
|
|
|
|
|
|
function onEmojiSelected (emojiText, atCursor) {
|
2022-09-08 09:12:30 +00:00
|
|
|
accountNameInput.input.asset.emoji = emojiText
|
2022-08-12 09:02:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
2022-09-23 13:53:13 +00:00
|
|
|
target: walletSectionAccounts
|
2023-01-18 09:25:36 +00:00
|
|
|
function onUserAuthenticationSuccess(password: string) {
|
2022-09-23 13:53:13 +00:00
|
|
|
validationError.text = ""
|
|
|
|
d.password = password
|
2022-10-27 09:26:34 +00:00
|
|
|
RootStore.loggedInUserAuthenticated = true
|
2023-01-18 09:25:36 +00:00
|
|
|
if (d.selectedAccountType === Constants.AddAccountType.ImportPrivateKey) {
|
2022-10-27 09:26:34 +00:00
|
|
|
d.generateNewAccount()
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (!d.selectedKeyUidMigratedToKeycard) {
|
|
|
|
d.getDerivedAddressList()
|
|
|
|
}
|
|
|
|
}
|
2022-08-12 09:02:56 +00:00
|
|
|
}
|
2023-01-18 09:25:36 +00:00
|
|
|
function onUserAuthentiactionFail() {
|
2022-09-23 13:53:13 +00:00
|
|
|
d.password = ""
|
2022-10-27 09:26:34 +00:00
|
|
|
RootStore.loggedInUserAuthenticated = false
|
2022-09-23 13:53:13 +00:00
|
|
|
validationError.text = qsTr("An authentication failed")
|
2022-10-27 09:26:34 +00:00
|
|
|
nextButton.loading = false
|
2022-08-12 09:02:56 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-28 08:19:57 +00:00
|
|
|
|
2022-03-31 11:46:25 +00:00
|
|
|
QtObject {
|
2022-07-19 15:36:09 +00:00
|
|
|
id: d
|
2022-03-31 11:46:25 +00:00
|
|
|
|
2022-08-12 09:02:56 +00:00
|
|
|
readonly property int numOfItems: 100
|
|
|
|
readonly property int pageNumber: 1
|
2022-03-31 11:46:25 +00:00
|
|
|
|
2022-09-23 13:53:13 +00:00
|
|
|
property string password: ""
|
2023-01-18 09:25:36 +00:00
|
|
|
property int selectedAccountType: Constants.AddAccountType.GenerateNew
|
2022-10-27 09:26:34 +00:00
|
|
|
property string selectedAccountDerivedFromAddress: ""
|
|
|
|
property string selectedKeyUid: RootStore.defaultSelectedKeyUid
|
|
|
|
property bool selectedKeyUidMigratedToKeycard: RootStore.defaultSelectedKeyUidMigratedToKeycard
|
|
|
|
property string selectedPath: ""
|
|
|
|
property string selectedAddress: ""
|
|
|
|
property bool selectedAddressAvailable: true
|
|
|
|
|
2023-01-18 09:25:36 +00:00
|
|
|
readonly property bool authenticationNeeded: d.selectedAccountType !== Constants.AddAccountType.WatchOnly &&
|
2022-09-23 13:53:13 +00:00
|
|
|
d.password === ""
|
2022-09-26 11:56:46 +00:00
|
|
|
property string addAccountIcon: ""
|
2022-09-23 13:53:13 +00:00
|
|
|
|
2022-10-27 09:26:34 +00:00
|
|
|
property bool isLoading: RootStore.derivedAddressesLoading
|
|
|
|
onIsLoadingChanged: {
|
|
|
|
if(!isLoading && nextButton.loading) {
|
|
|
|
d.generateNewAccount()
|
|
|
|
}
|
|
|
|
}
|
2022-05-12 15:24:03 +00:00
|
|
|
|
2022-08-12 09:02:56 +00:00
|
|
|
function getDerivedAddressList() {
|
2023-01-18 09:25:36 +00:00
|
|
|
if(d.selectedAccountType === Constants.AddAccountType.ImportSeedPhrase
|
2022-08-12 09:02:56 +00:00
|
|
|
&& !!advancedSelection.expandableItem.path
|
|
|
|
&& !!advancedSelection.expandableItem.mnemonicText) {
|
|
|
|
RootStore.getDerivedAddressListForMnemonic(advancedSelection.expandableItem.mnemonicText,
|
|
|
|
advancedSelection.expandableItem.path, numOfItems, pageNumber)
|
2022-11-08 13:15:24 +00:00
|
|
|
} else if(!!d.selectedPath && !!d.selectedAccountDerivedFromAddress
|
2022-09-23 13:53:13 +00:00
|
|
|
&& (d.password.length > 0)) {
|
2022-11-08 13:15:24 +00:00
|
|
|
RootStore.getDerivedAddressList(d.password, d.selectedAccountDerivedFromAddress,
|
2022-11-09 15:09:44 +00:00
|
|
|
d.selectedPath, numOfItems, pageNumber,
|
|
|
|
!(d.selectedKeyUidMigratedToKeycard || userProfile.isKeycardUser))
|
2022-08-12 09:02:56 +00:00
|
|
|
}
|
2022-05-12 15:24:03 +00:00
|
|
|
}
|
|
|
|
|
2022-07-19 15:36:09 +00:00
|
|
|
function generateNewAccount() {
|
2022-08-12 09:02:56 +00:00
|
|
|
// TODO the loading doesn't work because the function freezes the view. Might need to use threads
|
|
|
|
if (!advancedSelection.validate()) {
|
|
|
|
Global.playErrorSound()
|
2022-07-19 15:36:09 +00:00
|
|
|
return nextButton.loading = false
|
|
|
|
}
|
|
|
|
|
2022-08-12 09:02:56 +00:00
|
|
|
let errMessage = ""
|
2022-07-19 15:36:09 +00:00
|
|
|
|
2022-09-23 13:53:13 +00:00
|
|
|
switch(d.selectedAccountType) {
|
2023-01-18 09:25:36 +00:00
|
|
|
case Constants.AddAccountType.GenerateNew:
|
2022-10-27 09:26:34 +00:00
|
|
|
if (d.selectedKeyUidMigratedToKeycard) {
|
|
|
|
errMessage = RootStore.addNewWalletAccountGeneratedFromKeycard(Constants.generatedWalletType,
|
|
|
|
accountNameInput.text,
|
|
|
|
colorSelectionGrid.selectedColor,
|
|
|
|
accountNameInput.input.asset.emoji)
|
|
|
|
}
|
|
|
|
else {
|
2022-09-23 13:53:13 +00:00
|
|
|
errMessage = RootStore.generateNewAccount(d.password, accountNameInput.text, colorSelectionGrid.selectedColor,
|
2022-09-05 12:17:19 +00:00
|
|
|
accountNameInput.input.asset.emoji, advancedSelection.expandableItem.completePath,
|
2022-08-11 11:55:08 +00:00
|
|
|
advancedSelection.expandableItem.derivedFromAddress)
|
2022-10-27 09:26:34 +00:00
|
|
|
}
|
2022-08-11 11:55:08 +00:00
|
|
|
break
|
2023-01-18 09:25:36 +00:00
|
|
|
case Constants.AddAccountType.ImportSeedPhrase:
|
2022-09-23 13:53:13 +00:00
|
|
|
errMessage = RootStore.addAccountsFromSeed(advancedSelection.expandableItem.mnemonicText, d.password,
|
2022-09-05 12:17:19 +00:00
|
|
|
accountNameInput.text, colorSelectionGrid.selectedColor, accountNameInput.input.asset.emoji,
|
2022-08-11 11:55:08 +00:00
|
|
|
advancedSelection.expandableItem.completePath)
|
|
|
|
break
|
2023-01-18 09:25:36 +00:00
|
|
|
case Constants.AddAccountType.ImportPrivateKey:
|
2022-09-23 13:53:13 +00:00
|
|
|
errMessage = RootStore.addAccountsFromPrivateKey(advancedSelection.expandableItem.privateKey, d.password,
|
2022-09-05 12:17:19 +00:00
|
|
|
accountNameInput.text, colorSelectionGrid.selectedColor, accountNameInput.input.asset.emoji)
|
2022-08-11 11:55:08 +00:00
|
|
|
break
|
2023-01-18 09:25:36 +00:00
|
|
|
case Constants.AddAccountType.WatchOnly:
|
2022-08-11 11:55:08 +00:00
|
|
|
errMessage = RootStore.addWatchOnlyAccount(advancedSelection.expandableItem.watchAddress, accountNameInput.text,
|
2022-09-05 12:17:19 +00:00
|
|
|
colorSelectionGrid.selectedColor, accountNameInput.input.asset.emoji)
|
2022-08-11 11:55:08 +00:00
|
|
|
break
|
2022-07-19 15:36:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nextButton.loading = false
|
2022-03-31 11:46:25 +00:00
|
|
|
|
2022-08-12 09:02:56 +00:00
|
|
|
if (errMessage) {
|
2022-09-23 13:53:13 +00:00
|
|
|
console.warn(`Unhandled error case. Status-go message: ${errMessage}`)
|
2022-08-12 09:02:56 +00:00
|
|
|
} else {
|
|
|
|
root.afterAddAccount()
|
|
|
|
root.close()
|
|
|
|
}
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
2022-09-23 13:53:13 +00:00
|
|
|
|
|
|
|
function nextButtonClicked() {
|
2022-10-27 09:26:34 +00:00
|
|
|
nextButton.loading = true
|
2022-09-23 13:53:13 +00:00
|
|
|
if (d.authenticationNeeded) {
|
|
|
|
d.password = ""
|
2022-10-27 09:26:34 +00:00
|
|
|
if (d.selectedKeyUidMigratedToKeycard &&
|
2023-01-18 09:25:36 +00:00
|
|
|
d.selectedAccountType === Constants.AddAccountType.GenerateNew) {
|
2022-10-27 09:26:34 +00:00
|
|
|
RootStore.authenticateUserAndDeriveAddressOnKeycardForPath(d.selectedKeyUid, d.selectedPath)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
RootStore.authenticateUser()
|
|
|
|
}
|
2022-09-23 13:53:13 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
d.generateNewAccount()
|
|
|
|
}
|
|
|
|
}
|
2022-03-31 11:46:25 +00:00
|
|
|
}
|
2022-03-28 08:19:57 +00:00
|
|
|
|
|
|
|
onOpened: {
|
2022-10-27 09:26:34 +00:00
|
|
|
RootStore.loggedInUserAuthenticated = false
|
2022-09-26 11:56:46 +00:00
|
|
|
d.addAccountIcon = "password"
|
|
|
|
if (RootStore.loggedInUserUsesBiometricLogin()) {
|
|
|
|
d.addAccountIcon = "touch-id"
|
|
|
|
}
|
|
|
|
else if (RootStore.loggedInUserIsKeycardUser()) {
|
|
|
|
d.addAccountIcon = "keycard"
|
|
|
|
}
|
|
|
|
|
2022-08-11 11:55:08 +00:00
|
|
|
accountNameInput.input.asset.emoji = StatusQUtils.Emoji.getRandomEmoji(StatusQUtils.Emoji.size.verySmall)
|
2022-03-28 08:19:57 +00:00
|
|
|
colorSelectionGrid.selectedColorIndex = Math.floor(Math.random() * colorSelectionGrid.model.length)
|
2022-09-23 13:53:13 +00:00
|
|
|
accountNameInput.input.edit.forceActiveFocus()
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
|
2022-08-12 09:02:56 +00:00
|
|
|
onClosed: {
|
2022-10-27 09:26:34 +00:00
|
|
|
RootStore.loggedInUserAuthenticated = false
|
2022-09-23 13:53:13 +00:00
|
|
|
d.password = ""
|
|
|
|
validationError.text = ""
|
2022-08-12 09:02:56 +00:00
|
|
|
accountNameInput.reset()
|
|
|
|
advancedSelection.expanded = false
|
|
|
|
advancedSelection.reset()
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
|
2022-07-13 12:29:38 +00:00
|
|
|
contentItem: StatusScrollView {
|
|
|
|
id: scroll
|
2022-10-27 09:26:34 +00:00
|
|
|
width: root.width
|
2022-03-28 08:19:57 +00:00
|
|
|
topPadding: Style.current.halfPadding
|
|
|
|
bottomPadding: Style.current.halfPadding
|
2022-06-28 08:53:16 +00:00
|
|
|
leftPadding: Style.current.padding
|
|
|
|
rightPadding: Style.current.padding
|
2022-09-08 09:12:30 +00:00
|
|
|
height: 400
|
2022-07-18 08:37:37 +00:00
|
|
|
objectName: "AddAccountModalContent"
|
2022-03-28 08:19:57 +00:00
|
|
|
|
|
|
|
Column {
|
|
|
|
property alias accountNameInput: accountNameInput
|
2022-07-13 12:29:38 +00:00
|
|
|
width: scroll.availableWidth
|
2022-03-28 08:19:57 +00:00
|
|
|
spacing: Style.current.halfPadding
|
2022-09-08 09:12:30 +00:00
|
|
|
topPadding: 20
|
2022-03-28 08:19:57 +00:00
|
|
|
|
2022-09-23 13:53:13 +00:00
|
|
|
StatusBaseText {
|
|
|
|
id: validationError
|
|
|
|
visible: text !== ""
|
2022-03-28 08:19:57 +00:00
|
|
|
width: parent.width
|
2022-09-23 13:53:13 +00:00
|
|
|
height: 16
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
font.pixelSize: 12
|
|
|
|
color: Style.current.danger
|
|
|
|
wrapMode: TextEdit.Wrap
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StatusInput {
|
|
|
|
id: accountNameInput
|
2022-07-22 10:28:04 +00:00
|
|
|
placeholderText: qsTr("Enter an account name...")
|
2022-04-04 11:26:30 +00:00
|
|
|
label: qsTr("Account name")
|
2022-03-28 08:19:57 +00:00
|
|
|
input.isIconSelectable: true
|
2022-08-11 11:55:08 +00:00
|
|
|
input.asset.color: colorSelectionGrid.selectedColor ? colorSelectionGrid.selectedColor : Theme.palette.directColor1
|
2022-06-28 08:53:16 +00:00
|
|
|
input.leftPadding: Style.current.padding
|
2022-03-28 08:19:57 +00:00
|
|
|
onIconClicked: {
|
2022-07-19 15:36:09 +00:00
|
|
|
root.emojiPopup.open()
|
|
|
|
root.emojiPopup.emojiSize = StatusQUtils.Emoji.size.verySmall
|
|
|
|
root.emojiPopup.x = root.x + accountNameInput.x + Style.current.padding
|
|
|
|
root.emojiPopup.y = root.y + contentItem.y + accountNameInput.y + accountNameInput.height + Style.current.halfPadding
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
validators: [
|
|
|
|
StatusMinLengthValidator {
|
2022-04-04 11:26:30 +00:00
|
|
|
errorMessage: qsTr("You need to enter an account name")
|
2022-03-28 08:19:57 +00:00
|
|
|
minLength: 1
|
|
|
|
}
|
|
|
|
]
|
2022-07-19 15:36:09 +00:00
|
|
|
onKeyPressed: {
|
|
|
|
if(event.key === Qt.Key_Tab) {
|
|
|
|
if (nextButton.enabled) {
|
|
|
|
nextButton.forceActiveFocus(Qt.MouseFocusReason)
|
|
|
|
event.accepted = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StatusColorSelectorGrid {
|
|
|
|
id: colorSelectionGrid
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2022-10-27 09:26:34 +00:00
|
|
|
enabled: accountNameInput.valid
|
2022-03-28 08:19:57 +00:00
|
|
|
titleText: qsTr("color").toUpperCase()
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusExpandableItem {
|
|
|
|
id: advancedSelection
|
|
|
|
|
|
|
|
property bool isValid: true
|
|
|
|
|
|
|
|
function validate() {
|
2022-08-12 09:02:56 +00:00
|
|
|
return !!expandableItem && expandableItem.validate()
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function reset() {
|
2022-08-12 09:02:56 +00:00
|
|
|
return !!expandableItem && expandableItem.reset()
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
width: parent.width
|
2022-10-27 09:26:34 +00:00
|
|
|
enabled: accountNameInput.valid
|
2022-03-28 08:19:57 +00:00
|
|
|
|
|
|
|
primaryText: qsTr("Advanced")
|
|
|
|
type: StatusExpandableItem.Type.Tertiary
|
|
|
|
expandable: true
|
|
|
|
expandableComponent: AdvancedAddAccountView {
|
|
|
|
width: parent.width
|
2022-10-27 09:26:34 +00:00
|
|
|
onCalculateDerivedPath: {
|
|
|
|
if (d.selectedKeyUidMigratedToKeycard) {
|
|
|
|
d.password = ""
|
|
|
|
validationError.text = ""
|
|
|
|
RootStore.loggedInUserAuthenticated = false
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
d.getDerivedAddressList()
|
|
|
|
}
|
|
|
|
}
|
2022-05-05 18:54:45 +00:00
|
|
|
onEnterPressed: {
|
|
|
|
if (nextButton.enabled) {
|
|
|
|
nextButton.clicked(null)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2022-09-23 13:53:13 +00:00
|
|
|
|
|
|
|
Component.onCompleted: {
|
2022-10-27 09:26:34 +00:00
|
|
|
d.selectedAccountType = Qt.binding(() => addAccountType)
|
|
|
|
d.selectedAccountDerivedFromAddress = Qt.binding(() => derivedFromAddress)
|
|
|
|
d.selectedKeyUid = Qt.binding(() => selectedKeyUid)
|
|
|
|
d.selectedKeyUidMigratedToKeycard = Qt.binding(() => selectedKeyUidMigratedToKeycard)
|
|
|
|
d.selectedPath = Qt.binding(() => path)
|
|
|
|
d.selectedAddress = Qt.binding(() => selectedAddress)
|
|
|
|
d.selectedAddressAvailable = Qt.binding(() => selectedAddressAvailable)
|
2022-09-23 13:53:13 +00:00
|
|
|
advancedSelection.isValid = Qt.binding(() => isValid)
|
|
|
|
}
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rightButtons: [
|
|
|
|
StatusButton {
|
|
|
|
id: nextButton
|
2022-08-12 09:02:56 +00:00
|
|
|
|
2022-09-23 13:53:13 +00:00
|
|
|
text: {
|
|
|
|
if (loading) {
|
|
|
|
return qsTr("Loading...")
|
|
|
|
}
|
|
|
|
return qsTr("Add account")
|
|
|
|
}
|
|
|
|
|
2022-03-28 08:19:57 +00:00
|
|
|
|
2022-04-12 12:18:17 +00:00
|
|
|
enabled: {
|
2022-10-27 09:26:34 +00:00
|
|
|
if (!accountNameInput.valid) {
|
|
|
|
return false
|
2022-09-23 13:53:13 +00:00
|
|
|
}
|
2022-04-12 12:18:17 +00:00
|
|
|
if (loading) {
|
|
|
|
return false
|
|
|
|
}
|
2022-10-27 09:26:34 +00:00
|
|
|
return advancedSelection.isValid
|
2022-09-23 13:53:13 +00:00
|
|
|
}
|
2022-04-12 12:18:17 +00:00
|
|
|
|
2022-09-26 11:56:46 +00:00
|
|
|
icon.name: d.authenticationNeeded? d.addAccountIcon : ""
|
2022-07-19 15:36:09 +00:00
|
|
|
highlighted: focus
|
|
|
|
|
2022-09-23 13:53:13 +00:00
|
|
|
onClicked : d.nextButtonClicked()
|
2022-03-28 08:19:57 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|