-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.ts
More file actions
169 lines (154 loc) · 4.08 KB
/
header.ts
File metadata and controls
169 lines (154 loc) · 4.08 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
/**
* @fileoverview Console header/banner formatting utilities.
* Provides consistent header formatting for CLI applications.
*/
import colors from '../external/yoctocolors-cjs'
import { centerText, repeatString } from '../strings'
export interface HeaderOptions {
/**
* Width of the header in characters.
* @default 80
*/
width?: number | undefined
/**
* Character to use for border lines.
* @default '='
*/
borderChar?: string | undefined
/**
* Number of blank lines above and below title.
* @default 1
*/
padding?: number | undefined
/**
* Color to apply to the title text.
* @default 'cyan'
*/
color?:
| 'cyan'
| 'green'
| 'yellow'
| 'blue'
| 'magenta'
| 'red'
| 'gray'
| undefined
/**
* Apply bold styling to title.
* @default true
*/
bold?: boolean | undefined
}
/**
* Create a formatted header/banner with borders and centered title.
* Useful for marking the start of CLI output or creating visual sections.
*
* @param title - Title text to display in header
* @param options - Header formatting options
* @returns Formatted header string with borders and centered title
*
* @example
* ```ts
* console.log(createHeader('Socket Security Analysis', {
* width: 70,
* color: 'cyan',
* bold: true,
* padding: 2
* }))
* // Output:
* // ======================================================================
* //
* // Socket Security Analysis
* //
* // ======================================================================
* ```
*/
export function createHeader(title: string, options?: HeaderOptions): string {
const {
bold = true,
borderChar = '=',
color = 'cyan',
padding = 1,
width = 80,
} = { __proto__: null, ...options } as HeaderOptions
const border = repeatString(borderChar, width)
// Apply color and bold
let formattedTitle = title
if (color && colors[color]) {
formattedTitle = colors[color](formattedTitle)
}
if (bold && colors.bold) {
formattedTitle = colors.bold(formattedTitle)
}
const centeredTitle = centerText(formattedTitle, width)
const paddingLine = repeatString(' ', width)
const lines: string[] = [border]
for (let i = 0; i < padding; i++) {
lines.push(paddingLine)
}
lines.push(centeredTitle)
for (let i = 0; i < padding; i++) {
lines.push(paddingLine)
}
lines.push(border)
return lines.join('\n')
}
/**
* Create a simple section header without padding.
* A lighter-weight alternative to `createHeader()` for subsections.
*
* @param title - Title text to display in header
* @param options - Header formatting options
* @returns Formatted section header string
*
* @example
* ```ts
* console.log(createSectionHeader('Dependencies', {
* width: 50,
* color: 'blue'
* }))
* // Output:
* // --------------------------------------------------
* // Dependencies
* // --------------------------------------------------
* ```
*/
export function createSectionHeader(
title: string,
options?: HeaderOptions,
): string {
const {
borderChar = '-',
color = 'blue',
width = 60,
} = { __proto__: null, ...options } as HeaderOptions
return createHeader(title, {
width,
borderChar,
padding: 0,
color,
bold: false,
})
}
/**
* Print a header directly to stdout with standard formatting.
* Uses fixed width of 55 characters with `═` borders.
* Simpler alternative to `createHeader()` for quick headers.
*
* @param title - Title text to display
*
* @example
* ```ts
* printHeader('Package Analysis')
* // Output:
* // ═══════════════════════════════════════════════════
* // Package Analysis
* // ═══════════════════════════════════════════════════
* ```
*/
export function printHeader(title: string): void {
const border = repeatString('═', 55)
console.log(border)
console.log(` ${title}`)
console.log(border)
}