web: add UserActivation polyfill for browsers that don't have it

This commit is contained in:
dumbmoron 2024-09-11 09:34:49 +00:00
parent 2122e87e66
commit 4af48dd2f9
No known key found for this signature in database
4 changed files with 57 additions and 0 deletions

1
web/src/lib/polyfills.ts Normal file
View file

@ -0,0 +1 @@
import "./polyfills/user-activation";

View file

@ -0,0 +1,54 @@
import { browser } from "$app/environment";
import type { Writeable } from "$lib/types/generic";
if (browser && !navigator.userActivation) {
const TRANSIENT_TIMEOUT = navigator.userAgent.includes('Firefox') ? 5000 : 2000;
let _timeout: number | undefined;
const userActivation: Writeable<UserActivation> = {
isActive: false,
hasBeenActive: false
};
const receiveEvent = (e: Event) => {
// An activation triggering input event is any event whose isTrusted attribute is true [...]
if (!e.isTrusted) return;
// and whose type is one of:
if (e instanceof PointerEvent) {
if (
// "pointerdown", provided the event's pointerType is "mouse";
(e.type === 'pointerdown' && e.pointerType !== 'mouse')
// "pointerup", provided the event's pointerType is not "mouse";
|| (e.type === 'pointerup' && e.pointerType === 'mouse')
)
return;
} else if (e instanceof KeyboardEvent) {
// "keydown", provided the key is neither the Esc key nor a shortcut key
// reserved by the user agent;
if (e.ctrlKey || e.shiftKey || e.altKey || e.metaKey)
return;
// the handling for this is a bit more complex,
// but this is fine for our use case
if (e.key !== 'Return' && e.key !== 'Enter' && e.key.length > 1)
return;
}
userActivation.hasBeenActive = true;
userActivation.isActive = true;
clearTimeout(_timeout);
_timeout = window.setTimeout(() => {
userActivation.isActive = false;
_timeout = undefined;
}, TRANSIENT_TIMEOUT);
}
// https://html.spec.whatwg.org/multipage/interaction.html#the-useractivation-interface
for (const event of [ 'keydown', 'mousedown', 'pointerdown', 'pointerup', 'touchend' ]) {
window.addEventListener(event, receiveEvent);
}
(navigator.userActivation as UserActivation) = userActivation;
}

View file

@ -9,3 +9,4 @@ export type RecursivePartial<Type> = {
export type DefaultImport<T> = () => Promise<{ default: T }>;
export type Optional<T> = T | undefined;
export type Writeable<T> = { -readonly [P in keyof T]: T[P] };

View file

@ -8,6 +8,7 @@
import { browser } from "$app/environment";
import { afterNavigate } from "$app/navigation";
import "$lib/polyfills";
import env from "$lib/env";
import settings from "$lib/state/settings";
import locale from "$lib/i18n/locale";