UNPKG

next

Version:

The React Framework

61 lines (59 loc) 2.62 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "GroupedStackFrames", { enumerable: true, get: function() { return GroupedStackFrames; } }); const _jsxruntime = require("react/jsx-runtime"); const _CallStackFrame = require("./CallStackFrame"); const _CollapseIcon = require("../../icons/CollapseIcon"); const _FrameworkIcon = require("../../icons/FrameworkIcon"); function FrameworkGroup(param) { let { framework, stackFrames } = param; return /*#__PURE__*/ (0, _jsxruntime.jsxs)("details", { "data-nextjs-collapsed-call-stack-details": true, children: [ /*#__PURE__*/ (0, _jsxruntime.jsxs)("summary", { tabIndex: 10, children: [ /*#__PURE__*/ (0, _jsxruntime.jsx)(_CollapseIcon.CollapseIcon, {}), /*#__PURE__*/ (0, _jsxruntime.jsx)(_FrameworkIcon.FrameworkIcon, { framework: framework }), framework === 'react' ? 'React' : 'Next.js' ] }), stackFrames.map((frame, index)=>/*#__PURE__*/ (0, _jsxruntime.jsx)(_CallStackFrame.CallStackFrame, { frame: frame }, "call-stack-" + index)) ] }); } function GroupedStackFrames(param) { let { groupedStackFrames } = param; return /*#__PURE__*/ (0, _jsxruntime.jsx)(_jsxruntime.Fragment, { children: groupedStackFrames.map((stackFramesGroup, groupIndex)=>{ // Collapse React and Next.js frames if (stackFramesGroup.framework) { return /*#__PURE__*/ (0, _jsxruntime.jsx)(FrameworkGroup, { framework: stackFramesGroup.framework, stackFrames: stackFramesGroup.stackFrames }, "call-stack-framework-group-" + groupIndex); } return(// Don't group non React and Next.js frames stackFramesGroup.stackFrames.map((frame, frameIndex)=>/*#__PURE__*/ (0, _jsxruntime.jsx)(_CallStackFrame.CallStackFrame, { frame: frame }, "call-stack-" + groupIndex + "-" + frameIndex))); }) }); } if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') { Object.defineProperty(exports.default, '__esModule', { value: true }); Object.assign(exports.default, exports); module.exports = exports.default; } //# sourceMappingURL=GroupedStackFrames.js.map