fix(ui): use standard button role for iOS overlays and escalate debug logs

This commit is contained in:
spinline
2026-02-04 17:50:50 +03:00
parent 4bcb998888
commit 57da8b02c2

View File

@@ -117,12 +117,9 @@ pub fn StatusBar() -> impl IntoView {
<Show when=move || down_menu_open.get() fallback=|| ()> <Show when=move || down_menu_open.get() fallback=|| ()>
<div <div
class="fixed inset-0 z-[99] bg-black opacity-0 cursor-pointer" class="fixed inset-0 z-[99] bg-black opacity-0 cursor-pointer"
role="button"
tabindex="0"
on:click=move |e| { e.stop_propagation(); set_down_menu_open.set(false); } on:click=move |e| { e.stop_propagation(); set_down_menu_open.set(false); }
on:touchstart=move |e| {
e.stop_propagation();
e.prevent_default();
set_down_menu_open.set(false);
}
></div> ></div>
</Show> </Show>
@@ -131,7 +128,7 @@ pub fn StatusBar() -> impl IntoView {
limits.clone().into_iter().map(|(val, label)| { limits.clone().into_iter().map(|(val, label)| {
let is_active = move || { let is_active = move || {
let current = stats.get().down_limit.unwrap_or(0); let current = stats.get().down_limit.unwrap_or(0);
logging::log!("Down Active Check: current={} (i64), val={} (i64), diff={}, match={}", logging::error!("Down Active Check: current={} (i64), val={} (i64), diff={}, match={}",
current, current,
val, val,
(current - val).abs(), (current - val).abs(),
@@ -180,12 +177,9 @@ pub fn StatusBar() -> impl IntoView {
<Show when=move || up_menu_open.get() fallback=|| ()> <Show when=move || up_menu_open.get() fallback=|| ()>
<div <div
class="fixed inset-0 z-[99] bg-black opacity-0 cursor-pointer" class="fixed inset-0 z-[99] bg-black opacity-0 cursor-pointer"
role="button"
tabindex="0"
on:click=move |e| { e.stop_propagation(); set_up_menu_open.set(false); } on:click=move |e| { e.stop_propagation(); set_up_menu_open.set(false); }
on:touchstart=move |e| {
e.stop_propagation();
e.prevent_default();
set_up_menu_open.set(false);
}
></div> ></div>
</Show> </Show>
@@ -235,12 +229,9 @@ pub fn StatusBar() -> impl IntoView {
<Show when=move || theme_open.get() fallback=|| ()> <Show when=move || theme_open.get() fallback=|| ()>
<div <div
class="fixed inset-0 z-[99] bg-black opacity-0 cursor-pointer" class="fixed inset-0 z-[99] bg-black opacity-0 cursor-pointer"
role="button"
tabindex="0"
on:click=move |e| { e.stop_propagation(); set_theme_open.set(false); } on:click=move |e| { e.stop_propagation(); set_theme_open.set(false); }
on:touchstart=move |e| {
e.stop_propagation();
e.prevent_default();
set_theme_open.set(false);
}
></div> ></div>
</Show> </Show>