add external

This commit is contained in:
2025-12-17 22:32:08 +08:00
parent 22de8cad52
commit 8f29ddb449
4 changed files with 109 additions and 19 deletions

View File

@@ -6,7 +6,7 @@ import fs from 'node:fs';
// bun run src/index.ts -- // bun run src/index.ts --
import { fileURLToPath } from 'node:url'; import { fileURLToPath } from 'node:url';
const __dirname = path.dirname(fileURLToPath(import.meta.url)); const __dirname = path.dirname(fileURLToPath(import.meta.url));
const external = ['pm2', '@kevisual/hot-api']; const external = ['pm2', '@kevisual/hot-api', '@nut-tree-fork/nut-js'];
/** /**
* *
* @param {string} p * @param {string} p

View File

@@ -1,19 +1,20 @@
import { app } from '@/app.ts'; import { app } from '@/app.ts';
// import { Hotkeys } from '@kevisual/hot-api'; // import { Hotkeys } from '@kevisual/hot-api';
// import { useContextKey } from '@kevisual/context'; import { Hotkeys } from './lib.ts';
// app.route({ import { useContextKey } from '@kevisual/context';
// path: 'key-sender', app.route({
// // middleware: ['admin-auth'] path: 'key-sender',
// }).define(async (ctx) => { // middleware: ['admin-auth']
// let keys = ctx.query.keys; }).define(async (ctx) => {
// if (keys.includes(' ')) { let keys = ctx.query.keys;
// keys = keys.replace(/\s+/g, '+'); if (keys.includes(' ')) {
// } keys = keys.replace(/\s+/g, '+');
// const hotKeys: Hotkeys = useContextKey('hotkeys', () => new Hotkeys()); }
// if (typeof keys === 'string') { const hotKeys: Hotkeys = useContextKey('hotkeys', () => new Hotkeys());
// await hotKeys.pressHotkey({ if (typeof keys === 'string') {
// hotkey: keys, await hotKeys.pressHotkey({
// }); hotkey: keys,
// } });
// ctx.body = 'ok'; }
// }).addTo(app); ctx.body = 'ok';
}).addTo(app);

View File

@@ -0,0 +1,89 @@
import { keyboard, Key } from "@nut-tree-fork/nut-js";
/**
* 控制功能部分的案件映射
*/
export const keyMap: Record<string, Key> = {
'ctrl': Key.LeftControl,
'leftctrl': Key.LeftControl,
'rightctrl': Key.RightControl,
'alt': Key.LeftAlt,
'leftalt': Key.LeftAlt,
'rightalt': Key.RightAlt,
'shift': Key.LeftShift,
'leftshift': Key.LeftShift,
'rightshift': Key.RightShift,
'meta': Key.LeftSuper,
'cmd': Key.LeftCmd,
'win': Key.LeftWin,
// 根据操作系统选择 Ctrl 或 Command 键
'ctrlorcommand': process.platform === 'darwin' ? Key.LeftCmd : Key.LeftControl,
};
/**
* 将快捷键字符串转换为 Key 枚举值
* @param hotkey
* @returns
*/
export const parseHotkey = (hotkey: string): Key[] => {
return hotkey
.toLowerCase()
.split('+')
.map(key => {
const trimmed = key.trim().toLowerCase();
// 如果是修饰键,从映射表中获取
if (keyMap[trimmed]) {
return keyMap[trimmed];
}
// 如果是字母,转换为大写并查找对应的 Key
if (trimmed.length === 1 && /[a-z]/.test(trimmed)) {
const upperKey = trimmed.toUpperCase();
return Key[upperKey as keyof typeof Key] as Key;
}
// 其他情况直接查找
return Key[trimmed as keyof typeof Key] as Key;
})
.filter((key): key is Key => key !== undefined);
}
type PressHostKeysOptions = {
hotkey: string;
durationMs?: number;
}
export const pressHotkey = async (opts: PressHostKeysOptions): Promise<boolean> => {
const { hotkey, durationMs = 100 } = opts;
const keys = parseHotkey(hotkey);
console.log('准备模拟按下快捷键:', hotkey);
// 同时按下所有键
await keyboard.pressKey(...keys);
// 短暂延迟后释放
await new Promise(resolve => setTimeout(resolve, durationMs));
// 释放所有键
await keyboard.releaseKey(...keys);
return true
}
/**
* 模拟按下一组快捷键,支持逗号分隔的多个快捷键
* @param opts
* @returns
*/
export const pressHotkeys = async (opts: PressHostKeysOptions): Promise<boolean> => {
let { hotkey } = opts;
hotkey = hotkey.replace(/\s+/g, ''); // 去除所有空格
const hotkeyList = hotkey.split(',').map(hk => hk.trim());
if (hotkeyList.length === 0) {
return await pressHotkey({ ...opts, hotkey });
}
for (const hk of hotkeyList) {
await pressHotkey({ ...opts, hotkey: hk });
// 每个快捷键之间稍作延迟
await new Promise(resolve => setTimeout(resolve, 200));
}
return true;
}
export class Hotkeys {
pressHotkey = pressHotkey;
pressHotkeys = pressHotkeys;
}

View File

@@ -9,7 +9,7 @@ import path from 'node:path'
import chalk from 'chalk'; import chalk from 'chalk';
import { AssistantApp } from './lib.ts'; import { AssistantApp } from './lib.ts';
import { getBunPath } from './module/get-bun-path.ts'; import { getBunPath } from './module/get-bun-path.ts';
export const runServer = async (port?: number, listenPath = '127.0.0.1') => { export const runServer = async (port: number = 51015, listenPath = '127.0.0.1') => {
let _port: number | undefined; let _port: number | undefined;
if (port) { if (port) {
_port = await getPort({ port }); _port = await getPort({ port });