[Angular 2] ng-class and Encapsulated Component Styles

复制代码
import {Input, Component, View, NgClass} from "angular2/angular2";

@Component({
    selector: 'todo-item-render'
})
@View({
    directives: [NgClass],
    styles: [`
        .started{
            color: green;
        }

        .completed {
            text-decoration: line-through;
        }
    `],
    template: `
       <div>
           <span [ng-class]="todoinput.status">{{todoinput.title}}</span>
           <button (click)="todoinput.toggle()">Toggle</button>
       </div>
    `
})

export class TodoItemRender{
    @Input() todoinput: TodoModel;
}
复制代码

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:

复制代码
export class TodoModel{
    static STARTED: string = "started";
    static COMPLETED: string = "completed";
    status: string = TodoModel.STARTED;
    constructor(
        public title: string = ""
    ){}

    toggle(): void{
        if(this.status === TodoModel.STARTED) this.status = TodoModel.COMPLETED;
        else this.status = TodoModel.STARTED;
    }
}


export class TodoService{
    todos: TodoModel[] = [
        new TodoModel('eat'),
        new TodoModel('sleep'),
        new TodoModel('work')
    ];

    addTodo(value: TodoModel):void {
        this.todos.push(value);
    }
}
复制代码

 

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

复制代码
import {Input, Component, View, NgClass} from "angular2/angular2";
import {TodoModel} from './todoService';

@Component({
    selector: 'todo-item-render'
})
@View({
    directives: [NgClass],
    styles: [`
        .${TodoModel.STARTED}{
            color: green;
        }

        .${TodoModel.COMPLETED}{
            text-decoration: line-through;
        }
    `],
    template: `
       <div>
           <span [ng-class]="todoinput.status">{{todoinput.title}}</span>
           <button (click)="todoinput.toggle()">Toggle</button>
       </div>
    `
})

export class TodoItemRender{
    @Input() todoinput: TodoModel;
}
复制代码

 

posted @   Zhentiw  阅读(573)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2013-10-28 Dynamic Programming for TSP
点击右上角即可分享
微信分享提示