1. import {Input, Component, View, NgClass} from "angular2/angular2";
  2.  
  3. @Component({
  4. selector: 'todo-item-render'
  5. })
  6. @View({
  7. directives: [NgClass],
  8. styles: [`
  9. .started{
  10. color: green;
  11. }
  12.  
  13. .completed {
  14. text-decoration: line-through;
  15. }
  16. `],
  17. template: `
  18. <div>
  19. <span [ng-class]="todoinput.status">{{todoinput.title}}</span>
  20. <button (click)="todoinput.toggle()">Toggle</button>
  21. </div>
  22. `
  23. })
  24.  
  25. export class TodoItemRender{
  26. @Input() todoinput: TodoModel;
  27. }

Many Components require different styles based on a set of conditions. Angular 2 helps you style your Components by allows you to define Styles inline, then choosing which styles to use based on the current values in your Controller.

You can define a static var on the TodoModel:

  1. export class TodoModel{
  2. static STARTED: string = "started";
  3. static COMPLETED: string = "completed";
  4. status: string = TodoModel.STARTED;
  5. constructor(
  6. public title: string = ""
  7. ){}
  8.  
  9. toggle(): void{
  10. if(this.status === TodoModel.STARTED) this.status = TodoModel.COMPLETED;
  11. else this.status = TodoModel.STARTED;
  12. }
  13. }
  14.  
  15. export class TodoService{
  16. todos: TodoModel[] = [
  17. new TodoModel('eat'),
  18. new TodoModel('sleep'),
  19. new TodoModel('work')
  20. ];
  21.  
  22. addTodo(value: TodoModel):void {
  23. this.todos.push(value);
  24. }
  25. }

Then in the todoItemRender, you can require TodoModel and use the static var:

  1. import {Input, Component, View, NgClass} from "angular2/angular2";
  2. import {TodoModel} from './todoService';
  3.  
  4. @Component({
  5. selector: 'todo-item-render'
  6. })
  7. @View({
  8. directives: [NgClass],
  9. styles: [`
  10. .${TodoModel.STARTED}{
  11. color: green;
  12. }
  13.  
  14. .${TodoModel.COMPLETED}{
  15. text-decoration: line-through;
  16. }
  17. `],
  18. template: `
  19. <div>
  20. <span [ng-class]="todoinput.status">{{todoinput.title}}</span>
  21. <button (click)="todoinput.toggle()">Toggle</button>
  22. </div>
  23. `
  24. })
  25.  
  26. export class TodoItemRender{
  27. @Input() todoinput: TodoModel;
  28. }

[Angular 2] ng-class and Encapsulated Component Styles的更多相关文章

  1. Angular CLI ng常用指令整理

    一.组件创建 ng generate component heroes 二.运行项目 ng serve --open //--open 立即打开 三.创建指令 ng g directive my-ne ...

  2. [Angular 2]ng-class and Encapsulated Component Style2

    Many Components require different styles based on a set of conditions. Angular 2 helps you style you ...

  3. [Angular 2] Building a Toggle Button Component

    This lesson shows you how to build a Toggle Button in Angular 2 from scratch. It covers using transc ...

  4. Angular: 执行ng lint后如何快速修改错误

    当我第一次被分配到“修正执行ng lint语句后的错误”这项任务前,我就被导师提前告知这是一个很无聊的任务,当我开始后,我发现其实有一些办法可以加快这个无聊单调的工作.接下来,我就分享一下我的经验. ...

  5. 从flask视角理解angular(二)Blueprint VS Component

    Component类似flask app下面的每个blueprint. import 'rxjs/add/operator/switchMap'; import { Component, OnInit ...

  6. [Angular 2] Generate and Render Angular 2 Template Elements in a Component

    Angular 2 Components have templates, but you can also create templates inside of your templates usin ...

  7. ANGULAR 使用 ng build --prod 编译报内存错误的解决办法

    如果你遇到如下的情况 <--- Last few GCs ---> [13724:0000020D39C660D0] 231298 ms: Mark-sweep 1356.3 (1433. ...

  8. [Angular & Unit Testing] Testing a RouterOutlet component

    The way to test router componet needs a little bit setup, first we need to create a "router-stu ...

  9. [Angular Unit Testing] Debug unit testing -- component rendering

    If sometime you want to log out the comonent html to see whether the html render correctly, you can ...

随机推荐

  1. Android的进程和线程(转)

    进程和线程 当一个应用程序第一次启动的时候,Android会启动一个Linux进程和一个主线程(即UI线程:主要负责处理用户的按键事件.触屏事件及屏幕绘图事件等).默认情况下,所有该程序的组件都将在该 ...

  2. C# .NET3.5 改为 到.NET2.0 时 TypedTableBase 报错解决方法

    NET 3.5 降版本 到.NET 2.0.不出意外,问题必然来了.编译错误一:错误 1 命名空间“System”中不存在类型或命名空间名称“Linq”(是缺少程序集引用吗?)解决:删掉该引用--没用 ...

  3. XAMPP 使用教程

        XAMPP 是一个把Apache网页服务器与PHP.Perl及MySQL集合在一起的安装包,允许用户可以在自己的电脑上轻易的建立网页服务器.使用 XAMPP 您可以轻松的在本机调试您的 PHP ...

  4. JQuery zoom插件学习

    jquery zoom是一款图片放大插件,经常用在商城商品页面里. 使用JQuery zoom插件,除了需要引入JQuery.js外,还要引入JQuery.zoom.js文件及jqzoom.css文件 ...

  5. Android输入法开发

    1. 概念 * IMF: 输入法框架(Input Method Framework) * IM: 输入法(Input Method) * IMS: 输入法服务(Input Method Service ...

  6. Android各种访问权限Permission详解

    原文:http://jingyan.baidu.com/article/afd8f4de4688af34e386e976.html 在Android的设计中,资源的访问或者网络连接,要得到这些服务都需 ...

  7. 查看Oracle是否锁表

    --Oracle数据库操作中,我们有时会用到锁表查询以及解锁和kill进程等操作,那么这些操作是怎么实现的呢?本文我们主要就介绍一下这部分内容. --(1)锁表查询的代码有以下的形式: select ...

  8. bzoj1136: [POI2009]Arc

    Description 给定一个序列{ai | 1 <= ai <= 1000000000 且 1 <= i <= n 且 n <= 15000000}和一个整数 k ( ...

  9. Python字符编码讲解

    声明:本文参考 Python字符编码详解 在计算机中我们不管用什么语言和程序,最终数据在计算机中的都是字节码(也就是01形式)的形式存在的,如果 计算机直接把字节码显示在屏幕上,很明显一般人看不懂字节 ...

  10. 转:aptitude 命令详解

    原文:http://www.isspy.com/aptitude-%E5%91%BD%E4%BB%A4%E8%AF%A6%E8%A7%A3/ aptitude aptitude 是 Debian GN ...