mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 01:26:46 +00:00
60 lines
1.5 KiB
QML
60 lines
1.5 KiB
QML
import qs.components
|
|
import qs.components.effects
|
|
import qs.services
|
|
import qs.config
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
required property var deviceDetails
|
|
|
|
spacing: Appearance.spacing.small / 2
|
|
|
|
StyledText {
|
|
text: qsTr("IP Address")
|
|
}
|
|
|
|
StyledText {
|
|
text: root.deviceDetails?.ipAddress || qsTr("Not available")
|
|
color: Colours.palette.m3outline
|
|
font.pointSize: Appearance.font.size.small
|
|
}
|
|
|
|
StyledText {
|
|
Layout.topMargin: Appearance.spacing.normal
|
|
text: qsTr("Subnet Mask")
|
|
}
|
|
|
|
StyledText {
|
|
text: root.deviceDetails?.subnet || qsTr("Not available")
|
|
color: Colours.palette.m3outline
|
|
font.pointSize: Appearance.font.size.small
|
|
}
|
|
|
|
StyledText {
|
|
Layout.topMargin: Appearance.spacing.normal
|
|
text: qsTr("Gateway")
|
|
}
|
|
|
|
StyledText {
|
|
text: root.deviceDetails?.gateway || qsTr("Not available")
|
|
color: Colours.palette.m3outline
|
|
font.pointSize: Appearance.font.size.small
|
|
}
|
|
|
|
StyledText {
|
|
Layout.topMargin: Appearance.spacing.normal
|
|
text: qsTr("DNS Servers")
|
|
}
|
|
|
|
StyledText {
|
|
text: (root.deviceDetails && root.deviceDetails.dns && root.deviceDetails.dns.length > 0) ? root.deviceDetails.dns.join(", ") : qsTr("Not available")
|
|
color: Colours.palette.m3outline
|
|
font.pointSize: Appearance.font.size.small
|
|
wrapMode: Text.Wrap
|
|
Layout.maximumWidth: parent.width
|
|
}
|
|
}
|