Skip to content

Commit 89da356

Browse files
authored
Fix: call save when hiding tab, and update when focusing it (#5114)
Fix for a regression in 0.28 * `App::save` will now be called when the web app is hidden (e.g. goes to a background tab) * `App::update` will now be called when the web app is un-hidden (e.g. becomes the foreground tab)
1 parent 1488ffa commit 89da356

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

crates/eframe/src/web/app_runner.rs

+6
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,12 @@ impl AppRunner {
176176
///
177177
/// Technically: does either the canvas or the [`TextAgent`] have focus?
178178
pub fn has_focus(&self) -> bool {
179+
let window = web_sys::window().unwrap();
180+
let document = window.document().unwrap();
181+
if document.hidden() {
182+
return false;
183+
}
184+
179185
super::has_focus(self.canvas()) || self.text_agent.has_focus()
180186
}
181187

crates/eframe/src/web/events.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ pub(crate) fn install_event_handlers(runner_ref: &WebRunner) -> Result<(), JsVal
6161
let document = window.document().unwrap();
6262
let canvas = runner_ref.try_lock().unwrap().canvas().clone();
6363

64+
install_blur_focus(runner_ref, &document)?;
6465
install_blur_focus(runner_ref, &canvas)?;
6566

6667
prevent_default_and_stop_propagation(
@@ -106,15 +107,10 @@ pub(crate) fn install_event_handlers(runner_ref: &WebRunner) -> Result<(), JsVal
106107
fn install_blur_focus(runner_ref: &WebRunner, target: &EventTarget) -> Result<(), JsValue> {
107108
// NOTE: because of the text agent we sometime miss 'blur' events,
108109
// so we also poll the focus state each frame in `AppRunner::logic`.
109-
for event_name in ["blur", "focus"] {
110+
for event_name in ["blur", "focus", "visibilitychange"] {
110111
let closure = move |_event: web_sys::MouseEvent, runner: &mut AppRunner| {
111112
log::trace!("{} {event_name:?}", runner.canvas().id());
112113
runner.update_focus();
113-
114-
if event_name == "blur" {
115-
// This might be a good time to save the state
116-
runner.save();
117-
}
118114
};
119115

120116
runner_ref.add_event_listener(target, event_name, closure)?;

0 commit comments

Comments
 (0)