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';
|
|
|
|
import {DOM} from 'angular2/src/dom/dom_adapter';
|
|
|
|
|
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 {
|
|
|
|
_domEl;
|
2015-06-18 15:01:19 +02:00
|
|
|
_pipe;
|
|
|
|
_prevRawClass;
|
|
|
|
rawClass;
|
|
|
|
constructor(private _pipeRegistry: PipeRegistry, ngEl: ElementRef) {
|
|
|
|
this._domEl = ngEl.domElement;
|
|
|
|
}
|
2015-03-26 17:51:08 +01:00
|
|
|
|
2015-05-20 17:19:46 -07:00
|
|
|
_toggleClass(className, enabled): void {
|
2015-03-26 17:51:08 +01:00
|
|
|
if (enabled) {
|
|
|
|
DOM.addClass(this._domEl, className);
|
|
|
|
} else {
|
|
|
|
DOM.removeClass(this._domEl, className);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-18 15:01:19 +02:00
|
|
|
onCheck() {
|
|
|
|
if (this.rawClass != this._prevRawClass) {
|
|
|
|
this._prevRawClass = this.rawClass;
|
|
|
|
this._pipe = isPresent(this.rawClass) ?
|
|
|
|
this._pipeRegistry.get('keyValDiff', this.rawClass, null) :
|
|
|
|
null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isPresent(this._pipe) && this._pipe.check(this.rawClass)) {
|
|
|
|
this._pipe.forEachAddedItem(
|
|
|
|
(record) => { this._toggleClass(record.key, record.currentValue); });
|
|
|
|
this._pipe.forEachChangedItem(
|
2015-05-20 17:19:46 -07:00
|
|
|
(record) => { this._toggleClass(record.key, record.currentValue); });
|
2015-06-18 15:01:19 +02:00
|
|
|
this._pipe.forEachRemovedItem((record) => {
|
2015-03-26 17:51:08 +01:00
|
|
|
if (record.previousValue) {
|
|
|
|
DOM.removeClass(this._domEl, record.key);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|