Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft: convert file get-user-code-frame.js to TypeScript #983

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@types/babel__code-frame": "^7.0.2",
"jest-in-case": "^1.0.2",
"jest-serializer-ansi": "^1.0.3",
"jest-watch-select-projects": "^2.0.0",
Expand Down
65 changes: 0 additions & 65 deletions src/get-user-code-frame.js

This file was deleted.

63 changes: 63 additions & 0 deletions src/get-user-code-frame.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// type-only imports get erased at runtime
import type FS from 'fs'
import type {Chalk} from 'chalk'
import type {codeFrameColumns as CodeFrameColumnsFn} from '@babel/code-frame'

// frame has the form "at myMethod (location/to/my/file.js:10:2)"
function getCodeFrame(frame: string) {
const locationStart = frame.indexOf('(') + 1
const locationEnd = frame.indexOf(')')
const frameLocation = frame.slice(locationStart, locationEnd)

const frameLocationElements = frameLocation.split(':')
const [filename, line, column] = [
frameLocationElements[0],
parseInt(frameLocationElements[1], 10),
parseInt(frameLocationElements[2], 10),
]

// use require() instead of a top-level import for Node dependencies
// so that errors thrown when called in a browser environment can be caught and handled.
// expect to throw errors here and catch them in `getUserCodeFrame`.

const {readFileSync} = module.require('fs') as typeof FS
const rawFileContents = readFileSync(filename, 'utf-8')

const {codeFrameColumns} = module.require('@babel/code-frame') as {
codeFrameColumns: typeof CodeFrameColumnsFn
}
const codeFrame = codeFrameColumns(
rawFileContents,
{
start: {line, column},
},
{
highlightCode: true,
linesBelow: 0,
},
)

const chalk = module.require('chalk') as Chalk

return `${chalk.dim(frameLocation)}\n${codeFrame}\n`
}

function getUserCodeFrame(): string {
try {
const err = new Error()
const firstClientCodeFrame = err.stack
?.split('\n')
.slice(1) // Remove first line which has the form "Error: TypeError"
.find(frame => !frame.includes('node_modules/')) // Ignore frames from 3rd party libraries

/* istanbul ignore next */
if (!firstClientCodeFrame) return ''
return getCodeFrame(firstClientCodeFrame)
} catch {
// Expect to throw and catch errors when in the browser
// If we couldn't load dependencies, we can't generate the user trace
return ''
}
}

export {getUserCodeFrame}