2022-08-31 17:09:07 +00:00
|
|
|
|
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.Core.Utils 0.1
|
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
import shared.status 1.0
|
|
|
|
|
|
2023-08-09 10:41:55 +00:00
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
|
|
2022-08-31 17:09:07 +00:00
|
|
|
|
import "../helpers"
|
|
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
id: root
|
|
|
|
|
|
|
|
|
|
property var sharedKeycardModule
|
|
|
|
|
|
2022-09-02 11:04:59 +00:00
|
|
|
|
signal keyPairSelected()
|
|
|
|
|
|
2023-08-09 10:41:55 +00:00
|
|
|
|
QtObject {
|
|
|
|
|
id: d
|
|
|
|
|
readonly property string profilePairTypeValue: Constants.keycard.keyPairType.profile
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-31 17:09:07 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
ButtonGroup {
|
|
|
|
|
id: keyPairsButtonGroup
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatusBaseText {
|
|
|
|
|
id: title
|
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
|
text: qsTr("Select a key pair")
|
|
|
|
|
font.pixelSize: Constants.keycard.general.fontSize1
|
|
|
|
|
font.weight: Font.Bold
|
|
|
|
|
color: Theme.palette.directColor1
|
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatusBaseText {
|
|
|
|
|
id: subTitle
|
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
|
text: qsTr("Select which key pair you’d like to move to this Keycard")
|
|
|
|
|
font.pixelSize: Constants.keycard.general.fontSize2
|
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.preferredHeight: Style.current.halfPadding
|
|
|
|
|
Layout.fillHeight: root.sharedKeycardModule.keyPairModel.count === 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatusBaseText {
|
2022-09-26 11:01:26 +00:00
|
|
|
|
visible: !userProfile.isKeycardUser
|
2022-08-31 17:09:07 +00:00
|
|
|
|
Layout.preferredWidth: parent.width - 2 * Style.current.padding
|
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
|
text: qsTr("Profile key pair")
|
|
|
|
|
font.pixelSize: Constants.keycard.general.fontSize2
|
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
KeyPairList {
|
2022-09-26 11:01:26 +00:00
|
|
|
|
visible: !userProfile.isKeycardUser
|
2022-08-31 17:09:07 +00:00
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.preferredHeight: 100
|
|
|
|
|
Layout.fillHeight: visible && root.sharedKeycardModule.keyPairModel.count === 1
|
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
|
Layout.preferredWidth: parent.width
|
|
|
|
|
|
2023-08-09 10:41:55 +00:00
|
|
|
|
modelFilters: ExpressionFilter {
|
|
|
|
|
expression: model.keyPair.pairType == d.profilePairTypeValue
|
|
|
|
|
}
|
2022-08-31 17:09:07 +00:00
|
|
|
|
keyPairModel: root.sharedKeycardModule.keyPairModel
|
|
|
|
|
buttonGroup: keyPairsButtonGroup
|
2022-09-02 11:04:59 +00:00
|
|
|
|
|
|
|
|
|
onKeyPairSelected: {
|
2023-08-09 10:41:55 +00:00
|
|
|
|
root.sharedKeycardModule.setSelectedKeyPair(keyUid)
|
2022-09-02 11:04:59 +00:00
|
|
|
|
root.keyPairSelected()
|
|
|
|
|
}
|
2022-08-31 17:09:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatusBaseText {
|
2022-09-26 11:01:26 +00:00
|
|
|
|
visible: userProfile.isKeycardUser && root.sharedKeycardModule.keyPairModel.count > 0 ||
|
|
|
|
|
!userProfile.isKeycardUser && root.sharedKeycardModule.keyPairModel.count > 1
|
2022-08-31 17:09:07 +00:00
|
|
|
|
Layout.preferredWidth: parent.width - 2 * Style.current.padding
|
|
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
|
text: qsTr("Other key pairs")
|
|
|
|
|
font.pixelSize: Constants.keycard.general.fontSize2
|
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
KeyPairList {
|
2022-09-26 11:01:26 +00:00
|
|
|
|
visible: userProfile.isKeycardUser && root.sharedKeycardModule.keyPairModel.count > 0 ||
|
|
|
|
|
!userProfile.isKeycardUser && root.sharedKeycardModule.keyPairModel.count > 1
|
2022-08-31 17:09:07 +00:00
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
|
Layout.preferredWidth: parent.width
|
|
|
|
|
|
2023-08-09 10:41:55 +00:00
|
|
|
|
modelFilters: ExpressionFilter {
|
|
|
|
|
expression: model.keyPair.pairType == d.profilePairTypeValue
|
|
|
|
|
inverted: true
|
|
|
|
|
}
|
2022-08-31 17:09:07 +00:00
|
|
|
|
keyPairModel: root.sharedKeycardModule.keyPairModel
|
|
|
|
|
buttonGroup: keyPairsButtonGroup
|
2022-09-02 11:04:59 +00:00
|
|
|
|
|
|
|
|
|
onKeyPairSelected: {
|
2023-08-09 10:41:55 +00:00
|
|
|
|
root.sharedKeycardModule.setSelectedKeyPair(keyUid)
|
2022-09-02 11:04:59 +00:00
|
|
|
|
root.keyPairSelected()
|
|
|
|
|
}
|
2022-08-31 17:09:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|