mirror of
https://github.com/outline/outline.git
synced 2025-12-18 17:19:41 -06:00
121 lines
2.9 KiB
TypeScript
121 lines
2.9 KiB
TypeScript
/**
|
|
* Is true if we're running in the browser.
|
|
*/
|
|
export const isBrowser = typeof window !== "undefined";
|
|
|
|
/**
|
|
* Is true if the browser is running as an installed PWA on mobile or desktop
|
|
*/
|
|
export const isPWA =
|
|
typeof window !== "undefined" &&
|
|
window.matchMedia?.("(display-mode: standalone)").matches;
|
|
|
|
/**
|
|
* Returns true if the client is a touch device. Note that laptops with touch screens are
|
|
* considered touch devices.
|
|
*/
|
|
export function isTouchDevice(): boolean {
|
|
if (!isBrowser) {
|
|
return false;
|
|
}
|
|
return window.matchMedia?.("(hover: none) and (pointer: coarse)")?.matches;
|
|
}
|
|
|
|
/**
|
|
* Returns true if the client is a mobile device.
|
|
*/
|
|
export function isMobile(): boolean {
|
|
if (!isBrowser) {
|
|
return false;
|
|
}
|
|
|
|
// Matches breakpoints.tablet - 1 but not imported to avoid circular dependency
|
|
return window.matchMedia?.(`(max-width: ${736}px)`)?.matches;
|
|
}
|
|
|
|
/**
|
|
* Returns the safe area insets for the current device.
|
|
*/
|
|
export function getSafeAreaInsets(): {
|
|
top: number;
|
|
right: number;
|
|
bottom: number;
|
|
left: number;
|
|
} {
|
|
// Check if CSS environment variables are supported
|
|
const style = getComputedStyle(document.documentElement);
|
|
const supportsEnv = window.CSS?.supports?.("top", "env(safe-area-inset-top)");
|
|
|
|
if (supportsEnv) {
|
|
return {
|
|
top: parseFloat(style.getPropertyValue("--sat") || "0"),
|
|
right: parseFloat(style.getPropertyValue("--sar") || "0"),
|
|
bottom: parseFloat(style.getPropertyValue("--sab") || "0"),
|
|
left: parseFloat(style.getPropertyValue("--sal") || "0"),
|
|
};
|
|
}
|
|
|
|
// Fallback to zero if not supported
|
|
return { top: 0, right: 0, bottom: 0, left: 0 };
|
|
}
|
|
|
|
/**
|
|
* Returns true if the client is running on a Mac.
|
|
*/
|
|
export function isMac(): boolean {
|
|
if (!isBrowser) {
|
|
return false;
|
|
}
|
|
return window.navigator.platform === "MacIntel";
|
|
}
|
|
|
|
/**
|
|
* Returns true if the client is running on Windows.
|
|
*/
|
|
export function isWindows(): boolean {
|
|
if (!isBrowser) {
|
|
return false;
|
|
}
|
|
return window.navigator.platform === "Win32";
|
|
}
|
|
|
|
export function isSafari(): boolean {
|
|
if (!isBrowser) {
|
|
return false;
|
|
}
|
|
const userAgent = window.navigator.userAgent;
|
|
return (
|
|
userAgent.includes("Safari") &&
|
|
!userAgent.includes("Chrome") &&
|
|
!userAgent.includes("Chromium")
|
|
);
|
|
}
|
|
|
|
export function isFirefox(): boolean {
|
|
if (!isBrowser) {
|
|
return false;
|
|
}
|
|
return window.navigator.userAgent.includes("Firefox");
|
|
}
|
|
|
|
let supportsPassive = false;
|
|
|
|
try {
|
|
const opts = Object.defineProperty({}, "passive", {
|
|
get() {
|
|
supportsPassive = true;
|
|
},
|
|
});
|
|
// @ts-expect-error ts-migrate(2769) testPassive is not a real event
|
|
window.addEventListener("testPassive", null, opts);
|
|
// @ts-expect-error ts-migrate(2769) testPassive is not a real event
|
|
window.removeEventListener("testPassive", null, opts);
|
|
} catch (_err) {
|
|
// Ignore
|
|
}
|
|
|
|
/**
|
|
* Returns true if the client supports passive event listeners
|
|
*/
|
|
export const supportsPassiveListener = supportsPassive;
|