blob: ad71132179be4c73830053e8a707a0b4de37a588 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
type Platform = "mac" | "linux" | "windows" | "unknown";
function getPlatform(): Platform {
const platform = window.navigator.platform.toUpperCase();
if (platform.indexOf("MAC") >= 0) {
return "mac";
} else if (platform.indexOf("LINUX") >= 0) {
return "linux";
} else if (platform.indexOf("WIN") >= 0) {
return "windows";
} else {
return "unknown";
}
}
function isMetaEquivalentKeyPressed(event: {
metaKey: boolean;
ctrlKey: boolean;
}): boolean {
const platform = getPlatform();
switch (platform) {
case "mac":
return event.metaKey;
case "linux":
case "windows":
return event.ctrlKey;
default:
return event.metaKey;
}
}
|