gecko-dev/devtools/client/webconsole
abhinav 8254f623af Bug 1457983 - Hide sidebar toggle button from webconsole. r=nchevobbe
MozReview-Commit-ID: 7ZXaUjC1noX

--HG--
extra : rebase_source : 20e54119d425c06cfef78e8c54a20faf52017c8f
2018-05-12 15:42:35 +05:30
..
actions Bug 1451821 - Move new-console-output content one folder up; r=jdescottes. 2018-04-06 15:03:20 +02:00
bin Bug 1359597 - Set up new console with devtools-launchpad;r=Honza 2017-04-26 08:10:04 -07:00
components Bug 1457983 - Hide sidebar toggle button from webconsole. r=nchevobbe 2018-05-12 15:42:35 +05:30
configs Bug 1442236 - Update console and netmonitor launchpads to v0.0.117; r=Honza. 2018-03-01 15:32:19 +01:00
local-dev Bug 1451821 - Move new-console-output content one folder up; r=jdescottes. 2018-04-06 15:03:20 +02:00
reducers Bug 1448553 - Part 2: Decodeds Punycode-encoded international domain names and URI-encoded filenames in the Web Console so that they are displayed as human-readable Unicode text. r=nchevobbe 2018-04-02 15:23:22 +08:00
selectors Bug 1451821 - Move new-console-output content one folder up; r=jdescottes. 2018-04-06 15:03:20 +02:00
test Bug 1457983 - Hide sidebar toggle button from webconsole. r=nchevobbe 2018-05-12 15:42:35 +05:30
utils Bug 1428078 - Enable keyboard navigation in the object sidebar; r=bgrins. 2018-04-13 17:47:37 +02:00
.babelrc Bug 1438476 - Fix launchpad configuration for console and netmonitor; r=jdescottes. 2018-02-16 14:59:51 +01:00
README.md Bug 1460067 - Update references to devtools-core in devtools documentation;r=jlast 2018-05-09 00:07:58 +02: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 1382581 - Adapt webconsole code to the EventEmitter change in devtools/client/framework; r=bgrins. 2018-03-14 18:17:07 +01:00
constants.js Bug 1451821 - Move new-console-output content one folder up; r=jdescottes. 2018-04-06 15:03:20 +02:00
hudservice.js Bug 1455674 part 19. Get rid of JS uses of nsIDOMElement. r=qdot 2018-04-26 23:37:34 -04:00
main.js Bug 1451821 - Move new-console-output content one folder up; r=jdescottes. 2018-04-06 15:03:20 +02:00
moz.build Bug 1381834 - Remove old Console front-end;r=nchevobbe 2018-04-13 08:08:03 -07:00
new-console-output-wrapper.js Bug 859051 - Implement cache panel; r=Honza 2018-05-01 05:42:00 +03:00
new-webconsole.js Bug 1458840 - Allow restarting the browser with the keyboard shortcut in the Browser Console in all builds;r=jryans 2018-05-03 11:23:33 -07:00
package.json Bug 1454910 - Replaces the unicode-url stub with an actual unicode-url shim in the Developer Tools r=nchevobbe 2018-05-03 13:33:47 +08:00
panel.js Bug 1443081 - Apply spacing via `eslint --fix` for DevTools. r=jdescottes 2018-03-12 13:44:41 -05:00
store.js Bug 1452143: Hook the filters and enable error reporting on demand. r=nchevobbe 2018-04-17 11:24:23 +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 1455674 part 19. Get rid of JS uses of nsIDOMElement. r=qdot 2018-04-26 23:37:34 -04:00
webconsole-connection-proxy.js Bug 1454012 - Part 2 - Remove NEW_CONSOLE_OUTPUT_ENABLED since it's now always true;r=nchevobbe 2018-04-16 10:38:11 -07:00
webconsole-l10n.js Bug 1443081 - Apply spacing via `eslint --fix` for DevTools. r=jdescottes 2018-03-12 13:44:41 -05: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 1454910 - Replaces the unicode-url stub with an actual unicode-url shim in the Developer Tools r=nchevobbe 2018-05-03 13:33:47 +08:00

README.md

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 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 test/README.md