web: add UserActivation polyfill for browsers that don't have it
This commit is contained in:
parent
2122e87e66
commit
4af48dd2f9
4 changed files with 57 additions and 0 deletions
1
web/src/lib/polyfills.ts
Normal file
1
web/src/lib/polyfills.ts
Normal file
|
@ -0,0 +1 @@
|
|||
import "./polyfills/user-activation";
|
54
web/src/lib/polyfills/user-activation.ts
Normal file
54
web/src/lib/polyfills/user-activation.ts
Normal 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;
|
||||
}
|
|
@ -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] };
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue