Skip to content

Commit 3ba810b

Browse files
committedMar 27, 2025
Add error boundaries
1 parent 1478d7f commit 3ba810b

File tree

5 files changed

+60
-8
lines changed

5 files changed

+60
-8
lines changed
 

‎example.ts

+24-2
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,35 @@ setTimeout(() => {
5151
setTimeout(() => {
5252
timelessConsole.count(COUNT)
5353
timelessConsole.count(COUNT)
54+
timelessConsole.purge() // removes above logs from the group
5455
timelessConsole.count(COUNT)
5556
}, 1235)
5657

5758
setTimeout(() => {
58-
autoConsoleGroup.count(COUNT)
5959
autoConsoleGroup.event('myEvent')
6060
autoConsoleGroup.label('myLabel')
61+
// no group created, as we have not logged anything
62+
}, 1486)
63+
64+
setTimeout(
65+
autoConsoleGroup.errorBoundary(() => {
66+
autoConsoleGroup.event('TypeError')
67+
autoConsoleGroup.label('errorBoundary')
68+
autoConsoleGroup.showTime(false)
69+
autoConsoleGroup.collapsed(true)
70+
autoConsoleGroup.info('This group is contained within an errorBoundary')
71+
autoConsoleGroup.info('Errors are caught and logged to the consoleGroup')
72+
throw new TypeError('Error in errorBoundary')
73+
}),
74+
1600,
75+
)
76+
77+
setTimeout(() => {
78+
autoConsoleGroup.label('myLabel') // reset as we changed it above
79+
autoConsoleGroup.collapsed(false) // reset as we changed it above
80+
autoConsoleGroup.showTime(true) // reset as we changed it above
6181
autoConsoleGroup.count(COUNT)
82+
autoConsoleGroup.event('endTimes') // this resets after each group
83+
autoConsoleGroup.label('myLabel')
6284
autoConsoleGroup.timeEnd('myTimer')
63-
}, 1486)
85+
}, 1700)

‎lib/auto-console-group.ts

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {
2-
BOLD, DEFAULT, NORMAL, NORMAL_ITALIC,
2+
BOLD, DEFAULT, ERROR, LOG, NORMAL, NORMAL_ITALIC,
33
} from './consts'
44
import {
55
AutoConsoleGroupDefaultOptions,
@@ -12,6 +12,7 @@ import wrap, { Entry, setValue } from './wrap-object'
1212

1313
type AutoConsoleGroup = Omit<Console, 'time' | 'timeEnd' | 'timeLog'> & {
1414
event: (value: string) => void
15+
errorBoundary: (func: Function) => Function
1516
label: (value: string) => void
1617
collapsed: (value: boolean) => void
1718
showTime: (value: boolean) => void
@@ -82,13 +83,26 @@ export default function (options: AutoConsoleGroupOptions = {}): AutoConsoleGrou
8283
consoleQueue.push([key, ...args])
8384
}
8485

86+
const errorBoundary = (func: Function):Function =>
87+
(...args: any[]) => {
88+
let retValue
89+
90+
try {
91+
retValue = func(...args)
92+
} catch (error) {
93+
pushToConsoleQueue(ERROR, error)
94+
}
95+
96+
return retValue
97+
}
98+
8599
function time(label = DEFAULT): void {
86100
timers[label] = performance.now()
87101
}
88102

89103
function timeLog(label = DEFAULT, ...args: any[]): void {
90104
const now = performance.now() - timers[label]
91-
pushToConsoleQueue('log', `${label}: ${now} ms`, ...args)
105+
pushToConsoleQueue(LOG, `${label}: ${now} ms`, ...args)
92106
}
93107

94108
function timeEnd(label = DEFAULT): void {
@@ -110,6 +124,7 @@ export default function (options: AutoConsoleGroupOptions = {}): AutoConsoleGrou
110124
console[key as keyof Console] as (...args: any[]) => void,
111125
]),
112126
endAutoGroup: autoConsoleGroup,
127+
errorBoundary,
113128
purge: resetConsoleQueue,
114129
time,
115130
timeEnd,

‎lib/consts.ts

+5
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,8 @@ export const BLACK = 'color: #1F1F1F;'
99
export const WHITE = 'color: #E3E3E3;'
1010

1111
export const DEFAULT = 'default'
12+
export const ERROR = 'error'
13+
export const WARN = 'warn'
14+
export const INFO = 'info'
15+
export const LOG = 'log'
16+
export const DEBUG = 'debug'

‎lib/wrap-object.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type Target = {
1313
export const setValue = (target: Target) =>
1414
(key: string): ValueEntry => [
1515
key,
16-
function (value: any): void {
16+
function (value: string | boolean): void {
1717
target[key] = value
1818
},
1919
]

‎test.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,23 @@ setTimeout(() => {
5252
setTimeout(() => {
5353
timelessConsole.count(COUNT)
5454
timelessConsole.count(COUNT)
55+
timelessConsole.event('purge')
56+
timelessConsole.purge() // removes above logs from the group
5557
timelessConsole.count(COUNT)
5658
}, 5)
5759

60+
setTimeout(collapsedConsole.errorBoundary(() => {
61+
collapsedConsole.count(COUNT)
62+
collapsedConsole.event('TYPE_ERROR')
63+
collapsedConsole.label('errorBoundary')
64+
collapsedConsole.showTime(false)
65+
collapsedConsole.count(COUNT)
66+
throw new TypeError('Error in errorBoundary')
67+
}), 6)
68+
5869
setTimeout(() => {
5970
autoConsoleGroup.count(COUNT)
60-
autoConsoleGroup.event('myEvent')
71+
autoConsoleGroup.event('endTimes')
6172
autoConsoleGroup.label('myLabel')
62-
autoConsoleGroup.count(COUNT)
6373
autoConsoleGroup.timeEnd('myTimer')
64-
}, 6)
74+
}, 7)

0 commit comments

Comments
 (0)
Please sign in to comment.