2015-07-04 15:04:50 +02:00
|
|
|
import {Directive, LifecycleEvent} from 'angular2/annotations';
|
2015-05-20 17:19:46 -07:00
|
|
|
import {ElementRef} from 'angular2/core';
|
2015-07-09 10:34:51 -07:00
|
|
|
import {Pipes} from 'angular2/src/change_detection/pipes/pipes';
|
2015-06-21 11:54:21 +02:00
|
|
|
import {Pipe} from 'angular2/src/change_detection/pipes/pipe';
|
2015-06-23 14:26:02 -07:00
|
|
|
import {Renderer} from 'angular2/src/render/api';
|
2015-06-21 11:54:21 +02:00
|
|
|
import {KeyValueChanges} from 'angular2/src/change_detection/pipes/keyvalue_changes';
|
|
|
|
import {IterableChanges} from 'angular2/src/change_detection/pipes/iterable_changes';
|
|
|
|
import {isPresent, isString, StringWrapper} from 'angular2/src/facade/lang';
|
|
|
|
import {ListWrapper, StringMapWrapper, isListLikeIterable} from 'angular2/src/facade/collection';
|
2015-03-26 17:51:08 +01:00
|
|
|
|
2015-06-19 09:41:58 +02:00
|
|
|
/**
|
|
|
|
* Adds and removes CSS classes based on an {expression} value.
|
|
|
|
*
|
|
|
|
* The result of expression is used to add and remove CSS classes using the following logic,
|
|
|
|
* based on expression's value type:
|
|
|
|
* - {string} - all the CSS classes (space - separated) are added
|
|
|
|
* - {Array} - all the CSS classes (Array elements) are added
|
|
|
|
* - {Object} - each key corresponds to a CSS class name while values
|
|
|
|
* are interpreted as {boolean} expression. If a given expression
|
|
|
|
* evaluates to {true} a corresponding CSS class is added - otherwise
|
|
|
|
* it is removed.
|
|
|
|
*
|
|
|
|
* # Example:
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* <div class="message" [class]="{error: errorCount > 0}">
|
|
|
|
* Please check errors.
|
|
|
|
* </div>
|
|
|
|
* ```
|
|
|
|
*/
|
2015-07-04 15:04:50 +02:00
|
|
|
@Directive(
|
|
|
|
{selector: '[class]', lifecycle: [LifecycleEvent.onCheck], properties: ['rawClass: class']})
|
2015-03-26 17:51:08 +01:00
|
|
|
export class CSSClass {
|
2015-06-21 11:54:21 +02:00
|
|
|
_pipe: Pipe;
|
2015-06-18 15:40:12 -07:00
|
|
|
_rawClass;
|
|
|
|
|
2015-07-09 10:34:51 -07:00
|
|
|
constructor(private _pipes: Pipes, private _ngEl: ElementRef, private _renderer: Renderer) {}
|
2015-03-26 17:51:08 +01:00
|
|
|
|
2015-06-18 15:40:12 -07:00
|
|
|
set rawClass(v) {
|
2015-06-21 11:54:21 +02:00
|
|
|
this._cleanupClasses(this._rawClass);
|
2015-06-18 15:40:12 -07:00
|
|
|
|
2015-06-21 11:54:21 +02:00
|
|
|
if (isString(v)) {
|
|
|
|
v = v.split(' ');
|
|
|
|
}
|
|
|
|
|
|
|
|
this._rawClass = v;
|
2015-07-09 10:34:51 -07:00
|
|
|
this._pipe = this._pipes.get(isListLikeIterable(v) ? 'iterableDiff' : 'keyValDiff', v);
|
2015-03-26 17:51:08 +01:00
|
|
|
}
|
|
|
|
|
2015-06-21 11:54:21 +02:00
|
|
|
onCheck(): void {
|
2015-06-26 00:22:06 +04:30
|
|
|
var diff = this._pipe.transform(this._rawClass, null);
|
2015-06-21 11:54:21 +02:00
|
|
|
if (isPresent(diff) && isPresent(diff.wrapped)) {
|
|
|
|
if (diff.wrapped instanceof IterableChanges) {
|
|
|
|
this._applyArrayChanges(diff.wrapped);
|
|
|
|
} else {
|
|
|
|
this._applyObjectChanges(diff.wrapped);
|
|
|
|
}
|
|
|
|
}
|
2015-06-18 15:40:12 -07:00
|
|
|
}
|
2015-06-18 15:01:19 +02:00
|
|
|
|
2015-06-21 11:54:21 +02:00
|
|
|
private _cleanupClasses(rawClassVal): void {
|
|
|
|
if (isPresent(rawClassVal)) {
|
|
|
|
if (isListLikeIterable(rawClassVal)) {
|
|
|
|
ListWrapper.forEach(rawClassVal, (className) => { this._toggleClass(className, false); });
|
|
|
|
} else {
|
|
|
|
StringMapWrapper.forEach(rawClassVal, (expVal, className) => {
|
|
|
|
if (expVal) this._toggleClass(className, false);
|
|
|
|
});
|
|
|
|
}
|
2015-03-26 17:51:08 +01:00
|
|
|
}
|
|
|
|
}
|
2015-06-21 11:54:21 +02:00
|
|
|
|
|
|
|
private _applyObjectChanges(diff: KeyValueChanges): void {
|
|
|
|
diff.forEachAddedItem((record) => { this._toggleClass(record.key, record.currentValue); });
|
|
|
|
diff.forEachChangedItem((record) => { this._toggleClass(record.key, record.currentValue); });
|
|
|
|
diff.forEachRemovedItem((record) => {
|
|
|
|
if (record.previousValue) {
|
|
|
|
this._toggleClass(record.key, false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private _applyArrayChanges(diff: IterableChanges): void {
|
|
|
|
diff.forEachAddedItem((record) => { this._toggleClass(record.item, true); });
|
|
|
|
diff.forEachRemovedItem((record) => { this._toggleClass(record.item, false); });
|
|
|
|
}
|
|
|
|
|
|
|
|
private _toggleClass(className: string, enabled): void {
|
|
|
|
this._renderer.setElementClass(this._ngEl, className, enabled);
|
|
|
|
}
|
2015-03-26 17:51:08 +01:00
|
|
|
}
|