UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

58 lines 2.58 kB
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { if (typeof Reflect === "object" && typeof Reflect.decorate === "function") return Reflect.decorate(decorators, target, key, desc); switch (arguments.length) { case 2: return decorators.reduceRight(function(o, d) { return (d && d(o)) || o; }, target); case 3: return decorators.reduceRight(function(o, d) { return (d && d(target, key)), void 0; }, void 0); case 4: return decorators.reduceRight(function(o, d) { return (d && d(target, key, o)) || o; }, desc); } }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; import { Directive } from 'angular2/src/core/metadata'; import { ViewContainerRef, TemplateRef } from 'angular2/src/core/linker'; import { isBlank } from 'angular2/src/facade/lang'; /** * Removes or recreates a portion of the DOM tree based on an {expression}. * * If the expression assigned to `ng-if` evaluates to a false value then the element * is removed from the DOM, otherwise a clone of the element is reinserted into the DOM. * * ### Example ([live demo](http://plnkr.co/edit/fe0kgemFBtmQOY31b4tw?p=preview)): * * ``` * <div *ng-if="errorCount > 0" class="error"> * <!-- Error message displayed when the errorCount property on the current context is greater * than 0. --> * {{errorCount}} errors detected * </div> * ``` * *##Syntax * * - `<div *ng-if="condition">...</div>` * - `<div template="ng-if condition">...</div>` * - `<template [ng-if]="condition"><div>...</div></template>` */ export let NgIf = class { constructor(_viewContainer, _templateRef) { this._viewContainer = _viewContainer; this._templateRef = _templateRef; this._prevCondition = null; } set ngIf(newCondition /* boolean */) { if (newCondition && (isBlank(this._prevCondition) || !this._prevCondition)) { this._prevCondition = true; this._viewContainer.createEmbeddedView(this._templateRef); } else if (!newCondition && (isBlank(this._prevCondition) || this._prevCondition)) { this._prevCondition = false; this._viewContainer.clear(); } } }; NgIf = __decorate([ Directive({ selector: '[ng-if]', inputs: ['ngIf'] }), __metadata('design:paramtypes', [ViewContainerRef, TemplateRef]) ], NgIf); //# sourceMappingURL=ng_if.js.map