docs: add api doc for ngif (#27376)

PR Close #27376
This commit is contained in:
Judy Bogart 2018-11-30 08:29:34 -08:00 committed by Alex Rickabaugh
parent 988243437a
commit 661a98aeda

View File

@ -10,94 +10,140 @@ import {Directive, EmbeddedViewRef, Input, TemplateRef, ViewContainerRef, ɵstri
/** /**
* Conditionally includes a template based on the value of an `expression`. * A structural directive that conditionally includes a template based on the value of
* an expression coerced to Boolean.
* When the expression evaluates to true, Angular renders the template
* provided in a `then` clause, and when false or null,
* Angular renders the template provided in an optional `else` clause. The default
* template for the `else` clause is blank.
* *
* `ngIf` evaluates the `expression` and then renders the `then` or `else` template in its place * A [shorthand form](guide/structural-directives#the-asterisk--prefix) of the directive,
* when expression is truthy or falsy respectively. Typically the: * `*ngIf="condition"`, is generally used, provided
* - `then` template is the inline template of `ngIf` unless bound to a different value. * as an attribute of the anchor element for the inserted template.
* - `else` template is blank unless it is bound. * Angular expands this into a more explicit version, in which the anchor element
* is contained in an `<ng-template>` element.
* *
* Simple form with shorthand syntax:
*
* ```
* <div *ngIf="condition">Content to render when condition is true.</div>
* ```
*
* Simple form with expanded syntax:
*
* ```
* <ng-template [ngIf]="condition"><div>Content to render when condition is
* true.</div></ng-template>
* ```
*
* Form with an "else" block:
*
* ```
* <div *ngIf="condition; else elseBlock">Content to render when condition is true.</div>
* <ng-template #elseBlock>Content to render when condition is false.</ng-template>
* ```
*
* Shorthand form with "then" and "else" blocks:
*
* ```
* <div *ngIf="condition; then thenBlock else elseBlock"></div>
* <ng-template #thenBlock>Content to render when condition is true.</ng-template>
* <ng-template #elseBlock>Content to render when condition is false.</ng-template>
* ```
*
* Form with storing the value locally:
*
* ```
* <div *ngIf="condition as value; else elseBlock">{{value}}</div>
* <ng-template #elseBlock>Content to render when value is null.</ng-template>
* ```
* *
* @usageNotes * @usageNotes
* *
* ### Most common usage * The `*ngIf` directive is most commonly used to conditionally show an inline template,
* as seen in the following example.
* The default `else` template is blank.
* *
* The most common usage of the `ngIf` directive is to conditionally show the inline template as
* seen in this example:
* {@example common/ngIf/ts/module.ts region='NgIfSimple'} * {@example common/ngIf/ts/module.ts region='NgIfSimple'}
* *
* ### Showing an alternative template using `else` * ### Showing an alternative template using `else`
* *
* If it is necessary to display a template when the `expression` is falsy use the `else` template * To display a template when `expression` evaluates to false, use an `else` template
* binding as shown. Note that the `else` binding points to a `<ng-template>` labeled `#elseBlock`. * binding as shown in the following example.
* The template can be defined anywhere in the component view but is typically placed right after * The `else` binding points to an `<ng-template>` element labeled `#elseBlock`.
* The template can be defined anywhere in the component view, but is typically placed right after
* `ngIf` for readability. * `ngIf` for readability.
* *
* {@example common/ngIf/ts/module.ts region='NgIfElse'} * {@example common/ngIf/ts/module.ts region='NgIfElse'}
* *
* ### Using non-inlined `then` template * ### Using an external `then` template
* *
* Usually the `then` template is the inlined template of the `ngIf`, but it can be changed using * In the previous example, the then-clause template is specified inline, as the content of the
* a binding (just like `else`). Because `then` and `else` are bindings, the template references can * tag that contains the `ngIf` directive. You can also specify a template that is defined
* change at runtime as shown in this example. * externally, by referencing a labeled `<ng-template>` element. When you do this, you can
* change which template to use at runtime, as shown in the following example.
* *
* {@example common/ngIf/ts/module.ts region='NgIfThenElse'} * {@example common/ngIf/ts/module.ts region='NgIfThenElse'}
* *
* ### Storing conditional result in a variable * ### Storing a conditional result in a variable
* *
* A common pattern is that we need to show a set of properties from the same object. If the * You might want to show a set of properties from the same object. If you are waiting
* object is undefined, then we have to use the safe-traversal-operator `?.` to guard against * for asynchronous data, the object can be undefined.
* dereferencing a `null` value. This is especially the case when waiting on async data such as * In this case, you can use `ngIf` and store the result of the condition in a local
* when using the `async` pipe as shown in following example: * variable as shown in the the following example.
*
* ```
* Hello {{ (userStream|async)?.last }}, {{ (userStream|async)?.first }}!
* ```
*
* There are several inefficiencies in the above example:
* - We create multiple subscriptions on `userStream`. One for each `async` pipe, or two in the
* example above.
* - We cannot display an alternative screen while waiting for the data to arrive asynchronously.
* - We have to use the safe-traversal-operator `?.` to access properties, which is cumbersome.
* - We have to place the `async` pipe in parenthesis.
*
* A better way to do this is to use `ngIf` and store the result of the condition in a local
* variable as shown in the the example below:
* *
* {@example common/ngIf/ts/module.ts region='NgIfAs'} * {@example common/ngIf/ts/module.ts region='NgIfAs'}
* *
* Notice that: * This code uses only one `AsyncPipe`, so only one subscription is created.
* - We use only one `async` pipe and hence only one subscription gets created. * The conditional statement stores the result of `userStream|async` in the local variable `user`.
* - `ngIf` stores the result of the `userStream|async` in the local variable `user`. * You can then bind the local `user` repeatedly.
* - The local `user` can then be bound repeatedly in a more efficient way.
* - No need to use the safe-traversal-operator `?.` to access properties as `ngIf` will only
* display the data if `userStream` returns a value.
* - We can display an alternative template while waiting for the data.
* *
* ### Syntax * The conditional displays the data only if `userStream` returns a value,
* so you don't need to use the
* [safe-navigation-operator](guide/template-syntax#safe-navigation-operator) (`?.`)
* to guard against null values when accessing properties.
* You can display an alternative template while waiting for the data.
* *
* Simple form: * ### Shorthand syntax
* - `<div *ngIf="condition">...</div>` *
* - `<ng-template [ngIf]="condition"><div>...</div></ng-template>` * The shorthand syntax `*ngIf` expands into two separate template specifications
* for the "then" and "else" clauses. For example, consider the following shorthand statement,
* that is meant to show a loading page while waiting for data to be loaded.
* *
* Form with an else block:
* ``` * ```
* <div *ngIf="condition; else elseBlock">...</div> * <div class="hero-list" *ngIf="heroes else loading">
* <ng-template #elseBlock>...</ng-template> * ...
* </div>
*
* <ng-template #loading>
* <div>Loading...</div>
* </ng-template>
* ``` * ```
* *
* Form with a `then` and `else` block: * You can see that the "else" clause references the `<ng-template>`
* with the `#loading` label, and the template for the "then" clause
* is provided as the content of the anchor element.
*
* However, when Angular expands the shorthand syntax, it creates
* another `<ng-template>` tag, with `ngIf` and `ngIfElse` directives.
* The anchor element containing the template for the "then" clause becomes
* the content of this unlabeled `<ng-template>` tag.
*
* ``` * ```
* <div *ngIf="condition; then thenBlock else elseBlock"></div> * <ng-template [ngIf]="hero-list" [ngIfElse]="loading">
* <ng-template #thenBlock>...</ng-template> * <div class="hero-list">
* <ng-template #elseBlock>...</ng-template> * ...
* </div>
* </ng-template>
*
* <ng-template #loading>
* <div>Loading...</div>
* </ng-template>
* ``` * ```
* *
* Form with storing the value locally: * The presence of the implicit template object has implications for the nesting of
* ``` * structural directives. For more on this subject, see
* <div *ngIf="condition as value; else elseBlock">{{value}}</div> * [Structural Directives](https://angular.io/guide/structural-directives#one-per-element).
* <ng-template #elseBlock>...</ng-template>
* ```
* *
* @ngModule CommonModule * @ngModule CommonModule
* @publicApi * @publicApi