summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_addSidebarTab.js
blob: d7c810d3c623a72209534a93e2b8ebd7db405692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

const TEST_URI =
  "data:text/html;charset=UTF-8," + "<h1>browser_inspector_addtabbar.js</h1>";

const CONTENT_TEXT = "Hello World!";

/**
 * Verify InspectorPanel.addSidebarTab() API that can be consumed
 * by DevTools extensions as well as DevTools code base.
 */
add_task(async function () {
  const { inspector } = await openInspectorForURL(TEST_URI);

  const { Component, createFactory } = inspector.React;
  const dom = require("resource://devtools/client/shared/vendor/react-dom-factories.js");
  const { div } = dom;

  info("Adding custom panel.");

  // Define custom side-panel.
  class myTabPanel extends Component {
    render() {
      return div({ className: "my-tab-panel" }, CONTENT_TEXT);
    }
  }
  let tabPanel = createFactory(myTabPanel);

  // Append custom panel (tab) into the Inspector panel and
  // make sure it's selected by default (the last arg = true).
  inspector.addSidebarTab("myPanel", "My Panel", tabPanel, true);
  is(
    inspector.sidebar.getCurrentTabID(),
    "myPanel",
    "My Panel is selected by default"
  );

  // Define another custom side-panel.
  class myTabPanel2 extends Component {
    render() {
      return div({ className: "my-tab-panel2" }, "Another Content");
    }
  }
  tabPanel = createFactory(myTabPanel2);

  // Append second panel, but don't select it by default.
  inspector.addSidebarTab("myPanel", "My Panel", tabPanel, false);
  is(
    inspector.sidebar.getCurrentTabID(),
    "myPanel",
    "My Panel is selected by default"
  );

  // Check the the panel content is properly rendered.
  const tabPanelNode = inspector.panelDoc.querySelector(".my-tab-panel");
  is(
    tabPanelNode.textContent,
    CONTENT_TEXT,
    "Side panel content has been rendered."
  );
});