gecko-dev/devtools/client/shared/components/StackTrace.js

86 строки
2.3 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const { Component, createFactory } = require("devtools/client/shared/vendor/react");
const PropTypes = require("devtools/client/shared/vendor/react-prop-types");
const dom = require("devtools/client/shared/vendor/react-dom-factories");
const { LocalizationHelper } = require("devtools/shared/l10n");
const Frame = createFactory(require("./Frame"));
const l10n = new LocalizationHelper("devtools/client/locales/webconsole.properties");
class AsyncFrameClass extends Component {
static get propTypes() {
return {
asyncCause: PropTypes.string.isRequired
};
}
render() {
let { asyncCause } = this.props;
return dom.span(
{ className: "frame-link-async-cause" },
l10n.getFormatStr("stacktrace.asyncStack", asyncCause)
);
}
}
class StackTrace extends Component {
static get propTypes() {
return {
stacktrace: PropTypes.array.isRequired,
onViewSourceInDebugger: PropTypes.func.isRequired,
onViewSourceInScratchpad: PropTypes.func,
// Service to enable the source map feature.
sourceMapService: PropTypes.object,
};
}
render() {
let {
stacktrace,
onViewSourceInDebugger,
onViewSourceInScratchpad,
sourceMapService,
} = this.props;
let frames = [];
stacktrace.forEach((s, i) => {
if (s.asyncCause) {
frames.push("\t", AsyncFrame({
key: `${i}-asyncframe`,
asyncCause: s.asyncCause
}), "\n");
}
let source = s.filename.split(" -> ").pop();
frames.push("\t", Frame({
key: `${i}-frame`,
frame: {
functionDisplayName: s.functionName,
source,
line: s.lineNumber,
column: s.columnNumber,
},
showFunctionName: true,
showAnonymousFunctionName: true,
showFullSourceUrl: true,
onClick: (/^Scratchpad\/\d+$/.test(source))
? onViewSourceInScratchpad
: onViewSourceInDebugger,
sourceMapService,
}), "\n");
});
return dom.div({ className: "stack-trace" }, frames);
}
}
const AsyncFrame = createFactory(AsyncFrameClass);
module.exports = StackTrace;