/** @Name : layui.laypage 分页组件 @Author:贤心 @License:LGPL */ layui.define(function(exports){ "use strict"; function laypage(options){ var skin = 'laypagecss'; new Page(options); } var doc = document, id = 'getElementById', tag = 'getElementsByTagName'; var index = 0, Page = function(options){ var that = this; var conf = that.config = options || {}; conf.item = index++; that.render(true); }; Page.on = function(elem, even, fn){ elem.attachEvent ? elem.attachEvent('on'+ even, function(){ fn.call(elem, window.even); //for ie, this指向为当前dom元素 }) : elem.addEventListener(even, fn, false); return Page; }; //判断传入的容器类型 Page.prototype.type = function(){ var conf = this.config; if(typeof conf.cont === 'object'){ return conf.cont.length === undefined ? 2 : 3; } }; //分页视图 Page.prototype.view = function(){ var that = this, conf = that.config, view = [], dict = {}; conf.pages = conf.pages|0; conf.curr = (conf.curr|0) || 1; conf.groups = 'groups' in conf ? (conf.groups|0) : 5; conf.first = 'first' in conf ? conf.first : '首页'; conf.last = 'last' in conf ? conf.last : '末页'; conf.prev = 'prev' in conf ? conf.prev : '上一页'; conf.next = 'next' in conf ? conf.next : '下一页'; if(conf.pages <= 1){ return ''; } if(conf.groups > conf.pages){ conf.groups = conf.pages; } //计算当前组 dict.index = Math.ceil((conf.curr + ((conf.groups > 1 && conf.groups !== conf.pages) ? 1 : 0))/(conf.groups === 0 ? 1 : conf.groups)); //当前页非首页,则输出上一页 if(conf.curr > 1 && conf.prev){ view.push(''+ conf.prev +''); } //当前组非首组,则输出首页 if(dict.index > 1 && conf.first && conf.groups !== 0){ view.push(''+ conf.first +''); } //输出当前页组 dict.poor = Math.floor((conf.groups-1)/2); dict.start = dict.index > 1 ? conf.curr - dict.poor : 1; dict.end = dict.index > 1 ? (function(){ var max = conf.curr + (conf.groups - dict.poor - 1); return max > conf.pages ? conf.pages : max; }()) : conf.groups; if(dict.end - dict.start < conf.groups - 1){ //最后一组状态 dict.start = dict.end - conf.groups + 1; } for(; dict.start <= dict.end; dict.start++){ if(dict.start === conf.curr){ view.push(''+ dict.start +''); } else { view.push(''+ dict.start +''); } } //总页数大于连续分页数,且当前组最大页小于总页,输出尾页 if(conf.pages > conf.groups && dict.end < conf.pages && conf.last && conf.groups !== 0){ view.push(''+ conf.last +''); } //当前页不为尾页时,输出下一页 dict.flow = !conf.prev && conf.groups === 0; if(conf.curr !== conf.pages && conf.next || dict.flow){ view.push((function(){ return (dict.flow && conf.curr === conf.pages) ? ''+ conf.next +'' : ''+ conf.next +''; }())); } return '
'+ view.join('') + function(){ return conf.skip ? '到第 页 ' + '' : ''; }() +'
'; }; //跳页 Page.prototype.jump = function(elem){ if(!elem) return; var that = this, conf = that.config, childs = elem.children; var btn = elem[tag]('button')[0]; var input = elem[tag]('input')[0]; for(var i = 0, len = childs.length; i < len; i++){ if(childs[i].nodeName.toLowerCase() === 'a'){ Page.on(childs[i], 'click', function(){ var curr = this.getAttribute('data-page')|0; conf.curr = curr; that.render(); }); } } if(btn){ Page.on(btn, 'click', function(){ var curr = input.value.replace(/\s|\D/g, '')|0; if(curr && curr <= conf.pages){ conf.curr = curr; that.render(); } }); } }; //渲染分页 Page.prototype.render = function(load){ var that = this, conf = that.config, type = that.type(); var view = that.view(); if(type === 2){ conf.cont.innerHTML = view; } else if(type === 3){ conf.cont.html(view); } else { doc[id](conf.cont).innerHTML = view; } conf.jump && conf.jump(conf, load); that.jump(doc[id]('layui-laypage-' + conf.item)); if(conf.hash && !load){ location.hash = '!'+ conf.hash +'='+ conf.curr; } }; exports('laypage', laypage); });