2021-02-12 15:26:57 +00:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.3
|
2022-06-29 16:56:55 +00:00
|
|
|
import QtQuick.Layouts 1.14
|
2022-12-14 15:40:00 +00:00
|
|
|
import QtQml.Models 2.14
|
2021-07-16 13:07:38 +00:00
|
|
|
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
2022-07-05 10:12:27 +00:00
|
|
|
import StatusQ.Core.Utils 0.1
|
2021-07-16 13:07:38 +00:00
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
2022-12-14 15:40:00 +00:00
|
|
|
import StatusQ.Popups.Dialog 0.1
|
2021-07-16 13:07:38 +00:00
|
|
|
|
2022-09-20 12:05:10 +00:00
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared.controls 1.0
|
|
|
|
import shared 1.0
|
2021-02-12 15:26:57 +00:00
|
|
|
|
2022-12-14 15:40:00 +00:00
|
|
|
StatusDialog {
|
2022-06-29 16:56:55 +00:00
|
|
|
id: root
|
2021-02-12 15:26:57 +00:00
|
|
|
|
2021-07-16 13:07:38 +00:00
|
|
|
property string privateKey
|
2021-11-11 10:45:59 +00:00
|
|
|
property var store
|
2021-07-16 13:07:38 +00:00
|
|
|
|
2022-12-14 15:40:00 +00:00
|
|
|
title: qsTr("Transfer ownership")
|
|
|
|
padding: Style.current.padding
|
|
|
|
|
|
|
|
width: 480
|
2021-02-12 15:26:57 +00:00
|
|
|
|
2022-06-29 16:56:55 +00:00
|
|
|
ColumnLayout {
|
2022-12-14 15:40:00 +00:00
|
|
|
id: layout
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2021-02-12 18:19:31 +00:00
|
|
|
|
2022-12-14 15:40:00 +00:00
|
|
|
spacing: Style.current.padding
|
2022-06-29 16:56:55 +00:00
|
|
|
|
|
|
|
StatusInput {
|
|
|
|
id: pKeyInput
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2022-10-06 15:06:27 +00:00
|
|
|
readonly property string elidedPkey: Utils.getElidedCommunityPK(root.privateKey)
|
2022-06-29 16:56:55 +00:00
|
|
|
|
|
|
|
label: qsTr("Community private key")
|
|
|
|
|
|
|
|
input.text: elidedPkey
|
|
|
|
input.edit.readOnly: true
|
|
|
|
input.edit.onActiveFocusChanged: {
|
|
|
|
pKeyInput.input.text = pKeyInput.input.edit.focus ? root.privateKey : elidedPkey
|
|
|
|
}
|
|
|
|
input.rightComponent: StatusButton {
|
2022-09-20 12:05:10 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.halfPadding
|
2022-06-29 16:56:55 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2022-09-13 07:37:09 +00:00
|
|
|
borderColor: Theme.palette.primaryColor1
|
2022-06-29 16:56:55 +00:00
|
|
|
size: StatusBaseButton.Size.Tiny
|
|
|
|
text: qsTr("Copy")
|
2023-05-31 15:00:31 +00:00
|
|
|
objectName: "copyCommunityPrivateKeyButton"
|
2022-06-29 16:56:55 +00:00
|
|
|
onClicked: {
|
|
|
|
text = qsTr("Copied")
|
|
|
|
root.store.copyToClipboard(root.privateKey)
|
2021-04-30 15:05:35 +00:00
|
|
|
}
|
2021-07-16 13:07:38 +00:00
|
|
|
}
|
2022-06-29 16:56:55 +00:00
|
|
|
}
|
2021-02-12 15:26:57 +00:00
|
|
|
|
2022-06-29 16:56:55 +00:00
|
|
|
StatusBaseText {
|
|
|
|
Layout.fillWidth: true
|
2021-11-11 10:45:59 +00:00
|
|
|
|
2022-06-29 16:56:55 +00:00
|
|
|
text: qsTr("You should keep it safe and only share it with people you trust to take ownership of your community")
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
font.pixelSize: 13
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
}
|
2021-02-12 15:26:57 +00:00
|
|
|
|
2022-06-29 16:56:55 +00:00
|
|
|
StatusBaseText {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
text: qsTr("You can also use this key to import your community on another device")
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
font.pixelSize: 13
|
|
|
|
color: Theme.palette.baseColor1
|
2021-02-12 15:26:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-14 15:40:00 +00:00
|
|
|
footer: StatusDialogFooter {
|
|
|
|
leftButtons: ObjectModel {
|
|
|
|
StatusBackButton {
|
|
|
|
onClicked: {
|
|
|
|
root.close()
|
|
|
|
}
|
2021-07-16 13:07:38 +00:00
|
|
|
}
|
2021-02-12 15:26:57 +00:00
|
|
|
}
|
2022-12-14 15:40:00 +00:00
|
|
|
}
|
2021-02-12 15:26:57 +00:00
|
|
|
}
|
|
|
|
|