layui.define(["laydate","laytpl","table"],function(exports) { "use strict"; var moduleName = 'tableEdit',_layui = layui,laytpl = _layui.laytpl ,$ = _layui.$,laydate = _layui.laydate,table = _layui.table ,selectTpl = [ //单选下拉框模板 '
' ,'' , '
' ].join('') ,selectMoreTpl = [ //多选下拉框模板 '
' ,'
' ,'' ,'
' ,'
' ,'
' ,'' ,'
' ,'
' ,'' ,'
' ,'
' ,'
' ].join(''); //组件用到的css样式 var thisCss = []; thisCss.push('.layui-tableEdit-div{position:absolute;background-color:#fff;font-size:14px;border:1px solid #d2d2d2;z-index:19910908445;max-height: 252px;}'); thisCss.push('.layui-tableEdit-tpl{max-height:216px;overflow-y:auto;}'); thisCss.push('.layui-tableEdit-div li{line-height:36px;padding-left:5px;}'); thisCss.push('.layui-tableEdit-div li:hover{background-color:#f2f2f2;}'); thisCss.push('.layui-tableEdit-selected{background-color:#5FB878;}'); thisCss.push('.layui-tableEdit-checked i{background-color:#60b979!important;}'); thisCss.push('.layui-tableEdit-ul div{padding-left:0px!important;}'); thisCss.push('.layui-tableEdit-input{position:absolute;left:0;bottom:0;width:100%;height:38px;z-index: 19910908;}'); var thisStyle = document.createElement('style'); thisStyle.innerHTML = thisCss.join('\n'),document.getElementsByTagName('head')[0].appendChild(thisStyle); var configs = { callbacks:{} ,parseConfig:function (cols,field) { var type,data,enabled,dateType,csField; cols.forEach(function (ite) { ite.forEach(function (item) { if(field !== item.field || !item.config)return; var config = item.config; type = config.type; data = config.data; enabled = config.enabled; dateType = config.dateType; csField = config.cascadeSelectField; }); }); return {type:type,data:data,enabled:enabled,dateType:dateType,cascadeSelectField:csField}; } }; var Class = function () { //单列模式 也就是只能new一个对象。 var instance; Class = function Class() { return instance; }; Class.prototype = this; //保留原型属性 instance = new Class(); instance.constructor = Class; //重置构造函数指针 return instance }; //构造器 var singleInstance = new Class(); var inFunc = function () {singleInstance.leaveStat = false;},outFunc = function () {singleInstance.leaveStat = true;}; document.onclick = function () {if(singleInstance.leaveStat)singleInstance.deleteAll();}; //日期选择框 Class.prototype.date = function(options){ var othis = this; othis.callback = options.callback,othis.element = options.element,othis.dateType = options.dateType; othis.dateType = othis.isEmpty(othis.dateType) ? "datetime":othis.dateType; var that = options.element; if ($(that).find('input').length>0)return; othis.deleteAll(),othis.leaveStat = false; var input = $(''); (39 - that.offsetHeight > 3) && input.css('height','30px'); (that.offsetHeight - 39 > 3) && input.css('height','50px'); $(that).append(input),input.focus(); //日期时间选择器 (show: true 表示直接显示) laydate.render({elem: input[0],type: othis.dateType,show: true,done:function (value, date) { othis.deleteAll(); if(othis.callback)othis.callback.call(that,value); }}); $('div.layui-laydate').hover(inFunc,outFunc),$(that).hover(inFunc,outFunc); _layui.stope(); }; //输入框 Class.prototype.input = function(options){ var othis = this; othis.callback = options.callback,othis.element = options.element; othis.oldValue = options.oldValue; othis.oldValue = othis.oldValue ? othis.oldValue : ''; var that = options.element; if ($(that).find('input').length>0)return; othis.deleteAll(),othis.leaveStat = false; var input = $(''); (39 - that.offsetHeight > 3) && input.css('height','30px'); (that.offsetHeight - 39 > 3) && input.css('height','50px'); $(that).append(input),input.focus(); input.click(function (e) { _layui.stope(e); }); input.bind('change', function(e){othis.callback.call(othis.element,this.value)}); $(that).hover(inFunc,outFunc); _layui.stope(); }; //判断是否为空函数 Class.prototype.isEmpty = function(dataStr){return typeof dataStr === 'undefined' || dataStr === null || dataStr.length <= 0;}; //生成下拉框函数入口 Class.prototype.register = function(options){ var othis = this; othis.enabled = options.enabled,othis.callback = options.callback; othis.data = options.data,othis.element = options.element; othis.selectedData = options.selectedData; var that = othis.element; if($(that).find('input.layui-tableEdit-input')[0]) return; othis.deleteAll(),othis.leaveStat = false; var input = $('') ,tableEdit = $('
') ,tableBody = $(that).parents('div.layui-table-body') ,tablePage = $(that).parents('div.layui-table-box').eq(0).next(); (39 - that.offsetHeight > 3) && input.css('height','30px'); (that.offsetHeight - 39 > 3) && input.css('height','50px'); tableEdit.append(input),$(that).append(tableEdit),input.focus(); var thisY = input[0].getBoundingClientRect().top //输入框y坐标 ,thisHeight = ((39 - that.offsetHeight > 3) ? 30 : input[0].offsetHeight) //输入框高度 ,thisHeight = ((that.offsetHeight - 39 > 3) ? 50 :thisHeight) ,thisWidth = input[0].offsetWidth //输入框宽度 ,elemY = that.getBoundingClientRect().top //输入框y坐标 ,tableBodyY = tableBody[0].getBoundingClientRect().top ,pageY = tablePage[0].getBoundingClientRect().top ,tableBodyHeight = tableBody.height() //表格高度 ,isType = thisY-tableBodyY > 0.8*tableBodyHeight ,type = isType ? 'top: auto;bottom: '+(thisHeight+2)+'px;' : 'bottom: auto;top: '+(thisHeight+2)+'px;'; if(elemY pageY) && !isType && (tableBody[0].scrollTop = that.offsetTop);//调整滚动条位置 othis.events(); }; //删除所有下拉框和时间选择框 Class.prototype.deleteAll = function(){ $('div.layui-tableEdit-div,div.layui-tableEdit,div.layui-laydate,input.layui-tableEdit-input').remove(); delete this.leaveStat;//清除(离开状态属性) }; //注册事件 Class.prototype.events = function(){ var othis = this; var searchFunc = function(val){ //关键字搜索 $('div.layui-tableEdit-div li').each(function () { othis.isEmpty(val) || $(this).data('value').indexOf(val) > -1 ? $(this).show() : $(this).hide(); }); },liClickFunc = function(){ //给li元素注册点击事件 var liArr = $('div.layui-tableEdit-div li'); liArr.unbind('click'),liArr.bind('click',function (e) { _layui.stope(e); if(othis.enabled){//多选 $(this).hasClass("layui-tableEdit-checked") ? ($(this).removeClass("layui-tableEdit-checked"), $(this).removeClass("layui-tableEdit-selected")) : $(this).addClass("layui-tableEdit-checked") }else {//单选 othis.deleteAll(); if(othis.callback)othis.callback.call(othis.element,{name:$(this).data("name"),value:$(this).data("value")}); } }); },btnClickFunc = function (){ //给button按钮注册点击事件 $("div.layui-tableEdit-div button").bind('click',function () { var eventType = $(this).attr("event-type"), btn = this,dataList = new Array(); if(eventType === 'close') singleInstance.deleteAll(); //“关闭”按钮 if(eventType === 'confirm') { //“确定”按钮 $('div.layui-tableEdit-div li').each(function (e) { if(!$(this).hasClass("layui-tableEdit-checked"))return; dataList.push({name:$(this).data("name"),value:$(this).data("value")}); }); othis.deleteAll(); if(othis.callback)othis.callback.call(othis.element,dataList); } }); }; //事件注册 $(othis.element).find('input.layui-tableEdit-input').bind('input propertychange', function(){searchFunc(this.value)}); othis.enabled ? (liClickFunc(),btnClickFunc()) : liClickFunc(); $(othis.element).hover(inFunc,outFunc); }; var AopEvent = function(cols){this.config = {cols:cols};};//aop构造器 AopEvent.prototype.on = function(event,callback){ var othis = this;othis.config.event = event,othis.config.callback = callback; table.on(othis.config.event,function (obj) { var zthis = this,field = $(zthis).data('field'),config = configs.parseConfig(othis.config.cols,field); obj.field = field; var callbackFn = function (res) { obj.value = Array.isArray(res) ? (res.length>0 ? res : [{name:'',value:''}]) : res; othis.config.callback.call(zthis,obj); if(!singleInstance.isEmpty(config.cascadeSelectField)){ var csElement = $(this.parentNode).find("td[data-field='"+config.cascadeSelectField+"']"); $(csElement).attr("cascadeSelect-data",JSON.stringify({data:res,field:field})); } }; var csd = $(this).attr("cascadeSelect-data");//联动数据 if(singleInstance.isEmpty(csd)){ //非联动事件 config.type === 'select' && singleInstance.register({data:config.data,element:zthis,enabled:config.enabled,selectedData:obj.data[field],callback:callbackFn}); config.type === 'date' && singleInstance.date({dateType:config.dateType,element:zthis,callback:callbackFn}); config.type === 'input'&& singleInstance.input({element:zthis,oldValue:obj.data[field],callback:callbackFn}) !config.type && othis.config.callback.call(zthis,obj); } else {//联动事件 if(config.type === 'date') return; //获取当前单元格的table表格的lay-filter属性值 var filter = $(zthis).parents('div.layui-table-view').eq(0).prev().attr('lay-filter') ,rs = active.callbackFn.call(zthis,'clickBefore('+filter+')',JSON.parse(csd)); //异步操作,由使用者调用。 //判断条件为rs为空时。 if(singleInstance.isEmpty(rs)){ active.on("async("+filter+")",function (result) { singleInstance.register({data:result.data,element:zthis,enabled:result.enabled,selectedData:obj.data[field],callback:callbackFn}); }) }else { singleInstance.register({data:rs.data,element:zthis,enabled:rs.enabled,selectedData:obj.data[field],callback:callbackFn}); } } }); }; var active = { aopObj:function(cols){return new AopEvent(cols);}, on:function (event,callback) { var filter = event.match(/\((.*)\)$/),eventName = (filter ? (event.replace(filter[0],'')+'_'+ filter[1]) : event); configs.callbacks[moduleName+'_'+eventName]=callback; }, callbackFn:function (event,params) { var filter = event.match(/\((.*)\)$/),eventName = (filter ? (event.replace(filter[0],'')+'_'+ filter[1]) : event); var key = moduleName+'_'+eventName,func = configs.callbacks[key]; if(!func) return; return func.call(this,params); } }; active.on("tableEdit(getEntity)",function () { return singleInstance; }); exports(moduleName, active); });