/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import CodeBlock from '../components/CodeBlock.js'; import { applyStyles } from '../utils/dom/css.js'; import { absolutifyCaret } from '../utils/dom/absolutifyCaret.js'; import { ScriptLine } from '../utils/stack-frame.js'; import generateAnsiHTML from '../utils/generateAnsiHTML.js'; import { codeFrameColumns } from '@babel/code-frame'; import { base16Themes } from 'react-base16-styling'; const theme = base16Themes.nicinabox; interface StackFrameCodeBlockPropsType { lines: ScriptLine[]; lineNum: number; columnNum: number | null | undefined; contextSize: number; main: boolean; } function StackFrameCodeBlock(props: StackFrameCodeBlockPropsType) { const { lines, lineNum, columnNum, contextSize, main } = props; const sourceCode: string[] = []; let whiteSpace = Infinity; lines.forEach(function (e) { const { content: text } = e; const m = /^\s*/.exec(text); if (text === '') { return; } if (m && m[0]) { whiteSpace = Math.min(whiteSpace, m[0].length); } else { whiteSpace = 0; } }); lines.forEach(function (e) { let { content: text } = e; const { lineNumber: line } = e; if (isFinite(whiteSpace)) { text = text.substring(whiteSpace); } sourceCode[line - 1] = text; }); const ansiHighlight = codeFrameColumns( sourceCode.join('\n'), { start: { line: lineNum, column: columnNum == null ? 0 : columnNum - (isFinite(whiteSpace) ? whiteSpace : 0), }, }, { forceColor: true, linesAbove: contextSize, linesBelow: contextSize, }, ); const htmlHighlight = generateAnsiHTML(ansiHighlight); const code = document.createElement('code'); code.innerHTML = htmlHighlight; absolutifyCaret(code); const ccn = code.childNodes; // eslint-disable-next-line oLoop: for (let index = 0; index < ccn.length; ++index) { const node = ccn[index]; const ccn2 = node.childNodes; for (let index2 = 0; index2 < ccn2.length; ++index2) { const lineNode = ccn2[index2]; const text = (lineNode as HTMLElement).innerText; if (text == null) { continue; } if (!text.includes(` ${lineNum} |`)) { continue; } // $FlowFixMe applyStyles(node as HTMLElement, { backgroundColor: main ? theme.base02 : theme.base01, }); // eslint-disable-next-line break oLoop; } } return ; } export default StackFrameCodeBlock;