Settings: fix safe area insets emulation
This commit is contained in:
parent
7e698ebe4c
commit
34dd95e959
1 changed files with 32 additions and 12 deletions
|
@ -98,7 +98,14 @@ const safeAreaInsets: Record<string, SafeAreaInsets> = {
|
|||
|
||||
let screenOrientationCallback: (() => void) | undefined;
|
||||
|
||||
function removeSafeAreaEmulation(root: HTMLElement) {
|
||||
for (const name of ["top", "right", "bottom", "left"]) {
|
||||
root.style.removeProperty(`--safe-area-inset-${name}`);
|
||||
}
|
||||
}
|
||||
|
||||
function applySafeAreaEmulation(root: HTMLElement, insets: Inset) {
|
||||
removeSafeAreaEmulation(root);
|
||||
for (const key of Object.keys(insets) as (keyof Inset)[]) {
|
||||
const value = insets[key];
|
||||
if (!value || value === 0) continue;
|
||||
|
@ -109,7 +116,7 @@ function applySafeAreaEmulation(root: HTMLElement, insets: Inset) {
|
|||
function setupSafeAreaEmulation(name: string) {
|
||||
const insets = safeAreaInsets[name];
|
||||
const root = document.querySelector(":root")! as HTMLElement;
|
||||
if (!insets) {
|
||||
|
||||
if (screenOrientationCallback) {
|
||||
window.screen.orientation.removeEventListener(
|
||||
"change",
|
||||
|
@ -117,11 +124,14 @@ function setupSafeAreaEmulation(name: string) {
|
|||
);
|
||||
screenOrientationCallback = undefined;
|
||||
}
|
||||
for (const name of ["top", "right", "bottom", "left"]) {
|
||||
root.style.removeProperty(`--safe-area-inset-${name}`);
|
||||
}
|
||||
} else {
|
||||
|
||||
removeSafeAreaEmulation(root);
|
||||
|
||||
if (insets) {
|
||||
screenOrientationCallback = () => {
|
||||
console.debug(
|
||||
`safe area emulation target: ${window.screen.orientation.type}`,
|
||||
);
|
||||
if (window.screen.orientation.type === "portrait-primary") {
|
||||
console.debug("safe area emulation: protrait");
|
||||
applySafeAreaEmulation(root, insets.protrait);
|
||||
|
@ -138,6 +148,16 @@ function setupSafeAreaEmulation(name: string) {
|
|||
}
|
||||
}
|
||||
|
||||
if (import.meta.hot) {
|
||||
import.meta.hot.accept((mod) => {
|
||||
if (!mod) return;
|
||||
if (screenOrientationCallback) {
|
||||
mod["screenOrientationCallback"] = screenOrientationCallback;
|
||||
setTimeout(screenOrientationCallback, 0);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
type Strings = {
|
||||
["lang.auto"]: Template<{ detected: string }>;
|
||||
} & Record<string, string | undefined>;
|
||||
|
|
Loading…
Reference in a new issue