forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
273 lines
9.3 KiB
273 lines
9.3 KiB
8 years ago
|
/**
|
||
|
*
|
||
|
* 某个可以展开的节点
|
||
|
*
|
||
|
* Created by GUY on 2015/9/10.
|
||
|
* @class BI.Expander
|
||
|
* @extends BI.Widget
|
||
|
*/
|
||
|
BI.Expander = BI.inherit(BI.Widget, {
|
||
|
_defaultConfig: function () {
|
||
|
return BI.extend(BI.Expander.superclass._defaultConfig.apply(this, arguments), {
|
||
|
baseCls: "bi-expander",
|
||
|
trigger: "click",
|
||
|
toggle: true,
|
||
|
//direction: "bottom", //top,bottom四个方向
|
||
|
isDefaultInit: false, //是否默认初始化子节点
|
||
|
el: {},
|
||
|
popup: {},
|
||
|
expanderClass: "bi-expander-popup",
|
||
|
hoverClass: "bi-expander-hover"
|
||
|
})
|
||
|
},
|
||
|
|
||
|
_init: function () {
|
||
|
BI.Expander.superclass._init.apply(this, arguments);
|
||
|
var self = this, o = this.options;
|
||
|
this._expanded = !!o.el.open;
|
||
|
this._initExpander();
|
||
|
this._initPullDownAction();
|
||
|
this.expander.on(BI.Controller.EVENT_CHANGE, function (type, value, obj) {
|
||
|
if (type === BI.Events.EXPAND) {
|
||
|
self._popupView();
|
||
|
}
|
||
|
if (type === BI.Events.COLLAPSE) {
|
||
|
self._hideView();
|
||
|
}
|
||
|
if (self.isEnabled() && this.isEnabled()) {
|
||
|
if (type === BI.Events.EXPAND || type === BI.Events.COLLAPSE) {
|
||
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
|
||
|
}
|
||
|
if (type === BI.Events.CLICK) {
|
||
|
self.fireEvent(BI.Expander.EVENT_TRIGGER_CHANGE, value, obj);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
this.element.hover(function () {
|
||
|
if (self.isEnabled() && self.expander.isEnabled()) {
|
||
|
self.element.addClass(o.hoverClass);
|
||
|
}
|
||
|
}, function () {
|
||
|
if (self.isEnabled() && self.expander.isEnabled()) {
|
||
|
self.element.removeClass(o.hoverClass);
|
||
|
}
|
||
|
});
|
||
|
BI.createWidget({
|
||
|
type: "bi.vertical",
|
||
|
scrolly: false,
|
||
|
element: this.element,
|
||
|
items: [
|
||
|
{el: this.expander}
|
||
|
]
|
||
|
});
|
||
|
o.isDefaultInit && this._assertPopupView();
|
||
|
if (this.expander.isOpened() === true) {
|
||
|
this._popupView();
|
||
|
}
|
||
|
},
|
||
|
|
||
|
_toggle: function () {
|
||
|
this._assertPopupViewRender();
|
||
|
if (this.popupView.isVisible()) {
|
||
|
this._hideView();
|
||
|
} else {
|
||
|
if (this.isEnabled()) {
|
||
|
this._popupView();
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
_initPullDownAction: function () {
|
||
|
var self = this, o = this.options;
|
||
|
var evs = this.options.trigger.split(",");
|
||
|
BI.each(evs, function (i, e) {
|
||
|
switch (e) {
|
||
|
case "hover":
|
||
|
self.element[e](function (e) {
|
||
|
if (self.isEnabled() && self.expander.isEnabled()) {
|
||
|
self._popupView();
|
||
|
self.fireEvent(BI.Controller.EVENT_CHANGE, BI.Events.EXPAND, '', self.expander);
|
||
|
self.fireEvent(BI.Expander.EVENT_EXPAND);
|
||
|
}
|
||
|
}, function () {
|
||
|
if (self.isEnabled() && self.expander.isEnabled() && o.toggle) {
|
||
|
self._hideView();
|
||
|
self.fireEvent(BI.Controller.EVENT_CHANGE, BI.Events.COLLAPSE, '', self.expander);
|
||
|
self.fireEvent(BI.Expander.EVENT_COLLAPSE);
|
||
|
}
|
||
|
});
|
||
|
break;
|
||
|
default :
|
||
|
if (e) {
|
||
|
self.element.off(e + "." + self.getName()).on(e + "." + self.getName(), BI.debounce(function (e) {
|
||
|
if (self.expander.element.__isMouseInBounds__(e)) {
|
||
|
if (self.isEnabled() && self.expander.isEnabled()) {
|
||
|
o.toggle ? self._toggle() : self._popupView();
|
||
|
if (self.isExpanded()) {
|
||
|
self.fireEvent(BI.Controller.EVENT_CHANGE, BI.Events.EXPAND, "", self.expander);
|
||
|
self.fireEvent(BI.Expander.EVENT_EXPAND);
|
||
|
} else {
|
||
|
self.fireEvent(BI.Controller.EVENT_CHANGE, BI.Events.COLLAPSE, '', self.expander);
|
||
|
self.fireEvent(BI.Expander.EVENT_COLLAPSE);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}, BI.EVENT_RESPONSE_TIME, true));
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
|
||
|
_initExpander: function () {
|
||
|
this.expander = BI.createWidget(this.options.el);
|
||
|
},
|
||
|
|
||
|
_assertPopupView: function () {
|
||
|
var self = this;
|
||
|
if (this.popupView == null) {
|
||
|
this.popupView = BI.createWidget(this.options.popup, {
|
||
|
type: "bi.button_group",
|
||
|
cls: "expander-popup",
|
||
|
layouts: [{
|
||
|
type: "bi.vertical",
|
||
|
hgap: 0,
|
||
|
vgap: 0
|
||
|
}]
|
||
|
});
|
||
|
this.popupView.on(BI.Controller.EVENT_CHANGE, function (type, value, obj) {
|
||
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
|
||
|
if (type === BI.Events.CLICK) {
|
||
|
//self.setValue(self.getValue());
|
||
|
self.fireEvent(BI.Expander.EVENT_CHANGE, value, obj);
|
||
|
}
|
||
|
});
|
||
|
this.popupView.setVisible(this.isExpanded());
|
||
|
BI.nextTick(function () {
|
||
|
self.fireEvent(BI.Expander.EVENT_AFTER_INIT);
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
|
||
|
_assertPopupViewRender: function () {
|
||
|
this._assertPopupView();
|
||
|
if (!this._rendered) {
|
||
|
BI.createWidget({
|
||
|
type: "bi.vertical",
|
||
|
scrolly: false,
|
||
|
element: this.element,
|
||
|
items: [
|
||
|
{el: this.popupView}
|
||
|
]
|
||
|
});
|
||
|
this._rendered = true;
|
||
|
}
|
||
|
},
|
||
|
|
||
|
_hideView: function () {
|
||
|
this.fireEvent(BI.Expander.EVENT_BEFORE_HIDEVIEW);
|
||
|
this._expanded = false;
|
||
|
this.expander.setOpened(false);
|
||
|
this.popupView && this.popupView.invisible();
|
||
|
this.element.removeClass(this.options.expanderClass);
|
||
|
|
||
|
this.fireEvent(BI.Expander.EVENT_AFTER_HIDEVIEW);
|
||
|
},
|
||
|
|
||
|
_popupView: function () {
|
||
|
this._assertPopupViewRender();
|
||
|
this.fireEvent(BI.Expander.EVENT_BEFORE_POPUPVIEW);
|
||
|
this._expanded = true;
|
||
|
this.expander.setOpened(true);
|
||
|
this.popupView.visible();
|
||
|
this.element.addClass(this.options.expanderClass);
|
||
|
this.fireEvent(BI.Expander.EVENT_AFTER_POPUPVIEW);
|
||
|
},
|
||
|
|
||
|
populate: function (items) {
|
||
|
//this._assertPopupView();
|
||
|
this.popupView && this.popupView.populate.apply(this.popupView, arguments);
|
||
|
this.expander.populate.apply(this.expander, arguments);
|
||
|
},
|
||
|
|
||
|
setEnable: function (arg) {
|
||
|
BI.Expander.superclass.setEnable.apply(this, arguments);
|
||
|
this.expander && this.expander.setEnable(arg);
|
||
|
this.popupView && this.popupView.setEnable(arg);
|
||
|
!arg && this._hideView();
|
||
|
},
|
||
|
|
||
|
setValue: function (v) {
|
||
|
//this._assertPopupView();
|
||
|
this.expander.setValue(v);
|
||
|
this.popupView && this.popupView.setValue(v);
|
||
|
},
|
||
|
|
||
|
getValue: function () {
|
||
|
//this._assertPopupView();
|
||
|
return this.popupView ? this.popupView.getValue() : [];
|
||
|
},
|
||
|
|
||
|
isViewVisible: function () {
|
||
|
return this.isEnabled() && this.expander.isEnabled() && !!this.popupView && this.popupView.isVisible();
|
||
|
},
|
||
|
|
||
|
isExpanded: function () {
|
||
|
return this._expanded;
|
||
|
},
|
||
|
|
||
|
showView: function () {
|
||
|
if (this.isEnabled() && this.expander.isEnabled()) {
|
||
|
this._popupView();
|
||
|
}
|
||
|
},
|
||
|
|
||
|
hideView: function () {
|
||
|
this._hideView();
|
||
|
},
|
||
|
|
||
|
getView: function () {
|
||
|
return this.popupView;
|
||
|
},
|
||
|
|
||
|
doBehavior: function () {
|
||
|
//this._assertPopupView();
|
||
|
this.popupView && this.popupView.doBehavior.apply(this.popupView, arguments);
|
||
|
},
|
||
|
|
||
|
getAllLeaves: function () {
|
||
|
return this.popupView && this.popupView.getAllLeaves();
|
||
|
},
|
||
|
|
||
|
getNodeById: function (id) {
|
||
|
if (this.expander.options.id === id) {
|
||
|
return this.expander;
|
||
|
}
|
||
|
return this.popupView && this.popupView.getNodeById(id);
|
||
|
},
|
||
|
|
||
|
getNodeByValue: function (value) {
|
||
|
if (this.expander.getValue() === value) {
|
||
|
return this.expander;
|
||
|
}
|
||
|
return this.popupView && this.popupView.getNodeByValue(value);
|
||
|
},
|
||
|
|
||
|
destroy: function () {
|
||
|
BI.Expander.superclass.destroy.apply(this, arguments);
|
||
|
}
|
||
|
});
|
||
|
BI.Expander.EVENT_EXPAND = "EVENT_EXPAND";
|
||
|
BI.Expander.EVENT_COLLAPSE = "EVENT_COLLAPSE";
|
||
|
BI.Expander.EVENT_TRIGGER_CHANGE = "EVENT_TRIGGER_CHANGE";
|
||
|
BI.Expander.EVENT_CHANGE = "EVENT_CHANGE";
|
||
|
BI.Expander.EVENT_AFTER_INIT = "EVENT_AFTER_INIT";
|
||
|
|
||
|
|
||
|
BI.Expander.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW";
|
||
|
BI.Expander.EVENT_AFTER_POPUPVIEW = "EVENT_AFTER_POPUPVIEW";
|
||
|
BI.Expander.EVENT_BEFORE_HIDEVIEW = "EVENT_BEFORE_HIDEVIEW";
|
||
|
BI.Expander.EVENT_AFTER_HIDEVIEW = "EVENT_AFTER_HIDEVIEW";
|
||
|
|
||
|
$.shortcut("bi.expander", BI.Expander);
|