162 lines
4.5 KiB
QML
162 lines
4.5 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.3
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Components 0.1
|
|
import StatusQ.Controls 0.1
|
|
|
|
import utils 1.0
|
|
|
|
// TODO: replace with StatusModal
|
|
Popup {
|
|
id: root
|
|
modal: false
|
|
width: 360
|
|
height: Math.min(432, scrollView.contentHeight + root.padding)
|
|
|
|
horizontalPadding: 5
|
|
verticalPadding: 5
|
|
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
|
|
property var layer1Networks
|
|
property var layer2Networks
|
|
property var testNetworks
|
|
|
|
// If true NetworksExtraStoreProxy expected for layer1Networks and layer2Networks properties
|
|
property bool useNetworksExtraStoreProxy: false
|
|
|
|
property bool multiSelection: true
|
|
|
|
signal toggleNetwork(var network)
|
|
signal singleNetworkSelected(int chainId, string chainName, string iconUrl)
|
|
|
|
background: Rectangle {
|
|
radius: Style.current.radius
|
|
color: Style.current.background
|
|
border.color: Style.current.border
|
|
layer.enabled: true
|
|
layer.effect: DropShadow{
|
|
verticalOffset: 3
|
|
radius: 8
|
|
samples: 15
|
|
fast: true
|
|
cached: true
|
|
color: "#22000000"
|
|
}
|
|
}
|
|
|
|
contentItem: StatusScrollView {
|
|
id: scrollView
|
|
width: root.width
|
|
height: root.height
|
|
contentHeight: content.height
|
|
contentWidth: availableWidth
|
|
padding: 0
|
|
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
Column {
|
|
id: content
|
|
width: childrenRect.width
|
|
spacing: 4
|
|
|
|
Repeater {
|
|
id: chainRepeater1
|
|
width: parent.width
|
|
height: parent.height
|
|
objectName: "networkSelectPopupChainRepeaterLayer1"
|
|
model: root.layer1Networks
|
|
|
|
delegate: chainItem
|
|
}
|
|
|
|
StatusBaseText {
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
|
color: Theme.palette.baseColor1
|
|
text: qsTr("Layer 2")
|
|
height: 40
|
|
leftPadding: 16
|
|
topPadding: 10
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
visible: chainRepeater2.count > 0
|
|
}
|
|
|
|
Repeater {
|
|
id: chainRepeater2
|
|
model: root.layer2Networks
|
|
|
|
delegate: chainItem
|
|
}
|
|
|
|
Repeater {
|
|
id: chainRepeater3
|
|
model: root.testNetworks
|
|
|
|
delegate: chainItem
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: chainItem
|
|
StatusListItem {
|
|
objectName: model.chainName
|
|
implicitHeight: 48
|
|
implicitWidth: scrollView.width
|
|
title: model.chainName
|
|
asset.height: 24
|
|
asset.width: 24
|
|
asset.isImage: true
|
|
asset.name: Style.svg(model.iconUrl)
|
|
onClicked: {
|
|
if(root.multiSelection)
|
|
toggleModelIsActive()
|
|
else {
|
|
// Don't allow uncheck
|
|
if(!radioButton.checked) radioButton.toggle()
|
|
}
|
|
}
|
|
|
|
function toggleModelIsActive() {
|
|
model.isActive = !model.isActive
|
|
}
|
|
|
|
components: [
|
|
StatusCheckBox {
|
|
id: checkBox
|
|
visible: root.multiSelection
|
|
checked: root.useNetworksExtraStoreProxy ? model.isActive : model.isEnabled
|
|
onToggled: {
|
|
if (root.useNetworksExtraStoreProxy) {
|
|
toggleModelIsActive()
|
|
} else {
|
|
root.toggleNetwork(model)
|
|
}
|
|
}
|
|
},
|
|
StatusRadioButton {
|
|
id: radioButton
|
|
visible: !root.multiSelection
|
|
size: StatusRadioButton.Size.Large
|
|
ButtonGroup.group: radioBtnGroup
|
|
checked: model.index === 0
|
|
onCheckedChanged: {
|
|
if(checked && !root.multiSelection) {
|
|
root.singleNetworkSelected(model.chainId, model.chainName, model.iconUrl)
|
|
close()
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
ButtonGroup {
|
|
id: radioBtnGroup
|
|
}
|
|
}
|