@clerc/plugin-help 1.0.0-beta.2 → 1.0.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -7,35 +7,131 @@ import { Plugin } from "@clerc/core";
7
7
  *
8
8
  * @template T The target type.
9
9
  */
10
- type FlagTypeFunction<T = unknown> = (value: string) => T;
10
+ type FlagTypeFunction<T = unknown> = ((value: string) => T) & {
11
+ /**
12
+ * Optional display name for the type, useful in help output.
13
+ * If provided, this will be shown instead of the function name.
14
+ */
15
+ displayName?: string;
16
+ };
11
17
  type FlagType<T = unknown> = FlagTypeFunction<T> | readonly [FlagTypeFunction<T>];
12
18
  //#endregion
13
19
  //#region src/types.d.ts
14
20
  interface Formatters {
15
21
  formatFlagType: (type: FlagType) => string;
16
22
  }
23
+ /**
24
+ * A group definition as a tuple of [key, displayName].
25
+ * The key is used in help options to assign items to groups.
26
+ * The displayName is shown in the help output.
27
+ */
28
+ type GroupDefinition = [key: string, name: string];
29
+ /**
30
+ * Options for defining groups in help output.
31
+ */
32
+ interface GroupsOptions {
33
+ /**
34
+ * Groups for commands.
35
+ * Each group is defined as `[key, name]`.
36
+ */
37
+ commands?: GroupDefinition[];
38
+ /**
39
+ * Groups for command-specific flags.
40
+ * Each group is defined as `[key, name]`.
41
+ */
42
+ flags?: GroupDefinition[];
43
+ /**
44
+ * Groups for global flags.
45
+ * Each group is defined as `[key, name]`.
46
+ */
47
+ globalFlags?: GroupDefinition[];
48
+ }
17
49
  //#endregion
18
50
  //#region src/formatters.d.ts
19
51
  declare const defaultFormatters: Formatters;
20
52
  //#endregion
21
53
  //#region src/index.d.ts
54
+ interface HelpOptions {
55
+ /**
56
+ * The group this item belongs to.
57
+ * The group must be defined in the `groups` option of `helpPlugin()`.
58
+ */
59
+ group?: string;
60
+ }
61
+ interface CommandHelpOptions extends HelpOptions {
62
+ /**
63
+ * Whether to show the command in help output.
64
+ *
65
+ * @default true
66
+ */
67
+ show?: boolean;
68
+ /**
69
+ * Notes to show in the help output.
70
+ */
71
+ notes?: string[];
72
+ /**
73
+ * Examples to show in the help output.
74
+ * Each example is a tuple of `[command, description]`.
75
+ */
76
+ examples?: [string, string][];
77
+ }
22
78
  declare module "@clerc/core" {
23
79
  interface CommandCustomOptions {
24
- help?: {
25
- showInHelp?: boolean;
26
- notes?: string[];
27
- examples?: [string, string][];
28
- };
80
+ /**
81
+ * Help options for the command.
82
+ */
83
+ help?: CommandHelpOptions;
84
+ }
85
+ interface FlagCustomOptions {
86
+ /**
87
+ * Help options for the flag.
88
+ */
89
+ help?: HelpOptions;
29
90
  }
30
91
  }
31
92
  interface HelpPluginOptions {
93
+ /**
94
+ * Whether to register the `help` command.
95
+ *
96
+ * @default true
97
+ */
32
98
  command?: boolean;
99
+ /**
100
+ * Whether to register the `--help` global flag.
101
+ *
102
+ * @default true
103
+ */
33
104
  flag?: boolean;
105
+ /**
106
+ * Whether to show help when no command is specified.
107
+ *
108
+ * @default true
109
+ */
34
110
  showHelpWhenNoCommandSpecified?: boolean;
111
+ /**
112
+ * Notes to show in the help output.
113
+ */
35
114
  notes?: string[];
115
+ /**
116
+ * Examples to show in the help output.
117
+ * Each example is a tuple of `[command, description]`.
118
+ */
36
119
  examples?: [string, string][];
120
+ /**
121
+ * A banner to show before the help output.
122
+ */
37
123
  banner?: string;
124
+ /**
125
+ * Custom formatters for rendering help.
126
+ */
38
127
  formatters?: Partial<Formatters>;
128
+ /**
129
+ * Group definitions for commands and flags.
130
+ * Groups allow organizing commands and flags into logical sections in help output.
131
+ * Each group is defined as `[key, name]` where `key` is the identifier used in help options
132
+ * and `name` is the display name shown in help output.
133
+ */
134
+ groups?: GroupsOptions;
39
135
  }
40
136
  declare const helpPlugin: ({
41
137
  command,
@@ -44,7 +140,8 @@ declare const helpPlugin: ({
44
140
  notes,
45
141
  examples,
46
142
  banner,
47
- formatters
143
+ formatters,
144
+ groups
48
145
  }?: HelpPluginOptions) => Plugin;
49
146
  //#endregion
50
- export { HelpPluginOptions, defaultFormatters, helpPlugin };
147
+ export { CommandHelpOptions, type GroupDefinition, type GroupsOptions, HelpOptions, HelpPluginOptions, defaultFormatters, helpPlugin };
package/dist/index.js CHANGED
@@ -6,8 +6,9 @@ import * as yc from "yoctocolors";
6
6
 
7
7
  //#region src/utils.ts
8
8
  function formatFlagType(type) {
9
- if (typeof type === "function") return type.name;
10
- return `Array<${type[0].name}>`;
9
+ if (typeof type === "function") return type.displayName ?? type.name;
10
+ const innerType = type[0];
11
+ return `Array<${innerType.displayName ?? innerType.name}>`;
11
12
  }
12
13
 
13
14
  //#endregion
@@ -16,17 +17,29 @@ const defaultFormatters = { formatFlagType };
16
17
 
17
18
  //#endregion
18
19
  //#region src/renderer.ts
20
+ const DEFAULT_GROUP_KEY = "default";
19
21
  const table = (items) => textTable(items, { stringLength: stringWidth });
20
22
  const splitTable = (items) => table(items).split("\n");
21
23
  const DELIMITER = yc.yellow("-");
24
+ function groupDefinitionsToMap(definitions) {
25
+ const map = /* @__PURE__ */ new Map();
26
+ if (definitions) for (const [key, name] of definitions) map.set(key, name);
27
+ return map;
28
+ }
29
+ function validateGroup(group, groupMap, itemType, itemName) {
30
+ if (group && group !== DEFAULT_GROUP_KEY && !groupMap.has(group)) throw new Error(`Unknown ${itemType} group "${group}" for "${itemName}". Available groups: ${[...groupMap.keys()].join(", ") || "(none)"}`);
31
+ }
22
32
  var HelpRenderer = class {
23
- constructor(_formatters, _cli, _globalFlags, _command, _notes, _examples) {
33
+ constructor(_formatters, _cli, _globalFlags, _command, _notes, _examples, groups) {
24
34
  this._formatters = _formatters;
25
35
  this._cli = _cli;
26
36
  this._globalFlags = _globalFlags;
27
37
  this._command = _command;
28
38
  this._notes = _notes;
29
39
  this._examples = _examples;
40
+ this._commandGroups = groupDefinitionsToMap(groups?.commands);
41
+ this._flagGroups = groupDefinitionsToMap(groups?.flags);
42
+ this._globalFlagGroups = groupDefinitionsToMap(groups?.globalFlags);
30
43
  }
31
44
  render() {
32
45
  return [
@@ -38,7 +51,7 @@ var HelpRenderer = class {
38
51
  this.renderNotes(),
39
52
  this.renderExamples()
40
53
  ].filter(isTruthy).filter((section) => section.body.length > 0).map((section) => {
41
- const body = Array.isArray(section.body) ? section.body.filter(Boolean).join("\n") : section.body;
54
+ const body = Array.isArray(section.body) ? section.body.filter((s) => s !== void 0).join("\n") : section.body;
42
55
  if (!section.title) return body;
43
56
  return `${yc.bold(section.title)}\n${body.split("\n").map((line) => ` ${line}`).join("\n")}`;
44
57
  }).join("\n\n");
@@ -49,7 +62,7 @@ var HelpRenderer = class {
49
62
  const description = command?.description ?? _description;
50
63
  const formattedCommandName = command?.name ? ` ${yc.cyan(command.name)}` : "";
51
64
  const headerLine = command ? `${yc.green(_name)}${formattedCommandName}` : `${yc.green(_name)} ${yc.yellow(formatVersion(_version))}`;
52
- const alias = command?.alias ? `Alias${toArray(command.alias).length > 1 ? "es" : ""}: ${toArray(command.alias).map((a) => yc.cyan(a)).join(", ")}` : "";
65
+ const alias = command?.alias ? `Alias${toArray(command.alias).length > 1 ? "es" : ""}: ${toArray(command.alias).map((a) => yc.cyan(a)).join(", ")}` : void 0;
53
66
  return { body: [`${headerLine}${description ? ` ${DELIMITER} ${description}` : ""}`, alias] };
54
67
  }
55
68
  renderUsage() {
@@ -57,7 +70,7 @@ var HelpRenderer = class {
57
70
  const command = this._command;
58
71
  let usage = `$ ${_scriptName}`;
59
72
  if (command) {
60
- usage += command.name ? ` ${command.name}` : "";
73
+ if (command.name) usage += ` ${command.name}`;
61
74
  if (command.parameters) usage += ` ${command.parameters.join(" ")}`;
62
75
  }
63
76
  if (command?.flags && !objectIsEmpty(command.flags) || !objectIsEmpty(this._globalFlags)) usage += " [FLAGS]";
@@ -69,42 +82,91 @@ var HelpRenderer = class {
69
82
  renderCommands() {
70
83
  const commands = this._cli._commands;
71
84
  if (this._command || commands.size === 0) return;
85
+ const groupedCommands = /* @__PURE__ */ new Map();
86
+ const defaultCommands = [];
87
+ for (const command of commands.values()) {
88
+ if (command.__isAlias || command.help?.show === false) continue;
89
+ const group = command.help?.group;
90
+ validateGroup(group, this._commandGroups, "command", command.name);
91
+ const item = [`${yc.cyan(command.name)}${command.alias ? ` (${toArray(command.alias).join(", ")})` : ""}`, command.description];
92
+ if (group && group !== DEFAULT_GROUP_KEY) {
93
+ const groupItems = groupedCommands.get(group) ?? [];
94
+ groupItems.push(item);
95
+ groupedCommands.set(group, groupItems);
96
+ } else defaultCommands.push(item);
97
+ }
98
+ const body = [];
99
+ for (const [key, name] of this._commandGroups) {
100
+ const items = groupedCommands.get(key);
101
+ if (items && items.length > 0) {
102
+ if (body.length > 0) body.push("");
103
+ body.push(`${yc.dim(name)}`);
104
+ for (const line of splitTable(items)) body.push(` ${line}`);
105
+ }
106
+ }
107
+ if (defaultCommands.length > 0) if (body.length > 0) {
108
+ body.push("");
109
+ body.push(`${yc.dim("Other")}`);
110
+ for (const line of splitTable(defaultCommands)) body.push(` ${line}`);
111
+ } else body.push(...splitTable(defaultCommands));
72
112
  return {
73
113
  title: "Commands",
74
- body: splitTable([...commands.values()].map((command) => {
75
- if (command.__isAlias || command.help?.showInHelp === false) return null;
76
- return [`${yc.cyan(command.name)}${command.alias ? ` (${toArray(command.alias).join(", ")})` : ""}`, command.description];
77
- }).filter(isTruthy))
114
+ body
78
115
  };
79
116
  }
80
- renderFlags(flags) {
81
- return Object.entries(flags).map(([name, flag]) => {
82
- const flagName = formatFlagName(name);
83
- const aliases = (Array.isArray(flag.alias) ? flag.alias : flag.alias ? [flag.alias] : []).map(formatFlagName).join(", ");
84
- const description = flag.description ?? "";
85
- const type = this._formatters.formatFlagType(flag.type);
86
- const defaultValue = flag.default === void 0 ? "" : `[default: ${String(flag.default)}]`;
87
- return [
88
- yc.blue([flagName, aliases].filter(Boolean).join(", ")),
89
- yc.gray(type),
90
- description,
91
- yc.gray(defaultValue)
92
- ];
93
- });
117
+ renderFlagItem(name, flag) {
118
+ const flagName = formatFlagName(name);
119
+ const aliases = (Array.isArray(flag.alias) ? flag.alias : flag.alias ? [flag.alias] : []).map(formatFlagName).join(", ");
120
+ const type = this._formatters.formatFlagType(flag.type);
121
+ return [
122
+ yc.blue([flagName, aliases].filter(Boolean).join(", ")),
123
+ yc.gray(type),
124
+ flag.description,
125
+ flag.default !== void 0 && yc.gray(`[default: ${String(flag.default)}]`)
126
+ ].filter(isTruthy);
127
+ }
128
+ renderGroupedFlags(flags, groupMap, itemType) {
129
+ const groupedFlags = /* @__PURE__ */ new Map();
130
+ const defaultFlags = [];
131
+ for (const [name, flag] of Object.entries(flags)) {
132
+ const group = flag.help?.group;
133
+ validateGroup(group, groupMap, itemType, name);
134
+ const item = this.renderFlagItem(name, flag);
135
+ if (group && group !== DEFAULT_GROUP_KEY) {
136
+ const groupItems = groupedFlags.get(group) ?? [];
137
+ groupItems.push(item);
138
+ groupedFlags.set(group, groupItems);
139
+ } else defaultFlags.push(item);
140
+ }
141
+ const body = [];
142
+ for (const [key, name] of groupMap) {
143
+ const items = groupedFlags.get(key);
144
+ if (items && items.length > 0) {
145
+ if (body.length > 0) body.push("");
146
+ body.push(`${yc.dim(name)}`);
147
+ for (const line of splitTable(items)) body.push(` ${line}`);
148
+ }
149
+ }
150
+ if (defaultFlags.length > 0) if (body.length > 0) {
151
+ body.push("");
152
+ body.push(`${yc.dim("Other")}`);
153
+ for (const line of splitTable(defaultFlags)) body.push(` ${line}`);
154
+ } else body.push(...splitTable(defaultFlags));
155
+ return body;
94
156
  }
95
157
  renderCommandFlags() {
96
158
  const command = this._command;
97
159
  if (!command?.flags || objectIsEmpty(command.flags)) return;
98
160
  return {
99
161
  title: "Flags",
100
- body: splitTable(this.renderFlags(command.flags))
162
+ body: this.renderGroupedFlags(command.flags, this._flagGroups, "flag")
101
163
  };
102
164
  }
103
165
  renderGlobalFlags() {
104
166
  if (!this._globalFlags || objectIsEmpty(this._globalFlags)) return;
105
167
  return {
106
168
  title: "Global Flags",
107
- body: splitTable(this.renderFlags(this._globalFlags))
169
+ body: this.renderGroupedFlags(this._globalFlags, this._globalFlagGroups, "global flag")
108
170
  };
109
171
  }
110
172
  renderNotes() {
@@ -131,7 +193,7 @@ var HelpRenderer = class {
131
193
 
132
194
  //#endregion
133
195
  //#region src/index.ts
134
- const helpPlugin = ({ command = true, flag = true, showHelpWhenNoCommandSpecified = true, notes, examples, banner, formatters } = {}) => definePlugin({ setup: (cli) => {
196
+ const helpPlugin = ({ command = true, flag = true, showHelpWhenNoCommandSpecified = true, notes, examples, banner, formatters, groups } = {}) => definePlugin({ setup: (cli) => {
135
197
  const mergedFormatters = {
136
198
  ...defaultFormatters,
137
199
  ...formatters
@@ -168,7 +230,7 @@ const helpPlugin = ({ command = true, flag = true, showHelpWhenNoCommandSpecifie
168
230
  return;
169
231
  }
170
232
  }
171
- printHelp(new HelpRenderer(mergedFormatters, cli, cli._globalFlags, command$1, command$1 ? command$1.help?.notes : effectiveNotes, command$1 ? command$1.help?.examples : effectiveExamples).render());
233
+ printHelp(new HelpRenderer(mergedFormatters, cli, cli._globalFlags, command$1, command$1 ? command$1.help?.notes : effectiveNotes, command$1 ? command$1.help?.examples : effectiveExamples, groups).render());
172
234
  });
173
235
  if (flag) cli.globalFlag("help", "Show help", {
174
236
  alias: "h",
@@ -178,8 +240,8 @@ const helpPlugin = ({ command = true, flag = true, showHelpWhenNoCommandSpecifie
178
240
  cli.interceptor({
179
241
  enforce: "pre",
180
242
  handler: async (ctx, next) => {
181
- if (ctx.flags.help) printHelp(new HelpRenderer(mergedFormatters, cli, cli._globalFlags, ctx.command, ctx.command ? ctx.command.help?.notes : effectiveNotes, ctx.command ? ctx.command.help?.examples : effectiveExamples).render());
182
- else if (showHelpWhenNoCommandSpecified && !ctx.command && ctx.rawParsed.parameters.length === 0) printHelp(new HelpRenderer(mergedFormatters, cli, cli._globalFlags, void 0, effectiveNotes, effectiveExamples).render());
243
+ if (ctx.flags.help) printHelp(new HelpRenderer(mergedFormatters, cli, cli._globalFlags, ctx.command, ctx.command ? ctx.command.help?.notes : effectiveNotes, ctx.command ? ctx.command.help?.examples : effectiveExamples, groups).render());
244
+ else if (showHelpWhenNoCommandSpecified && !ctx.command && ctx.rawParsed.parameters.length === 0) printHelp(new HelpRenderer(mergedFormatters, cli, cli._globalFlags, void 0, effectiveNotes, effectiveExamples, groups).render());
183
245
  else await next();
184
246
  }
185
247
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clerc/plugin-help",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.4",
4
4
  "author": "Ray <i@mk1.io> (https://github.com/so1ve)",
5
5
  "type": "module",
6
6
  "description": "Clerc plugin help",
@@ -49,11 +49,11 @@
49
49
  "string-width": "^8.1.0",
50
50
  "text-table": "^0.2.0",
51
51
  "yoctocolors": "^2.1.2",
52
- "@clerc/utils": "1.0.0-beta.2"
52
+ "@clerc/utils": "1.0.0-beta.4"
53
53
  },
54
54
  "devDependencies": {
55
- "@clerc/parser": "1.0.0-beta.2",
56
- "@clerc/core": "1.0.0-beta.2"
55
+ "@clerc/core": "1.0.0-beta.4",
56
+ "@clerc/parser": "1.0.0-beta.4"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "@clerc/core": "*"