-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.ts
341 lines (299 loc) · 10.3 KB
/
index.ts
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
import { inspect } from 'node:util';
import { stripAnsi } from './ansi';
export type LogMethodInput =
| string
| number
| boolean
| object
| null
| undefined;
export type LogMethod<K extends string> = (
...input: LogMethodInput[]
) => Logger<K>;
export type Logger<K extends string> = {
[a in K]: LogMethod<K>;
};
export type RuntimeOrValue<K> = (() => K) | K;
export type PadType = 'PREPEND' | 'APPEND' | 'NONE';
export type SharedConfig = {
/**
* The character to be used when a line needs to be broken
* This overrides any value set by the logger
* @default "├-"
*/
newLine?: string;
/**
* The character to be used when the last line needs to be broken
* This overrides any value set by the logger
* @default "└-"
*/
newLineEnd?: string;
/**
* The divider between the label and the payload
* This overrides any value set by the logger
* @default " "
*/
divider?: string;
/**
* The character used to pad
* @default " "
*/
paddingChar?: string;
};
export type LogConfig<M extends string> = SharedConfig & {
/**
* Wether to add spacing in front or behind the specified label
* @default "PREPEND"
*/
padding: PadType;
/**
* Util.inspect color highlighting
* @default true
*/
color: boolean;
/**
* List of tags to be ignored
* @default [] (empty array)
* @example ['debug'] (ignores all debug messages)
*/
exclude: RuntimeOrValue<string[]>;
/**
* List of tags to only log
* If defined overrides `exclude`
* @default undefined
* @example ['error', 'important', 'success'] (only logs error, important, and success)
*/
filter: RuntimeOrValue<string[] | undefined>;
/**
* A list of functions to handle input pre processing
* @default []
* @example [(in) => in]
*/
preProcessors?: ((input: LogMethodInput[], method: { name: M } & MethodConfig, logger: LogConfig<M>) => LogMethodInput[])[];
/**
* A list of functions to handle input post processing
* @default []
* @example [(lines) => lines]
*/
postProcessors?: ((lines: string[], method: { name: M } & MethodConfig, logger: LogConfig<M>) => string[])[];
};
/**
* Dynamically generated label.
* complexity: O(n)
*/
export type RuntimeLabel = {
/**
* Label length to be reserved for calculated answer
*/
length: number;
/**
* Executed on log, value returned becomes label
*/
calculate: () => string;
};
/**
* Pre generated label.
* complexity: O(1)
*/
export type StaticLabel = string;
export type MethodConfig = SharedConfig & {
/**
* The label used to prefix log messages.
* Used for organization and sorting purposes.
* May contain ansi color codes!
*/
label: StaticLabel | RuntimeLabel;
/**
* An array of tags to be used for filtering
* @default ['default']
* @example ['default', 'debug']
*/
tags?: string[];
};
export type GenericLogFunction = (...input: unknown[]) => any;
export type MethodList<A extends string> = { [k in A]: string | MethodConfig };
export const resolveRuntimeOrValue = <K>(rov: RuntimeOrValue<K>) => {
return (typeof rov === 'function' ? (rov as Function)() : rov) as K;
};
export const pad = (
text: string,
length: number,
paddingStrategy: PadType,
paddingChar: string
) => {
if (paddingStrategy === 'NONE') return text;
const calculatedPadding = paddingChar.repeat(
''.padStart(length - stripAnsi(text).length, ' ').length
);
if (paddingStrategy === 'APPEND') return text + calculatedPadding;
if (paddingStrategy === 'PREPEND') return calculatedPadding + text;
};
/**
* @name createLogger
* Creates a logger with the specified methods and config
* Able to output to a logging function
* @param methods Config of logging methods
* @param [config] Logger-wide configuration
* @param [func=console.log] Custom logging function
*/
export const createLogger = <A extends string>(
methods: MethodList<A> | MethodList<A>[],
config: Partial<LogConfig<A>> = {},
outputFunctions: GenericLogFunction | GenericLogFunction[] = console.log
) => {
const functions: GenericLogFunction[] = Array.isArray(outputFunctions)
? outputFunctions
: [outputFunctions];
// If methods is a MethodList, use it, otherwise grab a random instance
const finalMethods: MethodList<A> = Array.isArray(methods)
? methods[Math.floor(Math.random() * methods.length)]
: methods;
// Fill default values incase not overridden by arg
const completeConfig: Required<LogConfig<A>> = {
divider: ' ',
newLine: '├-',
newLineEnd: '└-',
padding: 'PREPEND',
paddingChar: ' ',
color: true,
exclude: [],
filter: undefined,
preProcessors: [],
postProcessors: [],
...config,
};
// Infer the default method config
const inferredMethodConfig: MethodConfig = {
label: '-',
newLine: completeConfig.newLine,
newLineEnd: completeConfig.newLineEnd,
divider: completeConfig.divider,
paddingChar: completeConfig.paddingChar,
tags: ['default'],
};
// Convert all string methods to MethodConfig
const completeMethods: { [k in A]: Required<MethodConfig> } = Object.assign(
{},
...(Object.keys(finalMethods) as A[]).map((a) => {
if (typeof finalMethods[a] == 'string') {
// Return an inferred MethodConfig
return {
[a]: {
...inferredMethodConfig,
label: finalMethods[a],
},
};
}
// Return the MethodConfig that was provided
return {
[a]: {
...inferredMethodConfig,
...(finalMethods[a] as MethodConfig),
},
};
})
);
// Calculate the max length
const maxLength = Math.max(
...(Object.values(completeMethods) as Required<MethodConfig>[]).map(
(a) =>
typeof a.label === 'string'
? stripAnsi(a.label).length
: a.label.length
)
);
const logger = {};
return Object.assign(
logger,
...Object.keys(completeMethods).map((methodHandle) => {
const method = completeMethods[methodHandle as A];
const [paddedText, newLinePadding, newLineEndPadding] = [
typeof method.label === 'string'
? pad(
method.label,
maxLength,
completeConfig.padding,
method.paddingChar
)
: '',
pad(
method.newLine,
maxLength,
completeConfig.padding,
method.paddingChar
),
pad(
method.newLineEnd,
maxLength,
completeConfig.padding,
method.paddingChar
),
];
return {
[methodHandle]: (...s: LogMethodInput[]) => {
const filter = resolveRuntimeOrValue(completeConfig.filter);
const exclude = resolveRuntimeOrValue(
completeConfig.exclude
);
// Decide wether this should be filtered or not
if (
filter && filter !== undefined
? !method.tags.some((r) =>
(filter as string[]).includes(r)
)
: method.tags.some((r) => exclude.includes(r))
)
return;
let inputs = s;
for(const processor of completeConfig.preProcessors) {
inputs = processor(inputs, { name: methodHandle as A, ...method }, completeConfig);
}
// Generate the value we should output
const lines = inputs
.map((value) => {
if (typeof value !== 'string') {
value = inspect(
value,
false,
3,
completeConfig.color
);
}
return value;
})
.join('\n')
.split('\n')
.map(
(value, index, array) =>
(index == 0
? (typeof method.label === 'string'
? paddedText
: pad(
method.label.calculate(),
maxLength,
completeConfig.padding,
method.paddingChar
)) + method.divider
: (array.length - 1 == index
? newLineEndPadding
: newLinePadding) + method.divider) +
value
);
let parsedLines = lines;
for(const processor of completeConfig.postProcessors) {
parsedLines = processor(parsedLines, { name: methodHandle as A, ...method }, completeConfig);
}
const value = parsedLines.join('\n');
// Run each of the final functions
for (const a of functions) a(value);
return logger;
},
};
})
) as Logger<A>;
};
export const shimLog = <A extends string>(logger: Logger<A>, logName: A) => {
Object.defineProperty(console, 'log', {
value: logger[logName],
});
};