mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
bc8c77723e
Also attempts to use simpler and newer APIs
37 lines
701 B
JavaScript
37 lines
701 B
JavaScript
function gotFocus() {
|
|
if (!Discourse.get("hasFocus")) {
|
|
Discourse.setProperties({ hasFocus: true, notify: false });
|
|
}
|
|
}
|
|
|
|
function lostFocus() {
|
|
if (Discourse.get("hasFocus")) {
|
|
Discourse.set("hasFocus", false);
|
|
}
|
|
}
|
|
|
|
let onchange;
|
|
|
|
export default Ember.Mixin.create({
|
|
ready() {
|
|
this._super(...arguments);
|
|
|
|
onchange = () => {
|
|
document.visibilityState === "hidden" ? lostFocus() : gotFocus();
|
|
};
|
|
|
|
// Default to true
|
|
Discourse.set("hasFocus", true);
|
|
|
|
document.addEventListener("visibilitychange", onchange);
|
|
},
|
|
|
|
reset() {
|
|
this._super(...arguments);
|
|
|
|
document.removeEventListener("visibilitychange", onchange);
|
|
|
|
onchange = undefined;
|
|
}
|
|
});
|