gecko-dev/devtools/client/webconsole
Nicolas Chevobbe 2b3f80a3b5 Bug 1403450 - Add test cases from browser_webconsole_repeated_messages_accuracy.js to mocha; r=jdescottes.
This test had some cases that weren't covered in our mocha tests,
so we add them. In order to do that, we added a stub.
We remove the mochitest and its support file.
Since the support file was used by another test, we modify it to
add the part that was used.

MozReview-Commit-ID: AL4qWcWHQiA

--HG--
extra : rebase_source : 632e10a25c724044979d2ef4a02648e95ff88bbb
2018-02-13 07:57:24 +01:00
..
bin Bug 1359597 - Set up new console with devtools-launchpad;r=Honza 2017-04-26 08:10:04 -07:00
configs Bug 1433123 - Fix console launchpad; r=Honza. 2018-01-25 15:27:25 +01:00
local-dev Bug 1436690 - Switch react (et al.) to version 16.2, and update dependencies; r=bgrins. 2018-02-12 16:13:59 +01:00
net Bug 1434374 - Auto-rewrite Cu.import into ChromeUtils.import or require calls. r=jdescottes 2018-02-07 01:37:36 -08:00
new-console-output Bug 1403450 - Add test cases from browser_webconsole_repeated_messages_accuracy.js to mocha; r=jdescottes. 2018-02-13 07:57:24 +01:00
test Bug 1434374 - Auto-rewrite Cu.import into ChromeUtils.import or require calls. r=jdescottes 2018-02-07 01:37:36 -08:00
.babelrc Bug 1436690 - Add a webconsole tests dedicated package.json file; r=bgrins. 2018-02-12 16:11:55 +01:00
browserconsole.xul Bug 1436765 - Include global.css in browserconsole.xul to restore window border;r=Honza 2018-02-13 10:27:43 -08:00
console-commands.js Bug 1399886 - remove unnecessary invertable CSS classes on devtools icons;r=gl 2017-10-04 21:13:48 +02:00
console-output.js Bug 1339461 - script-generated patch to convert foo.indexOf(...) == -1 to foo.includes(), r=Mossop. 2018-02-01 20:45:22 +01:00
hudservice.js Bug 1436076 - Part 3 - Miscellaneous HUDService cleanups;r=nchevobbe 2018-02-07 08:22:59 -08:00
jsterm.js Bug 1435084 - Create a pref to enable the new console UI in the browser console;r=nchevobbe 2018-02-01 14:44:00 -08:00
moz.build Backed out changeset 227ff88b9848 (bug 1326937) for timing out in browser_ext_devtools_inspectedWindow_eval_bindings.js. r=backout on A CLOSED TREE 2017-07-17 20:48:25 +02:00
new-webconsole.js Bug 1435084 - Create a pref to enable the new console UI in the browser console;r=nchevobbe 2018-02-01 14:44:00 -08:00
package.json Bug 1436690 - Switch react (et al.) to version 16.2, and update dependencies; r=bgrins. 2018-02-12 16:13:59 +01:00
panel.js Bug 1411887 - Add telemetry to track console refresh time when reload a page. r=nchevobbe 2017-10-24 11:56:58 -07:00
README.md Bug 1434218 - Add a README.md file for the console; r=bgrins. 2018-02-06 11:58:53 +01:00
utils.js Bug 1364047 - Pull WebConsoleUtils.l10n into its own module;r=Honza 2017-05-17 14:07:03 -07:00
webconsole-connection-proxy.js Bug 1362036 - Implement http inspection in new console; r=nchevobbe 2017-08-30 15:16:39 +02:00
webconsole-l10n.js Bug 1364047 - Pull WebConsoleUtils.l10n into its own module;r=Honza 2017-05-17 14:07:03 -07:00
webconsole.html Bug 1409413 - Split Netmonitor styles into more files; r=rickychien 2017-11-06 16:26:28 +01:00
webconsole.js Bug 1434374 - Replace usages of Cu.import in modules (where ChromeUtils isn't defined) r=jdescottes 2018-02-05 08:43:50 -08:00
webconsole.xul Backed out changeset 227ff88b9848 (bug 1326937) for timing out in browser_ext_devtools_inspectedWindow_eval_bindings.js. r=backout on A CLOSED TREE 2017-07-17 20:48:25 +02:00
webpack.config.js Bug 1433123 - Fix console launchpad; r=Honza. 2018-01-25 15:27:25 +01:00

WebConsole

The WebConsole (webconsole) shows you all the console API calls made by scripts and alerts you when javascript errors are thrown by a script. It can also display network logs, and you can evaluate expressions using the console input, a.k.a. JsTerm. You can read more about it on MDN to learn all the features and how to use the tool.

Old / New frontend

The current console used in the toolbox is called the new frontend, and the code lives in the new-console-output/ folder. The old console code is mainly located in webconsole.js. Both frontends use the same code for the console input, also called JsTerm (see jsterm.js). The old frontend is still used for the Browser Console, but is planned to be removed in the near future (see Bug 1381834).

Run WebConsole in DevTools panel

If you want to build the WebConsole inside of the DevTools toolbox (Firefox Devtools Panels), follow the simple Firefox build document in MDN. Start your compiled firefox and open the Firefox developer tool, you can then see the WebConsole tab.

Run WebConsole in a browser tab (experimental)

Prerequisite

If you would like to run the WebConsole in the browser tab, you need following packages:

  • node >= 7.10.0 JavaScript runtime.
  • yarn >= 1.0.0 the package dependency management tool.
  • Firefox any version or build from the source code.

Run WebConsole

Navigate to the mozilla-central/devtools/client/webconsole folder with your terminal. Note that this folder is available after mozilla-central was cloned in order to get a local copy of the repository. Then run the following commands:

# Install packages
yarn install

# Create a dev server instance for hosting webconsole on browser
yarn start

Open localhost:8000 to see what we call the launchpad. The UI that let you start a new Firefox window which will be the target (or debuggee). Launchpad will communicate with Firefox (the remote debugging server) and list all opened tabs from Firefox. You can then navigate to a website you want in the target window, and you should see it appears in the localhost:8000 page. Clicking on it will start the WebConsole in the browser tab.

How it works

The WebConsole uses webpack and several packages from devtools-core to run as a normal web page. The WebConsole uses Mozilla remote debugging protocol to fetch messages and execute commands against Firefox.

Open localhost:8000 in any browser to see the interface. Devtools Launchpad will communicate with Firefox (the remote debugging server) and list all opened tabs from Firefox. Click one of the browser tab entry, now you can see the WebConsole runs in a browser tab.

DevTools shared modules

When working on console running via launchpad, you may need to modify code on external modules. Besides the third party modules, here are modules required for the WebConsole (hosted under the devtools-core Github repo, which contains modules shared across Devtools).

Changes to those modules need to be done on Github, using the Pull Request workflow. Then, a new version of the modified package need to be released on npm so the version number can be updated in WebConsole's package.json. Some modules have a release process, look for RELEASE.md file in the module folder, or ask a maintainer if you are unsure about the release process.

Code Structure

Top level files are used to launch the WebConsole inside of the DevTools toolbox or run in the browser tab (experimental). The WebConsole source is mainly located in the new-console-output/ folder, the same code base is used to run in both environments.

Run inside of the DevTools toolbox

Files used to run the WebConsole inside of the DevTools toolbox.

  • new-console-output/main.js called by devtools toolbox to launch the WebConsole panel.
  • webconsole.html panel UI and launch scripts.

Run in the browser tab (experimental)

Files used to run the WebConsole in the browser tab

  • bin/ files to launch test server.
  • configs/ dev configs.
  • local-dev/index.js the entry point, equivalent to webconsole.html.
  • webpack.config.js the webpack config file, including plenty of module aliases map to shims and polyfills.
  • package.json declare every required packages and available commands.

To run in the browser tab, the WebConsole needs to get some dependencies from npm module. Check package.json to see all dependencies. Check webpack.config.js to find the module alias, and check devtools-core packages to dive into actual modules used by the WebConsole and other Devtools.

UI

The WebConsole UI is built using React components (in new-console-output/components/).

The React application is rendered from new-console-output/new-console-output-wrapper.js. It contains 3 top components:

  • ConsoleOutput (in ConsoleOutput.js) is the component where messages are rendered.
  • FilterBar (in FilterBar.js) is the component for the filter bars (filter input and toggle buttons).
  • SideBar (in SideBar.js) is the component that render the sidebar where objects can be placed in.

We prefer stateless component (defined by function) instead of stateful component (defined by class) unless the component has to maintain its internal state.

State

Besides the UI, the WebConsole manages the app state via [Redux](When working on console running via launchpad). The following locations define the app state:

  • src/constants.js constants used across the tool including action and event names.
  • src/actions/ for all actions that change the state.
  • src/reducers/ for all reducers that change the state.
  • src/selectors/ functions that return a formatted version of parts of the app state.

The redux state is a plain javascript object with the following properties:

{
  // State of the filter input and toggle buttons
  filters,
  // Console messages data and state (hidden, expanded, groups, …)
  messages,
  // Preferences (persist message, message limit, …)
  prefs,
  // Interface state (filter bar visible, sidebar visible, …)
  ui,
}

Tests

See new-console-output/test/README.md