chore(beta): add beta tag to pairing screens (#15873) (#15901)

Fixes #15871

Adds a beta tag to the pairing screens on onboarding and settings
This commit is contained in:
Jonathan Rainville 2024-07-30 12:55:03 -04:00 committed by GitHub
parent fdd743a817
commit 298a6c3477
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 65 additions and 11 deletions

View File

@ -231,6 +231,14 @@ Item {
root.startupStore.doPrimaryAction()
}
}
StatusBetaTag {
id: betaTagButton1
visible: true
anchors.left: button1.right
anchors.leftMargin: 8
anchors.verticalCenter: button1.verticalCenter
}
}
StatusBaseText {
@ -334,6 +342,10 @@ Item {
target: button1
text: qsTr("Scan or enter a sync code")
}
PropertyChanges {
target: betaTagButton1
visible: true
}
PropertyChanges {
target: button2
text: qsTr("I dont have other device")
@ -365,6 +377,10 @@ Item {
target: button1
text: ""
}
PropertyChanges {
target: betaTagButton1
visible: false
}
PropertyChanges {
target: button2
text: qsTr("Login with Keycard")
@ -396,6 +412,10 @@ Item {
target: button1
text: qsTr("Generate new keys")
}
PropertyChanges {
target: betaTagButton1
visible: false
}
PropertyChanges {
target: button2
text: qsTr("Generate keys for a new Keycard")
@ -427,6 +447,10 @@ Item {
target: button1
text: qsTr("Import a seed phrase")
}
PropertyChanges {
target: betaTagButton1
visible: false
}
PropertyChanges {
target: button2
text: qsTr("Import a seed phrase into a new Keycard")
@ -458,6 +482,10 @@ Item {
target: button1
text: qsTr("Try to fetch profile again")
}
PropertyChanges {
target: betaTagButton1
visible: false
}
PropertyChanges {
target: button2
text: qsTr("Create new profile with the same chatkey")
@ -487,6 +515,10 @@ Item {
target: button1
text: qsTr("Continue")
}
PropertyChanges {
target: betaTagButton1
visible: false
}
PropertyChanges {
target: button2
text: ""
@ -518,6 +550,10 @@ Item {
target: button1
text: qsTr("Create replacement Keycard with seed phrase")
}
PropertyChanges {
target: betaTagButton1
visible: false
}
PropertyChanges {
target: button2
text: qsTr("Start using account without keycard")

View File

@ -111,7 +111,8 @@ QtObject {
isExperimental: true})
append({subsection: Constants.settingsSubsection.syncingSettings,
text: qsTr("Syncing"),
icon: "rotate"})
icon: "rotate",
isExperimental: true})
}
}

View File

@ -169,17 +169,27 @@ SettingsContentBase {
spacing: 17
StatusBaseText {
objectName: "syncNewDeviceTextLabel"
Layout.fillWidth: true
Item {
Layout.alignment: Qt.AlignHCenter
height: syncNewDeviceText.height
width: syncNewDeviceText.width
Layout.topMargin: -8
horizontalAlignment: Text.AlignHCenter
color: Theme.palette.primaryColor1
font.pixelSize: 17
font.weight: Font.Bold
text: qsTr("Sync a New Device")
StatusBaseText {
id: syncNewDeviceText
objectName: "syncNewDeviceTextLabel"
color: Theme.palette.primaryColor1
font.pixelSize: 17
font.weight: Font.Bold
text: qsTr("Sync a New Device")
StatusBetaTag {
anchors.left: parent.right
anchors.leftMargin: 8
anchors.verticalCenter: parent.verticalCenter
}
}
}
StatusBaseText {

View File

@ -3,6 +3,7 @@ import QtQuick.Layouts 1.14
import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
import StatusQ.Components 0.1
import StatusQ.Controls 0.1
import StatusQ.Controls.Validators 0.1
@ -44,6 +45,12 @@ ColumnLayout {
}
}
StatusBetaTag {
anchors.left: switchTabBar.right
anchors.leftMargin: 8
anchors.verticalCenter: switchTabBar.verticalCenter
}
StackLayout {
Layout.fillWidth: true
Layout.preferredHeight: Math.max(syncQr.implicitHeight, syncCode.implicitHeight)