").addClass(ACCORDION_WRAPPER_CLASS);
$element.append(this._$container)
},
_initTemplates: function() {
this.callBase();
this._defaultTemplates.title = new _bindable_template2.default(function($container, data) {
if ((0, _type.isPlainObject)(data)) {
if ((0, _type.isDefined)(data.title) && !(0, _type.isPlainObject)(data.title)) {
$container.text(data.title)
}
var $iconElement = (0, _icon.getImageContainer)(data.icon);
$iconElement && $iconElement.appendTo($container)
} else {
if ((0, _type.isDefined)(data)) {
$container.text(String(data))
}
}
$container.wrapInner((0, _renderer2.default)("
").addClass(ACCORDION_ITEM_TITLE_CAPTION_CLASS))
}, ["title", "icon"], this.option("integrationOptions.watchMethod"))
},
_initMarkup: function() {
var _this = this;
this._deferredItems = [];
this.callBase();
this.setAria({
role: "tablist",
multiselectable: this.option("multiple")
});
(0, _common.deferRender)(function() {
var selectedItemIndices = _this._getSelectedItemIndices();
_this._renderSelection(selectedItemIndices, [])
})
},
_render: function() {
this.callBase();
this._updateItemHeightsWrapper(true)
},
_itemDataKey: function() {
return ACCORDION_ITEM_DATA_KEY
},
_itemClass: function() {
return ACCORDION_ITEM_CLASS
},
_itemContainer: function() {
return this._$container
},
_itemTitles: function() {
return this._itemElements().find("." + ACCORDION_ITEM_TITLE_CLASS)
},
_itemContents: function() {
return this._itemElements().find("." + ACCORDION_ITEM_BODY_CLASS)
},
_getItemData: function(target) {
return (0, _renderer2.default)(target).parent().data(this._itemDataKey()) || this.callBase.apply(this, arguments)
},
_executeItemRenderAction: function(itemData) {
if (itemData.type) {
return
}
this.callBase.apply(this, arguments)
},
_itemSelectHandler: function(e) {
if ((0, _renderer2.default)(e.target).closest(this._itemContents()).length) {
return
}
this.callBase.apply(this, arguments)
},
_afterItemElementDeleted: function($item, deletedActionArgs) {
this._deferredItems.splice(deletedActionArgs.itemIndex, 1);
this.callBase.apply(this, arguments)
},
_renderItemContent: function(args) {
var itemTitle = this.callBase((0, _extend.extend)({}, args, {
contentClass: ACCORDION_ITEM_TITLE_CLASS,
templateProperty: "titleTemplate",
defaultTemplateName: this.option("itemTitleTemplate")
}));
this._attachItemTitleClickAction(itemTitle);
var deferred = new _deferred.Deferred;
if ((0, _type.isDefined)(this._deferredItems[args.index])) {
this._deferredItems[args.index] = deferred
} else {
this._deferredItems.push(deferred)
}
if (!this.option("deferRendering") || this._getSelectedItemIndices().indexOf(args.index) >= 0) {
deferred.resolve()
}
deferred.done(this.callBase.bind(this, (0, _extend.extend)({}, args, {
contentClass: ACCORDION_ITEM_BODY_CLASS,
container: (0, _dom.getPublicElement)((0, _renderer2.default)("
").appendTo((0, _renderer2.default)(itemTitle).parent()))
})))
},
_attachItemTitleClickAction: function(itemTitle) {
var eventName = _utils2.default.addNamespace(_click2.default.name, this.NAME);
_events_engine2.default.off(itemTitle, eventName);
_events_engine2.default.on(itemTitle, eventName, this._itemTitleClickHandler.bind(this))
},
_itemTitleClickHandler: function(e) {
this._itemDXEventHandler(e, "onItemTitleClick")
},
_renderSelection: function(addedSelection, removedSelection) {
this._itemElements().addClass(ACCORDION_ITEM_CLOSED_CLASS);
this.setAria("hidden", true, this._itemContents());
this._updateItems(addedSelection, removedSelection)
},
_updateSelection: function(addedSelection, removedSelection) {
this._updateItems(addedSelection, removedSelection);
this._updateItemHeightsWrapper(false)
},
_updateItems: function(addedSelection, removedSelection) {
var $items = this._itemElements();
var that = this;
_iterator2.default.each(addedSelection, function(_, index) {
that._deferredItems[index].resolve();
var $item = $items.eq(index).addClass(ACCORDION_ITEM_OPENED_CLASS).removeClass(ACCORDION_ITEM_CLOSED_CLASS);
that.setAria("hidden", false, $item.find("." + ACCORDION_ITEM_BODY_CLASS))
});
_iterator2.default.each(removedSelection, function(_, index) {
var $item = $items.eq(index).removeClass(ACCORDION_ITEM_OPENED_CLASS);
that.setAria("hidden", true, $item.find("." + ACCORDION_ITEM_BODY_CLASS))
})
},
_updateItemHeightsWrapper: function(skipAnimation) {
if (this.option("templatesRenderAsynchronously")) {
this._animationTimer = setTimeout(function() {
this._updateItemHeights(skipAnimation)
}.bind(this))
} else {
this._updateItemHeights(skipAnimation)
}
},
_updateItemHeights: function(skipAnimation) {
var that = this;
var deferredAnimate = that._deferredAnimate;
var itemHeight = this._splitFreeSpace(this._calculateFreeSpace());
clearTimeout(this._animationTimer);
return _deferred.when.apply(_renderer2.default, [].slice.call(this._itemElements()).map(function(item) {
return that._updateItemHeight((0, _renderer2.default)(item), itemHeight, skipAnimation)
})).done(function() {
if (deferredAnimate) {
deferredAnimate.resolveWith(that)
}
})
},
_updateItemHeight: function($item, itemHeight, skipAnimation) {
var $title = $item.children("." + ACCORDION_ITEM_TITLE_CLASS);
if (_fx2.default.isAnimating($item)) {
_fx2.default.stop($item)
}
var startItemHeight = $item.outerHeight();
var finalItemHeight = $item.hasClass(ACCORDION_ITEM_OPENED_CLASS) ? itemHeight + $title.outerHeight() || $item.height("auto").outerHeight() : $title.outerHeight();
return this._animateItem($item, startItemHeight, finalItemHeight, skipAnimation, !!itemHeight)
},
_animateItem: function($element, startHeight, endHeight, skipAnimation, fixedHeight) {
var d;
if (skipAnimation || startHeight === endHeight) {
$element.css("height", endHeight);
d = (new _deferred.Deferred).resolve()
} else {
d = _fx2.default.animate($element, {
type: "custom",
from: {
height: startHeight
},
to: {
height: endHeight
},
duration: this.option("animationDuration"),
easing: this.option("_animationEasing")
})
}
return d.done(function() {
if ($element.hasClass(ACCORDION_ITEM_OPENED_CLASS) && !fixedHeight) {
$element.css("height", "")
}
$element.not("." + ACCORDION_ITEM_OPENED_CLASS).addClass(ACCORDION_ITEM_CLOSED_CLASS)
})
},
_splitFreeSpace: function(freeSpace) {
if (!freeSpace) {
return freeSpace
}
return freeSpace / this.option("selectedItems").length
},
_calculateFreeSpace: function() {
var height = this.option("height");
if (void 0 === height || "auto" === height) {
return
}
var $titles = this._itemTitles();
var itemsHeight = 0;
_iterator2.default.each($titles, function(_, title) {
itemsHeight += (0, _renderer2.default)(title).outerHeight()
});
return this.$element().height() - itemsHeight
},
_visibilityChanged: function(visible) {
if (visible) {
this._dimensionChanged()
}
},
_dimensionChanged: function() {
this._updateItemHeights(true)
},
_clean: function() {
clearTimeout(this._animationTimer);
this.callBase()
},
_optionChanged: function(args) {
switch (args.name) {
case "animationDuration":
case "onItemTitleClick":
case "_animationEasing":
break;
case "collapsible":
this.option("selectionRequired", !this.option("collapsible"));
break;
case "itemTitleTemplate":
case "height":
case "deferRendering":
this._invalidate();
break;
case "multiple":
this.option("selectionMode", args.value ? "multiple" : "single");
break;
default:
this.callBase(args)
}
},
expandItem: function(index) {
this._deferredAnimate = new _deferred.Deferred;
this.selectItem(index);
return this._deferredAnimate.promise()
},
collapseItem: function(index) {
this._deferredAnimate = new _deferred.Deferred;
this.unselectItem(index);
return this._deferredAnimate.promise()
},
updateDimensions: function() {
return this._updateItemHeights(false)
}
});
(0, _component_registrator2.default)("dxAccordion", Accordion);
module.exports = Accordion;
module.exports.default = module.exports;