@kya-os/cli 0.1.0-beta.13 → 0.1.0-beta.14
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/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +11 -96
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/test-components.d.ts +5 -0
- package/dist/commands/test-components.d.ts.map +1 -0
- package/dist/commands/test-components.js +86 -0
- package/dist/commands/test-components.js.map +1 -0
- package/dist/components/agent-card.d.ts +14 -0
- package/dist/components/agent-card.d.ts.map +1 -0
- package/dist/components/agent-card.js +170 -0
- package/dist/components/agent-card.js.map +1 -0
- package/dist/components/box.d.ts +14 -0
- package/dist/components/box.d.ts.map +1 -0
- package/dist/components/box.js +222 -0
- package/dist/components/box.js.map +1 -0
- package/dist/components/index.d.ts +12 -0
- package/dist/components/index.d.ts.map +1 -0
- package/dist/components/index.js +13 -0
- package/dist/components/index.js.map +1 -0
- package/dist/components/messages.d.ts +62 -0
- package/dist/components/messages.d.ts.map +1 -0
- package/dist/components/messages.js +146 -0
- package/dist/components/messages.js.map +1 -0
- package/dist/components/types.d.ts +51 -0
- package/dist/components/types.d.ts.map +1 -0
- package/dist/components/types.js +5 -0
- package/dist/components/types.js.map +1 -0
- package/dist/effects/__tests__/effects.test.js +27 -23
- package/dist/effects/__tests__/effects.test.js.map +1 -1
- package/dist/effects/cli-integration.js +3 -3
- package/dist/effects/cli-integration.js.map +1 -1
- package/dist/effects/index.d.ts +9 -12
- package/dist/effects/index.d.ts.map +1 -1
- package/dist/effects/index.js +69 -34
- package/dist/effects/index.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Box Drawing Component
|
|
3
|
+
* Creates beautiful boxes for CLI output without dependencies
|
|
4
|
+
*/
|
|
5
|
+
import chalk from "chalk";
|
|
6
|
+
// Predefined box styles
|
|
7
|
+
const BOX_STYLES = {
|
|
8
|
+
single: {
|
|
9
|
+
topLeft: "┌",
|
|
10
|
+
topRight: "┐",
|
|
11
|
+
bottomLeft: "└",
|
|
12
|
+
bottomRight: "┘",
|
|
13
|
+
horizontal: "─",
|
|
14
|
+
vertical: "│",
|
|
15
|
+
topJunction: "┬",
|
|
16
|
+
bottomJunction: "┴",
|
|
17
|
+
leftJunction: "├",
|
|
18
|
+
rightJunction: "┤",
|
|
19
|
+
cross: "┼",
|
|
20
|
+
},
|
|
21
|
+
double: {
|
|
22
|
+
topLeft: "╔",
|
|
23
|
+
topRight: "╗",
|
|
24
|
+
bottomLeft: "╚",
|
|
25
|
+
bottomRight: "╝",
|
|
26
|
+
horizontal: "═",
|
|
27
|
+
vertical: "║",
|
|
28
|
+
topJunction: "╦",
|
|
29
|
+
bottomJunction: "╩",
|
|
30
|
+
leftJunction: "╠",
|
|
31
|
+
rightJunction: "╣",
|
|
32
|
+
cross: "╬",
|
|
33
|
+
},
|
|
34
|
+
round: {
|
|
35
|
+
topLeft: "╭",
|
|
36
|
+
topRight: "╮",
|
|
37
|
+
bottomLeft: "╰",
|
|
38
|
+
bottomRight: "╯",
|
|
39
|
+
horizontal: "─",
|
|
40
|
+
vertical: "│",
|
|
41
|
+
topJunction: "┬",
|
|
42
|
+
bottomJunction: "┴",
|
|
43
|
+
leftJunction: "├",
|
|
44
|
+
rightJunction: "┤",
|
|
45
|
+
cross: "┼",
|
|
46
|
+
},
|
|
47
|
+
heavy: {
|
|
48
|
+
topLeft: "┏",
|
|
49
|
+
topRight: "┓",
|
|
50
|
+
bottomLeft: "┗",
|
|
51
|
+
bottomRight: "┛",
|
|
52
|
+
horizontal: "━",
|
|
53
|
+
vertical: "┃",
|
|
54
|
+
topJunction: "┳",
|
|
55
|
+
bottomJunction: "┻",
|
|
56
|
+
leftJunction: "┣",
|
|
57
|
+
rightJunction: "┫",
|
|
58
|
+
cross: "╋",
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* Wrap text to fit within a specific width
|
|
63
|
+
*/
|
|
64
|
+
function wrapText(text, width) {
|
|
65
|
+
const words = text.split(" ");
|
|
66
|
+
const lines = [];
|
|
67
|
+
let currentLine = "";
|
|
68
|
+
for (const word of words) {
|
|
69
|
+
if (currentLine.length + word.length + 1 <= width) {
|
|
70
|
+
currentLine += (currentLine ? " " : "") + word;
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
if (currentLine)
|
|
74
|
+
lines.push(currentLine);
|
|
75
|
+
currentLine = word;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
if (currentLine)
|
|
79
|
+
lines.push(currentLine);
|
|
80
|
+
return lines.length > 0 ? lines : [""];
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Pad text to center it within a given width
|
|
84
|
+
*/
|
|
85
|
+
function stripAnsi(text) {
|
|
86
|
+
// Simple ANSI code removal - matches most common ANSI escape sequences
|
|
87
|
+
return text.replace(/\x1b\[[0-9;]*m/g, '');
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* Pad text to center it within a given width
|
|
91
|
+
*/
|
|
92
|
+
function centerText(text, width) {
|
|
93
|
+
const textLength = stripAnsi(text).length;
|
|
94
|
+
if (textLength >= width)
|
|
95
|
+
return text;
|
|
96
|
+
const totalPadding = width - textLength;
|
|
97
|
+
const leftPadding = Math.floor(totalPadding / 2);
|
|
98
|
+
const rightPadding = totalPadding - leftPadding;
|
|
99
|
+
return " ".repeat(leftPadding) + text + " ".repeat(rightPadding);
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Pad text to align it within a given width
|
|
103
|
+
*/
|
|
104
|
+
function alignText(text, width, align = 'left') {
|
|
105
|
+
const textLength = stripAnsi(text).length;
|
|
106
|
+
if (textLength >= width)
|
|
107
|
+
return text.substring(0, width);
|
|
108
|
+
switch (align) {
|
|
109
|
+
case 'center':
|
|
110
|
+
return centerText(text, width);
|
|
111
|
+
case 'right':
|
|
112
|
+
return " ".repeat(width - textLength) + text;
|
|
113
|
+
default:
|
|
114
|
+
return text + " ".repeat(width - textLength);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Create a box around content
|
|
119
|
+
*/
|
|
120
|
+
export function createBox(content, options = {}) {
|
|
121
|
+
const { padding = 1, margin = 0, style = "single", width = 72, align = "left", title, titleAlign = "center", borderColor, } = options;
|
|
122
|
+
// Get box style
|
|
123
|
+
const boxStyle = typeof style === "string" ? BOX_STYLES[style] : style;
|
|
124
|
+
if (!boxStyle)
|
|
125
|
+
throw new Error(`Unknown box style: ${style}`);
|
|
126
|
+
// Prepare content lines
|
|
127
|
+
const lines = Array.isArray(content) ? content : content.split("\n");
|
|
128
|
+
const contentWidth = width - 2 - (padding * 2); // Account for borders and padding
|
|
129
|
+
// Wrap and align lines
|
|
130
|
+
const wrappedLines = [];
|
|
131
|
+
for (const line of lines) {
|
|
132
|
+
if (stripAnsi(line).length > contentWidth) {
|
|
133
|
+
wrappedLines.push(...wrapText(line, contentWidth));
|
|
134
|
+
}
|
|
135
|
+
else {
|
|
136
|
+
wrappedLines.push(line);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
// Build the box
|
|
140
|
+
const result = [];
|
|
141
|
+
// Apply margin
|
|
142
|
+
for (let i = 0; i < margin; i++) {
|
|
143
|
+
result.push("");
|
|
144
|
+
}
|
|
145
|
+
// Top border with optional title
|
|
146
|
+
let topBorder = boxStyle.topLeft + boxStyle.horizontal.repeat(width - 2) + boxStyle.topRight;
|
|
147
|
+
if (title) {
|
|
148
|
+
const titleText = ` ${title} `;
|
|
149
|
+
const titleLength = stripAnsi(titleText).length;
|
|
150
|
+
const borderLength = width - 2;
|
|
151
|
+
if (titleLength < borderLength - 4) {
|
|
152
|
+
let titlePosition;
|
|
153
|
+
switch (titleAlign) {
|
|
154
|
+
case 'center':
|
|
155
|
+
titlePosition = Math.floor((borderLength - titleLength) / 2);
|
|
156
|
+
break;
|
|
157
|
+
case 'right':
|
|
158
|
+
titlePosition = borderLength - titleLength - 2;
|
|
159
|
+
break;
|
|
160
|
+
default:
|
|
161
|
+
titlePosition = 2;
|
|
162
|
+
}
|
|
163
|
+
topBorder =
|
|
164
|
+
boxStyle.topLeft +
|
|
165
|
+
boxStyle.horizontal.repeat(titlePosition) +
|
|
166
|
+
titleText +
|
|
167
|
+
boxStyle.horizontal.repeat(borderLength - titlePosition - titleLength) +
|
|
168
|
+
boxStyle.topRight;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
if (borderColor) {
|
|
172
|
+
result.push(chalk.hex(borderColor)(topBorder));
|
|
173
|
+
}
|
|
174
|
+
else {
|
|
175
|
+
result.push(topBorder);
|
|
176
|
+
}
|
|
177
|
+
// Add top padding
|
|
178
|
+
for (let i = 0; i < padding; i++) {
|
|
179
|
+
const paddingLine = boxStyle.vertical + " ".repeat(width - 2) + boxStyle.vertical;
|
|
180
|
+
result.push(borderColor ? chalk.hex(borderColor)(paddingLine) : paddingLine);
|
|
181
|
+
}
|
|
182
|
+
// Add content lines
|
|
183
|
+
for (const line of wrappedLines) {
|
|
184
|
+
const alignedContent = alignText(line, contentWidth, align);
|
|
185
|
+
const paddedContent = " ".repeat(padding) + alignedContent + " ".repeat(padding);
|
|
186
|
+
const contentLine = boxStyle.vertical + paddedContent + boxStyle.vertical;
|
|
187
|
+
if (borderColor) {
|
|
188
|
+
// Color only the borders, not the content
|
|
189
|
+
result.push(chalk.hex(borderColor)(boxStyle.vertical) +
|
|
190
|
+
paddedContent +
|
|
191
|
+
chalk.hex(borderColor)(boxStyle.vertical));
|
|
192
|
+
}
|
|
193
|
+
else {
|
|
194
|
+
result.push(contentLine);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
// Add bottom padding
|
|
198
|
+
for (let i = 0; i < padding; i++) {
|
|
199
|
+
const paddingLine = boxStyle.vertical + " ".repeat(width - 2) + boxStyle.vertical;
|
|
200
|
+
result.push(borderColor ? chalk.hex(borderColor)(paddingLine) : paddingLine);
|
|
201
|
+
}
|
|
202
|
+
// Bottom border
|
|
203
|
+
const bottomBorder = boxStyle.bottomLeft + boxStyle.horizontal.repeat(width - 2) + boxStyle.bottomRight;
|
|
204
|
+
result.push(borderColor ? chalk.hex(borderColor)(bottomBorder) : bottomBorder);
|
|
205
|
+
// Apply margin
|
|
206
|
+
for (let i = 0; i < margin; i++) {
|
|
207
|
+
result.push("");
|
|
208
|
+
}
|
|
209
|
+
return result.join("\n");
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Create a divider line
|
|
213
|
+
*/
|
|
214
|
+
export function createDivider(width = 72, style = 'single') {
|
|
215
|
+
const chars = {
|
|
216
|
+
single: "─",
|
|
217
|
+
double: "═",
|
|
218
|
+
heavy: "━",
|
|
219
|
+
};
|
|
220
|
+
return chars[style].repeat(width);
|
|
221
|
+
}
|
|
222
|
+
//# sourceMappingURL=box.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"box.js","sourceRoot":"","sources":["../../src/components/box.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI Components
|
|
3
|
+
* Reusable UI components for beautiful CLI output
|
|
4
|
+
*/
|
|
5
|
+
export * from "./types.js";
|
|
6
|
+
export * from "./box.js";
|
|
7
|
+
export * from "./agent-card.js";
|
|
8
|
+
export * from "./messages.js";
|
|
9
|
+
export { createBox, createDivider, } from "./box.js";
|
|
10
|
+
export { createAgentCard, createCompactAgentCard, } from "./agent-card.js";
|
|
11
|
+
export { createSuccessMessage, createErrorMessage, createWarningMessage, createInfoMessage, createStepIndicator, createProgressBar, createBulletList, createNumberedList, createKeyValueDisplay, createSpinner, } from "./messages.js";
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAG9B,OAAO,EACL,SAAS,EACT,aAAa,GACd,MAAM,UAAU,CAAC;AAElB,OAAO,EACL,eAAe,EACf,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EACL,oBAAoB,EACpB,kBAAkB,EAClB,oBAAoB,EACpB,iBAAiB,EACjB,mBAAmB,EACnB,iBAAiB,EACjB,gBAAgB,EAChB,kBAAkB,EAClB,qBAAqB,EACrB,aAAa,GACd,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI Components
|
|
3
|
+
* Reusable UI components for beautiful CLI output
|
|
4
|
+
*/
|
|
5
|
+
export * from "./types.js";
|
|
6
|
+
export * from "./box.js";
|
|
7
|
+
export * from "./agent-card.js";
|
|
8
|
+
export * from "./messages.js";
|
|
9
|
+
// Re-export commonly used functions for convenience
|
|
10
|
+
export { createBox, createDivider, } from "./box.js";
|
|
11
|
+
export { createAgentCard, createCompactAgentCard, } from "./agent-card.js";
|
|
12
|
+
export { createSuccessMessage, createErrorMessage, createWarningMessage, createInfoMessage, createStepIndicator, createProgressBar, createBulletList, createNumberedList, createKeyValueDisplay, createSpinner, } from "./messages.js";
|
|
13
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAE9B,oDAAoD;AACpD,OAAO,EACL,SAAS,EACT,aAAa,GACd,MAAM,UAAU,CAAC;AAElB,OAAO,EACL,eAAe,EACf,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EACL,oBAAoB,EACpB,kBAAkB,EAClB,oBAAoB,EACpB,iBAAiB,EACjB,mBAAmB,EACnB,iBAAiB,EACjB,gBAAgB,EAChB,kBAAkB,EAClB,qBAAqB,EACrB,aAAa,GACd,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Message Components
|
|
3
|
+
* Reusable components for displaying various types of messages
|
|
4
|
+
*/
|
|
5
|
+
import { MessageOptions } from "./types.js";
|
|
6
|
+
/**
|
|
7
|
+
* Create a success message
|
|
8
|
+
*/
|
|
9
|
+
export declare function createSuccessMessage(message: string, options?: MessageOptions): string;
|
|
10
|
+
/**
|
|
11
|
+
* Create an error message
|
|
12
|
+
*/
|
|
13
|
+
export declare function createErrorMessage(message: string, options?: MessageOptions): string;
|
|
14
|
+
/**
|
|
15
|
+
* Create a warning message
|
|
16
|
+
*/
|
|
17
|
+
export declare function createWarningMessage(message: string, options?: MessageOptions): string;
|
|
18
|
+
/**
|
|
19
|
+
* Create an info message
|
|
20
|
+
*/
|
|
21
|
+
export declare function createInfoMessage(message: string, options?: MessageOptions): string;
|
|
22
|
+
/**
|
|
23
|
+
* Create a step indicator
|
|
24
|
+
*/
|
|
25
|
+
export declare function createStepIndicator(currentStep: number, totalSteps: number, stepName: string, status?: "pending" | "active" | "completed" | "failed"): string;
|
|
26
|
+
/**
|
|
27
|
+
* Create a progress bar
|
|
28
|
+
*/
|
|
29
|
+
export declare function createProgressBar(current: number, total: number, width?: number, options?: {
|
|
30
|
+
showPercentage?: boolean;
|
|
31
|
+
showNumbers?: boolean;
|
|
32
|
+
}): string;
|
|
33
|
+
/**
|
|
34
|
+
* Create a list of items with bullets
|
|
35
|
+
*/
|
|
36
|
+
export declare function createBulletList(items: string[], options?: {
|
|
37
|
+
bullet?: string;
|
|
38
|
+
indent?: number;
|
|
39
|
+
color?: string;
|
|
40
|
+
}): string;
|
|
41
|
+
/**
|
|
42
|
+
* Create a numbered list
|
|
43
|
+
*/
|
|
44
|
+
export declare function createNumberedList(items: string[], options?: {
|
|
45
|
+
startNumber?: number;
|
|
46
|
+
indent?: number;
|
|
47
|
+
color?: string;
|
|
48
|
+
}): string;
|
|
49
|
+
/**
|
|
50
|
+
* Create a key-value display
|
|
51
|
+
*/
|
|
52
|
+
export declare function createKeyValueDisplay(data: Record<string, string | undefined>, options?: {
|
|
53
|
+
separator?: string;
|
|
54
|
+
keyColor?: string;
|
|
55
|
+
valueColor?: string;
|
|
56
|
+
maxKeyLength?: number;
|
|
57
|
+
}): string;
|
|
58
|
+
/**
|
|
59
|
+
* Create a spinner with text (static version for display)
|
|
60
|
+
*/
|
|
61
|
+
export declare function createSpinner(text: string, frame?: number): string;
|
|
62
|
+
//# sourceMappingURL=messages.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/components/messages.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE5C;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,GAAE,cAAmB,GAAG,MAAM,CAoB1F;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,GAAE,cAAmB,GAAG,MAAM,CAmBxF;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,GAAE,cAAmB,GAAG,MAAM,CAmB1F;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,GAAE,cAAmB,GAAG,MAAM,CAmBvF;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,EAChB,MAAM,GAAE,SAAS,GAAG,QAAQ,GAAG,WAAW,GAAG,QAAmB,GAC/D,MAAM,CAoBR;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,MAAM,EACf,KAAK,EAAE,MAAM,EACb,KAAK,GAAE,MAAW,EAClB,OAAO,GAAE;IAAE,cAAc,CAAC,EAAE,OAAO,CAAC;IAAC,WAAW,CAAC,EAAE,OAAO,CAAA;CAAO,GAChE,MAAM,CAoBR;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAC9B,KAAK,EAAE,MAAM,EAAE,EACf,OAAO,GAAE;IAAE,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAO,GACjE,MAAM,CASR;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,MAAM,EAAE,EACf,OAAO,GAAE;IAAE,WAAW,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAO,GACtE,MAAM,CASR;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,EACxC,OAAO,GAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAC;IAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CAAO,GAClG,MAAM,CAsBR;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,MAAM,CAIrE"}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Message Components
|
|
3
|
+
* Reusable components for displaying various types of messages
|
|
4
|
+
*/
|
|
5
|
+
import chalk from "chalk";
|
|
6
|
+
import { createBox } from "./box.js";
|
|
7
|
+
/**
|
|
8
|
+
* Create a success message
|
|
9
|
+
*/
|
|
10
|
+
export function createSuccessMessage(message, options = {}) {
|
|
11
|
+
const { title = "Success", icon = "✅", color = "00ff00", boxStyle = "round", width = 60, } = options;
|
|
12
|
+
return createBox(`${icon} ${message}`, {
|
|
13
|
+
title,
|
|
14
|
+
style: boxStyle,
|
|
15
|
+
borderColor: color,
|
|
16
|
+
width,
|
|
17
|
+
padding: 1,
|
|
18
|
+
align: "center",
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Create an error message
|
|
23
|
+
*/
|
|
24
|
+
export function createErrorMessage(message, options = {}) {
|
|
25
|
+
const { title = "Error", icon = "❌", color = "ff0000", boxStyle = "double", width = 60, } = options;
|
|
26
|
+
return createBox(chalk.red(`${icon} ${message}`), {
|
|
27
|
+
title: chalk.red(title),
|
|
28
|
+
style: boxStyle,
|
|
29
|
+
borderColor: color,
|
|
30
|
+
width,
|
|
31
|
+
padding: 1,
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Create a warning message
|
|
36
|
+
*/
|
|
37
|
+
export function createWarningMessage(message, options = {}) {
|
|
38
|
+
const { title = "Warning", icon = "⚠️", color = "ffff00", boxStyle = "single", width = 60, } = options;
|
|
39
|
+
return createBox(chalk.yellow(`${icon} ${message}`), {
|
|
40
|
+
title: chalk.yellow(title),
|
|
41
|
+
style: boxStyle,
|
|
42
|
+
borderColor: color,
|
|
43
|
+
width,
|
|
44
|
+
padding: 1,
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Create an info message
|
|
49
|
+
*/
|
|
50
|
+
export function createInfoMessage(message, options = {}) {
|
|
51
|
+
const { title = "Info", icon = "ℹ️", color = "00ffff", boxStyle = "single", width = 60, } = options;
|
|
52
|
+
return createBox(chalk.cyan(`${icon} ${message}`), {
|
|
53
|
+
title: chalk.cyan(title),
|
|
54
|
+
style: boxStyle,
|
|
55
|
+
borderColor: color,
|
|
56
|
+
width,
|
|
57
|
+
padding: 1,
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Create a step indicator
|
|
62
|
+
*/
|
|
63
|
+
export function createStepIndicator(currentStep, totalSteps, stepName, status = "active") {
|
|
64
|
+
const icons = {
|
|
65
|
+
pending: "○",
|
|
66
|
+
active: "◉",
|
|
67
|
+
completed: "✓",
|
|
68
|
+
failed: "✗",
|
|
69
|
+
};
|
|
70
|
+
const colors = {
|
|
71
|
+
pending: chalk.gray,
|
|
72
|
+
active: chalk.cyan,
|
|
73
|
+
completed: chalk.green,
|
|
74
|
+
failed: chalk.red,
|
|
75
|
+
};
|
|
76
|
+
const icon = icons[status];
|
|
77
|
+
const colorFn = colors[status];
|
|
78
|
+
const progress = `[${currentStep}/${totalSteps}]`;
|
|
79
|
+
return colorFn(`${icon} ${progress} ${stepName}`);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Create a progress bar
|
|
83
|
+
*/
|
|
84
|
+
export function createProgressBar(current, total, width = 30, options = {}) {
|
|
85
|
+
const { showPercentage = true, showNumbers = true } = options;
|
|
86
|
+
const percentage = Math.round((current / total) * 100);
|
|
87
|
+
const filled = Math.round((current / total) * width);
|
|
88
|
+
const empty = width - filled;
|
|
89
|
+
const bar = chalk.green("█".repeat(filled)) + chalk.gray("░".repeat(empty));
|
|
90
|
+
let result = `[${bar}]`;
|
|
91
|
+
if (showPercentage) {
|
|
92
|
+
result += ` ${percentage}%`;
|
|
93
|
+
}
|
|
94
|
+
if (showNumbers) {
|
|
95
|
+
result += ` (${current}/${total})`;
|
|
96
|
+
}
|
|
97
|
+
return result;
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Create a list of items with bullets
|
|
101
|
+
*/
|
|
102
|
+
export function createBulletList(items, options = {}) {
|
|
103
|
+
const { bullet = "•", indent = 2, color } = options;
|
|
104
|
+
const colorFn = color ? chalk.hex(color) : (s) => s;
|
|
105
|
+
const indentStr = " ".repeat(indent);
|
|
106
|
+
return items
|
|
107
|
+
.map((item) => `${indentStr}${colorFn(bullet)} ${item}`)
|
|
108
|
+
.join("\n");
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Create a numbered list
|
|
112
|
+
*/
|
|
113
|
+
export function createNumberedList(items, options = {}) {
|
|
114
|
+
const { startNumber = 1, indent = 2, color } = options;
|
|
115
|
+
const colorFn = color ? chalk.hex(color) : (s) => s;
|
|
116
|
+
const indentStr = " ".repeat(indent);
|
|
117
|
+
return items
|
|
118
|
+
.map((item, index) => `${indentStr}${colorFn(`${startNumber + index}.`)} ${item}`)
|
|
119
|
+
.join("\n");
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Create a key-value display
|
|
123
|
+
*/
|
|
124
|
+
export function createKeyValueDisplay(data, options = {}) {
|
|
125
|
+
const { separator = ": ", keyColor = "00ff00", valueColor = "ffffff", maxKeyLength, } = options;
|
|
126
|
+
const keyColorFn = chalk.hex(keyColor);
|
|
127
|
+
const valueColorFn = chalk.hex(valueColor);
|
|
128
|
+
// Calculate max key length if not provided
|
|
129
|
+
const actualMaxKeyLength = maxKeyLength || Math.max(...Object.keys(data).map((k) => k.length));
|
|
130
|
+
return Object.entries(data)
|
|
131
|
+
.filter(([_, value]) => value !== undefined)
|
|
132
|
+
.map(([key, value]) => {
|
|
133
|
+
const paddedKey = key.padEnd(actualMaxKeyLength);
|
|
134
|
+
return `${keyColorFn(paddedKey)}${separator}${valueColorFn(value)}`;
|
|
135
|
+
})
|
|
136
|
+
.join("\n");
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Create a spinner with text (static version for display)
|
|
140
|
+
*/
|
|
141
|
+
export function createSpinner(text, frame = 0) {
|
|
142
|
+
const frames = ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"];
|
|
143
|
+
const spinner = chalk.cyan(frames[frame % frames.length]);
|
|
144
|
+
return `${spinner} ${text}`;
|
|
145
|
+
}
|
|
146
|
+
//# sourceMappingURL=messages.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messages.js","sourceRoot":"","sources":["../../src/components/messages.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Types for CLI UI Components
|
|
3
|
+
*/
|
|
4
|
+
export interface BoxStyle {
|
|
5
|
+
topLeft?: string;
|
|
6
|
+
topRight?: string;
|
|
7
|
+
bottomLeft?: string;
|
|
8
|
+
bottomRight?: string;
|
|
9
|
+
horizontal?: string;
|
|
10
|
+
vertical?: string;
|
|
11
|
+
topJunction?: string;
|
|
12
|
+
bottomJunction?: string;
|
|
13
|
+
leftJunction?: string;
|
|
14
|
+
rightJunction?: string;
|
|
15
|
+
cross?: string;
|
|
16
|
+
}
|
|
17
|
+
export interface BoxOptions {
|
|
18
|
+
padding?: number;
|
|
19
|
+
margin?: number;
|
|
20
|
+
style?: BoxStyle | 'single' | 'double' | 'round' | 'heavy';
|
|
21
|
+
width?: number;
|
|
22
|
+
align?: 'left' | 'center' | 'right';
|
|
23
|
+
title?: string;
|
|
24
|
+
titleAlign?: 'left' | 'center' | 'right';
|
|
25
|
+
borderColor?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface TextOptions {
|
|
28
|
+
color?: string;
|
|
29
|
+
bold?: boolean;
|
|
30
|
+
italic?: boolean;
|
|
31
|
+
underline?: boolean;
|
|
32
|
+
dim?: boolean;
|
|
33
|
+
}
|
|
34
|
+
export interface AgentData {
|
|
35
|
+
name: string;
|
|
36
|
+
description?: string;
|
|
37
|
+
did: string;
|
|
38
|
+
publicKey?: string;
|
|
39
|
+
privateKey?: string;
|
|
40
|
+
agentSlug?: string;
|
|
41
|
+
claimUrl?: string;
|
|
42
|
+
profileUrl?: string;
|
|
43
|
+
}
|
|
44
|
+
export interface MessageOptions {
|
|
45
|
+
title?: string;
|
|
46
|
+
icon?: string;
|
|
47
|
+
color?: string;
|
|
48
|
+
boxStyle?: BoxStyle | 'single' | 'double' | 'round' | 'heavy';
|
|
49
|
+
width?: number;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/components/types.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,WAAW,QAAQ;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,UAAU;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,CAAC;IAC3D,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAC;IACzC,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,GAAG,CAAC,EAAE,OAAO,CAAC;CACf;AAED,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,cAAc;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,CAAC;IAC9D,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/components/types.ts"],"names":[],"mappings":"AAAA;;GAEG"}
|