gecko-dev/devtools/client/webconsole
Alexandre Poirot f68f33087a Bug 1466691 - Replace callback style in favor of promise for TabClient methods. r=jryans
MozReview-Commit-ID: 6Is4O8KQhgY

--HG--
extra : rebase_source : 8987e85385bd202a8e9100a230eff1c1fcdcb4f9
2018-06-05 01:50:40 -07:00
..
actions Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
bin Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
components Bug 1425552 - Move clearOutput and clearPrivateMessages from the jsterm and onto the WebConsoleFrame;r=nchevobbe 2018-06-02 16:44:08 -07:00
configs Bug 1442236 - Update console and netmonitor launchpads to v0.0.117; r=Honza. 2018-03-01 15:32:19 +01:00
enhancers Bug 1465455 - extract middleware and enhancer functions from store.js; r=nchevobbe 2018-06-08 08:21:32 +02:00
local-dev Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
middleware Bug 1465455 - extract middleware and enhancer functions from store.js; r=nchevobbe 2018-06-08 08:21:32 +02:00
reducers Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
selectors Bug 1462390 - Extract history from JSTerm component; r=nchevobbe 2018-05-31 12:41:29 +02:00
test Bug 1405428 - skip-if = verify on mochitests which do not pass test-verify. r=gbrown 2018-06-10 05:01:47 -04:00
utils Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
.babelrc Bug 1438476 - Fix launchpad configuration for console and netmonitor; r=jdescottes. 2018-02-16 14:59:51 +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 1425552 - Move clearOutput and clearPrivateMessages from the jsterm and onto the WebConsoleFrame;r=nchevobbe 2018-06-02 16:44:08 -07:00
constants.js Bug 1462390 - Extract history from JSTerm component; r=nchevobbe 2018-05-31 12:41:29 +02:00
hudservice.js Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
main.js Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
moz.build Bug 1465455 - extract middleware and enhancer functions from store.js; r=nchevobbe 2018-06-08 08:21:32 +02:00
package.json Bug 1462055 - Fixup mocha test paths for webconsole;r=nchevobbe 2018-05-18 11:33:18 -07:00
panel.js Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
README.md Bug 1460841 - Console clean up: rename internal modules; r=nchevobbe 2018-05-24 18:11:14 +02:00
store.js Bug 1465455 - extract middleware and enhancer functions from store.js; r=nchevobbe 2018-06-08 08:21:32 +02:00
types.js Bug 1451821 - Move new-console-output content one folder up; r=jdescottes. 2018-04-06 15:03:20 +02:00
utils.js Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
webconsole-connection-proxy.js Bug 1466691 - Replace callback style in favor of promise for TabClient methods. r=jryans 2018-06-05 01:50:40 -07:00
webconsole-frame.js Bug 1425552 - Move clearOutput and clearPrivateMessages from the jsterm and onto the WebConsoleFrame;r=nchevobbe 2018-06-02 16:44:08 -07:00
webconsole-l10n.js Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
webconsole-output-wrapper.js Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02:00
webconsole.html Bug 1460663 - Add attributes to the webconsole html tag to support size persistence when the html window is top-level;r=bdahl 2018-05-10 09:42:12 -07:00
webpack.config.js Bug 1454696 - Run eslint --fix for prefer-const;r=yulia 2018-06-01 12:36:09 +02: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 at the root of the devtools/client/webconsole/ folder. The old console code is located in the devtools/client/webconsole/old folder. 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 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.

  • 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 components/).

The React application is rendered from webconsole-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 test/README.md