-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added two pages angular defer loading and control flow in angular #48
base: main
Are you sure you want to change the base?
Changes from all commits
91ad10a
bb01a25
e4bd0c5
ee45539
2c611f7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,83 @@ | ||||||
--- | ||||||
title: Built-in control flow in upcoming Angular | ||||||
description: "Build in control" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
tags: ["angular", "Deferred Loading", "angular 16"] | ||||||
pubDate: Jul 22, 2023 | ||||||
contributedBy: "@pawanpatil08" | ||||||
--- | ||||||
|
||||||
#### Goals: | ||||||
|
||||||
The new syntax for template control flow has several major goals: | ||||||
|
||||||
- Syntactically similar to JavaScript's control flow statement syntax. | ||||||
- Syntactically distinct from HTML syntax. | ||||||
- Works across multiple templates (if-elseif-else, switch-case-default), including template type-checking. | ||||||
- Flexible syntax allowing customization for each use case (if vs for vs switch). | ||||||
Address common pain points. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
- It must be possible to automatically migrate virtually all existing control flow usage to the new syntax. | ||||||
|
||||||
### Conditional control flow uses blocks with the keywords if and else: | ||||||
|
||||||
```typescript | ||||||
{#if cond.expr} | ||||||
Main case was true! | ||||||
{:else if other.expr} | ||||||
Extra case was true! | ||||||
{:else} | ||||||
False case! | ||||||
{/if} | ||||||
``` | ||||||
|
||||||
### Switch control flow uses blocks with the keywords switch, case, and default: | ||||||
|
||||||
```typescript | ||||||
{#switch cond.kind} | ||||||
{:case x} | ||||||
X case | ||||||
{:case y} | ||||||
Y case | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This syntax is not finalized in the RFC since, in the replies, it has been pointed out that they may support multiple cases in one line: This is part of the reason I suggest keep this snippet as a draft until the features are actually out. |
||||||
{:case z} | ||||||
Z case | ||||||
{:default} | ||||||
No case matched | ||||||
{/switch} | ||||||
``` | ||||||
|
||||||
### Loop control flow uses blocks with the keywords for and empty: | ||||||
|
||||||
```typescript | ||||||
{#for item of items; track item.id} | ||||||
{{ item }} | ||||||
{:empty} | ||||||
There were no items in the list. | ||||||
{/for} | ||||||
``` | ||||||
|
||||||
### Detailed Design | ||||||
|
||||||
```typescript | ||||||
{#if cond.expr} | ||||||
<child-cmp /> | ||||||
{/if} | ||||||
``` | ||||||
|
||||||
### if block - conditionals | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
```typescript | ||||||
{#if a > b} | ||||||
{{a}} is greater than {{b}} | ||||||
{/if} | ||||||
``` | ||||||
|
||||||
```typescript | ||||||
{#if a > b} | ||||||
{{a}} is greater than {{b}} | ||||||
{:else if b > a} | ||||||
{{a}} is less than {{b}} | ||||||
{:else} | ||||||
{{a}} is equal to {{b}} | ||||||
{/if} | ||||||
``` | ||||||
|
||||||
link for RFC : https://github.com/angular/angular/discussions/50719 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As you've rightly pointed out here, this is still an RFC and is open to change. I think we should hold off on this until it's confirmed and out in Angular 17 (probably) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct that why added the upcoming in angular There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,64 @@ | ||||||
--- | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same point here. Please push this off until the RFC is closed, and we actually have an initial implementation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @santoshyadavdev Can you Suggest here, |
||||||
title: What is Deferred Loading in Angular | ||||||
description: "Deferred Loading in Angular" | ||||||
tags: ["angular", "Deferred Loading", "Zoneless angular"] | ||||||
pubDate: Jul 22, 2023 | ||||||
contributedBy: "@pawanpatil08" | ||||||
--- | ||||||
|
||||||
as a part of our ongoing work on implementing the Signals RFC, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see a lot of minor grammar issues / non-capital letters. Please run this through Grammarly or Google Docs since your actual content is well-written but has many obvious issues which can be fixed automatically. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hey, @ajitzero tried it in Google Docs. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
we’ve known that the existing zone-based control flow directives would not be able to function in zoneless applications. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
We will need to implement reactive control flow for zoneless applications. | ||||||
We considered modifying the existing control flow directives to support zoneless applications as well, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This entire paragraph is copied from different parts of the RFC. Please rewrite is slightly so the next line makes sense from the previous line. Again, Grammarly should be sufficient. |
||||||
|
||||||
#### Goals: | ||||||
|
||||||
- Make deferred loading in Angular predictable and ergonomic for all developers | ||||||
- Reduce initial page load time due to smaller initial bundle sizes | ||||||
8 Support deferred loading of directives & pipes as well as components | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I am not sure about this, since "8" looks like a typo but the rest of the sentences don't seem to be related. |
||||||
- Introduce new patterns to allow developers to build applications that leverage deferred loading | ||||||
- Integrate deferred loaded primitive with hydration, so that developers can gain maximum benefits | ||||||
|
||||||
### Deferred blocks | ||||||
|
||||||
```typescript | ||||||
{#defer} | ||||||
<calendar-cmp /> | ||||||
{/defer} | ||||||
``` | ||||||
|
||||||
### on and when | ||||||
|
||||||
```typescript | ||||||
{#defer when cond} | ||||||
<calendar-cmp /> | ||||||
{/defer} | ||||||
``` | ||||||
|
||||||
```typescript | ||||||
{#defer on interaction, timer(5s)} | ||||||
<calendar-cmp /> | ||||||
{/defer} | ||||||
``` | ||||||
|
||||||
### :loading blocks | ||||||
|
||||||
```typescript | ||||||
{#defer} | ||||||
<calendar-cmp /> | ||||||
{:loading} | ||||||
<div class="loading">Loading the calendar...</div> | ||||||
{/defer} | ||||||
``` | ||||||
|
||||||
### :placeholder blocks | ||||||
|
||||||
```typescript | ||||||
{#defer when cond} | ||||||
<calendar-cmp /> | ||||||
{:placeholder minimum 500ms} | ||||||
<img src="placeholder.png" /> | ||||||
{/defer} | ||||||
``` | ||||||
|
||||||
Will see you Built-In Control Flow in next snippets | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This line makes no sense. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this file from the PR since the comment explicitly asks to have no changes. These whitespace are probably fine but pointless to add them.