status-desktop/ui/imports/shared/controls/GetSyncCodeMobileInstructio...

165 lines
5.1 KiB
QML

import QtQuick 2.15
import StatusQ.Core.Theme 0.1
import shared.controls 1.0
import shared.views 1.0
Column {
id: root
property int purpose: SyncingCodeInstructions.Purpose.AppSync
property int type: SyncingCodeInstructions.Type.QRCode
spacing: 4
DecoratedListItem {
order: "1."
text1: qsTr("Ensure both devices are on the same network")
}
DecoratedListItem {
order: "2."
text1: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
return qsTr("Open Status on the device you want to import from")
}
return qsTr("Open Status App on your mobile device")
}
}
DecoratedListItem {
order: "3."
text1: qsTr("Open your")
icon: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
return "settings"
}
return "profile"
}
text2: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
return qsTr("Settings / Wallet")
}
return qsTr("Profile")
}
text2Color: Theme.palette.directColor1
}
DecoratedListItem {
order: "4."
text1: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
return qsTr("Tap")
}
return qsTr("Go to")
}
icon: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
return ""
}
return "rotate"
}
text2: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
return qsTr("Show encrypted key pairs code")
}
return qsTr("Syncing")
}
text2Color: Theme.palette.directColor1
}
DecoratedListItem {
order: "5."
text1: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return qsTr("Copy the")
}
return qsTr("Enable camera")
}
return qsTr("Tap")
}
text1Color: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return Theme.palette.baseColor1
}
return Theme.palette.directColor1
}
return Theme.palette.baseColor1
}
text2: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return qsTr("encrypted key pairs code")
}
return qsTr("on this device")
}
return qsTr("Sync new device")
}
text2Color: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return Theme.palette.directColor1
}
return Theme.palette.baseColor1
}
return Theme.palette.directColor1
}
}
DecoratedListItem {
order: "6."
text1: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return qsTr("Paste the")
}
return qsTr("Scan or enter the encrypted QR with this device")
}
return qsTr("Tap")
}
text2: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return qsTr("encrypted key pairs code")
}
return ""
}
return qsTr("Enable camera")
}
text2Color: Theme.palette.directColor1
text3: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return qsTr("to this device")
}
return ""
}
return qsTr("on this device")
}
}
DecoratedListItem {
order: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return "7."
}
return ""
}
return "7."
}
text1: {
if (root.purpose === SyncingCodeInstructions.Purpose.KeypairSync) {
if (root.type === SyncingCodeInstructions.Type.EncryptedKey) {
return qsTr("For security, delete the code as soon as you are done")
}
return ""
}
return qsTr("Scan or enter the code")
}
}
}