-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcitty.ts
More file actions
215 lines (192 loc) · 5.88 KB
/
citty.ts
File metadata and controls
215 lines (192 loc) · 5.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import { ArgDef, defineCommand } from 'citty';
import * as zsh from './zsh';
import * as bash from './bash';
import * as fish from './fish';
import * as powershell from './powershell';
import { Completion } from './index';
import type {
ArgsDef,
CommandDef,
PositionalArgDef,
SubCommandsDef,
} from 'citty';
import { generateFigSpec } from './fig';
import { CompletionConfig, noopHandler, TabFunction } from './shared';
function quoteIfNeeded(path: string) {
return path.includes(' ') ? `'${path}'` : path;
}
const execPath = process.execPath;
const processArgs = process.argv.slice(1);
const quotedExecPath = quoteIfNeeded(execPath);
const quotedProcessArgs = processArgs.map(quoteIfNeeded);
const quotedProcessExecArgs = process.execArgv.map(quoteIfNeeded);
const x = `${quotedExecPath} ${quotedProcessExecArgs.join(' ')} ${quotedProcessArgs[0]}`;
function isConfigPositional<T extends ArgsDef>(config: CommandDef<T>) {
return (
config.args &&
Object.values(config.args).some((arg) => arg.type === 'positional')
);
}
async function handleSubCommands(
completion: Completion,
subCommands: SubCommandsDef,
parentCmd?: string,
completionConfig?: Record<string, CompletionConfig>
) {
for (const [cmd, resolvableConfig] of Object.entries(subCommands)) {
const config = await resolve(resolvableConfig);
const meta = await resolve(config.meta);
const subCommands = await resolve(config.subCommands);
const subCompletionConfig = completionConfig?.[cmd];
if (!meta || typeof meta?.description !== 'string') {
throw new Error('Invalid meta or missing description.');
}
const isPositional = isConfigPositional(config);
const name = completion.addCommand(
cmd,
meta.description,
isPositional ? [false] : [],
subCompletionConfig?.handler ?? noopHandler,
parentCmd
);
// Handle nested subcommands recursively
if (subCommands) {
await handleSubCommands(
completion,
subCommands,
name,
subCompletionConfig?.subCommands
);
}
// Handle arguments
if (config.args) {
for (const [argName, argConfig] of Object.entries(config.args)) {
const conf = argConfig as ArgDef;
if (conf.type === 'positional') {
continue;
}
// Extract alias from the config if it exists
const shortFlag =
typeof conf === 'object' && 'alias' in conf
? Array.isArray(conf.alias)
? conf.alias[0]
: conf.alias
: undefined;
completion.addOption(
name,
`--${argName}`,
conf.description ?? '',
subCompletionConfig?.options?.[argName]?.handler ?? noopHandler,
shortFlag
);
}
}
}
}
const tab: TabFunction<CommandDef<ArgsDef>> = async (
instance,
completionConfig
) => {
const completion = new Completion();
const meta = await resolve(instance.meta);
if (!meta) {
throw new Error('Invalid meta.');
}
const name = meta.name;
if (!name) {
throw new Error('Invalid meta or missing name.');
}
const subCommands = await resolve(instance.subCommands);
if (!subCommands) {
throw new Error('Invalid or missing subCommands.');
}
const root = '';
const isPositional = isConfigPositional(instance);
completion.addCommand(
root,
meta?.description ?? '',
isPositional ? [false] : [],
completionConfig?.handler ?? noopHandler
);
await handleSubCommands(
completion,
subCommands,
undefined,
completionConfig?.subCommands
);
if (instance.args) {
for (const [argName, argConfig] of Object.entries(instance.args)) {
const conf = argConfig as PositionalArgDef;
completion.addOption(
root,
`--${argName}`,
conf.description ?? '',
completionConfig?.options?.[argName]?.handler ?? noopHandler
);
}
}
const completeCommand = defineCommand({
meta: {
name: 'complete',
description: 'Generate shell completion scripts',
},
args: {
shell: {
type: 'positional',
description: 'Shell type (zsh, bash, fish, powershell, fig)',
required: false,
},
},
async run(ctx) {
let shell: string | undefined = ctx.rawArgs[0];
const extra = ctx.rawArgs.slice(ctx.rawArgs.indexOf('--') + 1);
if (shell === '--') {
shell = undefined;
}
switch (shell) {
case 'zsh': {
const script = zsh.generate(name, x);
console.log(script);
break;
}
case 'bash': {
const script = bash.generate(name, x);
console.log(script);
break;
}
case 'fish': {
const script = fish.generate(name, x);
console.log(script);
break;
}
case 'powershell': {
const script = powershell.generate(name, x);
console.log(script);
break;
}
case 'fig': {
const spec = await generateFigSpec(instance);
console.log(spec);
break;
}
default: {
// const args = (await resolve(instance.args))!;
// const parsed = parseArgs(extra, args);
// TODO: this is not ideal at all
// const matchedCommand = parsed._.join(' ').trim(); //TODO: this was passed to parse line 170
// TODO: `command lint i` does not work because `lint` and `i` are potential commands
// instead the potential command should only be `lint`
// and `i` is the to be completed part
return completion.parse(extra);
}
}
},
});
subCommands.complete = completeCommand;
return completion;
};
export default tab;
type Resolvable<T> = T | Promise<T> | (() => T) | (() => Promise<T>);
async function resolve<T>(resolvable: Resolvable<T>): Promise<T> {
return resolvable instanceof Function ? await resolvable() : await resolvable;
}