summaryrefslogtreecommitdiff
path: root/includes/node_modules/prompts/dist/util/action.js
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2023-10-26 16:39:03 +0200
committerRaindropsSys <raindrops@equestria.dev>2023-10-26 16:39:03 +0200
commit9f9d66afebc59c6c265c4424f7b8fb36d8876541 (patch)
tree8af8fc2fb1634a2f53df35544081a48956e6efad /includes/node_modules/prompts/dist/util/action.js
parentae187b6d75c8079da0be1dc288613bad8466fe61 (diff)
downloadmist-9f9d66afebc59c6c265c4424f7b8fb36d8876541.tar.gz
mist-9f9d66afebc59c6c265c4424f7b8fb36d8876541.tar.bz2
mist-9f9d66afebc59c6c265c4424f7b8fb36d8876541.zip
Updated 34 files and added 146 files (automated)
Diffstat (limited to 'includes/node_modules/prompts/dist/util/action.js')
-rw-r--r--includes/node_modules/prompts/dist/util/action.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/includes/node_modules/prompts/dist/util/action.js b/includes/node_modules/prompts/dist/util/action.js
new file mode 100644
index 0000000..c36b7db
--- /dev/null
+++ b/includes/node_modules/prompts/dist/util/action.js
@@ -0,0 +1,38 @@
+'use strict';
+
+module.exports = (key, isSelect) => {
+ if (key.meta && key.name !== 'escape') return;
+
+ if (key.ctrl) {
+ if (key.name === 'a') return 'first';
+ if (key.name === 'c') return 'abort';
+ if (key.name === 'd') return 'abort';
+ if (key.name === 'e') return 'last';
+ if (key.name === 'g') return 'reset';
+ }
+
+ if (isSelect) {
+ if (key.name === 'j') return 'down';
+ if (key.name === 'k') return 'up';
+ }
+
+ if (key.name === 'return') return 'submit';
+ if (key.name === 'enter') return 'submit'; // ctrl + J
+
+ if (key.name === 'backspace') return 'delete';
+ if (key.name === 'delete') return 'deleteForward';
+ if (key.name === 'abort') return 'abort';
+ if (key.name === 'escape') return 'exit';
+ if (key.name === 'tab') return 'next';
+ if (key.name === 'pagedown') return 'nextPage';
+ if (key.name === 'pageup') return 'prevPage'; // TODO create home() in prompt types (e.g. TextPrompt)
+
+ if (key.name === 'home') return 'home'; // TODO create end() in prompt types (e.g. TextPrompt)
+
+ if (key.name === 'end') return 'end';
+ if (key.name === 'up') return 'up';
+ if (key.name === 'down') return 'down';
+ if (key.name === 'right') return 'right';
+ if (key.name === 'left') return 'left';
+ return false;
+}; \ No newline at end of file