-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
305 lines (271 loc) · 7.39 KB
/
index.js
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
'use strict'
/**
* youch-terminal
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
const { platform, cwd } = process
const { inspect } = require('util')
const wordwrap = require('wordwrap')
const { relative } = require('path')
const { fileURLToPath } = require('url')
const stringWidth = require('string-width')
const { dim, yellow, green, red, cyan } = require('kleur')
const TERMINAL_SIZE = process.stdout.columns
const POINTER = platform === 'win32' && !process.env.WT_SESSION ? '>' : '❯'
const DASH = platform === 'win32' && !process.env.WT_SESSION ? '⁃' : '⁃'
const CWD = cwd()
function getRelativePath(filePath) {
/**
* Node.js error stack is all messed up. Some lines have file info
* enclosed in parenthesis and some are not
*/
filePath = filePath.replace('async file:', 'file:')
return relative(CWD, filePath.startsWith('file:') ? fileURLToPath(filePath) : filePath)
}
/**
* Pulls the main frame from the frames stack
*
* @method mainFrame
*
* @param {Array} frames
*
* @return {Object|Null}
*/
function mainFrame (frames) {
return frames.find((frame) => frame.isApp) || null
}
/**
* Filter only relevant frames that are supposed to
* be printed on the screen
*
* @method filterNativeFrames
*
* @param {Array} frames
* @param {Object} mainFrame
*
* @return {void}
*/
function filterNativeFrames (frames, mainFrame) {
return frames.filter((frame) => {
return (frame.isApp || frame.isModule) && (!mainFrame || frame.file !== mainFrame.file || frame.line !== mainFrame.line)
})
}
/**
* Returns the method name for a given frame
*
* @method frameMethod
*
* @param {Object} frame
*
* @return {String}
*/
function frameMethod (frame) {
return frame.callee || 'anonymous'
}
/**
* Returns the white space for a given char based
* upon the biggest char.
*
* This is done to keep rows symmetrical.
*
* @method whiteSpace
*
* @param {String} biggestChar
* @param {String} currentChar
*
* @return {String}
*/
function whiteSpace (biggestChar, currentChar) {
let whiteSpace = ''
const whiteSpaceLength = biggestChar.length - currentChar.length
for (let i = 0; i <= whiteSpaceLength; i++) {
whiteSpace += ' '
}
return whiteSpace
}
/**
* Returns the line of code with the line number
*
* @method codeLine
*
* @param {String} line
* @param {Number} counter
* @param {Number} maxCounter
* @param {Boolean} isMain
*
* @return {String}
*/
function codeLine (line, counter, maxCounter, isMain, prefix) {
const space = whiteSpace(String(maxCounter), String(counter))
if (isMain) {
return `${prefix}${red(POINTER)}${space}${red(counter)}${red('|')}${space} ${red(line)}`
}
return `${prefix} ${space}${dim(counter)}${dim('|')}${space} ${dim(line)}`
}
/**
* Returns the error message
*/
function getMessage(error, prefix, hideErrorTitle) {
let message
const wrapper = wordwrap(stringWidth(prefix) + 2, TERMINAL_SIZE)
if (!hideErrorTitle) {
message = `${prefix} ${red(wrapper(`${error.name}: ${error.message}`).trim())}`
} else {
message = `${prefix} ${red(wrapper(`${error.message}`).trim())}`
}
return [message, prefix]
}
/**
* Returns the error help text
*/
function getHelpText(error, prefix) {
let help = error.help
if (!help) {
return []
}
const wrapper = wordwrap(stringWidth(prefix) + 4, TERMINAL_SIZE)
if (Array.isArray(help)) {
return help.map((line) => {
return `${prefix} ${cyan(wrapper(`- ${line}`).trim())}`
}).concat([prefix])
}
return [`${prefix} ${cyan(help)}`, prefix]
}
/**
* Get the relative path for a given file path, from the current working directory
*
* @param {String} filePath
*
* @return {String}
*/
function getShortPath(filePath) {
const posixCwd = cwd().replace(/\\/g, '/')
return filePath.replace(`${posixCwd}/`, '')
}
/**
* Returns the main frame location with line number
*
* @method getMainFrameLocation
*
* @param {Object} frame
*
* @return {Array}
*/
function getMainFrameLocation (frame, prefix, displayShortPath) {
if (!frame) {
return []
}
const filePath = displayShortPath ? getRelativePath(frame.filePath) : frame.filePath
return [`${prefix} at ${yellow(`${frameMethod(frame)}`)} ${green(filePath)}:${green(frame.line)}`]
}
/**
* Returns the main frame code lines
*
* @method getCodeLines
*
* @param {Object} frame
*
* @return {Array}
*/
function getCodeLines (frame, prefix) {
if (!frame || !frame.context || !frame.context.line) {
return []
}
let counter = frame.context.start - 1
const pre = frame.context.pre.split('\n')
const post = frame.context.post.split('\n')
const maxCounter = counter + (pre.length + post.length + 1)
return []
.concat(pre.map((line) => {
counter++
return codeLine(line, counter, maxCounter, false, prefix)
}))
.concat([frame.context.line].map((line) => {
counter++
return codeLine(line, counter, maxCounter, true, prefix)
}))
.concat(post.map((line) => {
counter++
return codeLine(line, counter, maxCounter, false, prefix)
}))
}
/**
* Returns info for all other secondary frames
*
* @method getFramesInfo
*
* @param {Array} frames
*
* @return {Array}
*/
function getFramesInfo (frames, prefix, displayShortPath) {
const totalFrames = String(frames.length)
const padding = whiteSpace(String(totalFrames.length), '')
return frames.map((frame) => {
const filePath = displayShortPath
? getRelativePath(frame.filePath)
: frame.filePath
return [
`${prefix}${padding}${yellow(`${DASH} ${frameMethod(frame)}`)}`,
`${prefix}${padding} ${green(filePath)}${':' + green(frame.line)}`
].join('\n')
})
}
function getErrorCause(errorCause, prefix) {
return [
'',
`${prefix} ${cyan('[cause] {')}`,
inspect(errorCause).split('\n').map((line) => {
return `${prefix} ${cyan(line)}`
}).join('\n'),
`${prefix} ${cyan('}')}`
]
}
/**
* Returns a multi-line string all ready to be printed
* on console.
*
* Everything will break if error is not the output of
* youch.toJSON()
*
* @method
*
* @param {Object} json.error
* @param {String} options.prefix
* @param {Number} options.framesMaxLimit
* @param {Boolean} options.displayShortPath
* @param {Boolean} options.hideErrorTitle
* @param {Boolean} options.hideMessage
* @param {Boolean} options.displayMainFrameOnly
*
* @return {String}
*/
module.exports = ({ error }, options) => {
const firstFrame = mainFrame(error.frames)
options = { prefix: ' ', framesMaxLimit: 3, ...options }
const otherFrames = options.displayMainFrameOnly && firstFrame
? []
: getFramesInfo(
filterNativeFrames(error.frames, firstFrame),
options.prefix,
options.displayShortPath
)
return ['']
.concat(options.hideMessage ? [] : getMessage(error, options.prefix, options.hideErrorTitle))
.concat(getHelpText(error, options.prefix))
.concat(getMainFrameLocation(firstFrame, options.prefix, options.displayShortPath))
.concat(getCodeLines(firstFrame, options.prefix))
.concat(error.cause ? getErrorCause(error.cause, options.prefix) : [])
.concat(otherFrames.length ? [''] : [])
.concat(
Number.isFinite(options.framesMaxLimit)
? otherFrames.slice(0, options.framesMaxLimit)
: otherFrames
)
.concat([''])
.join('\n')
}