Title: [225587] trunk/Source/WebInspectorUI
Revision
225587
Author
mattba...@apple.com
Date
2017-12-06 12:28:26 -0800 (Wed, 06 Dec 2017)

Log Message

Web Inspector: Canvas Tab initial user experience is poor when no canvases exist
https://bugs.webkit.org/show_bug.cgi?id=179329
<rdar://problem/35842036>

Reviewed by Timothy Hatcher.

This patch adds a new method, WI.createNavigationItemHelp, for creating command
help to display in a message text view. The method accepts a format string and
NavigationItem, and returns a DOM element. For example,

    WI.createNavigationItemHelp("Press %s to do X.", navigationItem)

returns:

    <div class="navigation-item-help">
        Press <div class="navigation-bar"><div class="item">...</div></div> to do X.
    </div>

* Localizations/en.lproj/localizedStrings.js:
* UserInterface/Base/Main.js:

* UserInterface/Controllers/CanvasManager.js:
(WI.CanvasManager.prototype.importRecording):
Importing a recording should be a manager command with a corresponding
event, so that it's decoupled from any specific location in the UI.

* UserInterface/Views/CanvasOverviewContentView.js:
(WI.CanvasOverviewContentView):

* UserInterface/Views/CanvasTabContentView.js:
(WI.CanvasTabContentView):
(WI.CanvasTabContentView.prototype.attached):
(WI.CanvasTabContentView.prototype._recordingImportedOrStopped):
(WI.CanvasTabContentView.prototype._recordingStopped): Deleted.
(WI.CanvasTabContentView.prototype._navigationSidebarImport): Deleted.

* UserInterface/Views/Main.css:
(.message-text-view .navigation-item-help):
(.message-text-view .navigation-item-help .navigation-bar):
(.message-text-view .navigation-item-help .navigation-bar > .item):
New styles for a NavigationItem appearing inline as part of descriptive
text. Wrapped in a fake navigation bar so navigation item styles are picked up.

* UserInterface/Views/RecordingNavigationSidebarPanel.js:
(WI.RecordingNavigationSidebarPanel.prototype.initialLayout):
(WI.RecordingNavigationSidebarPanel.prototype._importNavigationItemClicked): Deleted.
Moved import code to CanvasManager.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (225586 => 225587)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-12-06 19:56:13 UTC (rev 225586)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-12-06 20:28:26 UTC (rev 225587)
@@ -1,3 +1,53 @@
+2017-12-06  Matt Baker  <mattba...@apple.com>
+
+        Web Inspector: Canvas Tab initial user experience is poor when no canvases exist
+        https://bugs.webkit.org/show_bug.cgi?id=179329
+        <rdar://problem/35842036>
+
+        Reviewed by Timothy Hatcher.
+
+        This patch adds a new method, WI.createNavigationItemHelp, for creating command
+        help to display in a message text view. The method accepts a format string and
+        NavigationItem, and returns a DOM element. For example,
+
+            WI.createNavigationItemHelp("Press %s to do X.", navigationItem)
+
+        returns:
+
+            <div class="navigation-item-help">
+                Press <div class="navigation-bar"><div class="item">...</div></div> to do X.
+            </div>
+
+        * Localizations/en.lproj/localizedStrings.js:
+        * UserInterface/Base/Main.js:
+
+        * UserInterface/Controllers/CanvasManager.js:
+        (WI.CanvasManager.prototype.importRecording):
+        Importing a recording should be a manager command with a corresponding
+        event, so that it's decoupled from any specific location in the UI.
+
+        * UserInterface/Views/CanvasOverviewContentView.js:
+        (WI.CanvasOverviewContentView):
+
+        * UserInterface/Views/CanvasTabContentView.js:
+        (WI.CanvasTabContentView):
+        (WI.CanvasTabContentView.prototype.attached):
+        (WI.CanvasTabContentView.prototype._recordingImportedOrStopped):
+        (WI.CanvasTabContentView.prototype._recordingStopped): Deleted.
+        (WI.CanvasTabContentView.prototype._navigationSidebarImport): Deleted.
+
+        * UserInterface/Views/Main.css:
+        (.message-text-view .navigation-item-help):
+        (.message-text-view .navigation-item-help .navigation-bar):
+        (.message-text-view .navigation-item-help .navigation-bar > .item):
+        New styles for a NavigationItem appearing inline as part of descriptive
+        text. Wrapped in a fake navigation bar so navigation item styles are picked up.
+
+        * UserInterface/Views/RecordingNavigationSidebarPanel.js:
+        (WI.RecordingNavigationSidebarPanel.prototype.initialLayout):
+        (WI.RecordingNavigationSidebarPanel.prototype._importNavigationItemClicked): Deleted.
+        Moved import code to CanvasManager.
+
 2017-12-06  Devin Rousso  <web...@devinrousso.com>
 
         Web Inspector: REGRESSION(r225569): CSSStyleDetailsSidebarPanel no longer exists

Modified: trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js (225586 => 225587)


--- trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2017-12-06 19:56:13 UTC (rev 225586)
+++ trunk/Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js	2017-12-06 20:28:26 UTC (rev 225587)
@@ -702,6 +702,7 @@
 localizedStrings["Position Y"] = "Position Y";
 localizedStrings["Prefer indent using:"] = "Prefer indent using:";
 localizedStrings["Preserve Log"] = "Preserve Log";
+localizedStrings["Press %s to load a recording from file."] = "Press %s to load a recording from file.";
 localizedStrings["Pressed"] = "Pressed";
 localizedStrings["Pretty print"] = "Pretty print";
 localizedStrings["Preview"] = "Preview";

Modified: trunk/Source/WebInspectorUI/UserInterface/Base/Main.js (225586 => 225587)


--- trunk/Source/WebInspectorUI/UserInterface/Base/Main.js	2017-12-06 19:56:13 UTC (rev 225586)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/Main.js	2017-12-06 20:28:26 UTC (rev 225587)
@@ -2250,6 +2250,28 @@
     return messageElement;
 };
 
+WI.createNavigationItemHelp = function(formatString, navigationItem)
+{
+    console.assert(typeof formatString === "string");
+    console.assert(navigationItem instanceof WI.NavigationItem);
+
+    function append(a, b) {
+        a.append(b);
+        return a;
+    }
+
+    let containerElement = document.createElement("div");
+    containerElement.className = "navigation-item-help";
+    containerElement.__navigationItem = navigationItem;
+
+    let wrapperElement = document.createElement("div");
+    wrapperElement.className = "navigation-bar";
+    wrapperElement.appendChild(navigationItem.element);
+
+    String.format(formatString, [wrapperElement], String.standardFormatters, containerElement, append);
+    return containerElement;
+};
+
 WI.createGoToArrowButton = function()
 {
     var button = document.createElement("button");

Modified: trunk/Source/WebInspectorUI/UserInterface/Controllers/CanvasManager.js (225586 => 225587)


--- trunk/Source/WebInspectorUI/UserInterface/Controllers/CanvasManager.js	2017-12-06 19:56:13 UTC (rev 225586)
+++ trunk/Source/WebInspectorUI/UserInterface/Controllers/CanvasManager.js	2017-12-06 20:28:26 UTC (rev 225587)
@@ -55,6 +55,35 @@
 
     get recordingCanvas() { return this._recordingCanvas; }
 
+    importRecording()
+    {
+        WI.loadDataFromFile((data, filename) => {
+            if (!data)
+                return;
+
+            let payload = null;
+            try {
+                payload = JSON.parse(data);
+            } catch (e) {
+                WI.Recording.synthesizeError(e);
+                return;
+            }
+
+            let recording = WI.Recording.fromPayload(payload);
+            if (!recording) {
+                WI.Recording.synthesizeError(WI.UIString("unsupported version."));
+                return;
+            }
+
+            let extensionStart = filename.lastIndexOf(".");
+            if (extensionStart !== -1)
+                filename = filename.substring(0, extensionStart);
+            recording.createDisplayName(filename);
+
+            this.dispatchEventToListeners(WI.CanvasManager.Event.RecordingImported, {recording});
+        });
+    }
+
     startRecording(canvas, singleFrame)
     {
         console.assert(!this._recordingCanvas, "Recording already started.");
@@ -271,6 +300,7 @@
 WI.CanvasManager.Event = {
     CanvasAdded: "canvas-manager-canvas-was-added",
     CanvasRemoved: "canvas-manager-canvas-was-removed",
+    RecordingImported: "canvas-manager-recording-imported",
     RecordingStarted: "canvas-manager-recording-started",
     RecordingProgress: "canvas-manager-recording-progress",
     RecordingStopped: "canvas-manager-recording-stopped",

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CanvasOverviewContentView.js (225586 => 225587)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CanvasOverviewContentView.js	2017-12-06 19:56:13 UTC (rev 225586)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CanvasOverviewContentView.js	2017-12-06 20:28:26 UTC (rev 225587)
@@ -34,6 +34,13 @@
         descriptionElement.className = "description";
         descriptionElement.textContent = WI.UIString("Waiting for canvas contexts created by script or CSS.");
 
+        let importNavigationItem = new WI.ButtonNavigationItem("import-recording", WI.UIString("Import"), "Images/Import.svg", 15, 15);
+        importNavigationItem.buttonStyle = WI.ButtonNavigationItem.Style.ImageAndText;
+        importNavigationItem.addEventListener(WI.ButtonNavigationItem.Event.Clicked, () => { WI.canvasManager.importRecording(); });
+
+        let importHelpElement = WI.createNavigationItemHelp(WI.UIString("Press %s to load a recording from file."), importNavigationItem);
+        contentPlaceholder.appendChild(importHelpElement);
+
         super(representedObject, WI.CanvasContentView, contentPlaceholder);
 
         this.element.classList.add("canvas-overview");

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CanvasTabContentView.js (225586 => 225587)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CanvasTabContentView.js	2017-12-06 19:56:13 UTC (rev 225586)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CanvasTabContentView.js	2017-12-06 20:28:26 UTC (rev 225587)
@@ -54,7 +54,6 @@
         this.contentBrowser.navigationBar.insertNavigationItem(this._overviewNavigationItem, 2);
         this.contentBrowser.navigationBar.insertNavigationItem(new WI.DividerNavigationItem, 3);
 
-        this.navigationSidebarPanel.addEventListener(WI.RecordingNavigationSidebarPanel.Event.Import, this._navigationSidebarImport, this);
         this.navigationSidebarPanel.contentTreeOutline.addEventListener(WI.TreeOutline.Event.SelectionDidChange, this._navigationSidebarTreeOutlineSelectionChanged, this);
     }
 
@@ -141,7 +140,8 @@
 
         WI.canvasManager.addEventListener(WI.CanvasManager.Event.CanvasAdded, this._handleCanvasAdded, this);
         WI.canvasManager.addEventListener(WI.CanvasManager.Event.CanvasRemoved, this._handleCanvasRemoved, this);
-        WI.canvasManager.addEventListener(WI.CanvasManager.Event.RecordingStopped, this._recordingStopped, this);
+        WI.canvasManager.addEventListener(WI.CanvasManager.Event.RecordingImported, this._recordingImportedOrStopped, this);
+        WI.canvasManager.addEventListener(WI.CanvasManager.Event.RecordingStopped, this._recordingImportedOrStopped, this);
         WI.RecordingContentView.addEventListener(WI.RecordingContentView.Event.RecordingActionIndexChanged, this._recordingActionIndexChanged, this);
 
         let canvases = new Set(Array.from(this._canvasCollection.items).concat(WI.canvasManager.canvases));
@@ -233,13 +233,11 @@
         console.assert(false, "Unexpected representedObject.", representedObject);
     }
 
-    _recordingStopped(event)
+    _recordingImportedOrStopped(event)
     {
         let recording = event.data.recording;
-        if (!recording) {
-            // FIXME: <https://webkit.org/b/178185> Web Inspector: Canvas tab: show detailed status during canvas recording
+        if (!recording)
             return;
-        }
 
         this._recordingAdded(recording, {
             suppressShowRecording: event.data.fromConsole,
@@ -246,24 +244,6 @@
         });
     }
 
-    _navigationSidebarImport(event)
-    {
-        let {filename, payload} = event.data;
-        let recording = WI.Recording.fromPayload(payload);
-        if (!recording) {
-            WI.Recording.synthesizeError(WI.UIString("unsupported version."));
-            return;
-        }
-
-        let extensionStart = filename.lastIndexOf(".");
-        if (extensionStart !== -1)
-            filename = filename.substring(0, extensionStart);
-
-        recording.createDisplayName(filename);
-
-        this._recordingAdded(recording);
-    }
-
     _navigationSidebarTreeOutlineSelectionChanged(event)
     {
         if (!event.data.selectedElement)

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/Main.css (225586 => 225587)


--- trunk/Source/WebInspectorUI/UserInterface/Views/Main.css	2017-12-06 19:56:13 UTC (rev 225586)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/Main.css	2017-12-06 20:28:26 UTC (rev 225587)
@@ -189,6 +189,29 @@
     font-size: var(--message-text-view-font-size);
 }
 
+.message-text-view .navigation-item-help {
+    display: inline-flex;
+    padding: 10px 0;
+}
+
+.message-text-view .navigation-item-help .navigation-bar {
+    height: auto;
+    padding: 0 4px;
+    border-bottom: none;
+    overflow: visible;
+}
+
+.message-text-view .navigation-item-help .navigation-bar > .item {
+    /* Adjust button top by the border thickness, to keep button text on the baseline. */
+    position: relative;
+    top: -1px;
+
+    padding: 1px 4px;
+    font-size: 11px;
+    border-radius: 4px;
+    border: solid 1px var(--border-color);
+}
+
 .message-text-view.error {
     color: var(--error-text-color);
 }

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/RecordingNavigationSidebarPanel.js (225586 => 225587)


--- trunk/Source/WebInspectorUI/UserInterface/Views/RecordingNavigationSidebarPanel.js	2017-12-06 19:56:13 UTC (rev 225586)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/RecordingNavigationSidebarPanel.js	2017-12-06 20:28:26 UTC (rev 225587)
@@ -134,7 +134,7 @@
 
         this._importButton = importNavigationItem.element.appendChild(document.createElement("button"));
         this._importButton.textContent = importLabel;
-        this._importButton.addEventListener("click", this._importNavigationItemClicked.bind(this));
+        this._importButton.addEventListener("click", () => { WI.canvasManager.importRecording(); });
 
         const exportLabel = WI.UIString("Export");
         let exportNavigationItem = new WI.NavigationItem("recording-export", role, exportLabel);
@@ -171,24 +171,6 @@
 
     // Private
 
-    _importNavigationItemClicked(event)
-    {
-        WI.loadDataFromFile((data, filename) => {
-            if (!data)
-                return;
-
-            let payload = null;
-            try {
-                payload = JSON.parse(data);
-            } catch (e) {
-                WI.Recording.synthesizeError(e);
-                return;
-            }
-
-            this.dispatchEventToListeners(WI.RecordingNavigationSidebarPanel.Event.Import, {payload, filename});
-        });
-    }
-
     _exportNavigationItemClicked(event)
     {
         if (!this._recording || !this.contentBrowser || !this.contentBrowser.currentContentView || !this.contentBrowser.currentContentView.supportsSave)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to