828 lines
26 KiB
HTML
828 lines
26 KiB
HTML
|
<html lang="en"><head></head><body>
|
||
|
<form id="mainForm" method="post" action="https://run.stackblitz.com/api/angular/v1?file=src/app/app.component.html" target="_self"><input type="hidden" name="files[src/app/app.component.ts]" value="import { Component } from '@angular/core';
|
||
|
|
||
|
import { heroes } from './hero';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrls: ['./app.component.css']
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
heroes = heroes;
|
||
|
hero = this.heroes[0];
|
||
|
heroTraits = ['honest', 'brave', 'considerate'];
|
||
|
|
||
|
// flags for the table
|
||
|
|
||
|
attrDirs = true;
|
||
|
strucDirs = true;
|
||
|
divNgIf = false;
|
||
|
|
||
|
showId = true;
|
||
|
showDefaultTraits = true;
|
||
|
showSad = true;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/app.module.ts]" value="import { NgModule } from '@angular/core';
|
||
|
import { FormsModule } from '@angular/forms';
|
||
|
import { BrowserModule } from '@angular/platform-browser';
|
||
|
|
||
|
import { AppComponent } from './app.component';
|
||
|
import { ContentComponent } from './content.component';
|
||
|
import { heroComponents } from './hero.components';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [ BrowserModule, FormsModule ],
|
||
|
declarations: [
|
||
|
AppComponent,
|
||
|
ContentComponent,
|
||
|
heroComponents
|
||
|
],
|
||
|
bootstrap: [ AppComponent ]
|
||
|
})
|
||
|
export class AppModule { }
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/content.component.ts]" value="import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'content-comp',
|
||
|
template:
|
||
|
`<div>
|
||
|
<ng-content></ng-content>
|
||
|
</div>`,
|
||
|
styles: [ `
|
||
|
div { border: medium dashed green; padding: 1em; width: 150px; text-align: center}
|
||
|
`]
|
||
|
})
|
||
|
export class ContentComponent { }
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/hero.components.ts]" value="import { Component, Input } from '@angular/core';
|
||
|
|
||
|
import { Hero } from './hero';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'happy-hero',
|
||
|
template: `Wow. You like {{hero.name}}. What a happy hero ... just like you.`
|
||
|
})
|
||
|
export class HappyHeroComponent {
|
||
|
@Input() hero: Hero;
|
||
|
}
|
||
|
|
||
|
@Component({
|
||
|
selector: 'sad-hero',
|
||
|
template: `You like {{hero.name}}? Such a sad hero. Are you sad too?`
|
||
|
})
|
||
|
export class SadHeroComponent {
|
||
|
@Input() hero: Hero;
|
||
|
}
|
||
|
|
||
|
@Component({
|
||
|
selector: 'confused-hero',
|
||
|
template: `Are you as confused as {{hero.name}}?`
|
||
|
})
|
||
|
export class ConfusedHeroComponent {
|
||
|
@Input() hero: Hero;
|
||
|
}
|
||
|
|
||
|
@Component({
|
||
|
selector: 'unknown-hero',
|
||
|
template: `{{message}}`
|
||
|
})
|
||
|
export class UnknownHeroComponent {
|
||
|
@Input() hero: Hero;
|
||
|
get message() {
|
||
|
return this.hero && this.hero.name
|
||
|
? `${this.hero.name} is strange and mysterious.`
|
||
|
: 'Are you feeling indecisive?';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export const heroComponents = [
|
||
|
HappyHeroComponent,
|
||
|
SadHeroComponent,
|
||
|
ConfusedHeroComponent,
|
||
|
UnknownHeroComponent
|
||
|
];
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/hero.ts]" value="export interface Hero {
|
||
|
id: number;
|
||
|
name: string;
|
||
|
emotion?: string;
|
||
|
}
|
||
|
|
||
|
export const heroes: Hero[] = [
|
||
|
{ id: 1, name: 'Dr Nice', emotion: 'happy' },
|
||
|
{ id: 2, name: 'Narco', emotion: 'sad' },
|
||
|
{ id: 3, name: 'Windstorm', emotion: 'confused' },
|
||
|
{ id: 4, name: 'Magneta' }
|
||
|
];
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/environments/environment.prod.ts]" value="export const environment = {
|
||
|
production: true
|
||
|
};
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/environments/environment.ts]" value="// This file can be replaced during build by using the `fileReplacements` array.
|
||
|
// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
|
||
|
// The list of file replacements can be found in `angular.json`.
|
||
|
|
||
|
export const environment = {
|
||
|
production: false
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
* For easier debugging in development mode, you can import the following file
|
||
|
* to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
|
||
|
*
|
||
|
* This import should be commented out in production mode because it will have a negative impact
|
||
|
* on performance if an error is thrown.
|
||
|
*/
|
||
|
// import 'zone.js/plugins/zone-error'; // Included with Angular CLI.
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/main.ts]" value="import { enableProdMode } from '@angular/core';
|
||
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
||
|
|
||
|
import { AppModule } from './app/app.module';
|
||
|
import { environment } from './environments/environment';
|
||
|
|
||
|
if (environment.production) {
|
||
|
enableProdMode();
|
||
|
}
|
||
|
|
||
|
platformBrowserDynamic().bootstrapModule(AppModule);
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/polyfills.ts]" value="/**
|
||
|
* This file includes polyfills needed by Angular and is loaded before the app.
|
||
|
* You can add your own extra polyfills to this file.
|
||
|
*
|
||
|
* This file is divided into 2 sections:
|
||
|
* 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
|
||
|
* 2. Application imports. Files imported after ZoneJS that should be loaded before your main
|
||
|
* file.
|
||
|
*
|
||
|
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
|
||
|
* automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
|
||
|
* Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
|
||
|
*
|
||
|
* Learn more in https://angular.io/guide/browser-support
|
||
|
*/
|
||
|
|
||
|
/***************************************************************************************************
|
||
|
* BROWSER POLYFILLS
|
||
|
*/
|
||
|
|
||
|
/** IE11 requires the following for NgClass support on SVG elements */
|
||
|
// import 'classlist.js'; // Run `npm install --save classlist.js`.
|
||
|
|
||
|
/**
|
||
|
* Web Animations `@angular/platform-browser/animations`
|
||
|
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
|
||
|
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
|
||
|
*/
|
||
|
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
|
||
|
|
||
|
/**
|
||
|
* By default, zone.js will patch all possible macroTask and DomEvents
|
||
|
* user can disable parts of macroTask/DomEvents patch by setting following flags
|
||
|
* because those flags need to be set before `zone.js` being loaded, and webpack
|
||
|
* will put import in the top of bundle, so user need to create a separate file
|
||
|
* in this directory (for example: zone-flags.ts), and put the following flags
|
||
|
* into that file, and then add the following code before importing zone.js.
|
||
|
* import './zone-flags';
|
||
|
*
|
||
|
* The flags allowed in zone-flags.ts are listed here.
|
||
|
*
|
||
|
* The following flags will work for all browsers.
|
||
|
*
|
||
|
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch
|
||
|
* requestAnimationFrame
|
||
|
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
|
||
|
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch
|
||
|
* specified eventNames
|
||
|
*
|
||
|
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
|
||
|
* with the following flag, it will bypass `zone.js` patch for IE/Edge
|
||
|
*
|
||
|
* (window as any).__Zone_enable_cross_context_check = true;
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/***************************************************************************************************
|
||
|
* Zone JS is required by default for Angular itself.
|
||
|
*/
|
||
|
import 'zone.js'; // Included with Angular CLI.
|
||
|
|
||
|
/***************************************************************************************************
|
||
|
* APPLICATION IMPORTS
|
||
|
*/
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/app.component.css]" value="button {
|
||
|
min-width: 100px;
|
||
|
font-size: 100%;
|
||
|
}
|
||
|
|
||
|
code,
|
||
|
.code {
|
||
|
background-color: #eee;
|
||
|
color: black;
|
||
|
font-family: Courier, sans-serif;
|
||
|
font-size: 85%;
|
||
|
}
|
||
|
|
||
|
div.code {
|
||
|
width: 400px;
|
||
|
}
|
||
|
|
||
|
.heroic {
|
||
|
font-size: 150%;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
margin: 40px 0;
|
||
|
}
|
||
|
|
||
|
td,
|
||
|
th {
|
||
|
text-align: left;
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
p span {
|
||
|
color: red;
|
||
|
font-size: 70%;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/styles.css]" value="/* Global Styles */
|
||
|
* {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
}
|
||
|
h1 {
|
||
|
color: #264D73;
|
||
|
font-size: 2.5rem;
|
||
|
}
|
||
|
h2, h3 {
|
||
|
color: #444;
|
||
|
font-weight: lighter;
|
||
|
}
|
||
|
h3 {
|
||
|
font-size: 1.3rem;
|
||
|
}
|
||
|
body {
|
||
|
padding: .5rem;
|
||
|
max-width: 1000px;
|
||
|
margin: auto;
|
||
|
}
|
||
|
@media (min-width: 600px) {
|
||
|
body {
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
}
|
||
|
body, input[text] {
|
||
|
color: #333;
|
||
|
font-family: Cambria, Georgia, serif;
|
||
|
}
|
||
|
a {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
button {
|
||
|
background-color: #eee;
|
||
|
border: none;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
color: black;
|
||
|
font-size: 1.2rem;
|
||
|
padding: 1rem;
|
||
|
margin-right: 1rem;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
button:hover {
|
||
|
background-color: black;
|
||
|
color: white;
|
||
|
}
|
||
|
button:disabled {
|
||
|
background-color: #eee;
|
||
|
color: #aaa;
|
||
|
cursor: auto;
|
||
|
}
|
||
|
|
||
|
/* Navigation link styles */
|
||
|
nav a {
|
||
|
padding: 5px 10px;
|
||
|
text-decoration: none;
|
||
|
margin-right: 10px;
|
||
|
margin-top: 10px;
|
||
|
display: inline-block;
|
||
|
background-color: #e8e8e8;
|
||
|
color: #3d3d3d;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
nav a:hover {
|
||
|
color: white;
|
||
|
background-color: #42545C;
|
||
|
}
|
||
|
nav a.active {
|
||
|
background-color: black;
|
||
|
color: white;
|
||
|
}
|
||
|
hr {
|
||
|
margin: 1.5rem 0;
|
||
|
}
|
||
|
input[type="text"] {
|
||
|
box-sizing: border-box;
|
||
|
width: 100%;
|
||
|
padding: .5rem;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
*/"><input type="hidden" name="files[src/app/app.component.html]" value="<h1>&lt;ng-container&gt;</h1>
|
||
|
|
||
|
<div *ngIf="hero">{{hero.name}}</div>
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
<h3>&lt;ng-container&gt; and CSS</h3>
|
||
|
<p>Examples demonstrating issues with rigid CSS styles.</p>
|
||
|
|
||
|
<button (click)="hero = hero ? null : heroes[0]">Toggle hero</button>
|
||
|
|
||
|
<h4>#1 &lt;ng-container&gt; and &lt;p&gt;</h4>
|
||
|
<p>
|
||
|
I turned the corner
|
||
|
<ng-container *ngIf="hero">
|
||
|
and saw {{hero.name}}. I waved
|
||
|
</ng-container>
|
||
|
and continued on my way.
|
||
|
</p>
|
||
|
<p>
|
||
|
I turned the corner
|
||
|
<span *ngIf="hero">
|
||
|
and saw {{hero.name}}. I waved
|
||
|
</span>
|
||
|
and continued on my way.
|
||
|
</p>
|
||
|
|
||
|
<h4>#2 &lt;ng-container&gt; and &lt;p&gt;</h4>
|
||
|
|
||
|
<div *ngIf="hero">
|
||
|
<p>
|
||
|
{{hero.name}} is
|
||
|
<ng-container *ngFor="let trait of heroTraits; let first=first; let last=last">
|
||
|
<ng-container *ngIf="!first">,</ng-container>
|
||
|
<ng-container *ngIf="last">and</ng-container>
|
||
|
{{trait}}
|
||
|
</ng-container>.
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
{{hero.name}} is
|
||
|
<span *ngFor="let trait of heroTraits; let first=first; let last=last">
|
||
|
<span *ngIf="!first">,</span>
|
||
|
<span *ngIf="last">and</span>
|
||
|
{{trait}}
|
||
|
</span>.
|
||
|
</p>
|
||
|
|
||
|
<br>
|
||
|
|
||
|
<h4>#3 &lt;ng-container&gt; and &lt;p&gt;</h4>
|
||
|
<p>
|
||
|
<label><input type="checkbox" [checked]="showId" (change)="showId=!showId">Show ID</label>
|
||
|
</p>
|
||
|
|
||
|
<div>
|
||
|
The <code>hero.id</code> in the &lt;span&gt;
|
||
|
is caught by the <span>p-span</span> CSS:
|
||
|
<p>
|
||
|
<span *ngIf="showId">
|
||
|
Id: ({{hero.id}})
|
||
|
</span>
|
||
|
Name: {{hero.name}}
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
The <code>hero.id</code> in the &lt;ng-container&gt;
|
||
|
is unaffected by the <span>p-span</span> CSS:
|
||
|
<p>
|
||
|
<ng-container *ngIf="showId">
|
||
|
Id: ({{hero.id}})
|
||
|
</ng-container>
|
||
|
Name: {{hero.name}}
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
The <code>hero.id</code> in the &lt;ng-template *ngIf&gt; disappears:
|
||
|
<p>
|
||
|
<ng-template *ngIf="showId">
|
||
|
Id: ({{hero.id}})
|
||
|
</ng-template>
|
||
|
Name: {{hero.name}}
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
The <code>hero.id</code> in the &lt;ng-template [ngIf]&gt;
|
||
|
is unaffected by the <span>p-span</span> CSS:
|
||
|
<p>
|
||
|
<ng-template [ngIf]="showId">
|
||
|
Id: ({{hero.id}})
|
||
|
</ng-template>
|
||
|
Name: {{hero.name}}
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
<h3>&lt;ng-container&gt; and layout-sensitive elements</h3>
|
||
|
<p>
|
||
|
Examples demonstrating issues with layout-sensitive elements
|
||
|
such as &lt;select&gt; and &lt;table&gt;.
|
||
|
</p>
|
||
|
|
||
|
<h4>#1 &lt;ng-container&gt; and &lt;options&gt;</h4>
|
||
|
|
||
|
<p><i>&lt;select&gt; with &lt;span&gt;</i></p>
|
||
|
<div>
|
||
|
Pick your favorite hero
|
||
|
(<label><input type="checkbox" checked (change)="showSad=!showSad">show sad</label>)
|
||
|
</div>
|
||
|
<select [(ngModel)]="hero">
|
||
|
<span *ngFor="let h of heroes">
|
||
|
<span *ngIf="showSad || h?.emotion !== 'sad'">
|
||
|
<option [ngValue]="h">{{h.name}} ({{h?.emotion}})</option>
|
||
|
</span>
|
||
|
</span>
|
||
|
</select>
|
||
|
|
||
|
<p><i>&lt;select&gt; with &lt;ng-container&gt;</i></p>
|
||
|
<div>
|
||
|
Pick your favorite hero
|
||
|
(<label><input type="checkbox" checked (change)="showSad=!showSad">show sad</label>)
|
||
|
</div>
|
||
|
<select [(ngModel)]="hero">
|
||
|
<ng-container *ngFor="let h of heroes">
|
||
|
<ng-container *ngIf="showSad || h?.emotion !== 'sad'">
|
||
|
<option [ngValue]="h">{{h.name}} ({{h?.emotion}})</option>
|
||
|
</ng-container>
|
||
|
</ng-container>
|
||
|
</select>
|
||
|
|
||
|
<br><br><br><br>
|
||
|
|
||
|
<h4>#2 &lt;ng-container&gt; and &lt;options&gt;</h4>
|
||
|
<p>
|
||
|
<label (change)="traitPicker.value=showDefaultTraits ? 'loyal' : heroTraits[0]">
|
||
|
<input type="checkbox"
|
||
|
[checked]="showDefaultTraits"
|
||
|
(change)="showDefaultTraits=!showDefaultTraits">Show default traits
|
||
|
</label>
|
||
|
</p>
|
||
|
|
||
|
<p>Options with &lt;ng-container&gt;</p>
|
||
|
|
||
|
<select #traitPicker>
|
||
|
<ng-container *ngIf="showDefaultTraits">
|
||
|
<!-- Default traits -->
|
||
|
<option value="loyal">LOYAL</option>
|
||
|
<option value="clean">CLEAN</option>
|
||
|
<option value="reverent">REVERENT</option>
|
||
|
</ng-container>
|
||
|
<option *ngFor="let trait of heroTraits" [value]="trait">
|
||
|
{{ trait | uppercase }}
|
||
|
</option>
|
||
|
</select>
|
||
|
|
||
|
|
||
|
<p>Options with &lt;span&gt;</p>
|
||
|
<select>
|
||
|
<!-- Default traits are always excluded because intermediate <span> is illegal -->
|
||
|
<span *ngIf="showDefaultTraits">
|
||
|
<option value="loyal">LOYAL</option>
|
||
|
<option value="clean">CLEAN</option>
|
||
|
<option value="reverent">REVERENT</option>
|
||
|
</span>
|
||
|
<option *ngFor="let trait of heroTraits" [value]="trait">
|
||
|
{{ trait | uppercase }}
|
||
|
</option>
|
||
|
</select>
|
||
|
|
||
|
<br>
|
||
|
|
||
|
<h4>&lt;ng-container&gt; and &lt;table&gt;</h4>
|
||
|
<p>
|
||
|
<label><input type="checkbox" checked (change)="attrDirs=!attrDirs">Attribute directives</label>
|
||
|
<label><input type="checkbox" checked (change)="strucDirs=!strucDirs">Structural directives</label>
|
||
|
<label><input type="checkbox" (change)="divNgIf=!divNgIf">div with *ngIf</label>
|
||
|
</p>
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th width="20%">Directive</th>
|
||
|
<th width="10%">Type</th>
|
||
|
<th>Description</th>
|
||
|
</tr>
|
||
|
|
||
|
<tr *ngIf="attrDirs">
|
||
|
<td>NgClass</td><td>A</td><td>Add or remove multiple CSS classes.</td>
|
||
|
</tr>
|
||
|
|
||
|
<ng-container *ngIf="divNgIf">
|
||
|
<div *ngIf="strucDirs">
|
||
|
<tr>
|
||
|
<td>xxx</td><td>S</td><td>div with *ngIf formats crazy.</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>yyy</td><td>S</td><td>div with *ngIf formats crazy.</td>
|
||
|
</tr>
|
||
|
</div>
|
||
|
</ng-container>
|
||
|
|
||
|
<ng-container *ngIf="strucDirs">
|
||
|
<tr>
|
||
|
<td>NgFor</td><td>S</td><td>Repeat the template for each item in a list.</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>NgIf</td><td>S</td><td>Add or remove DOM elements.</td>
|
||
|
</tr>
|
||
|
</ng-container>
|
||
|
|
||
|
<ng-container *ngIf="attrDirs">
|
||
|
<tr>
|
||
|
<td>NgStyle</td><td>A</td><td>Add or remove multiple style attributes.</td>
|
||
|
</tr>
|
||
|
</ng-container>
|
||
|
|
||
|
<tr *ngIf="strucDirs">
|
||
|
<td>NgSwitch</td><td>S</td><td>Include in DOM if case matches the switch value.</td>
|
||
|
</tr>
|
||
|
|
||
|
</table>
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
<h3>Do not confuse &lt;ng-container&gt; with &lt;ng-content&gt;</h3>
|
||
|
|
||
|
<p>&lt;ng-container&gt;Inside ng-container&lt;/ng-container&gt;</p>
|
||
|
<ng-container>Inside ng-container</ng-container>
|
||
|
|
||
|
<p>&lt;ng-content&gt;this is an Angular parse error&lt;/ng-content&gt;</p>
|
||
|
<!-- <ng-content>this is an Angular parse error</ng-content> -->
|
||
|
<div class="code">Template parse errors:<br>
|
||
|
&lt;ng-content&gt; element cannot have content.</div>
|
||
|
|
||
|
<p>Demo of &lt;/ng-content&gt;</p>
|
||
|
<content-comp>
|
||
|
Projected content
|
||
|
</content-comp>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
-->"><input type="hidden" name="files[src/index.html]" value="<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Angular &lt;ng-container&gt;</title>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<body>
|
||
|
<app-root>Loading...</app-root>
|
||
|
</body>
|
||
|
|
||
|
</html>
|
||
|
|
||
|
|
||
|
<!--
|
||
|
Copyright Google LLC. All Rights Reserved.
|
||
|
Use of this source code is governed by an MIT-style license that
|
||
|
can be found in the LICENSE file at https://angular.io/license
|
||
|
-->"><input type="hidden" name="files[angular.json]" value="{
|
||
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||
|
"version": 1,
|
||
|
"newProjectRoot": "projects",
|
||
|
"projects": {
|
||
|
"angular.io-example": {
|
||
|
"projectType": "application",
|
||
|
"schematics": {
|
||
|
"@schematics/angular:application": {
|
||
|
"strict": true
|
||
|
}
|
||
|
},
|
||
|
"root": "",
|
||
|
"sourceRoot": "src",
|
||
|
"prefix": "app",
|
||
|
"architect": {
|
||
|
"build": {
|
||
|
"builder": "@angular-devkit/build-angular:browser",
|
||
|
"options": {
|
||
|
"outputPath": "dist",
|
||
|
"index": "src/index.html",
|
||
|
"main": "src/main.ts",
|
||
|
"polyfills": "src/polyfills.ts",
|
||
|
"tsConfig": "tsconfig.app.json",
|
||
|
"aot": true,
|
||
|
"assets": [
|
||
|
"src/favicon.ico",
|
||
|
"src/assets"
|
||
|
],
|
||
|
"styles": [
|
||
|
"src/styles.css"
|
||
|
],
|
||
|
"scripts": []
|
||
|
},
|
||
|
"configurations": {
|
||
|
"production": {
|
||
|
"fileReplacements": [
|
||
|
{
|
||
|
"replace": "src/environments/environment.ts",
|
||
|
"with": "src/environments/environment.prod.ts"
|
||
|
}
|
||
|
],
|
||
|
"optimization": true,
|
||
|
"outputHashing": "all",
|
||
|
"sourceMap": false,
|
||
|
"namedChunks": false,
|
||
|
"extractLicenses": true,
|
||
|
"vendorChunk": false,
|
||
|
"buildOptimizer": true,
|
||
|
"budgets": [
|
||
|
{
|
||
|
"type": "initial",
|
||
|
"maximumWarning": "500kb",
|
||
|
"maximumError": "1mb"
|
||
|
},
|
||
|
{
|
||
|
"type": "anyComponentStyle",
|
||
|
"maximumWarning": "2kb",
|
||
|
"maximumError": "4kb"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"serve": {
|
||
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||
|
"options": {
|
||
|
"browserTarget": "angular.io-example:build"
|
||
|
},
|
||
|
"configurations": {
|
||
|
"production": {
|
||
|
"browserTarget": "angular.io-example:build:production"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"extract-i18n": {
|
||
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||
|
"options": {
|
||
|
"browserTarget": "angular.io-example:build"
|
||
|
}
|
||
|
},
|
||
|
"test": {
|
||
|
"builder": "@angular-devkit/build-angular:karma",
|
||
|
"options": {
|
||
|
"main": "src/test.ts",
|
||
|
"polyfills": "src/polyfills.ts",
|
||
|
"tsConfig": "tsconfig.spec.json",
|
||
|
"karmaConfig": "karma.conf.js",
|
||
|
"assets": [
|
||
|
"src/favicon.ico",
|
||
|
"src/assets"
|
||
|
],
|
||
|
"styles": [
|
||
|
"src/styles.css"
|
||
|
],
|
||
|
"scripts": []
|
||
|
}
|
||
|
},
|
||
|
"lint": {
|
||
|
"builder": "@angular-devkit/build-angular:tslint",
|
||
|
"options": {
|
||
|
"tsConfig": [
|
||
|
"tsconfig.app.json",
|
||
|
"tsconfig.spec.json",
|
||
|
"e2e/tsconfig.json"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/node_modules/**"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"e2e": {
|
||
|
"builder": "@angular-devkit/build-angular:protractor",
|
||
|
"options": {
|
||
|
"protractorConfig": "e2e/protractor.conf.js",
|
||
|
"devServerTarget": "angular.io-example:serve"
|
||
|
},
|
||
|
"configurations": {
|
||
|
"production": {
|
||
|
"devServerTarget": "angular.io-example:serve:production"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"defaultProject": "angular.io-example"
|
||
|
}
|
||
|
"><input type="hidden" name="files[tsconfig.json]" value="{
|
||
|
"compileOnSave": false,
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": "./",
|
||
|
"outDir": "./dist/out-tsc",
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"sourceMap": true,
|
||
|
"declaration": false,
|
||
|
"downlevelIteration": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"moduleResolution": "node",
|
||
|
"importHelpers": true,
|
||
|
"target": "es2015",
|
||
|
"module": "es2020",
|
||
|
"lib": [
|
||
|
"es2018",
|
||
|
"dom"
|
||
|
]
|
||
|
},
|
||
|
"angularCompilerOptions": {
|
||
|
"strictInjectionParameters": true,
|
||
|
"strictInputAccessModifiers": true,
|
||
|
"strictTemplates": true,
|
||
|
"enableIvy": true
|
||
|
}
|
||
|
}"><input type="hidden" name="tags[0]" value="angular"><input type="hidden" name="tags[1]" value="example"><input type="hidden" name="tags[2]" value="ngcontainer"><input type="hidden" name="tags[3]" value="structural"><input type="hidden" name="tags[4]" value="directives"><input type="hidden" name="description" value="Angular Example - <ng-container>"><input type="hidden" name="dependencies" value="{"@angular/animations":"~11.0.1","@angular/common":"~11.0.1","@angular/compiler":"~11.0.1","@angular/core":"~11.0.1","@angular/forms":"~11.0.1","@angular/platform-browser":"~11.0.1","@angular/platform-browser-dynamic":"~11.0.1","@angular/router":"~11.0.1","angular-in-memory-web-api":"~0.11.0","rxjs":"~6.6.0","tslib":"^2.0.0","zone.js":"~0.11.4","jasmine-core":"~3.6.0","jasmine-marbles":"~0.6.0"}"></form>
|
||
|
<script>
|
||
|
var embedded = 'ctl=1';
|
||
|
var isEmbedded = window.location.search.indexOf(embedded) > -1;
|
||
|
|
||
|
if (isEmbedded) {
|
||
|
var form = document.getElementById('mainForm');
|
||
|
var action = form.action;
|
||
|
var actionHasParams = action.indexOf('?') > -1;
|
||
|
var symbol = actionHasParams ? '&' : '?'
|
||
|
form.action = form.action + symbol + embedded;
|
||
|
}
|
||
|
document.getElementById("mainForm").submit();
|
||
|
</script>
|
||
|
</body></html>
|