
- added auto-selection of the first available protocol when changing the server on the PageShare page
170 lines
4.7 KiB
QML
170 lines
4.7 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import PageEnum 1.0
|
|
import ProtocolEnum 1.0
|
|
import ContainerProps 1.0
|
|
import ProtocolProps 1.0
|
|
|
|
import "./"
|
|
import "../Controls2"
|
|
import "../Controls2/TextTypes"
|
|
import "../Config"
|
|
import "../Components"
|
|
|
|
PageType {
|
|
id: root
|
|
|
|
Connections {
|
|
target: PageController
|
|
|
|
function onGoToPageSettingsServerServices() {
|
|
tabBar.currentIndex = 1
|
|
}
|
|
}
|
|
|
|
SortFilterProxyModel {
|
|
id: proxyServersModel
|
|
sourceModel: ServersModel
|
|
filters: [
|
|
ValueFilter {
|
|
roleName: "isCurrentlyProcessed"
|
|
value: true
|
|
}
|
|
]
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
spacing: 16
|
|
|
|
Repeater {
|
|
id: header
|
|
model: proxyServersModel
|
|
|
|
delegate: ColumnLayout {
|
|
id: content
|
|
|
|
Layout.topMargin: 20
|
|
|
|
BackButtonType {
|
|
}
|
|
|
|
HeaderType {
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: 16
|
|
Layout.rightMargin: 16
|
|
|
|
actionButtonImage: "qrc:/images/controls/edit-3.svg"
|
|
|
|
headerText: name
|
|
descriptionText: {
|
|
if (ServersModel.isCurrentlyProcessedServerHasWriteAccess()) {
|
|
return credentialsLogin + " · " + hostName
|
|
} else {
|
|
return hostName
|
|
}
|
|
}
|
|
|
|
actionButtonFunction: function() {
|
|
serverNameEditDrawer.visible = true
|
|
}
|
|
}
|
|
|
|
DrawerType {
|
|
id: serverNameEditDrawer
|
|
|
|
width: root.width
|
|
height: root.height * 0.35
|
|
|
|
onVisibleChanged: {
|
|
if (serverNameEditDrawer.visible) {
|
|
serverName.textField.forceActiveFocus()
|
|
}
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.topMargin: 16
|
|
anchors.leftMargin: 16
|
|
anchors.rightMargin: 16
|
|
|
|
TextFieldWithHeaderType {
|
|
id: serverName
|
|
|
|
Layout.fillWidth: true
|
|
headerText: qsTr("Server name")
|
|
textFieldText: name
|
|
textField.maximumLength: 30
|
|
}
|
|
|
|
BasicButtonType {
|
|
Layout.fillWidth: true
|
|
|
|
text: qsTr("Save")
|
|
|
|
onClicked: {
|
|
if (serverName.textFieldText !== name) {
|
|
name = serverName.textFieldText
|
|
serverNameEditDrawer.visible = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
TabBar {
|
|
id: tabBar
|
|
|
|
Layout.fillWidth: true
|
|
|
|
background: Rectangle {
|
|
color: "transparent"
|
|
}
|
|
|
|
TabButtonType {
|
|
visible: protocolsPage.installedProtocolsCount
|
|
width: protocolsPage.installedProtocolsCount ? undefined : 0
|
|
isSelected: tabBar.currentIndex === 0
|
|
text: qsTr("Protocols")
|
|
}
|
|
TabButtonType {
|
|
visible: servicesPage.installedServicesCount
|
|
width: servicesPage.installedServicesCount ? undefined : 0
|
|
isSelected: tabBar.currentIndex === 1
|
|
text: qsTr("Services")
|
|
}
|
|
TabButtonType {
|
|
isSelected: tabBar.currentIndex === 2
|
|
text: qsTr("Data")
|
|
}
|
|
}
|
|
|
|
StackLayout {
|
|
Layout.preferredWidth: root.width
|
|
Layout.preferredHeight: root.height - tabBar.implicitHeight - header.implicitHeight
|
|
|
|
currentIndex: tabBar.currentIndex
|
|
|
|
PageSettingsServerProtocols {
|
|
id: protocolsPage
|
|
stackView: root.stackView
|
|
}
|
|
PageSettingsServerServices {
|
|
id: servicesPage
|
|
stackView: root.stackView
|
|
}
|
|
PageSettingsServerData {
|
|
stackView: root.stackView
|
|
}
|
|
}
|
|
}
|
|
}
|