mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-30 04:05:16 +01:00
102 lines
3.7 KiB
TypeScript
102 lines
3.7 KiB
TypeScript
import {isCtrl} from "./compatibility";
|
|
import {Constants} from "../../constants";
|
|
|
|
// 是否匹配 ⇧⌘[] / ⌘[] / ⌥[] / ⌥⌘[] / ⌥⇧[] / ⌥⇧⌘[] / ⇧[] / []
|
|
export const matchHotKey = (hotKey: string, event: KeyboardEvent) => {
|
|
if (!hotKey) {
|
|
return false;
|
|
}
|
|
|
|
// []
|
|
if (hotKey.indexOf("⇧") === -1 && hotKey.indexOf("⌘") === -1 && hotKey.indexOf("⌥") === -1 && hotKey.indexOf("⌃") === -1) {
|
|
if (!event.ctrlKey && !isCtrl(event) && !event.altKey && !event.shiftKey && hotKey === Constants.KEYCODELIST[event.keyCode]) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
const hotKeys = hotKey.split("");
|
|
if (hotKey.indexOf("F") > -1) {
|
|
hotKeys.forEach((item, index) => {
|
|
if (item === "F") {
|
|
// F1-F12
|
|
hotKeys[index] = "F" + hotKeys.splice(index + 1, 1);
|
|
if (hotKeys[index + 1]) {
|
|
hotKeys[index + 1] += hotKeys.splice(index + 1, 1);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
// 是否匹配 ⇧[]
|
|
if (hotKey.startsWith("⇧") && hotKeys.length === 2) {
|
|
if (!event.ctrlKey && !isCtrl(event) && !event.altKey && event.shiftKey && hotKeys[1] === Constants.KEYCODELIST[event.keyCode]) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (hotKey.startsWith("⌥")) {
|
|
let keyCode = hotKeys.length === 3 ? hotKeys[2] : hotKeys[1];
|
|
if (hotKeys.length === 4) {
|
|
keyCode = hotKeys[3];
|
|
}
|
|
|
|
const isMatchKey = keyCode === Constants.KEYCODELIST[event.keyCode];
|
|
// 是否匹配 ⌥[] / ⌥⌘[]
|
|
if (isMatchKey && event.altKey && !event.shiftKey &&
|
|
(hotKeys.length === 3 ? (isCtrl(event) && hotKey.startsWith("⌥⌘")) : !isCtrl(event))) {
|
|
return true;
|
|
}
|
|
// ⌥⇧⌘[]
|
|
if (isMatchKey && hotKey.startsWith("⌥⇧⌘") && hotKeys.length === 4 &&
|
|
event.altKey && event.shiftKey && isCtrl(event)) {
|
|
return true;
|
|
}
|
|
// ⌥⇧[]
|
|
if (isMatchKey && hotKey.startsWith("⌥⇧") && hotKeys.length === 3 &&
|
|
event.altKey && event.shiftKey && !isCtrl(event)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// 是否匹配 ⌃[] / ⌃⌥[] / ⌃⇧[]/ ⌃⌥⇧[]
|
|
if (hotKey.startsWith("⌃")) {
|
|
let keyCode = hotKeys.length === 3 ? hotKeys[2] : hotKeys[1];
|
|
if (hotKeys.length === 4) {
|
|
keyCode = hotKeys[3];
|
|
}
|
|
|
|
const isMatchKey = keyCode === Constants.KEYCODELIST[event.keyCode];
|
|
// 是否匹配 ⌃[]
|
|
if (isMatchKey && hotKeys.length === 2 &&
|
|
event.ctrlKey && !event.altKey && !event.shiftKey && !event.metaKey) {
|
|
return true;
|
|
}
|
|
// ⌃⇧[]
|
|
if (isMatchKey && hotKey.startsWith("⌃⇧") && hotKeys.length === 3 &&
|
|
event.ctrlKey && !event.altKey && event.shiftKey && !event.metaKey) {
|
|
return true;
|
|
}
|
|
// ⌃⌥[]
|
|
if (isMatchKey && hotKey.startsWith("⌃⌥") && hotKeys.length === 3 &&
|
|
event.ctrlKey && event.altKey && !event.shiftKey && !event.metaKey) {
|
|
return true;
|
|
}
|
|
// ⌃⌥⇧[]
|
|
if (isMatchKey && hotKey.startsWith("⌃⌥⇧") && hotKeys.length === 4 &&
|
|
event.ctrlKey && event.altKey && event.shiftKey && !event.metaKey) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// 是否匹配 ⇧⌘[] / ⌘[]
|
|
const hasShift = hotKeys.length > 2 && (hotKeys[0] === "⇧");
|
|
if (isCtrl(event) && !event.altKey && ((!hasShift && !event.shiftKey) || (hasShift && event.shiftKey))) {
|
|
return (hasShift ? hotKeys[2] : hotKeys[1]) === Constants.KEYCODELIST[event.keyCode];
|
|
}
|
|
return false;
|
|
};
|
|
|