2020-08-06 19:45:57 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import QtQuick.Controls 2.14
|
2021-09-28 15:04:06 +00:00
|
|
|
|
2021-10-06 09:16:39 +00:00
|
|
|
import StatusQ.Core 0.1
|
2021-11-01 09:42:00 +00:00
|
|
|
import StatusQ.Core.Theme 0.1
|
2021-10-21 15:07:13 +00:00
|
|
|
import StatusQ.Controls 0.1 as StatusQControls
|
2021-10-06 09:16:39 +00:00
|
|
|
import StatusQ.Components 0.1
|
|
|
|
|
2021-09-28 15:04:06 +00:00
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared.status 1.0
|
2020-08-06 19:45:57 +00:00
|
|
|
|
|
|
|
Item {
|
2021-10-06 09:16:39 +00:00
|
|
|
id: root
|
2022-01-17 08:56:44 +00:00
|
|
|
property var ensUsernamesStore
|
2022-01-04 12:06:05 +00:00
|
|
|
property var contactsStore
|
2020-08-06 19:45:57 +00:00
|
|
|
property string username: ""
|
|
|
|
property string walletAddress: "-"
|
|
|
|
property string key: "-"
|
2021-08-09 22:23:52 +00:00
|
|
|
property var expiration: 0
|
2020-08-06 19:45:57 +00:00
|
|
|
|
2020-08-07 16:27:41 +00:00
|
|
|
signal backBtnClicked();
|
2021-08-09 22:23:52 +00:00
|
|
|
signal usernameReleased(username: string);
|
2020-08-07 16:27:41 +00:00
|
|
|
|
2021-10-06 09:16:39 +00:00
|
|
|
StatusBaseText {
|
2020-08-06 19:45:57 +00:00
|
|
|
id: sectionTitle
|
|
|
|
text: username
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 24
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 24
|
|
|
|
font.weight: Font.Bold
|
|
|
|
font.pixelSize: 20
|
2021-11-01 09:42:00 +00:00
|
|
|
color: Theme.palette.directColor1
|
2020-08-06 19:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: loadingImageComponent
|
2021-04-26 10:25:01 +00:00
|
|
|
StatusLoadingIndicator {}
|
2020-08-06 19:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Loader {
|
|
|
|
id: loadingImg
|
|
|
|
active: false
|
|
|
|
sourceComponent: loadingImageComponent
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Style.currentPadding
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
2022-01-17 08:56:44 +00:00
|
|
|
target: root.ensUsernamesStore.ensUsernamesModule
|
2020-08-06 19:45:57 +00:00
|
|
|
onDetailsObtained: {
|
2022-07-18 08:34:11 +00:00
|
|
|
if(username != (isStatus ? ensName + ".stateofus.eth" : ensName))
|
2022-01-17 08:56:44 +00:00
|
|
|
return;
|
|
|
|
walletAddressLbl.subTitle = address;
|
|
|
|
keyLbl.subTitle = pubkey.substring(0, 20) + "..." + pubkey.substring(pubkey.length - 20);
|
|
|
|
walletAddressLbl.visible = true;
|
|
|
|
keyLbl.visible = true;
|
|
|
|
releaseBtn.visible = isStatus
|
|
|
|
releaseBtn.enabled = (Date.now() / 1000) > expirationTime && expirationTime > 0 &&
|
|
|
|
root.ensUsernamesStore.preferredUsername != username
|
2022-07-18 08:34:11 +00:00
|
|
|
releaseBtn.enabled = true
|
2022-01-17 08:56:44 +00:00
|
|
|
expiration = new Date(expirationTime * 1000).getTime()
|
2020-08-06 19:45:57 +00:00
|
|
|
}
|
|
|
|
onLoading: {
|
|
|
|
loadingImg.active = isLoading
|
|
|
|
if(!isLoading) return;
|
|
|
|
walletAddressLbl.visible = false;
|
|
|
|
keyLbl.visible = false;
|
2021-08-09 22:23:52 +00:00
|
|
|
releaseBtn.visible = false;
|
|
|
|
expiration = 0;
|
2020-08-06 19:45:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-06 09:16:39 +00:00
|
|
|
StatusDescriptionListItem {
|
2020-08-06 19:45:57 +00:00
|
|
|
id: walletAddressLbl
|
2021-10-06 09:16:39 +00:00
|
|
|
title: qsTr("Wallet address")
|
2020-08-06 19:45:57 +00:00
|
|
|
visible: false
|
|
|
|
anchors.top: sectionTitle.bottom
|
|
|
|
anchors.topMargin: 24
|
2022-08-11 11:55:08 +00:00
|
|
|
asset.name: "copy"
|
2021-10-06 09:16:39 +00:00
|
|
|
tooltip.text: qsTr("Copied to clipboard!")
|
|
|
|
iconButton.onClicked: {
|
2022-01-17 08:56:44 +00:00
|
|
|
root.ensUsernamesStore.copyToClipboard(subTitle)
|
2021-10-06 09:16:39 +00:00
|
|
|
tooltip.visible = !tooltip.visible
|
|
|
|
}
|
2020-08-06 19:45:57 +00:00
|
|
|
}
|
2021-10-06 09:16:39 +00:00
|
|
|
StatusDescriptionListItem {
|
2020-08-06 19:45:57 +00:00
|
|
|
id: keyLbl
|
2021-10-06 09:16:39 +00:00
|
|
|
title: qsTr("Key")
|
2020-08-06 19:45:57 +00:00
|
|
|
visible: false
|
|
|
|
anchors.top: walletAddressLbl.bottom
|
|
|
|
anchors.topMargin: 24
|
2022-08-11 11:55:08 +00:00
|
|
|
asset.name: "copy"
|
2021-10-06 09:16:39 +00:00
|
|
|
tooltip.text: qsTr("Copied to clipboard!")
|
|
|
|
iconButton.onClicked: {
|
2022-01-17 08:56:44 +00:00
|
|
|
root.ensUsernamesStore.copyToClipboard(subTitle)
|
2021-10-06 09:16:39 +00:00
|
|
|
tooltip.visible = !tooltip.visible
|
|
|
|
}
|
2020-08-06 19:45:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-09 22:23:52 +00:00
|
|
|
Component {
|
|
|
|
id: transactionDialogComponent
|
|
|
|
StatusETHTransactionModal {
|
2022-01-17 08:56:44 +00:00
|
|
|
ensUsernamesStore: root.ensUsernamesStore
|
2022-01-04 12:06:05 +00:00
|
|
|
contactsStore: root.contactsStore
|
2022-02-09 16:39:10 +00:00
|
|
|
ensUsername: root.username
|
2022-05-19 08:53:57 +00:00
|
|
|
chainId: root.ensUsernamesStore.getChainIdForEns()
|
2022-07-18 08:34:11 +00:00
|
|
|
title: qsTr("Release your username")
|
2021-08-09 22:23:52 +00:00
|
|
|
onClosed: {
|
|
|
|
destroy()
|
|
|
|
}
|
|
|
|
estimateGasFunction: function(selectedAccount) {
|
|
|
|
if (username === "" || !selectedAccount) return 100000;
|
2022-07-18 08:34:11 +00:00
|
|
|
return root.ensUsernamesStore.releaseEnsEstimate(username, selectedAccount.address)
|
2021-08-09 22:23:52 +00:00
|
|
|
}
|
2022-07-18 08:34:11 +00:00
|
|
|
onSendTransaction: function(userAddress, gasLimit, gasPrice, tipLimit, overallLimit, password, eip1559Enabled){
|
2022-01-17 08:56:44 +00:00
|
|
|
return root.ensUsernamesStore.releaseEns(username,
|
2022-07-18 08:34:11 +00:00
|
|
|
userAddress,
|
|
|
|
gasLimit,
|
|
|
|
gasPrice,
|
|
|
|
tipLimit,
|
|
|
|
overallLimit,
|
|
|
|
password,
|
|
|
|
eip1559Enabled)
|
2021-08-09 22:23:52 +00:00
|
|
|
}
|
|
|
|
onSuccess: function(){
|
|
|
|
usernameReleased(username);
|
|
|
|
}
|
|
|
|
|
|
|
|
width: 475
|
|
|
|
height: 500
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-21 15:07:13 +00:00
|
|
|
StatusQControls.StatusButton {
|
2021-08-09 22:23:52 +00:00
|
|
|
id: releaseBtn
|
|
|
|
visible: false
|
|
|
|
enabled: false
|
|
|
|
anchors.top: keyLbl.bottom
|
|
|
|
anchors.topMargin: 24
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 24
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Release username")
|
2021-08-09 22:23:52 +00:00
|
|
|
onClicked: {
|
2021-12-07 20:33:12 +00:00
|
|
|
Global.openPopup(transactionDialogComponent)
|
2021-08-09 22:23:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
visible: releaseBtn.visible && !releaseBtn.enabled
|
|
|
|
anchors.top: releaseBtn.bottom
|
|
|
|
anchors.topMargin: 2
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 24
|
2022-02-09 16:39:10 +00:00
|
|
|
text: qsTr("Username locked. You won't be able to release it until %1").arg(Utils.formatShortDateStr(new Date(expiration).toDateString()))
|
2021-08-09 22:23:52 +00:00
|
|
|
color: Style.current.darkGrey
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-10-21 15:07:13 +00:00
|
|
|
StatusQControls.StatusButton {
|
2020-08-06 19:45:57 +00:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: Style.current.padding
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Back")
|
2020-08-07 16:27:41 +00:00
|
|
|
onClicked: backBtnClicked()
|
2020-08-06 19:45:57 +00:00
|
|
|
}
|
2020-09-14 12:12:47 +00:00
|
|
|
}
|