File size: 3,628 Bytes
1e92f2d |
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 |
import type { OriginalStackFrame } from '../../../shared/stack-frame'
import { HotlinkedText } from '../hot-linked-text'
import { ExternalIcon, SourceMappingErrorIcon } from '../../icons/external'
import { getFrameSource } from '../../../shared/stack-frame'
import { useOpenInEditor } from '../../utils/use-open-in-editor'
export const CallStackFrame: React.FC<{
frame: OriginalStackFrame
}> = function CallStackFrame({ frame }) {
// TODO: ability to expand resolved frames
const f = frame.originalStackFrame ?? frame.sourceStackFrame
const hasSource = Boolean(frame.originalCodeFrame)
const open = useOpenInEditor(
hasSource
? {
file: f.file,
line1: f.line1 ?? 1,
column1: f.column1 ?? 1,
}
: undefined
)
// Formatted file source could be empty. e.g. <anonymous> will be formatted to empty string,
// we'll skip rendering the frame in this case.
const fileSource = getFrameSource(f)
if (!fileSource) {
return null
}
return (
<div
data-nextjs-call-stack-frame
data-nextjs-call-stack-frame-no-source={!hasSource}
data-nextjs-call-stack-frame-ignored={frame.ignored}
>
<div className="call-stack-frame-method-name">
<HotlinkedText text={f.methodName} />
{hasSource && (
<button
onClick={open}
className="open-in-editor-button"
aria-label={`Open ${f.methodName} in editor`}
>
<ExternalIcon width={16} height={16} />
</button>
)}
{frame.error ? (
<button
className="source-mapping-error-button"
onClick={() => console.error(frame.reason)}
title="Sourcemapping failed. Click to log cause of error."
>
<SourceMappingErrorIcon width={16} height={16} />
</button>
) : null}
</div>
<span
className="call-stack-frame-file-source"
data-has-source={hasSource}
>
{fileSource}
</span>
</div>
)
}
export const CALL_STACK_FRAME_STYLES = `
[data-nextjs-call-stack-frame-no-source] {
padding: 6px 8px;
margin-bottom: 4px;
border-radius: var(--rounded-lg);
}
[data-nextjs-call-stack-frame-no-source]:last-child {
margin-bottom: 0;
}
[data-nextjs-call-stack-frame-ignored="true"] {
opacity: 0.6;
}
[data-nextjs-call-stack-frame] {
user-select: text;
display: block;
box-sizing: border-box;
user-select: text;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
padding: 6px 8px;
border-radius: var(--rounded-lg);
}
.call-stack-frame-method-name {
display: flex;
align-items: center;
gap: 4px;
margin-bottom: 4px;
font-family: var(--font-stack-monospace);
color: var(--color-gray-1000);
font-size: var(--size-14);
font-weight: 500;
line-height: var(--size-20);
svg {
width: var(--size-16px);
height: var(--size-16px);
}
}
.open-in-editor-button, .source-mapping-error-button {
display: flex;
align-items: center;
justify-content: center;
border-radius: var(--rounded-full);
padding: 4px;
color: var(--color-font);
svg {
width: var(--size-16);
height: var(--size-16);
}
&:focus-visible {
outline: var(--focus-ring);
outline-offset: -2px;
}
&:hover {
background: var(--color-gray-100);
}
}
.call-stack-frame-file-source {
color: var(--color-gray-900);
font-size: var(--size-14);
line-height: var(--size-20);
}
`
|