Amended display of "no Internet" errors

This commit is contained in:
Philip Abbey
2023-11-04 10:44:08 +00:00
parent 8ad95063f0
commit ebb89cd4b4
4 changed files with 31 additions and 23 deletions

View File

@ -11,6 +11,9 @@
P A Abbey & J D Abbey, 31 October 2023
Test Application id="98c36259-498a-4458-9cef-74a273ad2bc3"
Live Application id="40131e87-31ff-454b-a8e2-92276ee399d6"
-->
<iq:manifest version="3" xmlns:iq="http://www.garmin.com/xml/connectiq">

View File

@ -69,6 +69,11 @@ class HomeAssistantApp extends Application.AppBase {
true
);
WatchUi.switchToView(haMenu, new HomeAssistantViewDelegate(), WatchUi.SLIDE_IMMEDIATE);
} else if (responseCode == -300) {
if (Globals.debug) {
System.println("HomeAssistantApp Note - onReturnFetchMenuConfig(): Network request timeout.");
}
WatchUi.pushView(new ErrorView(strNoMenu + ". " + strNoInternet + "?"), new ErrorDelegate(), WatchUi.SLIDE_UP);
} else {
if (Globals.debug) {
System.println("HomeAssistantApp Note - onReturnFetchMenuConfig(): Configuration not found or potential validation issue.");
@ -95,7 +100,7 @@ class HomeAssistantApp extends Application.AppBase {
}
new Alert({
:timeout => Globals.alertTimeout,
:font => Graphics.FONT_SYSTEM_MEDIUM,
:font => Graphics.FONT_SYSTEM_TINY,
:text => strNoInternet,
:fgcolor => Graphics.COLOR_RED,
:bgcolor => Graphics.COLOR_BLACK

View File

@ -94,7 +94,7 @@ class HomeAssistantMenuItem extends WatchUi.MenuItem {
}
new Alert({
:timeout => Globals.alertTimeout,
:font => Graphics.FONT_SYSTEM_MEDIUM,
:font => Graphics.FONT_SYSTEM_TINY,
:text => strNoInternet,
:fgcolor => Graphics.COLOR_RED,
:bgcolor => Graphics.COLOR_BLACK

View File

@ -101,7 +101,7 @@ class HomeAssistantToggleMenuItem extends WatchUi.ToggleMenuItem {
}
new Alert({
:timeout => Globals.alertTimeout,
:font => Graphics.FONT_SYSTEM_MEDIUM,
:font => Graphics.FONT_SYSTEM_TINY,
:text => strNoInternet,
:fgcolor => Graphics.COLOR_RED,
:bgcolor => Graphics.COLOR_BLACK
@ -165,7 +165,7 @@ class HomeAssistantToggleMenuItem extends WatchUi.ToggleMenuItem {
}
new Alert({
:timeout => Globals.alertTimeout,
:font => Graphics.FONT_SYSTEM_MEDIUM,
:font => Graphics.FONT_SYSTEM_TINY,
:text => strNoInternet,
:fgcolor => Graphics.COLOR_RED,
:bgcolor => Graphics.COLOR_BLACK