first commit

This commit is contained in:
2025-10-26 23:10:15 +08:00
commit 8f0345b7be
14961 changed files with 2356381 additions and 0 deletions

17
node_modules/@inquirer/editor/dist/esm/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import { IFileOptions } from '@inquirer/external-editor';
import { type Theme } from '@inquirer/core';
import type { PartialDeep } from '@inquirer/type';
type EditorTheme = {
validationFailureMode: 'keep' | 'clear';
};
type EditorConfig = {
message: string;
default?: string;
postfix?: string;
waitForUseInput?: boolean;
validate?: (value: string) => boolean | string | Promise<string | boolean>;
file?: IFileOptions;
theme?: PartialDeep<Theme<EditorTheme>>;
};
declare const _default: import("@inquirer/type").Prompt<string, EditorConfig>;
export default _default;

74
node_modules/@inquirer/editor/dist/esm/index.js generated vendored Normal file
View File

@@ -0,0 +1,74 @@
import { editAsync } from '@inquirer/external-editor';
import { createPrompt, useEffect, useState, useKeypress, usePrefix, isEnterKey, makeTheme, } from '@inquirer/core';
const editorTheme = {
validationFailureMode: 'keep',
};
export default createPrompt((config, done) => {
const { waitForUseInput = true, file: { postfix = config.postfix ?? '.txt', ...fileProps } = {}, validate = () => true, } = config;
const theme = makeTheme(editorTheme, config.theme);
const [status, setStatus] = useState('idle');
const [value = '', setValue] = useState(config.default);
const [errorMsg, setError] = useState();
const prefix = usePrefix({ status, theme });
function startEditor(rl) {
rl.pause();
const editCallback = async (error, answer) => {
rl.resume();
if (error) {
setError(error.toString());
}
else {
setStatus('loading');
const finalAnswer = answer ?? '';
const isValid = await validate(finalAnswer);
if (isValid === true) {
setError(undefined);
setStatus('done');
done(finalAnswer);
}
else {
if (theme.validationFailureMode === 'clear') {
setValue(config.default);
}
else {
setValue(finalAnswer);
}
setError(isValid || 'You must provide a valid value');
setStatus('idle');
}
}
};
editAsync(value, (error, answer) => void editCallback(error, answer), {
postfix,
...fileProps,
});
}
useEffect((rl) => {
if (!waitForUseInput) {
startEditor(rl);
}
}, []);
useKeypress((key, rl) => {
// Ignore keypress while our prompt is doing other processing.
if (status !== 'idle') {
return;
}
if (isEnterKey(key)) {
startEditor(rl);
}
});
const message = theme.style.message(config.message, status);
let helpTip = '';
if (status === 'loading') {
helpTip = theme.style.help('Received');
}
else if (status === 'idle') {
const enterKey = theme.style.key('enter');
helpTip = theme.style.help(`Press ${enterKey} to launch your preferred editor.`);
}
let error = '';
if (errorMsg) {
error = theme.style.error(errorMsg);
}
return [[prefix, message, helpTip].filter(Boolean).join(' '), error];
});

3
node_modules/@inquirer/editor/dist/esm/package.json generated vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"type": "module"
}