docs: adding angular devtools documentation (#42152)

This PR adds user guide for Angular DevTools explaining the basics of
the component explorer and the profiler.

PR Close #42152
This commit is contained in:
Sumit Arora 2021-05-11 15:30:44 -04:00 committed by Andrew Scott
parent b959303105
commit 991f8523b3
18 changed files with 181 additions and 2 deletions

View File

@ -0,0 +1,173 @@
# DevTools Overview
Angular DevTools is a Chrome extension that provides debugging and profiling capabilities for Angular applications. Angular DevTools supports Angular v9 and above, with Ivy enabled.
You can find Angular DevTools in the [Chrome Web Store](https://chrome.google.com/webstore/detail/angular-developer-tools/ienfalfjdbdpebioblfackkekamfmbnh).
After installing Angular DevTools, you can find the extension under the Angular tab in Chrome DevTools.
<div class="lightbox">
<img src="generated/images/guide/devtools/devtools.png" alt="devtools">
</div>
When you open the extension, you'll see two additional tabs:
- [Components](#components) - lets you explore the components and directives in your application and preview or edit their state.
- [Profiler](#profiler) - lets you profile your application and understand what the performance bottleneck is during change detection execution.
<div class="lightbox">
<img src="generated/images/guide/devtools/devtools-tabs.png" alt="devtools tabs">
</div>
In the top-right corner of Angular DevTools you'll find which version of Angular is running on the page as well as the latest commit hash for the extension.
## Bug reports
You can report issues and feature requests on [GitHub](https://github.com/rangle/angular-devtools/issues).
To report an issue with the Profiler, export the Profiler recording by clicking the **Save Profile** button, and then attaching that export as a file in the issue.
> Make sure that the Profiler recording does not contain any confidential information.
{@a components}
## Debug your application
The **Components** tab lets you explore the structure of your application. You can visualize and inspect the component and directive instances and preview or modify their state. In the next couple of sections we'll look into how you can use this tab effectively to debug your application.
### Explore the application structure
<div class="lightbox">
<img src="generated/images/guide/devtools/component-explorer.png" alt="component-explorer">
</div>
In the preceding screenshot, you can see the component tree of an application.
The component tree displays a hierarchical relationship of the *components and directives* within your application. When you select a component or a directive instance, Angular DevTools presents additional information about that instance.
### View properties
Click the individual components or directives in the component explorer to select them and preview their properties. Angular DevTools displays their properties and metadata on the right-hand side of the component tree.
You can navigate in the component tree using the mouse or the following keyboard shortcuts:
- Up and down arrows select the previous and next nodes.
- Left and right arrows collapse and expand a node.
To look up a component or directive by name use the search box above the component tree. To navigate to the next search match, press `Enter`. To navigate to the previous search match, press `Shift + Enter`.
<div class="lightbox">
<img src="generated/images/guide/devtools/search.png" alt="search">
</div>
### Navigate to the host node
To go to the host element of a particular component or directive, find it in the component explorer and double-click it. Chrome DevTools opens the Elements tab and selects the associated DOM node.
### Navigate to source
For components, Angular DevTools also lets you navigate to the component definition in the source tab. After you select a particular component, click the icon at the top-right of the properties view:
<div class="lightbox">
<img src="generated/images/guide/devtools/navigate-source.png" alt="navigate source">
</div>
### Update property value
Like Chrome DevTools, the properties view allows you to edit the value of an input, output, or another property. Right-click on the property value. If edit functionality is available for this value type, you'll see a text input. Type the new value and press `Enter`.
<div class="lightbox">
<img src="generated/images/guide/devtools/update-property.png" alt="update property">
</div>
### Access selected component or directive in console
As a shortcut in the console, Angular DevTools provides you access to instances of the recently selected components or directives. Type `$ng0` to get a reference to the instance of the currently selected component or directive, and type `$ng1` for the previously selected instance.
<div class="lightbox">
<img src="generated/images/guide/devtools/access-console.png" alt="access console">
</div>
### Select a directive or component
Similar to Chrome DevTools, you can inspect the page to select a particular component or directive. Click the ***Inspect element*** icon at the top left corner within Devtools and hover over a DOM element on the page. Angular DevTools recognizes the associated directives and/or components and lets you select the corresponding element in the Component tree.
<div class="lightbox">
<img src="generated/images/guide/devtools/inspect-element.png" alt="selecting dom node">
</div>
{@a profiler}
## Profile your application
The **Profiler** tab lets you preview the execution of Angular's change detection.
<div class="lightbox">
<img src="generated/images/guide/devtools/profiler.png" alt="profiler">
</div>
The Profiler lets you start profiling or import an existing profile. To start profiling your application, hover over the circle at the top-left corner within the **Profiler** tab and click **Start recording**.
During profiling, Angular DevTools captures execution events, such as change detection and lifecycle hook execution. To finish recording, click the circle again to **Stop recording**.
You can also import an existing recording. Read more about this feature in the [Import recording](#) section.
### Understand your application's execution
In the following screenshot, you can find the default view of the Profiler after you complete recording.
<div class="lightbox">
<img src="generated/images/guide/devtools/default-profiler-view.png" alt="default profiler view">
</div>
Near the top of the view you can see a sequence of bars, each one of them symbolizing change detection cycles in your app. The taller a bar is, the longer your application has spent in this cycle. When you select a bar, DevTools renders a bar chart with all the components and directives that it captured during this cycle.
<div class="lightbox">
<img src="generated/images/guide/devtools/profiler-selected-bar.png" alt="profiler selected bar">
</div>
Above the change detection timeline, you can find how much time Angular spent in this cycle. Angular DevTools attempts to estimate the frame drop at this point to indicate when the execution of your application might impact the user experience.
Angular DevTools also indicates what triggered the change detection (that is, the change detection's source).
### Understand component execution
When you click on a bar, you'll find a detailed view about how much time your application spent in the particular directive or component:
<div class="lightbox">
<img src="generated/images/guide/devtools/directive-details.png" alt="directive details">
</div>
Figure shows the total time spent by NgforOf directive and which method was called in it. It also shows the parent hierarchy of the directive selected.
### Hierarchical views
<div class="lightbox">
<img src="generated/images/guide/devtools/flame-graph-view.png" alt="flame graph view">
</div>
You can also preview the change detection execution in a flame graph-like view. Each tile in the graph represents an element on the screen at a specific position in the render tree.
For example, if during one change detection cycle at a specific position in the component tree we had `ComponentA`, this component was removed and in its place Angular rendered `ComponentB`, you'll see both components at the same tile.
Each tile is colored depending on how much time Angular has spent there. DevTools determines the intensity of the color by the time spent relative to the tile where we've spent the most time in change detection.
When you click on a certain tile, you'll see details about it in the panel on the right. Double-clicking the tile zooms it in so you can preview the nested children.
### Debug OnPush
To preview the components in which Angular did change detection, select the **Change detection** checkbox at the top, above the flame graph.
This view will color all the tiles in which Angular performed change detection in green, and the rest in gray:
<div class="lightbox">
<img src="generated/images/guide/devtools/debugging-onpush.png" alt="debugging onpush">
</div>
### Import recording
Click the **Save Profile** button at the top-left of a recorded profiling session to export it as a JSON file and save it to the disk. Then, you can import the file in the initial view of the profiler by clicking the **Choose file** input:
<div class="lightbox">
<img src="generated/images/guide/devtools/save-profile.png" alt="save profile">
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 KiB

View File

@ -55,7 +55,8 @@
"title": "Getting Started",
"tooltip": "Set up your environment and learn basic concepts",
"children": [
{ "url": "guide/what-is-angular",
{
"url": "guide/what-is-angular",
"title": "What is Angular?",
"tooltip": "A brief description of the Angular platform."
},
@ -534,6 +535,11 @@
"url": "guide/language-service",
"title": "Language Service",
"tooltip": "Use Angular Language Service to speed up dev time."
},
{
"title": "DevTools",
"tooltip": "DevTools",
"url": "guide/devtools"
}
]
},
@ -1124,4 +1130,4 @@
]
}
]
}
}