aurelia-materialize-bridge
Version:
Aurelia interface to http://materializecss.com/
48 lines • 1.5 kB
JavaScript
import * as tslib_1 from "tslib";
import * as au from "../aurelia";
let MdBadge = class MdBadge {
constructor(element) {
this.element = element;
this.isNew = false;
this.caption = null;
this.attributeManager = new au.AttributeManager(this.element);
}
isNewChanged() {
if (this.isNew) {
this.attributeManager.addClasses("new");
}
else {
this.attributeManager.removeClasses("new");
}
}
captionChanged() {
if (this.caption !== null) {
this.attributeManager.addAttributes({ "data-badge-caption": this.caption });
}
else {
this.attributeManager.removeAttributes(["data-badge-caption"]);
}
}
attached() {
this.element.classList.add("badge");
}
detached() {
this.attributeManager.removeClasses(["badge", "new"]);
this.attributeManager.removeAttributes(["data-badge-caption"]);
}
};
tslib_1.__decorate([
au.ato.bindable,
tslib_1.__metadata("design:type", Boolean)
], MdBadge.prototype, "isNew", void 0);
tslib_1.__decorate([
au.ato.bindable,
tslib_1.__metadata("design:type", String)
], MdBadge.prototype, "caption", void 0);
MdBadge = tslib_1.__decorate([
au.customAttribute("md-badge"),
au.autoinject,
tslib_1.__metadata("design:paramtypes", [Element])
], MdBadge);
export { MdBadge };
//# sourceMappingURL=badge.js.map