Skip to content

Commit 0442011

Browse files
dgozmanCommit Bot
authored and
Commit Bot
committed
Reland of [DevTools] Show icon in top toolbar when Node target is available (patchset #1 id:1 of https://codereview.chromium.org/2932703002/ )
Reason for revert: Fixed the original crash cause Original issue's description: > Revert of [DevTools] Show icon in top toolbar when Node target is available (patchset #3 id:40001 of https://codereview.chromium.org/2890973002/ ) > > Reason for revert: > See issue 727517 > > Original issue's description: > > [DevTools] Show icon in top toolbar when Node target is available > > > > Clicking on it opens dedicated Node frontend. > > > > BUG=706916 > > > > Review-Url: https://codereview.chromium.org/2890973002 > > Cr-Commit-Position: refs/heads/master@{#472739} > > Committed: https://chromium.googlesource.com/chromium/src/+/ad3ffab411cc396ffb20c1d35dcff6de038f14b4 > > [email protected] > # Not skipping CQ checks because original CL landed more than 1 days ago. > BUG=706916 > > Review-Url: https://codereview.chromium.org/2932703002 > Cr-Commit-Position: refs/heads/master@{#478017} > Committed: https://chromium.googlesource.com/chromium/src/+/24309d877571d159bc14f871671ff0630d6f8d32 [email protected] # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=706916,727517 Review-Url: https://codereview.chromium.org/2939173002 Cr-Commit-Position: refs/heads/master@{#479882}
1 parent 910881f commit 0442011

8 files changed

+78
-52
lines changed

BUILD.gn

+2
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,7 @@ all_devtools_files = [
305305
"front_end/main/GCActionDelegate.js",
306306
"front_end/main/Main.js",
307307
"front_end/main/module.json",
308+
"front_end/main/nodeIcon.css",
308309
"front_end/main/remoteDebuggingTerminatedScreen.css",
309310
"front_end/main/renderingOptions.css",
310311
"front_end/main/RenderingOptions.js",
@@ -823,6 +824,7 @@ devtools_image_files = [
823824
"front_end/Images/ic_warning_black_18dp.svg",
824825
"front_end/Images/navigationControls.png",
825826
"front_end/Images/navigationControls_2x.png",
827+
"front_end/Images/nodeIcon.png",
826828
"front_end/Images/popoverArrows.png",
827829
"front_end/Images/profileGroupIcon.png",
828830
"front_end/Images/profileIcon.png",

front_end/Images/nodeIcon.png

1.63 KB
Loading

front_end/main/Main.js

+31
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,37 @@ Main.Main.MainMenuItem = class {
729729
}
730730
};
731731

732+
/**
733+
* @implements {UI.ToolbarItem.Provider}
734+
*/
735+
Main.Main.NodeIndicator = class {
736+
constructor() {
737+
var element = createElement('div');
738+
var shadowRoot = UI.createShadowRootWithCoreStyles(element, 'main/nodeIcon.css');
739+
this._element = shadowRoot.createChild('div', 'node-icon');
740+
element.addEventListener('click', () => InspectorFrontendHost.openNodeFrontend(), false);
741+
this._button = new UI.ToolbarItem(element);
742+
this._button.setTitle(Common.UIString('Open dedicated DevTools for Node.js'));
743+
SDK.targetManager.addEventListener(SDK.TargetManager.Events.AvailableNodeTargetsChanged, this._update, this);
744+
this._button.setVisible(false);
745+
this._update();
746+
}
747+
748+
_update() {
749+
this._element.classList.toggle('inactive', !SDK.targetManager.availableNodeTargetsCount());
750+
if (SDK.targetManager.availableNodeTargetsCount())
751+
this._button.setVisible(true);
752+
}
753+
754+
/**
755+
* @override
756+
* @return {?UI.ToolbarItem}
757+
*/
758+
item() {
759+
return this._button;
760+
}
761+
};
762+
732763
Main.NetworkPanelIndicator = class {
733764
constructor() {
734765
// TODO: we should not access network from other modules.

front_end/main/module.json

+8
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,13 @@
202202
"location": "main-toolbar-left",
203203
"order": 100
204204
},
205+
{
206+
"type": "@UI.ToolbarItem.Provider",
207+
"className": "Main.Main.NodeIndicator",
208+
"order": 2,
209+
"location": "main-toolbar-left",
210+
"condition": "!nodeFrontend"
211+
},
205212
{
206213
"type": "@UI.ToolbarItem.Provider",
207214
"className": "Main.Main.WarningErrorCounter",
@@ -441,6 +448,7 @@
441448
],
442449
"resources": [
443450
"errorWarningCounter.css",
451+
"nodeIcon.css",
444452
"remoteDebuggingTerminatedScreen.css",
445453
"renderingOptions.css",
446454
"targetCrashedScreen.css"

front_end/main/nodeIcon.css

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright 2017 The Chromium Authors. All rights reserved.
3+
* Use of this source code is governed by a BSD-style license that can be
4+
* found in the LICENSE file.
5+
*/
6+
7+
.node-icon {
8+
width: 28px;
9+
height: 26px;
10+
background-image: url(Images/nodeIcon.png);
11+
background-size: 17px 17px;
12+
background-repeat: no-repeat;
13+
background-position: center;
14+
opacity: 0.8;
15+
}
16+
17+
.node-icon:hover {
18+
opacity: 1.0;
19+
}
20+
21+
.node-icon.inactive {
22+
filter: grayscale(100%);
23+
}

front_end/sdk/TargetManager.js

+13-10
Original file line numberDiff line numberDiff line change
@@ -328,9 +328,9 @@ SDK.TargetManager = class extends Common.Object {
328328
_connectAndCreateMainTarget() {
329329
if (Runtime.queryParam('nodeFrontend')) {
330330
var target = new SDK.Target(
331-
this, 'main', Common.UIString('Node'), SDK.Target.Capability.Target, this._createMainConnection.bind(this),
331+
this, 'main', Common.UIString('Node.js'), SDK.Target.Capability.Target, this._createMainConnection.bind(this),
332332
null);
333-
target.setInspectedURL('Node');
333+
target.setInspectedURL('Node.js');
334334
this._childTargetManagers.set(target, new SDK.ChildTargetManager(this, target));
335335
Host.userMetrics.actionTaken(Host.UserMetrics.Action.ConnectToNodeJSFromFrontend);
336336
return;
@@ -410,13 +410,15 @@ SDK.ChildTargetManager = class {
410410
if (Runtime.experiments.isEnabled('autoAttachToCrossProcessSubframes'))
411411
this._targetAgent.setAttachToFrames(true);
412412

413-
if (!parentTarget.parentTarget())
413+
if (!parentTarget.parentTarget()) {
414414
this._targetAgent.setDiscoverTargets(true);
415-
416-
if (Runtime.queryParam('nodeFrontend') && !this._parentTarget.parentTarget()) {
417-
InspectorFrontendHost.setDevicesUpdatesEnabled(true);
418-
InspectorFrontendHost.events.addEventListener(
419-
InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, this._devicesDiscoveryConfigChanged, this);
415+
if (Runtime.queryParam('nodeFrontend')) {
416+
InspectorFrontendHost.setDevicesUpdatesEnabled(true);
417+
InspectorFrontendHost.events.addEventListener(
418+
InspectorFrontendHostAPI.Events.DevicesDiscoveryConfigChanged, this._devicesDiscoveryConfigChanged, this);
419+
} else {
420+
this._targetAgent.setRemoteLocations([{host: 'localhost', port: 9229}]);
421+
}
420422
}
421423
}
422424

@@ -429,7 +431,8 @@ SDK.ChildTargetManager = class {
429431
for (var address of config.networkDiscoveryConfig) {
430432
var parts = address.split(':');
431433
var port = parseInt(parts[1], 10);
432-
locations.push({host: parts[0] || 'localhost', port: port || 9229});
434+
if (parts[0] && port)
435+
locations.push({host: parts[0], port: port});
433436
}
434437
this._targetAgent.setRemoteLocations(locations);
435438
}
@@ -513,7 +516,7 @@ SDK.ChildTargetManager = class {
513516
attachedToTarget(targetInfo, waitingForDebugger) {
514517
var targetName = '';
515518
if (targetInfo.type === 'node') {
516-
targetName = Common.UIString('Node: %s', targetInfo.url);
519+
targetName = Common.UIString('Node.js: %s', targetInfo.url);
517520
} else if (targetInfo.type !== 'iframe') {
518521
var parsedURL = targetInfo.url.asParsedURL();
519522
targetName =

front_end/sources/ThreadsSidebarPane.js

+1-28
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,7 @@ Sources.ThreadsSidebarPane = class extends UI.VBox {
1616
this._list = new UI.ListControl(this._items, this, UI.ListMode.NonViewport);
1717
this.contentElement.appendChild(this._list.element);
1818

19-
this._availableNodeTargetsElement = this.contentElement.createChild('div', 'hidden available-node-targets');
20-
2119
UI.context.addFlavorChangeListener(SDK.Target, this._targetFlavorChanged, this);
22-
23-
SDK.targetManager.addEventListener(
24-
SDK.TargetManager.Events.AvailableNodeTargetsChanged, this._availableNodeTargetsChanged, this);
25-
this._availableNodeTargetsChanged();
26-
2720
SDK.targetManager.observeModels(SDK.DebuggerModel, this);
2821
}
2922

@@ -32,27 +25,7 @@ Sources.ThreadsSidebarPane = class extends UI.VBox {
3225
*/
3326
static shouldBeShown() {
3427
var minJSTargets = Runtime.queryParam('nodeFrontend') ? 1 : 2;
35-
if (SDK.targetManager.models(SDK.DebuggerModel).length >= minJSTargets)
36-
return true;
37-
return !!SDK.targetManager.availableNodeTargetsCount();
38-
}
39-
40-
_availableNodeTargetsChanged() {
41-
var count = SDK.targetManager.availableNodeTargetsCount();
42-
if (!count) {
43-
this._availableNodeTargetsElement.classList.add('hidden');
44-
return;
45-
}
46-
this._availableNodeTargetsElement.removeChildren();
47-
this._availableNodeTargetsElement.createTextChild(
48-
count === 1 ? Common.UIString('Node instance available.') :
49-
Common.UIString('%d Node instances available.', count));
50-
var link = this._availableNodeTargetsElement.createChild('span', 'link');
51-
link.textContent = Common.UIString('Connect');
52-
link.addEventListener('click', () => {
53-
InspectorFrontendHost.openNodeFrontend();
54-
}, false);
55-
this._availableNodeTargetsElement.classList.remove('hidden');
28+
return SDK.targetManager.models(SDK.DebuggerModel).length >= minJSTargets;
5629
}
5730

5831
/**

front_end/sources/threadsSidebarPane.css

-14
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,6 @@
44
* found in the LICENSE file.
55
*/
66

7-
.available-node-targets {
8-
height: 22px;
9-
display: flex;
10-
align-items: center;
11-
justify-content: flex-start;
12-
padding-left: 20px;
13-
border-top: 1px solid #eee;
14-
font-style: italic;
15-
}
16-
17-
.available-node-targets > span {
18-
margin-left: 5px;
19-
}
20-
217
.thread-item {
228
padding: 3px 8px 3px 20px;
239
position: relative;

0 commit comments

Comments
 (0)