tab.js 2.35 KB
var $ = require('jquery'),
	util = require('./util');


var tab = function(options) {
	var defaults = {
		innerHtml: '<ul class="nav nav-pills"></ul>'
	};
	this.options = $.extend({}, defaults, options);
	$(options.el).html(this.options.innerHtml);
	this.tab = $("ul", options.el);
	this.active = undefined; //undefined==void(0)
	return this;
}
tab.prototype = {
	constructor: tab,
	init: function(data) {
		var g = this,
			p = this.options;
		$(this.tab).html("");


		var pattern = /tab=.*?(?=&&)/gi,
			tab = pattern.exec(location.hash),
			index = null;

		if (tab instanceof Array) {
			tab = tab[0];
			index = tab.split('=')[1];
		}
		g.index = index;
		g.active = index;
		this.render(data);
		p._init && p._init(g.active);
		this.bind(p.click);
		return this;
	},
	bind: function(callback) {
		var g = this,
			p = this.options;

		$(p.el).off("click", "li");
		$(p.el).on("click", "li", function() {
			$(this).addClass('active').siblings().removeClass('active');
			g.active = $(this).find("a").attr("columnname");
			g.key = $(this).find("a").attr("key");
			g.value = $(this).find("a").attr("value");
			g.__index__ = $(this).index();
			this._init = p._init;
			callback && callback.call(this);
		});


	},
	render: function(data) {
		var g = this,
			p = this.options;

		var lis = [];
		var hasActive = false;
		$(p.columns).each(function(i, column) {
			var li = $("<li></li>");
			var a = $("<a href='javascript:void(0);'></a>");

			if (g.index && i == g.index) {
				li = $('<li class="active"></li>');
			}else if(!g.index && column.active) {
				li = $('<li class="active"></li>');
				g.index = i;
				g.active = i;
				hasActive = true;
			}else if (!g.index && !hasActive && column.name == 'all') {
				li = $('<li class="active"></li>');
			}
			if (column.name) a.attr({
				columnname: column.name
			});
			if (column.key) a.attr({
				key: column.key
			});
			if (column.value) a.attr({
				value: column.value
			});

			var h_t = column.display || "";
			a.html(h_t);

			li.append(a);
			g.tab.append(li);

		});

		g.__tab = g.tab.html();
		g.tab.html(util.__template(g.tab.html(), data || {}));

	},
	load: function(data) {
		var g = this,
			p = this.options;
		g.tab.html(util.__template(g.__tab, data || {}));

		if (g.__index__ != undefined) {
			$('li',p.el).removeClass('active');
			$('li',p.el).eq(g.__index__).addClass('active');
		}
	}
}


module.exports = tab;