Version 1.0.2 mit node_modules Verzeichnis

This commit is contained in:
ISA
2024-10-02 07:58:24 +02:00
parent f353a06b1b
commit 62b6e55a0a
68228 changed files with 4548477 additions and 651 deletions

View File

@@ -0,0 +1,43 @@
import '../utils/click/isClickableInput.js';
import '../utils/dataTransfer/Clipboard.js';
import '../utils/edit/isEditable.js';
import '../utils/edit/maxLength.js';
import '../utils/keyDef/readNextDescriptor.js';
import '../utils/misc/level.js';
import { wait } from '../utils/misc/wait.js';
import '../options.js';
import { parseKeyDef } from './parseKeyDef.js';
async function keyboard(text) {
const actions = parseKeyDef(this.config.keyboardMap, text);
for(let i = 0; i < actions.length; i++){
await wait(this.config);
await keyboardAction(this, actions[i]);
}
}
async function keyboardAction(instance, { keyDef, releasePrevious, releaseSelf, repeat }) {
const { system } = instance;
// Release the key automatically if it was pressed before.
if (system.keyboard.isKeyPressed(keyDef)) {
await system.keyboard.keyup(instance, keyDef);
}
if (!releasePrevious) {
for(let i = 1; i <= repeat; i++){
await system.keyboard.keydown(instance, keyDef);
if (i < repeat) {
await wait(instance.config);
}
}
// Release the key only on the last iteration on `state.repeatKey`.
if (releaseSelf) {
await system.keyboard.keyup(instance, keyDef);
}
}
}
async function releaseAllKeys(instance) {
for (const k of instance.system.keyboard.getPressedKeys()){
await instance.system.keyboard.keyup(instance, k);
}
}
export { keyboard, releaseAllKeys };

View File

@@ -0,0 +1,154 @@
import { DOM_KEY_LOCATION } from '../system/keyboard.js';
/**
* Mapping for a default US-104-QWERTY keyboard
*/ const defaultKeyMap = [
// alphanumeric keys
...'0123456789'.split('').map((c)=>({
code: `Digit${c}`,
key: c
})),
...')!@#$%^&*('.split('').map((c, i)=>({
code: `Digit${i}`,
key: c,
shiftKey: true
})),
...'abcdefghijklmnopqrstuvwxyz'.split('').map((c)=>({
code: `Key${c.toUpperCase()}`,
key: c
})),
...'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('').map((c)=>({
code: `Key${c}`,
key: c,
shiftKey: true
})),
// alphanumeric block - functional
{
code: 'Space',
key: ' '
},
{
code: 'AltLeft',
key: 'Alt',
location: DOM_KEY_LOCATION.LEFT
},
{
code: 'AltRight',
key: 'Alt',
location: DOM_KEY_LOCATION.RIGHT
},
{
code: 'ShiftLeft',
key: 'Shift',
location: DOM_KEY_LOCATION.LEFT
},
{
code: 'ShiftRight',
key: 'Shift',
location: DOM_KEY_LOCATION.RIGHT
},
{
code: 'ControlLeft',
key: 'Control',
location: DOM_KEY_LOCATION.LEFT
},
{
code: 'ControlRight',
key: 'Control',
location: DOM_KEY_LOCATION.RIGHT
},
{
code: 'MetaLeft',
key: 'Meta',
location: DOM_KEY_LOCATION.LEFT
},
{
code: 'MetaRight',
key: 'Meta',
location: DOM_KEY_LOCATION.RIGHT
},
{
code: 'OSLeft',
key: 'OS',
location: DOM_KEY_LOCATION.LEFT
},
{
code: 'OSRight',
key: 'OS',
location: DOM_KEY_LOCATION.RIGHT
},
{
code: 'Tab',
key: 'Tab'
},
{
code: 'CapsLock',
key: 'CapsLock'
},
{
code: 'Backspace',
key: 'Backspace'
},
{
code: 'Enter',
key: 'Enter'
},
// function
{
code: 'Escape',
key: 'Escape'
},
// arrows
{
code: 'ArrowUp',
key: 'ArrowUp'
},
{
code: 'ArrowDown',
key: 'ArrowDown'
},
{
code: 'ArrowLeft',
key: 'ArrowLeft'
},
{
code: 'ArrowRight',
key: 'ArrowRight'
},
// control pad
{
code: 'Home',
key: 'Home'
},
{
code: 'End',
key: 'End'
},
{
code: 'Delete',
key: 'Delete'
},
{
code: 'PageUp',
key: 'PageUp'
},
{
code: 'PageDown',
key: 'PageDown'
},
// Special keys that are not part of a default US-layout but included for specific behavior
{
code: 'Fn',
key: 'Fn'
},
{
code: 'Symbol',
key: 'Symbol'
},
{
code: 'AltRight',
key: 'AltGraph'
}
];
export { defaultKeyMap };

View File

@@ -0,0 +1,48 @@
import '../utils/click/isClickableInput.js';
import '../utils/dataTransfer/Clipboard.js';
import '../utils/edit/isEditable.js';
import '../utils/edit/maxLength.js';
import { readNextDescriptor } from '../utils/keyDef/readNextDescriptor.js';
import '../utils/misc/level.js';
import '../options.js';
/**
* Parse key defintions per `keyboardMap`
*
* Keys can be referenced by `{key}` or `{special}` as well as physical locations per `[code]`.
* Everything else will be interpreted as a typed character - e.g. `a`.
* Brackets `{` and `[` can be escaped by doubling - e.g. `foo[[bar` translates to `foo[bar`.
* Keeping the key pressed can be written as `{key>}`.
* When keeping the key pressed you can choose how long (how many keydown and keypress) the key is pressed `{key>3}`.
* You can then release the key per `{key>3/}` or keep it pressed and continue with the next key.
*/ function parseKeyDef(keyboardMap, text) {
const defs = [];
do {
const { type, descriptor, consumedLength, releasePrevious, releaseSelf = true, repeat } = readNextDescriptor(text, 'keyboard');
var _keyboardMap_find;
const keyDef = (_keyboardMap_find = keyboardMap.find((def)=>{
if (type === '[') {
var _def_code;
return ((_def_code = def.code) === null || _def_code === void 0 ? void 0 : _def_code.toLowerCase()) === descriptor.toLowerCase();
} else if (type === '{') {
var _def_key;
return ((_def_key = def.key) === null || _def_key === void 0 ? void 0 : _def_key.toLowerCase()) === descriptor.toLowerCase();
}
return def.key === descriptor;
})) !== null && _keyboardMap_find !== void 0 ? _keyboardMap_find : {
key: 'Unknown',
code: 'Unknown',
[type === '[' ? 'code' : 'key']: descriptor
};
defs.push({
keyDef,
releasePrevious,
releaseSelf,
repeat
});
text = text.slice(consumedLength);
}while (text)
return defs;
}
export { parseKeyDef };