mirror of
https://github.com/outline/outline.git
synced 2025-12-21 02:29:41 -06:00
56 lines
1.2 KiB
TypeScript
56 lines
1.2 KiB
TypeScript
/**
|
|
* Returns true if we're running in the browser.
|
|
*/
|
|
export const isBrowser = typeof window !== "undefined";
|
|
|
|
/**
|
|
* Returns true if the client is a touch device.
|
|
*/
|
|
export function isTouchDevice(): boolean {
|
|
if (!isBrowser) {
|
|
return false;
|
|
}
|
|
return window.matchMedia?.("(hover: none) and (pointer: coarse)")?.matches;
|
|
}
|
|
|
|
/**
|
|
* 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";
|
|
}
|
|
|
|
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 (e) {
|
|
// No-op
|
|
}
|
|
|
|
/**
|
|
* Returns true if the client supports passive event listeners
|
|
*/
|
|
export const supportsPassiveListener = supportsPassive;
|