Skip to content

Commit

Permalink
docs: add the change detection guide to the navigation and pullapprove (
Browse files Browse the repository at this point in the history
#45880)

PR Close #45880
  • Loading branch information
mgechev authored and AndrewKushnir committed May 9, 2022
1 parent 5e858c7 commit 66c400c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .pullapprove.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,11 @@ groups:
'aio/content/images/guide/attribute-directives/**',
'aio/content/guide/bootstrapping.md',
'aio/content/examples/bootstrapping/**',
'aio/content/guide/change-detection.md',
'aio/content/guide/change-detection-zone-pollution.md',
'aio/content/guide/change-detection-slow-computations.md',
'aio/content/guide/change-detection-skipping-subtrees.md',
'aio/content/images/guide/change-detection/**',
'aio/content/guide/cheatsheet.md',
'aio/content/guide/component-interaction.md',
'aio/content/examples/component-interaction/**',
Expand Down
26 changes: 26 additions & 0 deletions aio/content/navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,32 @@
"title": "Overview",
"tooltip": "A list of developer guides for building Angular applications."
},
{
"title": "Change detection",
"tooltip": "Learn how Angular updates the view based on data changes and how to keep your application fast",
"children": [
{
"url": "guide/change-detection",
"title": "Overview",
"tooltip": "Introduces the basics of Angular's change detection"
},
{
"url": "guide/change-detection-zone-pollution",
"title": "Zone Pollution",
"tooltip": "Explains how Zone.js works and what are the common pitfalls that can slow an application down"
},
{
"url": "guide/change-detection-slow-computations",
"title": "Slow Computations",
"tooltip": "Learn how to make your application faster by discovering and optimizing slow calculations"
},
{
"url": "guide/change-detection-skipping-subtrees",
"title": "Skipping Component Subtrees",
"tooltip": "Learn how to skip change detection in component subtrees using OnPush change detection strategy"
}
]
},
{
"title": "Routing and Navigation",
"tooltip": "Learn how to use Angular Router to build in-app navigation between views.",
Expand Down

0 comments on commit 66c400c

Please sign in to comment.