2015-06-18 15:01:19 +02:00
|
|
|
import {Directive, onCheck} from 'angular2/annotations';
|
2015-05-20 17:19:46 -07:00
|
|
|
import {ElementRef} from 'angular2/core';
|
2015-06-18 15:01:19 +02:00
|
|
|
import {PipeRegistry} from 'angular2/src/change_detection/pipes/pipe_registry';
|
2015-03-26 17:51:08 +01:00
|
|
|
import {isPresent} from 'angular2/src/facade/lang';
|
2015-06-23 14:26:02 -07:00
|
|
|
import {Renderer} from 'angular2/src/render/api';
|
2015-03-26 17:51:08 +01:00
|
|
|
|
2015-06-18 15:01:19 +02:00
|
|
|
@Directive({selector: '[class]', lifecycle: [onCheck], properties: ['rawClass: class']})
|
2015-03-26 17:51:08 +01:00
|
|
|
export class CSSClass {
|
2015-06-18 15:01:19 +02:00
|
|
|
_pipe;
|
2015-06-18 15:40:12 -07:00
|
|
|
_rawClass;
|
|
|
|
|
2015-06-23 14:26:02 -07:00
|
|
|
constructor(private _pipeRegistry: PipeRegistry, 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) {
|
|
|
|
this._rawClass = v;
|
|
|
|
this._pipe = this._pipeRegistry.get('keyValDiff', this._rawClass);
|
|
|
|
}
|
|
|
|
|
2015-05-20 17:19:46 -07:00
|
|
|
_toggleClass(className, enabled): void {
|
2015-06-23 14:26:02 -07:00
|
|
|
this._renderer.setElementClass(this._ngEl, className, enabled);
|
2015-03-26 17:51:08 +01:00
|
|
|
}
|
|
|
|
|
2015-06-18 15:01:19 +02:00
|
|
|
onCheck() {
|
2015-06-18 15:40:12 -07:00
|
|
|
var diff = this._pipe.transform(this._rawClass);
|
|
|
|
if (isPresent(diff)) this._applyChanges(diff.wrapped);
|
|
|
|
}
|
2015-06-18 15:01:19 +02:00
|
|
|
|
2015-06-18 15:40:12 -07:00
|
|
|
private _applyChanges(diff) {
|
|
|
|
if (isPresent(diff)) {
|
|
|
|
diff.forEachAddedItem((record) => { this._toggleClass(record.key, record.currentValue); });
|
|
|
|
diff.forEachChangedItem((record) => { this._toggleClass(record.key, record.currentValue); });
|
|
|
|
diff.forEachRemovedItem((record) => {
|
2015-03-26 17:51:08 +01:00
|
|
|
if (record.previousValue) {
|
2015-06-23 14:26:02 -07:00
|
|
|
this._toggleClass(record.key, false);
|
2015-03-26 17:51:08 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|