Skip to content
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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,15 @@
"contributions": [
"doc"
]
},
{
"login": "pawanpatil08",
"name": "Pawan Patil",
"avatar_url": "https://avatars.githubusercontent.com/u/16464034?v=4",
"profile": "https://github.com/pawanpatil08",
"contributions": [
"doc"
]
}
],
"contributorsPerLine": 7,
Expand All @@ -131,4 +140,4 @@
"repoHost": "https://github.com",
"projectName": "angular-snippets",
"projectOwner": "santoshyadavdev"
}
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Angular Snippets

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
Copy link
Contributor

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.


[![All Contributors](https://img.shields.io/badge/all_contributors-13-orange.svg?style=flat-square)](#contributors-)

<!-- ALL-CONTRIBUTORS-BADGE:END -->

A website to find and share code snippets for Angular.
Expand Down
83 changes: 83 additions & 0 deletions src/pages/snippets/Built-In-Control-Flow.mdx
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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: "Build in control"
description: "Built-in control"

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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Address common pain points.
- Address common pain points.

- 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
Copy link
Contributor

Choose a reason for hiding this comment

The 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: {:case x, y}

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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### if block - conditionals
### if block - Conditionals


```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
Copy link
Contributor

Choose a reason for hiding this comment

The 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)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct that why added the upcoming in angular

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
link for RFC : https://github.com/angular/angular/discussions/50719
Link to RFC : https://github.com/angular/angular/discussions/50719

64 changes: 64 additions & 0 deletions src/pages/snippets/deferred-loading-in-angular.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
Copy link
Contributor

Choose a reason for hiding this comment

The 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.

Copy link
Author

Choose a reason for hiding this comment

The 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,
Copy link
Contributor

Choose a reason for hiding this comment

The 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.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, @ajitzero tried it in Google Docs.
please suggest the any mistake in this file

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
as a part of our ongoing work on implementing the Signals RFC,
As a part of our ongoing work on implementing the Signals RFC,

we’ve known that the existing zone-based control flow directives would not be able to function in zoneless applications.
Copy link
Contributor

Choose a reason for hiding this comment

The 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.
We've known that the existing zone-based control flow directives would not be able to function in zoneless applications.

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,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
We considered modifying the existing control flow directives to support zoneless applications as well,
We considered modifying the existing control flow directives to support zoneless applications as well.

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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
8 Support deferred loading of directives & pipes as well as components
- Support deferred loading of directives & pipes as well as components

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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Will see you Built-In Control Flow in next snippets

This line makes no sense.