TypeScript(TS) 自定义绑定快捷键

2024-08-30 21:52

本文主要是介绍TypeScript(TS) 自定义绑定快捷键,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

 有很多软件中都可以让用户自定义快捷键

如微信中的快捷键:

思路:

1. 将快捷键分为两部分:

    a. 主要的键   'shift', 'ctrl', 'alt', 'command';

    b. 非主要的键  字母键、数字键等;

2. 键盘按下事件:比较按键和绑定的快捷键是否相同

 代码实现

/*** 快捷键信息对象*/
interface Shortcuts {// 快捷键readonly shortcut:string;// 名称readonly name: string;// 执行的方法readonly callback:Function,// 字母键readonly key: string,// 主组合键readonly modifiers: string[],
}const KEY_SHORTCUT = ['shift', 'ctrl', 'alt', 'command'];/*** 快捷键*/
export default class ShortcutBinder {// 存放快捷键信息的集合private readonly shortcuts:Shortcuts[];// 新快捷键  --->   默认快捷键private readonly defaultShortcutsMap: Map<string, string> = new Map<string, string>();private readonly defaultShortcuts:Shortcuts[];private static shortcutBinder:ShortcutBinder;// 单例public static getInstance(){if (!ShortcutBinder.shortcutBinder){ShortcutBinder.shortcutBinder = new ShortcutBinder()}return ShortcutBinder.shortcutBinder;}private constructor() {this.shortcuts = [];this.defaultShortcuts = [];// 初始化this.init();}private init() {this.addKeydownEvent();}/*** 添加快捷键*/private addKeydownEvent() {// 全局 键盘按下事件document.addEventListener('keydown', (event) => {console.log("按键:", event.keyCode, event.code, event.key)const modifers = getModifierKeysByKeyboardEvent(eventInfo.event);const matchedShortcut = this.shortcuts.find(shortcut =>// 判断字母按键是否相同checkKeyMatch(shortcut.key, event.key.toLowerCase()) &&// 判断非字母按键是否相同checkModifiersMatch(shortcut.modifiers, modifers));if (matchedShortcut !== undefined) {// 执行函数matchedShortcut.callback(event);}});}/*** 绑定默认快捷键和对应执行的方法* @param {string} shortcut* @param {Function} callback*/bind(shortcut:string, name:string, callback:Function) {this.addShortcut(shortcut, name, callback);// 存放默认快捷键this.defaultShortcutsMap.set(shortcut, shortcut);// 克隆默认快捷键this.defaultShortcuts.push(this.shortcuts[this.shortcuts.length-1])}/*** 修改绑定的快捷键* @param newShortcut 新组合键* @param oldShortcut 旧组合键*/editBind(newShortcut:string, oldShortcut:string){if (newShortcut === oldShortcut){// 新键和旧键一致 不做处理return;}let flag = false;// 获取快捷键let shortcutObj:Shortcuts|undefined = undefined;let len = this.shortcuts.length;// 当前位置let c = 0;for (let i = 0; i < len; i++) {if (oldShortcut === this.shortcuts[i].shortcut){shortcutObj = this.shortcuts[i];c = i;}if (newShortcut === this.shortcuts[i].shortcut){// 新快捷键与原有的冲突flag = true;}if (shortcutObj !== undefined && flag){break}}if (flag){// TODO 弹窗提示 快捷键冲突return;}if (shortcutObj === undefined){// TODO 弹窗提示没有该组合键return;}// 添加新的快捷键this.addShortcut(newShortcut, shortcutObj.name, shortcutObj.callback);// 删除原来的快捷键this.shortcuts.splice(c, 1);// 如果 旧快捷键 是默认键添加到映射let shortcutSlt = this.defaultShortcutsMap.get(oldShortcut);if (shortcutSlt !== undefined){// 删除原始的this.defaultShortcutsMap.delete(oldShortcut);// 添加新映射关系this.defaultShortcutsMap.set(newShortcut, shortcutSlt);}}/*** 重置绑定的快捷键* @param shortcut*/resettingBind(shortcut?:string){if (shortcut !== undefined){// 重置一个组合键let oldShortcut = this.defaultShortcutsMap.get(shortcut);if (oldShortcut !== undefined){this.editBind(oldShortcut, shortcut);}return;}// 重置所有组合键this.shortcuts.length = 0;this.defaultShortcuts.forEach(ds => {this.shortcuts.push(ds);})}/*** 获取快捷键集合*/getShortcuts(){return this.shortcuts;}/*** 添加绑定的快捷键* @param {string} shortcut 快捷键* @param {Function} callback 执行的方法*/private addShortcut(shortcut:string, name:string, callback:Function) {this.shortcuts.push({// 快捷键shortcut,// 名称name,// 执行的方法callback,// 字母按键 注意: 字母按键 不区分大小写但event.key区分大小写key: this.getKeyByShortcut(shortcut),// 主按键  'shift', 'ctrl', 'alt', 'command'modifiers: this.getModifiersByShortcut(shortcut),});}/*** 获取字母按键* @param {string} shortcut 快捷键的组合* @returns {string}*/private getKeyByShortcut(shortcut:string) {if (!shortcut.trim()) return '';let key = (shortcut.split('+').filter((key) => !KEY_SHORTCUT.includes(key.trim().toLowerCase()))[0] || '');return key.toLowerCase();}/*** 获取主按键 ['shift', 'ctrl', 'alt', 'command']* @param {string} shortcut 快捷键的组合* @returns {Array}*/private getModifiersByShortcut(shortcut:string) {const keys = shortcut.split('+').map((key) => key.trim().toLowerCase());let modifiers:string[] = [];keys.forEach((key) => {if (KEY_SHORTCUT.includes(key)) {modifiers.push(key);}});return modifiers;}
}/*** 统一主按键* @param {KeyboardEvent} event - keyboard event* @returns {Array}*/
const getModifierKeysByKeyboardEvent = (event:KeyboardEvent) => {const modifiers = [];if (event.shiftKey) {modifiers.push('shift');}if (event.altKey) {modifiers.push('alt');}if (event.ctrlKey) {modifiers.push('ctrl');}if (event.metaKey) {modifiers.push('command');}return modifiers;
};/*** 判断按下的非字母键是否相同* @param {Array} modifers1* @param {Array} modifers2* @returns {boolean}*/
function checkModifiersMatch(modifers1:string[], modifers2:string[]) {return modifers1.sort().join(',') === modifers2.sort().join(',');
}/*** 判断按下的 字母键 是否相同* @param {string} shortcutKey* @param {string} eventKey - event.key* @returns {boolean}*/
function checkKeyMatch(shortcutKey:string, eventKey:string) {return shortcutKey === eventKey;
}
 使用方式:
let shortcutBinder = ShortcutBinder.getInstance(this.editCore);// enter 菜单快捷键
shortcutBinder.bind('enter', "快速标记菜单",() => {console.log('enter');
});
shortcutBinder.bind('ctrl+s', '保存', () => {console.log('ctrl+s');
});
注意:

由于 event.key 区分受 shift 的影响,如:字母键区分大小写;

可以考虑 event.keyCode, event.code 来代替非主键('shift', 'ctrl', 'alt', 'command')

这篇关于TypeScript(TS) 自定义绑定快捷键的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1122033

相关文章

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

如何自定义Nginx JSON日志格式配置

《如何自定义NginxJSON日志格式配置》Nginx作为最流行的Web服务器之一,其灵活的日志配置能力允许我们根据需求定制日志格式,本文将详细介绍如何配置Nginx以JSON格式记录访问日志,这种... 目录前言为什么选择jsON格式日志?配置步骤详解1. 安装Nginx服务2. 自定义JSON日志格式各

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

基于@RequestParam注解之Spring MVC参数绑定的利器

《基于@RequestParam注解之SpringMVC参数绑定的利器》:本文主要介绍基于@RequestParam注解之SpringMVC参数绑定的利器,具有很好的参考价值,希望对大家有所帮助... 目录@RequestParam注解:Spring MVC参数绑定的利器什么是@RequestParam?@

基于Spring实现自定义错误信息返回详解

《基于Spring实现自定义错误信息返回详解》这篇文章主要为大家详细介绍了如何基于Spring实现自定义错误信息返回效果,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录背景目标实现产出背景Spring 提供了 @RestConChina编程trollerAdvice 用来实现 HTT

SpringSecurity 认证、注销、权限控制功能(注销、记住密码、自定义登入页)

《SpringSecurity认证、注销、权限控制功能(注销、记住密码、自定义登入页)》SpringSecurity是一个强大的Java框架,用于保护应用程序的安全性,它提供了一套全面的安全解决方案... 目录简介认识Spring Security“认证”(Authentication)“授权” (Auth

SpringBoot自定义注解如何解决公共字段填充问题

《SpringBoot自定义注解如何解决公共字段填充问题》本文介绍了在系统开发中,如何使用AOP切面编程实现公共字段自动填充的功能,从而简化代码,通过自定义注解和切面类,可以统一处理创建时间和修改时间... 目录1.1 问题分析1.2 实现思路1.3 代码开发1.3.1 步骤一1.3.2 步骤二1.3.3

dubbo3 filter(过滤器)如何自定义过滤器

《dubbo3filter(过滤器)如何自定义过滤器》dubbo3filter(过滤器)类似于javaweb中的filter和springmvc中的intercaptor,用于在请求发送前或到达前进... 目录dubbo3 filter(过滤器)简介dubbo 过滤器运行时机自定义 filter第一种 @A

CSS自定义浏览器滚动条样式完整代码

《CSS自定义浏览器滚动条样式完整代码》:本文主要介绍了如何使用CSS自定义浏览器滚动条的样式,包括隐藏滚动条的角落、设置滚动条的基本样式、轨道样式和滑块样式,并提供了完整的CSS代码示例,通过这些技巧,你可以为你的网站添加个性化的滚动条样式,从而提升用户体验,详细内容请阅读本文,希望能对你有所帮助...

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情