aurelia-materialize-bridge
Version:
Aurelia interface to http://materializecss.com/
65 lines • 3.18 kB
JavaScript
System.register(["tslib", "../aurelia"], function (exports_1, context_1) {
"use strict";
var tslib_1, au, MdBox;
var __moduleName = context_1 && context_1.id;
return {
setters: [
function (tslib_1_1) {
tslib_1 = tslib_1_1;
},
function (au_1) {
au = au_1;
}
],
execute: function () {
MdBox = /** @class */ (function () {
function MdBox(element) {
this.element = element;
this.attributeManager = new au.AttributeManager(this.element);
}
MdBox.prototype.attached = function () {
var _this = this;
this.attributeManager.addClasses("materialboxed");
if (this.caption) {
this.attributeManager.addAttributes({ "data-caption": this.caption });
}
var options = {
inDuration: this.inDuration,
outDuration: this.outDuration,
onOpenStart: function () { return au.fireMaterializeEvent(_this.element, "open-start"); },
onOpenEnd: function () { return au.fireMaterializeEvent(_this.element, "open-end"); },
onCloseStart: function () { return au.fireMaterializeEvent(_this.element, "close-start"); },
onCloseEnd: function () { return au.fireMaterializeEvent(_this.element, "close-end"); }
};
au.cleanOptions(options);
this.instance = new M.Materialbox(this.element, options);
};
MdBox.prototype.detached = function () {
this.instance.destroy();
this.attributeManager.removeAttributes("data-caption");
this.attributeManager.removeClasses("materialboxed");
};
tslib_1.__decorate([
au.ato.bindable.stringMd({ defaultBindingMode: au.bindingMode.oneTime }),
tslib_1.__metadata("design:type", String)
], MdBox.prototype, "caption", void 0);
tslib_1.__decorate([
au.ato.bindable.numberMd({ defaultBindingMode: au.bindingMode.oneTime }),
tslib_1.__metadata("design:type", Number)
], MdBox.prototype, "inDuration", void 0);
tslib_1.__decorate([
au.ato.bindable.numberMd({ defaultBindingMode: au.bindingMode.oneTime }),
tslib_1.__metadata("design:type", Number)
], MdBox.prototype, "outDuration", void 0);
MdBox = tslib_1.__decorate([
au.customAttribute("md-box"),
au.autoinject,
tslib_1.__metadata("design:paramtypes", [Element])
], MdBox);
return MdBox;
}());
exports_1("MdBox", MdBox);
}
};
});
//# sourceMappingURL=box.js.map