2014-10-20 13:32:06 +04:00
|
|
|
var Tabs = function (obj) {
|
2014-10-12 08:15:51 +04:00
|
|
|
obj._$tabsPanel = $(obj.id + " > .tabs-panel");
|
|
|
|
obj._$tabs = $(obj.id + " > .tabs");
|
2014-10-21 18:48:33 +04:00
|
|
|
obj._stack = [];
|
2014-08-29 13:24:08 +04:00
|
|
|
|
|
|
|
this.obj = obj;
|
2014-10-22 11:23:29 +04:00
|
|
|
this.obj.STACKSIZE = 64;
|
2014-08-29 13:24:08 +04:00
|
|
|
|
|
|
|
this._init(obj);
|
2014-08-27 14:10:12 +04:00
|
|
|
};
|
|
|
|
|
2014-08-29 13:24:08 +04:00
|
|
|
$.extend(Tabs.prototype, {
|
2014-10-20 13:32:06 +04:00
|
|
|
_init: function (obj) {
|
2014-08-29 13:24:08 +04:00
|
|
|
var _that = this;
|
|
|
|
|
2014-10-20 13:32:06 +04:00
|
|
|
obj._$tabs.on("click", "div", function (event) {
|
2014-08-29 13:24:08 +04:00
|
|
|
var id = $(this).data("index");
|
|
|
|
_that.setCurrent(id);
|
2014-09-19 13:58:29 +04:00
|
|
|
if (typeof (obj.clickAfter) === "function") {
|
|
|
|
obj.clickAfter(id);
|
|
|
|
}
|
2014-08-29 13:24:08 +04:00
|
|
|
});
|
|
|
|
|
2014-10-20 13:32:06 +04:00
|
|
|
obj._$tabs.on("click", ".ico-close", function (event) {
|
2014-11-01 07:05:52 +03:00
|
|
|
var id = $(this).parent().data("index"),
|
|
|
|
isRemove = true;
|
|
|
|
|
|
|
|
if (typeof obj.removeBefore === 'function') {
|
|
|
|
isRemove = obj.removeBefore(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isRemove) {
|
|
|
|
_that.del(id);
|
|
|
|
}
|
2014-08-29 13:24:08 +04:00
|
|
|
event.stopPropagation();
|
|
|
|
});
|
|
|
|
},
|
2014-10-20 13:32:06 +04:00
|
|
|
_hasId: function (id) {
|
|
|
|
var $tabs = this.obj._$tabs;
|
|
|
|
if ($tabs.find("div[data-index=" + id + "]").length === 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
add: function (data) {
|
|
|
|
// 添加当前 tab
|
|
|
|
if (this.getCurrentId() === data.id) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 当前 tab 已经存在
|
|
|
|
if (this._hasId(data.id)) {
|
|
|
|
this.setCurrent(data.id);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-08-29 13:24:08 +04:00
|
|
|
var $tabsPanel = this.obj._$tabsPanel,
|
|
|
|
$tabs = this.obj._$tabs;
|
|
|
|
|
2014-10-24 05:41:05 +04:00
|
|
|
$tabs.append('<div data-index="' + data.id + '">'
|
2014-09-12 08:01:45 +04:00
|
|
|
+ data.title + '<span class="ico-close font-ico"></span></div>');
|
2014-08-29 13:24:08 +04:00
|
|
|
$tabsPanel.append('<div data-index="' + data.id + '">' + data.content
|
|
|
|
+ '</div>');
|
2014-10-21 18:48:33 +04:00
|
|
|
|
|
|
|
this.setCurrent(data.id);
|
|
|
|
|
2014-10-20 13:32:06 +04:00
|
|
|
if (typeof data.after === 'function') {
|
|
|
|
data.after();
|
|
|
|
}
|
2014-08-29 13:24:08 +04:00
|
|
|
},
|
2014-10-20 13:32:06 +04:00
|
|
|
del: function (id) {
|
2014-08-29 13:24:08 +04:00
|
|
|
var $tabsPanel = this.obj._$tabsPanel,
|
|
|
|
$tabs = this.obj._$tabs,
|
2014-10-22 11:23:29 +04:00
|
|
|
stack = this.obj._stack,
|
|
|
|
prevId = null;
|
2014-11-01 07:05:52 +03:00
|
|
|
|
2014-08-29 13:24:08 +04:00
|
|
|
$tabs.children("div[data-index='" + id + "']").remove();
|
|
|
|
$tabsPanel.children("div[data-index='" + id + "']").remove();
|
|
|
|
|
2014-10-22 11:23:29 +04:00
|
|
|
// 移除堆栈中该 id
|
|
|
|
for (var i = 0; i < stack.length; i++) {
|
|
|
|
if (id === stack[i]) {
|
|
|
|
stack.splice(i, 1);
|
|
|
|
}
|
2014-08-29 13:24:08 +04:00
|
|
|
}
|
2014-11-01 07:05:52 +03:00
|
|
|
|
2014-10-22 11:23:29 +04:00
|
|
|
prevId = stack[stack.length - 1];
|
2014-08-29 13:24:08 +04:00
|
|
|
|
2014-10-22 11:23:29 +04:00
|
|
|
if (typeof this.obj.removeAfter === 'function') {
|
|
|
|
this.obj.removeAfter(id, prevId);
|
2014-08-29 13:24:08 +04:00
|
|
|
}
|
2014-09-19 13:58:29 +04:00
|
|
|
|
2014-09-12 13:50:46 +04:00
|
|
|
this.setCurrent(prevId);
|
2014-08-29 13:24:08 +04:00
|
|
|
},
|
2014-10-20 13:32:06 +04:00
|
|
|
getCurrentId: function () {
|
2014-08-29 13:24:08 +04:00
|
|
|
var $tabs = this.obj._$tabs;
|
|
|
|
return $tabs.children(".current").data("index");
|
|
|
|
},
|
2014-10-20 13:32:06 +04:00
|
|
|
setCurrent: function (id) {
|
2014-08-29 13:24:08 +04:00
|
|
|
if (!id) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var $tabsPanel = this.obj._$tabsPanel,
|
|
|
|
$tabs = this.obj._$tabs;
|
|
|
|
|
|
|
|
var $currentTab = $tabs.children(".current");
|
|
|
|
if ($currentTab.data("index") === id) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-10-22 11:23:29 +04:00
|
|
|
// tab 顺序入栈,如栈满则清除
|
|
|
|
var stack = this.obj._stack;
|
|
|
|
if (stack.length === this.obj.STACKSIZE) {
|
|
|
|
stack.splice(0, 1);
|
|
|
|
}
|
|
|
|
if (stack[stack.length - 1] !== id) {
|
2014-10-21 18:48:33 +04:00
|
|
|
this.obj._stack.push(id);
|
|
|
|
}
|
2014-08-29 13:24:08 +04:00
|
|
|
|
|
|
|
$tabs.children("div").removeClass("current");
|
|
|
|
$tabsPanel.children("div").hide();
|
|
|
|
|
|
|
|
$tabs.children("div[data-index='" + id + "']").addClass("current");
|
|
|
|
$tabsPanel.children("div[data-index='" + id + "']").show();
|
|
|
|
}
|
2014-08-27 14:10:12 +04:00
|
|
|
});
|