All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
META-INF.dirigible.dev-tools.sources.DebuggerPausedMessage.js Maven / Gradle / Ivy
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as Bindings from '../bindings/bindings.js'; // eslint-disable-line no-unused-vars
import * as Common from '../common/common.js';
import * as SDK from '../sdk/sdk.js';
import * as UI from '../ui/ui.js';
/**
* @unrestricted
*/
export class DebuggerPausedMessage {
constructor() {
this._element = createElementWithClass('div', 'paused-message flex-none');
const root = UI.Utils.createShadowRootWithCoreStyles(this._element, 'sources/debuggerPausedMessage.css');
this._contentElement = root.createChild('div');
UI.ARIAUtils.markAsPoliteLiveRegion(this._element, false);
}
/**
* @return {!Element}
*/
element() {
return this._element;
}
/**
* @param {string} description
*/
static _descriptionWithoutStack(description) {
const firstCallFrame = /^\s+at\s/m.exec(description);
return firstCallFrame ? description.substring(0, firstCallFrame.index - 1) :
description.substring(0, description.lastIndexOf('\n'));
}
/**
* @param {!SDK.DebuggerModel.DebuggerPausedDetails} details
* @return {!Promise}
*/
static async _createDOMBreakpointHitMessage(details) {
const messageWrapper = createElement('span');
const domDebuggerModel = details.debuggerModel.target().model(SDK.DOMDebuggerModel.DOMDebuggerModel);
if (!details.auxData || !domDebuggerModel) {
return messageWrapper;
}
const data = domDebuggerModel.resolveDOMBreakpointData(/** @type {!Object} */ (details.auxData));
if (!data) {
return messageWrapper;
}
const mainElement = messageWrapper.createChild('div', 'status-main');
mainElement.appendChild(UI.Icon.Icon.create('smallicon-info', 'status-icon'));
const breakpointType = BreakpointTypeNouns.get(data.type);
mainElement.appendChild(createTextNode(ls`Paused on ${breakpointType}`));
const subElement = messageWrapper.createChild('div', 'status-sub monospace');
const linkifiedNode = await Common.Linkifier.Linkifier.linkify(data.node);
subElement.appendChild(linkifiedNode);
if (data.targetNode) {
const targetNodeLink = await Common.Linkifier.Linkifier.linkify(data.targetNode);
let messageElement;
if (data.insertion) {
if (data.targetNode === data.node) {
messageElement = UI.UIUtils.formatLocalized('Child %s added', [targetNodeLink]);
} else {
messageElement = UI.UIUtils.formatLocalized('Descendant %s added', [targetNodeLink]);
}
} else {
messageElement = UI.UIUtils.formatLocalized('Descendant %s removed', [targetNodeLink]);
}
subElement.appendChild(createElement('br'));
subElement.appendChild(messageElement);
}
return messageWrapper;
}
/**
* @param {?SDK.DebuggerModel.DebuggerPausedDetails} details
* @param {!Bindings.DebuggerWorkspaceBinding.DebuggerWorkspaceBinding} debuggerWorkspaceBinding
* @param {!Bindings.BreakpointManager.BreakpointManager} breakpointManager
* @return {!Promise}
*/
async render(details, debuggerWorkspaceBinding, breakpointManager) {
this._contentElement.removeChildren();
this._contentElement.hidden = !details;
if (!details) {
return;
}
const status = this._contentElement.createChild('div', 'paused-status');
const errorLike = details.reason === SDK.DebuggerModel.BreakReason.Exception ||
details.reason === SDK.DebuggerModel.BreakReason.PromiseRejection ||
details.reason === SDK.DebuggerModel.BreakReason.Assert || details.reason === SDK.DebuggerModel.BreakReason.OOM;
let messageWrapper;
if (details.reason === SDK.DebuggerModel.BreakReason.DOM) {
messageWrapper = await DebuggerPausedMessage._createDOMBreakpointHitMessage(details);
} else if (details.reason === SDK.DebuggerModel.BreakReason.EventListener) {
let eventNameForUI = '';
if (details.auxData) {
eventNameForUI =
self.SDK.domDebuggerManager.resolveEventListenerBreakpointTitle(/** @type {!Object} */ (details.auxData));
}
messageWrapper = buildWrapper(Common.UIString.UIString('Paused on event listener'), eventNameForUI);
} else if (details.reason === SDK.DebuggerModel.BreakReason.XHR) {
messageWrapper = buildWrapper(Common.UIString.UIString('Paused on XHR or fetch'), details.auxData['url'] || '');
} else if (details.reason === SDK.DebuggerModel.BreakReason.Exception) {
const description = details.auxData['description'] || details.auxData['value'] || '';
const descriptionWithoutStack = DebuggerPausedMessage._descriptionWithoutStack(description);
messageWrapper =
buildWrapper(Common.UIString.UIString('Paused on exception'), descriptionWithoutStack, description);
} else if (details.reason === SDK.DebuggerModel.BreakReason.PromiseRejection) {
const description = details.auxData['description'] || details.auxData['value'] || '';
const descriptionWithoutStack = DebuggerPausedMessage._descriptionWithoutStack(description);
messageWrapper =
buildWrapper(Common.UIString.UIString('Paused on promise rejection'), descriptionWithoutStack, description);
} else if (details.reason === SDK.DebuggerModel.BreakReason.Assert) {
messageWrapper = buildWrapper(Common.UIString.UIString('Paused on assertion'));
} else if (details.reason === SDK.DebuggerModel.BreakReason.DebugCommand) {
messageWrapper = buildWrapper(Common.UIString.UIString('Paused on debugged function'));
} else if (details.reason === SDK.DebuggerModel.BreakReason.OOM) {
messageWrapper = buildWrapper(Common.UIString.UIString('Paused before potential out-of-memory crash'));
} else if (details.callFrames.length) {
const uiLocation = await debuggerWorkspaceBinding.rawLocationToUILocation(details.callFrames[0].location());
const breakpoint = uiLocation ? breakpointManager.findBreakpoint(uiLocation) : null;
const defaultText =
breakpoint ? Common.UIString.UIString('Paused on breakpoint') : Common.UIString.UIString('Debugger paused');
messageWrapper = buildWrapper(defaultText);
} else {
console.warn(
'ScriptsPanel paused, but callFrames.length is zero.'); // TODO remove this once we understand this case better
}
status.classList.toggle('error-reason', errorLike);
if (messageWrapper) {
status.appendChild(messageWrapper);
}
/**
* @param {string} mainText
* @param {string=} subText
* @param {string=} title
* @return {!Element}
*/
function buildWrapper(mainText, subText, title) {
const messageWrapper = createElement('span');
const mainElement = messageWrapper.createChild('div', 'status-main');
const icon = UI.Icon.Icon.create(errorLike ? 'smallicon-error' : 'smallicon-info', 'status-icon');
mainElement.appendChild(icon);
mainElement.appendChild(createTextNode(mainText));
if (subText) {
const subElement = messageWrapper.createChild('div', 'status-sub monospace');
subElement.textContent = subText;
subElement.title = title || subText;
}
return messageWrapper;
}
}
}
export const BreakpointTypeNouns = new Map([
[Protocol.DOMDebugger.DOMBreakpointType.SubtreeModified, Common.UIString.UIString('subtree modifications')],
[Protocol.DOMDebugger.DOMBreakpointType.AttributeModified, Common.UIString.UIString('attribute modifications')],
[Protocol.DOMDebugger.DOMBreakpointType.NodeRemoved, Common.UIString.UIString('node removal')],
]);