Skip to content

Commit c08cee1

Browse files
mgechevAndrewKushnir
authored andcommitted
docs: add the change detection guide to the navigation and pullapprove (angular#45880)
PR Close angular#45880
1 parent b968557 commit c08cee1

2 files changed

Lines changed: 31 additions & 0 deletions

File tree

.pullapprove.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,11 @@ groups:
236236
'aio/content/images/guide/attribute-directives/**',
237237
'aio/content/guide/bootstrapping.md',
238238
'aio/content/examples/bootstrapping/**',
239+
'aio/content/guide/change-detection.md',
240+
'aio/content/guide/change-detection-zone-pollution.md',
241+
'aio/content/guide/change-detection-slow-computations.md',
242+
'aio/content/guide/change-detection-skipping-subtrees.md',
243+
'aio/content/images/guide/change-detection/**',
239244
'aio/content/guide/cheatsheet.md',
240245
'aio/content/guide/component-interaction.md',
241246
'aio/content/examples/component-interaction/**',

aio/content/navigation.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,32 @@
262262
"title": "Overview",
263263
"tooltip": "A list of developer guides for building Angular applications."
264264
},
265+
{
266+
"title": "Change detection",
267+
"tooltip": "Learn how Angular updates the view based on data changes and how to keep your application fast",
268+
"children": [
269+
{
270+
"url": "guide/change-detection",
271+
"title": "Overview",
272+
"tooltip": "Introduces the basics of Angular's change detection"
273+
},
274+
{
275+
"url": "guide/change-detection-zone-pollution",
276+
"title": "Zone Pollution",
277+
"tooltip": "Explains how Zone.js works and what are the common pitfalls that can slow an application down"
278+
},
279+
{
280+
"url": "guide/change-detection-slow-computations",
281+
"title": "Slow Computations",
282+
"tooltip": "Learn how to make your application faster by discovering and optimizing slow calculations"
283+
},
284+
{
285+
"url": "guide/change-detection-skipping-subtrees",
286+
"title": "Skipping Component Subtrees",
287+
"tooltip": "Learn how to skip change detection in component subtrees using OnPush change detection strategy"
288+
}
289+
]
290+
},
265291
{
266292
"title": "Routing and Navigation",
267293
"tooltip": "Learn how to use Angular Router to build in-app navigation between views.",

0 commit comments

Comments
 (0)