186 lines
8.9 KiB
QML
186 lines
8.9 KiB
QML
import QtQuick 2.14
|
|
import QtQuick.Layouts 1.14
|
|
import QtQuick.Controls 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Controls 0.1
|
|
|
|
import utils 1.0
|
|
|
|
import "../helpers"
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property var sharedKeycardModule
|
|
|
|
signal confirmationUpdated(bool value)
|
|
|
|
Component {
|
|
id: keyPairForProcessingComponent
|
|
KeyPairItem {
|
|
keyPairType: root.sharedKeycardModule.keyPairForProcessing.pairType
|
|
keyPairKeyUid: root.sharedKeycardModule.keyPairForProcessing.keyUid
|
|
keyPairName: root.sharedKeycardModule.keyPairForProcessing.name
|
|
keyPairIcon: root.sharedKeycardModule.keyPairForProcessing.icon
|
|
keyPairImage: root.sharedKeycardModule.keyPairForProcessing.image
|
|
keyPairDerivedFrom: root.sharedKeycardModule.keyPairForProcessing.derivedFrom
|
|
keyPairAccounts: root.sharedKeycardModule.keyPairForProcessing.accounts
|
|
keyPairCardLocked: root.sharedKeycardModule.keyPairForProcessing.locked
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: unknownKeyPairCompontnt
|
|
KeyPairUnknownItem {
|
|
keyPairKeyUid: root.sharedKeycardModule.keyPairForProcessing.keyUid
|
|
keyPairName: root.sharedKeycardModule.keyPairForProcessing.name
|
|
keyPairIcon: root.sharedKeycardModule.keyPairForProcessing.icon
|
|
keyPairImage: root.sharedKeycardModule.keyPairForProcessing.image
|
|
keyPairDerivedFrom: root.sharedKeycardModule.keyPairForProcessing.derivedFrom
|
|
keyPairAccounts: root.sharedKeycardModule.keyPairForProcessing.accounts
|
|
keyPairCardLocked: root.sharedKeycardModule.keyPairForProcessing.locked
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
anchors.topMargin: Style.current.xlPadding
|
|
anchors.bottomMargin: Style.current.halfPadding
|
|
anchors.leftMargin: Style.current.xlPadding
|
|
anchors.rightMargin: Style.current.xlPadding
|
|
spacing: Style.current.padding
|
|
clip: true
|
|
|
|
KeycardImage {
|
|
id: image
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredHeight: Constants.keycard.shared.imageHeight
|
|
Layout.preferredWidth: Constants.keycard.shared.imageWidth
|
|
pattern: Constants.keycardAnimations.strongError.pattern
|
|
source: ""
|
|
startImgIndexForTheFirstLoop: Constants.keycardAnimations.strongError.startImgIndexForTheFirstLoop
|
|
startImgIndexForOtherLoops: Constants.keycardAnimations.strongError.startImgIndexForOtherLoops
|
|
endImgIndex: Constants.keycardAnimations.strongError.endImgIndex
|
|
duration: Constants.keycardAnimations.strongError.duration
|
|
loops: Constants.keycardAnimations.strongError.loops
|
|
}
|
|
|
|
StatusBaseText {
|
|
id: title
|
|
Layout.alignment: Qt.AlignHCenter
|
|
horizontalAlignment: Text.AlignHCenter
|
|
Layout.preferredHeight: Constants.keycard.general.titleHeight
|
|
text: {
|
|
// we need to check userProfile since factory reset flow is also available before user logs in the app
|
|
if (!!Global.userProfile &&
|
|
!!root.sharedKeycardModule.keyPairForProcessing &&
|
|
root.sharedKeycardModule.keyPairForProcessing.keyUid === Global.userProfile.keyUid)
|
|
return qsTr("Warning, this Keycard stores your main Status profile and\naccounts. A factory reset will permanently delete it.")
|
|
|
|
return qsTr("A factory reset will delete the key on this Keycard.\nAre you sure you want to do this?")
|
|
}
|
|
font.pixelSize: Constants.keycard.general.fontSize2
|
|
color: Theme.palette.dangerColor1
|
|
}
|
|
|
|
StatusCheckBox {
|
|
id: confirmation
|
|
Layout.preferredHeight: Constants.keycard.general.messageHeight
|
|
Layout.alignment: Qt.AlignCenter
|
|
Layout.fillWidth: true
|
|
leftSide: false
|
|
spacing: Style.current.smallPadding
|
|
font.pixelSize: Constants.keycard.general.fontSize2
|
|
text: qsTr("I understand the key pair on this Keycard will be deleted")
|
|
|
|
onCheckedChanged: {
|
|
root.confirmationUpdated(checked)
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
id: loader
|
|
Layout.preferredWidth: parent.width
|
|
active: {
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.setupNewKeycard) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
return true
|
|
}
|
|
}
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.setupNewKeycardNewSeedPhrase) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
return true
|
|
}
|
|
}
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.setupNewKeycardOldSeedPhrase) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
return true
|
|
}
|
|
}
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.factoryReset) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
return true
|
|
}
|
|
}
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.createCopyOfAKeycard) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
sourceComponent: {
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.setupNewKeycard) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
if (root.sharedKeycardModule.keyPairStoredOnKeycardIsKnown) {
|
|
return keyPairForProcessingComponent
|
|
}
|
|
return unknownKeyPairCompontnt
|
|
}
|
|
}
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.setupNewKeycardNewSeedPhrase) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
if (root.sharedKeycardModule.keyPairStoredOnKeycardIsKnown) {
|
|
return keyPairForProcessingComponent
|
|
}
|
|
return unknownKeyPairCompontnt
|
|
}
|
|
}
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.setupNewKeycardOldSeedPhrase) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
if (root.sharedKeycardModule.keyPairStoredOnKeycardIsKnown) {
|
|
return keyPairForProcessingComponent
|
|
}
|
|
return unknownKeyPairCompontnt
|
|
}
|
|
}
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.factoryReset) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
if (root.sharedKeycardModule.keyPairStoredOnKeycardIsKnown) {
|
|
return keyPairForProcessingComponent
|
|
}
|
|
return unknownKeyPairCompontnt
|
|
}
|
|
}
|
|
if (root.sharedKeycardModule.currentState.flowType === Constants.keycardSharedFlow.createCopyOfAKeycard) {
|
|
if (root.sharedKeycardModule.currentState.stateType === Constants.keycardSharedState.factoryResetConfirmationDisplayMetadata) {
|
|
if (root.sharedKeycardModule.keyPairStoredOnKeycardIsKnown) {
|
|
return keyPairForProcessingComponent
|
|
}
|
|
return unknownKeyPairCompontnt
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Item {
|
|
visible: !loader.active
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: visible
|
|
}
|
|
}
|
|
}
|