mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-02 03:28:28 -04:00
139 lines
5.8 KiB
QML
139 lines
5.8 KiB
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Modules.Plugins
|
|
import qs.Services
|
|
import qs.Widgets
|
|
import "../../../Common/Format.js" as Format
|
|
|
|
BasePill {
|
|
id: root
|
|
|
|
Component.onCompleted: {
|
|
DgopService.addRef(["network"]);
|
|
}
|
|
Component.onDestruction: {
|
|
DgopService.removeRef(["network"]);
|
|
}
|
|
|
|
content: Component {
|
|
Item {
|
|
implicitWidth: root.isVerticalOrientation ? (root.widgetThickness - root.horizontalPadding * 2) : contentRow.implicitWidth
|
|
implicitHeight: root.isVerticalOrientation ? contentColumn.implicitHeight : (root.widgetThickness - root.horizontalPadding * 2)
|
|
|
|
Column {
|
|
id: contentColumn
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingXXS
|
|
visible: root.isVerticalOrientation
|
|
|
|
DankIcon {
|
|
name: "network_check"
|
|
size: Theme.barIconSize(root.barThickness, undefined, root.barConfig?.maximizeWidgetIcons, root.barConfig?.iconScale)
|
|
color: Theme.widgetTextColor
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: {
|
|
const rate = DgopService.networkRxRate;
|
|
if (rate < 1024)
|
|
return rate.toFixed(0);
|
|
if (rate < 1024 * 1024)
|
|
return (rate / 1024).toFixed(0) + "K";
|
|
return (rate / (1024 * 1024)).toFixed(0) + "M";
|
|
}
|
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
|
color: Theme.info
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: {
|
|
const rate = DgopService.networkTxRate;
|
|
if (rate < 1024)
|
|
return rate.toFixed(0);
|
|
if (rate < 1024 * 1024)
|
|
return (rate / 1024).toFixed(0) + "K";
|
|
return (rate / (1024 * 1024)).toFixed(0) + "M";
|
|
}
|
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
|
color: Theme.error
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
}
|
|
}
|
|
|
|
Row {
|
|
id: contentRow
|
|
anchors.centerIn: parent
|
|
spacing: Theme.spacingS
|
|
visible: !root.isVerticalOrientation
|
|
|
|
DankIcon {
|
|
name: "network_check"
|
|
size: Theme.barIconSize(root.barThickness, undefined, root.barConfig?.maximizeWidgetIcons, root.barConfig?.iconScale)
|
|
color: Theme.widgetTextColor
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Row {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingXS
|
|
|
|
StyledText {
|
|
text: "↓"
|
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
|
color: Theme.info
|
|
}
|
|
|
|
StyledText {
|
|
text: DgopService.networkRxRate > 0 ? Format.formatRate(DgopService.networkRxRate, 1) : "0 B/s"
|
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
|
color: Theme.widgetTextColor
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
horizontalAlignment: Text.AlignLeft
|
|
elide: Text.ElideNone
|
|
wrapMode: Text.NoWrap
|
|
|
|
StyledTextMetrics {
|
|
id: rxBaseline
|
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
|
text: "88.8 MB/s"
|
|
}
|
|
|
|
width: Math.max(rxBaseline.width, paintedWidth)
|
|
}
|
|
}
|
|
|
|
Row {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingXS
|
|
|
|
StyledText {
|
|
text: "↑"
|
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
|
color: Theme.error
|
|
}
|
|
|
|
StyledText {
|
|
text: DgopService.networkTxRate > 0 ? Format.formatRate(DgopService.networkTxRate, 1) : "0 B/s"
|
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
|
color: Theme.widgetTextColor
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
horizontalAlignment: Text.AlignLeft
|
|
elide: Text.ElideNone
|
|
wrapMode: Text.NoWrap
|
|
|
|
StyledTextMetrics {
|
|
id: txBaseline
|
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
|
text: "88.8 MB/s"
|
|
}
|
|
|
|
width: Math.max(txBaseline.width, paintedWidth)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|