141 lines
4.2 KiB
QML
141 lines
4.2 KiB
QML
import QtQuick 2.12
|
||
import QtQuick.Controls 2.3
|
||
import QtQuick.Layouts 1.3
|
||
import QtQml.Models 2.3
|
||
|
||
import StatusQ.Core 0.1
|
||
|
||
import utils 1.0
|
||
import shared 1.0
|
||
import shared.panels 1.0
|
||
import shared.popups 1.0
|
||
|
||
// TODO: replace with StatusModal
|
||
ModalPopup {
|
||
id: popup
|
||
|
||
title: qsTr("Primary username")
|
||
|
||
property var ensUsernamesStore
|
||
property string newUsername: ""
|
||
|
||
onOpened: {
|
||
for(var i in ensNames.contentItem.children){
|
||
ensNames.contentItem.children[i].checked = ensNames.contentItem.children[i].text === popup.ensUsernamesStore.preferredUsername
|
||
}
|
||
}
|
||
|
||
StyledText {
|
||
id: lbl1
|
||
text: popup.ensUsernamesStore.preferredUsername ?
|
||
qsTr("Your messages are displayed to others with this username:")
|
||
:
|
||
qsTr("Once you select a username, you won’t be able to disable it afterwards. You will only be able choose a different username to display.")
|
||
font.pixelSize: 15
|
||
wrapMode: Text.WordWrap
|
||
width: parent.width
|
||
}
|
||
|
||
StyledText {
|
||
id: lbl2
|
||
anchors.top: lbl1.bottom
|
||
anchors.topMargin: Style.current.padding
|
||
text: popup.ensUsernamesStore.preferredUsername
|
||
font.pixelSize: 17
|
||
font.weight: Font.Bold
|
||
}
|
||
|
||
StatusScrollView {
|
||
anchors.fill: parent
|
||
anchors.top: lbl2.bottom
|
||
anchors.topMargin: 70
|
||
Layout.fillWidth: true
|
||
Layout.fillHeight: true
|
||
|
||
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
||
ScrollBar.vertical.policy: ensNames.contentHeight > ensNames.height ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
|
||
|
||
StatusListView {
|
||
anchors.fill: parent
|
||
model: root.ensUsernamesStore.ensUsernamesModel
|
||
spacing: 0
|
||
id: ensNames
|
||
delegate: RadioDelegate {
|
||
id: radioDelegate
|
||
text: ensUsername
|
||
checked: popup.ensUsernamesStore.preferredUsername === ensUsername
|
||
|
||
contentItem: StyledText {
|
||
color: Style.current.textColor
|
||
text: radioDelegate.text
|
||
rightPadding: radioDelegate.indicator.width + radioDelegate.spacing
|
||
topPadding: Style.current.halfPadding
|
||
}
|
||
|
||
MouseArea {
|
||
anchors.fill: parent
|
||
onClicked: {
|
||
parent.checked = true
|
||
newUsername = ensUsername;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
onNewUsernameChanged: {
|
||
btnSelectPreferred.state = newUsername === popup.ensUsernamesStore.preferredUsername ? "inactive" : "active"
|
||
}
|
||
|
||
footer: Item {
|
||
width: parent.width
|
||
height: btnSelectPreferred.height
|
||
|
||
Button {
|
||
id: btnSelectPreferred
|
||
width: 44
|
||
height: 44
|
||
anchors.bottom: parent.bottom
|
||
anchors.right: parent.right
|
||
state: "inactive"
|
||
states: [
|
||
State {
|
||
name: "inactive"
|
||
PropertyChanges {
|
||
target: btnContinue
|
||
source: Style.svg("arrow-right-btn-inactive")
|
||
}
|
||
},
|
||
State {
|
||
name: "active"
|
||
PropertyChanges {
|
||
target: btnContinue
|
||
source: Style.svg("arrow-right-btn-active")
|
||
}
|
||
}
|
||
]
|
||
|
||
SVGImage {
|
||
id: btnContinue
|
||
width: 50
|
||
height: 50
|
||
}
|
||
background: Rectangle {
|
||
color: "transparent"
|
||
}
|
||
MouseArea {
|
||
cursorShape: btnSelectPreferred.state === "active" ? Qt.PointingHandCursor : Qt.ArrowCursor
|
||
anchors.fill: parent
|
||
onClicked : {
|
||
if(btnSelectPreferred.state === "active"){
|
||
popup.ensUsernamesStore.setPrefferedEnsUsername(newUsername);
|
||
newUsername = "";
|
||
popup.close();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|