152 lines
4.4 KiB
QML
152 lines
4.4 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Quickshell.Io
|
|
import "../../base"
|
|
|
|
ColumnLayout {
|
|
id: wifi
|
|
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
Layout.margins: 15
|
|
|
|
property ListModel networks: ListModel {}
|
|
|
|
signal navigationReturn
|
|
|
|
BRectangle {
|
|
width: 100
|
|
height: 100
|
|
visible: getter.running
|
|
Layout.alignment: Qt.AlignCenter
|
|
}
|
|
|
|
ListView {
|
|
id: re
|
|
model: wifi.networks
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
height: 500
|
|
spacing: 10
|
|
delegate: BRectangle {
|
|
id: con
|
|
required property string ssid
|
|
required property string bssid
|
|
required property bool connected
|
|
required property string rate
|
|
required property string bars
|
|
required property int index
|
|
|
|
height: 40
|
|
width: ListView.view.width
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
anchors.margins: 7.5
|
|
|
|
Text {
|
|
text: con.ssid?.length ? con.ssid : con.bssid
|
|
Layout.preferredWidth: parent.width * 0.2
|
|
}
|
|
|
|
Text {
|
|
text: con.rate
|
|
Layout.preferredWidth: parent.width * 0.1
|
|
}
|
|
Text {
|
|
text: con.bars
|
|
width: 30
|
|
Layout.preferredWidth: 30
|
|
Layout.maximumWidth: 30
|
|
}
|
|
|
|
Rectangle {
|
|
width: height
|
|
height: parent.height - (con.Layout.margins * 2)
|
|
Layout.preferredWidth: 30
|
|
Layout.maximumWidth: 30
|
|
|
|
color: {
|
|
const v = con.bssid.split(":").map(n => Number.parseInt(n, 16));
|
|
const value = v.reduce((acc, v) => {
|
|
acc[acc.length - 1]?.length < 2 ? acc[acc.length - 1].push(v) : acc.push([v]);
|
|
return acc;
|
|
}, [])//
|
|
.map(([a, b]) => Math.floor(((a + b) / 2)).toString(16)) //
|
|
.join("");
|
|
return `#${value}`;
|
|
}
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
|
|
BButton {
|
|
text: con.connected ? "disconnect" : "connect"
|
|
Layout.alignment: Qt.AlignRight
|
|
Layout.preferredWidth: implicitWidth
|
|
Layout.maximumWidth: parent.width * 0.2
|
|
Layout.minimumWidth: parent.width * 0.2
|
|
Layout.fillHeight: true
|
|
height: 30
|
|
width: 30
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
BButton {
|
|
text: "return"
|
|
onClicked: wifi.navigationReturn()
|
|
Layout.alignment: Qt.AlignBottom
|
|
Layout.fillWidth: true
|
|
width: 30
|
|
height: 30
|
|
}
|
|
|
|
BButton {
|
|
text: "refresh"
|
|
onClicked: getter.running = true
|
|
Layout.alignment: Qt.AlignBottom | Qt.AlignRight
|
|
Layout.fillWidth: true
|
|
width: 30
|
|
height: 30
|
|
}
|
|
}
|
|
|
|
Process {
|
|
id: getter
|
|
command: ["nmcli", "-t", "device", "wifi"]
|
|
running: true
|
|
stdout: SplitParser {
|
|
onRead: rawData => {
|
|
rawData = rawData.replace(/\\:/g, ":").split(":");
|
|
|
|
const data = {
|
|
connected: rawData[0] === "*",
|
|
bssid: rawData.slice(1, 7).join(":").replace(),
|
|
ssid: rawData[7],
|
|
mode: rawData[8],
|
|
channel: rawData[9],
|
|
rate: rawData[10],
|
|
signal: rawData[11],
|
|
bars: rawData[12],
|
|
security: rawData[13]
|
|
};
|
|
|
|
for (let i = 0; i < networks.count; i++) {
|
|
if (networks.get(i).bssid === data.bssid) {
|
|
Object.entries(data).map(([key, value]) => {
|
|
networks.setProperty(i, key, value);
|
|
});
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
networks.append(data);
|
|
}
|
|
}
|
|
}
|
|
}
|