1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-26 14:32:52 -05:00

networking: improve wifi experience and bugs

This commit is contained in:
bbedward
2025-07-22 11:50:07 -04:00
parent a4da6921bd
commit 02bd9bbc72
7 changed files with 1166 additions and 395 deletions

View File

@@ -72,6 +72,14 @@ PanelWindow {
opacity: wifiPasswordDialogVisible ? 1 : 0
scale: wifiPasswordDialogVisible ? 1 : 0.9
// Prevent clicks inside dialog from closing it
MouseArea {
anchors.fill: parent
onClicked: {
// Do nothing - prevent propagation to background
}
}
Column {
anchors.fill: parent
anchors.margins: Theme.spacingL
@@ -131,6 +139,7 @@ PanelWindow {
anchors.fill: parent
font.pixelSize: Theme.fontSizeMedium
textColor: Theme.surfaceText
text: wifiPasswordInput
echoMode: showPasswordCheckbox.checked ? TextInput.Normal : TextInput.Password
enabled: wifiPasswordDialogVisible
placeholderText: "Enter password"
@@ -142,6 +151,10 @@ PanelWindow {
}
onAccepted: {
WifiService.connectToWifiWithPassword(wifiPasswordSSID, wifiPasswordInput);
// Close dialog immediately after pressing Enter
passwordInput.enabled = false;
wifiPasswordDialogVisible = false;
wifiPasswordInput = "";
}
Component.onCompleted: {
if (wifiPasswordDialogVisible)
@@ -267,6 +280,10 @@ PanelWindow {
enabled: parent.enabled
onClicked: {
WifiService.connectToWifiWithPassword(wifiPasswordSSID, wifiPasswordInput);
// Close dialog immediately after clicking connect
passwordInput.enabled = false;
wifiPasswordDialogVisible = false;
wifiPasswordInput = "";
}
}
@@ -304,4 +321,17 @@ PanelWindow {
}
// Auto-reopen dialog on invalid password
Connections {
target: WifiService
function onPasswordDialogShouldReopenChanged() {
if (WifiService.passwordDialogShouldReopen && WifiService.connectingSSID !== "") {
wifiPasswordSSID = WifiService.connectingSSID;
wifiPasswordInput = "";
wifiPasswordDialogVisible = true;
WifiService.passwordDialogShouldReopen = false;
}
}
}
}