[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;
- }
[Angular 2] ng-class and Encapsulated Component Styles的更多相关文章
- Angular CLI ng常用指令整理
一.组件创建 ng generate component heroes 二.运行项目 ng serve --open //--open 立即打开 三.创建指令 ng g directive my-ne ...
- [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 ...
- [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 ...
- Angular: 执行ng lint后如何快速修改错误
当我第一次被分配到“修正执行ng lint语句后的错误”这项任务前,我就被导师提前告知这是一个很无聊的任务,当我开始后,我发现其实有一些办法可以加快这个无聊单调的工作.接下来,我就分享一下我的经验. ...
- 从flask视角理解angular(二)Blueprint VS Component
Component类似flask app下面的每个blueprint. import 'rxjs/add/operator/switchMap'; import { Component, OnInit ...
- [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 ...
- ANGULAR 使用 ng build --prod 编译报内存错误的解决办法
如果你遇到如下的情况 <--- Last few GCs ---> [13724:0000020D39C660D0] 231298 ms: Mark-sweep 1356.3 (1433. ...
- [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 ...
- [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 ...
随机推荐
- Android的进程和线程(转)
进程和线程 当一个应用程序第一次启动的时候,Android会启动一个Linux进程和一个主线程(即UI线程:主要负责处理用户的按键事件.触屏事件及屏幕绘图事件等).默认情况下,所有该程序的组件都将在该 ...
- C# .NET3.5 改为 到.NET2.0 时 TypedTableBase 报错解决方法
NET 3.5 降版本 到.NET 2.0.不出意外,问题必然来了.编译错误一:错误 1 命名空间“System”中不存在类型或命名空间名称“Linq”(是缺少程序集引用吗?)解决:删掉该引用--没用 ...
- XAMPP 使用教程
XAMPP 是一个把Apache网页服务器与PHP.Perl及MySQL集合在一起的安装包,允许用户可以在自己的电脑上轻易的建立网页服务器.使用 XAMPP 您可以轻松的在本机调试您的 PHP ...
- JQuery zoom插件学习
jquery zoom是一款图片放大插件,经常用在商城商品页面里. 使用JQuery zoom插件,除了需要引入JQuery.js外,还要引入JQuery.zoom.js文件及jqzoom.css文件 ...
- Android输入法开发
1. 概念 * IMF: 输入法框架(Input Method Framework) * IM: 输入法(Input Method) * IMS: 输入法服务(Input Method Service ...
- Android各种访问权限Permission详解
原文:http://jingyan.baidu.com/article/afd8f4de4688af34e386e976.html 在Android的设计中,资源的访问或者网络连接,要得到这些服务都需 ...
- 查看Oracle是否锁表
--Oracle数据库操作中,我们有时会用到锁表查询以及解锁和kill进程等操作,那么这些操作是怎么实现的呢?本文我们主要就介绍一下这部分内容. --(1)锁表查询的代码有以下的形式: select ...
- bzoj1136: [POI2009]Arc
Description 给定一个序列{ai | 1 <= ai <= 1000000000 且 1 <= i <= n 且 n <= 15000000}和一个整数 k ( ...
- Python字符编码讲解
声明:本文参考 Python字符编码详解 在计算机中我们不管用什么语言和程序,最终数据在计算机中的都是字节码(也就是01形式)的形式存在的,如果 计算机直接把字节码显示在屏幕上,很明显一般人看不懂字节 ...
- 转:aptitude 命令详解
原文:http://www.isspy.com/aptitude-%E5%91%BD%E4%BB%A4%E8%AF%A6%E8%A7%A3/ aptitude aptitude 是 Debian GN ...