Curated collection of useful Angular snippets that you can understand in 30 seconds or less.
- Use Ctrl + F or command + F to search for a snippet.
- Snippets are written in Angular 7.2.8+.
Intermediate snippets
- Accessing all nested form controls
- Adding keyboard shortcuts to elements
- Bind to host properties with host binding
- Component level providers
- Global event listeners
- Injecting document
- Mark reactive fields as touched
- Passing template as an input
- Reusing code in template
- Reusing existing custom pipes
- Style bindings
- Two-way binding any property
- Window Location injection
Beginner snippets
- Accessing Enums in template
- Default ViewEncapsulation value
- Loader Component
- ng-content
- ngIf else
- Optional parameters in the middle
- Renaming inputs and outputs
- trackBy in for loops
- Understanding Microsyntax
Advanced snippets
Sometimes we need to work with every single Control is a form. Here's how it can be done:
function flattenControls(form: AbstractControl): AbstractControl[] {
let extracted: AbstractControl[] = [ form ];
if (form instanceof FormArray || form instanceof FormGroup) {
const children = Object.values(form.controls).map(flattenControls);
extracted = extracted.concat(...children);
}
return extracted;
}
For examples use:
// returns all dirty abstract controls
extractControls(form).filter((control) => control.dirty);
// mark all controls as touched
extractControls(form).forEach((control) =>
control.markAsTouched({ onlySelf: true }));
https://angular.io/guide/reactive-forms
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: reactive forms tips good to know
It's really easy to add keyboard shortcuts in the template:
<textarea (keydown.ctrl.enter)="doSomething()"></textarea>
Bonus
<input (keydown.enter)="...">
<input (keydown.a)="...">
<input (keydown.esc)="...">
<input (keydown.shift.esc)="...">
<input (keydown.control)="...">
<input (keydown.alt)="...">
<input (keydown.meta)="...">
<input (keydown.9)="...">
<input (keydown.tab)="...">
<input (keydown.backspace)="...">
<input (keydown.arrowup)="...">
<input (keydown.shift.arrowdown)="...">
<input (keydown.shift.control.z)="...">
<input (keydown.f4)="...">
https://alligator.io/angular/binding-keyup-keydown-events
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: tips good-to-know
Every rendered angular component is wrapped in a host element (which is the same as component's selector).
It is possible to bind properties and attributes of host element using @HostBinding decorators, e.g.
import { Component, HostBinding } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<div>Use the input below to select host background-color:</div>
<input type="color" [(ngModel)]="color">
`,
styles: [
`:host { display: block; height: 100px; }`
]
})
export class AppComponent {
@HostBinding('style.background') color = '#ff9900';
}
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: components
Generally we get one service instance per the whole application. It is also possible to create an instance of service per component or directive.
@Component({
selector: 'provide',
template: '<ng-content></ng-content>',
providers: [ Service ]
})
export class ProvideComponent {}
@Directive({
selector: '[provide]',
providers: [ Service ]
})
export class ProvideDirective {}
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: tips components dependency-injection
It is possible to add global event listeners in your Components/Directives with HostListener
. Angular will take care of unsubscribing once your directive is destroyed.
@Directive({
selector: '[rightClicker]'
})
export class ShortcutsDirective {
@HostListener('window:keydown.ArrowRight')
doImportantThings() {
console.log('You pressed right');
}
}
Bonus
You can have multiple bindings:
@HostListener('window:keydown.ArrowRight')
@HostListener('window:keydown.PageDown')
next() {
console.log('Next')
}
You can also pass params:
@HostListener('window:keydown.ArrowRight', '$event.target')
next(target) {
console.log('Pressed right on this element: ' + target)
}
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: events components
Sometimes you need to get access to global document
.
To simplify unit-testing, Angular provides it through dependency injection:
import { DOCUMENT } from '@angular/common';
import { Inject } from '@angular/core';
@Component({
selector: 'my-app',
template: `<h1>Edit me </h1>`
})
export class AppComponent {
constructor(@Inject(DOCUMENT) private document: Document) {
// Word with document.location, or other things here....
}
}
https://angular.io/api/common/DOCUMENT
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: dependency injection
Here is the way to notify user that there are fields with non-valid values.
markFieldsAsTouched
function FormGroup or FormArray as an argument.
function markFieldsAsTouched(form: AbstractControl): void {
form.markAsTouched({ onlySelf: true });
if (form instanceof FormArray || form instanceof FormGroup) {
Object.values(form.controls).forEach(markFieldsAsTouched);
}
}
Bonus
It's very useful to check out more general method Accessing all nested form controls by Thekiba to work with controls.
https://angular.io/guide/reactive-forms
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: reactive forms validation tips good to know
It's possible to take a template as @Input
for a component to customize the render
@Component({
template: `
<nav>
<ng-container *ngTemplateOutlet="template"></ng-container>
</nav>
`,
})
export class SiteMenuComponent {
@Input() template: TemplateRef<any>;
}
<site-menu [template]="menu1"></site-menu>
<ng-template #menu1>
<div><a href="#">item1</a></div>
<div><a href="#">item2</a></div>
</ng-template>
Note: ng-content
should be used for most of the cases and it's simpler and more declarative.
Only use this approach if you need extra flexibility that can't be achieved with ng-content.
https://blog.angular-university.io/angular-ng-template-ng-container-ngtemplateoutlet
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: template
While the best way of reusing your code is creating a component, it's also possible to do it in a template.
To do this you can use ng-template
along with *ngTemplateOutlet
directive.
<p>
<ng-container *ngTemplateOutlet="fancyGreeting"></ng-container>
</p>
<button>
<ng-container *ngTemplateOutlet="fancyGreeting"></ng-container>
</button>
<ng-template #fancyGreeting>
Hello <b>{{name}}!</b>
</ng-template>
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: templates
If you need a custom pipe
, before creating one, consider checking out the NGX Pipes package which has 70+ already implemeted custom pipes.
Here are some examples:
<p>{{ date | timeAgo }}</p>
<!-- Output: "last week" -->
<p>{{ 'foo bar' | ucfirst }}</p>
<!-- Output: "Foo bar" -->
<p>3 {{ 'Painting' | makePluralString: 3 }}</p>
<!-- Output: "3 Paintings" -->
<p>{{ [1, 2, 3, 1, 2, 3] | max }}</p>
<!-- Output: "3" -->
https://github.com/danrevah/ngx-pipes
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: tip pipes library
You can use advanced property bindings to set specific style values based on component property values:
<p [style.background-color]="'green'">
I am in green background
</p>
<p [style.font-size.px]="isImportant ? '30' : '16'">
May be important text.
</p>
Bonus
<!-- Width in pixels -->
<div [style.width.px]="pxWidth"></div>
<!-- Font size in percentage relative to the parent -->
<div [style.font-size.%]="percentageSize">...</div>
<!-- Height relative to the viewport height -->
<div [style.height.vh]="vwHeight"></div>
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: styles
Similar to how you can two-way bind [(ngModel)]
you can two-way bind custom property on a component, for example [(value)]
. To do it use appropriate Input/Output naming:
@Component({
selector: 'super-input',
template: `...`,
})
export class AppComponent {
@Input() value: string;
@Output() valueChange = new EventEmitter<string>();
}
Then you can use it as:
<super-input [(value)]="value"></super-input>
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: tip binding
For testing purposes you might want to inject window.location
object in your component.
You can achieve this with custom InjectionToken
mechanism provided by Angular.
export const LOCATION_TOKEN = new InjectionToken<Location>('Window location object');
@NgModule({
providers: [
{ provide: LOCATION_TOKEN, useValue: window.location }
]
})
export class SharedModule {}
//...
@Component({
})
export class AppComponent {
constructor(
@Inject(LOCATION_TOKEN) public location: Location
) {}
}
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: dependency-injection testing
Enums are great but they are not visible in Angular templates by default. With this little trick you can make them accessible.
enum Animals {
DOG,
CAT,
DOLPHIN
}
@Component({
...
})
export class AppComponent {
animalsEnum: typeof Animals = Animals;
}
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: enums templates
If you're using ViewEncapsulation
value which is different than default, it might be daunting to set the value manually for every component.
Luckily you can configure it globally when bootstrapping your app:
platformBrowserDynamic().bootstrapModule(AppModule, [
{
// NOTE: Use ViewEncapsulation.None only if you know what you're doing.
defaultEncapsulation: ViewEncapsulation.None
}
]);
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: configuration styling
You can create own helper component and use it instead of *ngIf
.
@Component({
selector: 'loader',
template: `
<ng-content *ngIf="!loading else showLoader"></ng-content>
<ng-template #showLoader>🕚 Wait 10 seconds!</ng-template>
`
})
class LoaderComponent {
@Input() loading: boolean;
}
For usage example:
<loader [loading]="isLoading">🦊 🦄 🐉</loader>
Note that the content will be eagerly evaluated, e.g. in the snippet below destroy-the-world
will be created before the loading even starts:
<loader [loading]="isLoading"><destroy-the-world></destroy-the-world></loader>
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: tips good-to-know components templates
With ng-content
you can pass any elements to a component.
This simplifies creating reusable components.
@Component({
selector: 'wrapper',
template: `
<div class="wrapper">
<ng-content></ng-content>
</div>
`,
})
export class Wrapper {}
<wrapper>
<h1>Hello World!</h1>
</wrapper>
https://medium.com/p/96a29d70d11b
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: good-to-know tips components
*ngIf
directive also supports else
statement.
<div *ngIf="isLoading; else notLoading">loading...</div>
<ng-template #notLoading>not loading</ng-template>
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: ngif templates
Navigate with matrix params:
the router will navigate to /first;name=foo/details
<a [routerLink]="['/', 'first', {name: 'foo'}, 'details']">
link with params
</a>
https://stackblitz.com/edit/angular-xvy5pd
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: routing
In certain cases @Input
and @Output
properties can be named differently than the actual inputs and outputs.
<div
pagination
paginationShowFirst="true"
(paginationPageChanged)="onPageChanged($event)">
</div>
@Directive({ selector: '[pagination]'})
class PaginationComponent {
@Input('paginationShowFirst')
showFirst: boolean = true;
@Output('paginationPageChanged')
pageChanged = new EventEmitter();
}
Note: Use this wisely, see StyleGuide recommedation
https://angular.io/guide/styleguide#style-05-13
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: components templates
To avoid the expensive operations, we can help Angular to track which items added or removed i.e. customize the default tracking algorithm by providing a trackBy option to NgForOf.
So you can provide your custom trackBy function that will return unique identifier for each iterated item. For example, some key value of the item. If this key value matches the previous one, then Angular won't detect changes.
trackBy takes a function that has index and item args.
@Component({
selector: 'my-app',
template: `
<ul>
<li *ngFor="let item of items; trackBy: trackByFn">{{item.id}}</li>
</ul>
`
})
export class AppComponent {
trackByFn(index, item) {
return item.id;
}
}
If trackBy is given, Angular tracks changes by the return value of the function.
Now when you change the collection, Angular can track which items have been added or removed according to the unique identifier and create/destroy only changed items.
https://angular.io/api/common/NgForOf,https://angular.io/api/core/TrackByFunction
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: good-to-know tips components performance
Under the hood Angular compiles structural directives into ng-template elements, e.g.:
<!-- This -->
<div *ngFor="let item of [1,2,3]">
<!-- Get expanded into this -->
<ng-template ngFor [ngForOf]="[1,2,3]" let-item="$implicit"></ng-template>
The value passed to *ngFor directive is written using microsyntax. You can learn about it in the docs.
Also check out an interactive tool that shows the expansion by Alexey Zuev
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: tip structural directive microsyntax
It's possible to use @ViewChild
(also @ViewChildren
and @ContentChild/Children
) to query for components of different types using dependency injection.
In the example below we can use @ViewChildren(Base)
to get instances of Foo
and Bar
.
abstract class Base {}
@Component({
selector: 'foo',
providers: [{ provide: Base, useExisting: Foo }]
})
class Foo extends Base {}
@Component({
selector: 'bar',
providers: [{ provide: Base, useExisting: Bar }]
})
class Bar extends Base {}
// Now we can require both types of components using Base.
@Component({ template: `<foo></foo><bar></bar>` })
class AppComponent {
@ViewChildren(Base) components: QueryList<Base>;
}
https://www.youtube.com/watch?v=PRRgo6F0cjs
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: good-to-know tips components dependency-injection
Angular allows us to control the way module preloading is handled.
There are 2 strategies provided by @angular/router: PreloadAllModules
and NoPreloading
. The latter enabled by default, only preloading lazy modules on demand.
We can override this behavior by providing custom preloading strategy: In the example below we preload all included modules if the connection is good.
import { Observable, of } from 'rxjs';
export class CustomPreloading implements PreloadingStrategy {
public preload(route: Route, load: () => Observable<any>): Observable<any> {
return preloadingConnection() ? load() : of(null);
}
}
const routing: ModuleWithProviders = RouterModule.forRoot(routes, {
preloadingStrategy: CustomPreloading
});
Note that that the example above would not be very efficient for larger apps, as it'll preload all the modules.
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: router
It is possible to use SVG tags in your Angular component, to create beautiful graphs and visualizations. There are 3 things you need to know:
- When binding an SVG attribute, use
attr
<circle [attr.cx]="x" [attr.cy]="y"></circle>
- When creating sub-components, use attribute and not tag selector:
// Not: <child-component></child-component>
<g child-component></g>
@Component({selector: '[child-component]' })
- When using SVG tags in sub-components use svg prefix:
@Component({
selector: '[child-component]',
template: `<svg:circle></svg:circle>`
})
⭐ Interactive demo of this snippet | ⬆ Back to top | tags: tip SVG
30-seconds-of-angular's People
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.