-
Notifications
You must be signed in to change notification settings - Fork 0
/
sortList.js
428 lines (393 loc) · 10.8 KB
/
sortList.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
(function($){
$.juqkai = $.juqkai || {varsion:'0.1'};
$.juqkai.SortList = {
conf: {
name:"" //提交时的名字
,isSort: true //是否排序
,items: {} //要显示的数据,默认类型为{val:text,val:text},请保存val唯一
,arrays:[] //数据数组
,valField:"val" //数组模式下取那个字段的值做为'值'
,textField:"text" //数组模式下取那个字段的值做为'文本'
,isAjax:false //是否是AJAX请求数据
,ajaxUrl: "" //ajax请求的URL地址,参数也写在这里面
,ajaxType: 0 //ajax返回的数据类型,0:键值对,1:数组,如果为数组,刚需要填写valField,textField属性
,ajaxSingle: true //ajax请求次数
//,dest:{} //操作对象
,single:true //模式选择,true为单选模式,false为多选模式
,selectClose:true //在单选模式下是否选中就关闭面板
,selectItems:{} //多选模式下,被选中的数据,键值对
,title:"字母排序列表" //sortList面板的title信息
,handle:function(selectItems){} //多选处理器,当使用多选模式,点击确定后,会将选中的项通过这个回调函数进行处理,其中selectItems为被选中的数据,键值对
,style:{ //样式
top:"" //top
,left:"" //left
}
}
};
//渲染
function SortRender(){
var conf = {};
//$.extend(this,
var sr = {
conf: {},
//生成HTML
createHtml:function(){
var close = $('<div id="sortList_close">×</div>');
var title = $('<div id="sortList_title"></div>');
title.append("this is test");
var main = $('<div id="sortList_panel"></div>');
var content = $('<div id="sortList_content"></div>');
//解决IE中不能使用min-width的BUG
var minwidth = $('<span id="sortList_min_width"></span>');
content.append(minwidth);
var notsort = $('<span id="sortList_content_notsort"></span>');
content.append(notsort);
content.append(makeList("c_m_"));
var menu = $('<div id="sortList_menu"></div>');
var sbtn = $('<div id="sortList_btn"></div>');
var sitem = $('<div id="sortList_selectItem"></div>');
menu.append(sitem);
menu.append(makeList("m_"));
main.append(content);
main.append(menu);
var clsbtn = $('<a href="javascript:void(0);">清除</a>');
var okbtn = $('<a href="javascript:void(0);">确定</a>');
sbtn.append(clsbtn);
sbtn.append(okbtn);
var sortlist = $('<div id="sortList"></div>');
sortlist.append(close);
sortlist.append(title);
sortlist.append(main);
sortlist.append(sbtn);
$("body").append(sortlist);
var sort = this;
sort.tag = sort.tag || {};
sort.tag.close = close;
sort.tag.title = title;
sort.tag.main = main;
sort.tag.content = content;
sort.tag.minwidth = minwidth;
sort.tag.notsort = notsort;
sort.tag.menu = menu;
sort.tag.sitem = sitem;
sort.tag.sbtn = sbtn;
sort.tag.clsbtn = clsbtn;
sort.tag.okbtn = okbtn;
sort.tag.sortlist = sortlist;
sort.linkage();
sort.bindEvent();
},
//绑定事件
bindEvent: function(){
var sort = this;
var close = sort.tag.close;
close.click(function(){
sort.hideSortList();
});
close.mouseover(function(){
close.css("background-color", "#D9504E");
close.css("border", "1px solid #617087");
close.css("color", "#fff");
});
close.mouseout(function(){
close.css("background-color", "");
close.css("border", "");
close.css("color", "");
});
sort.tag.content.find("li:visible:even").addClass("sortList_content_hightLight");
},
//联动
linkage: function(){
var sort = this;
var menu = sort.tag.menu;
var sitem = sort.tag.sitem;
var content = sort.tag.content;
menu.find("li").mouseover(function(){
var li = $(this);
if(sort.selectItem != li.attr("id")){
sort.selectItem = li.attr("id");
sort.tag.sitem.show();
var top = li.attr("offsetTop");
sitem.html(li.clone(true));
sitem.css("top",top - 4);
var lio = $("#c_" + li.attr("id"));
if(lio.css("display") == "none"){
return;
}
var itemTop = lio.attr("offsetTop");
content.attr("scrollTop", itemTop);
}
});
},
//根据
init: function(cf){
conf = cf;
sort = this;
sort.baseConfig();
sort.restore();
sort.fullSortList();
var sortlist = sort.tag.sortlist;
sortlist.show();
if(conf.single){
this.singleModel();
}else{
this.multiSelect();
}
//隔行高亮样式
sort.tag.content.find("li:visible:even").addClass("sortList_content_hightLight");
},
//基础配置
baseConfig: function(){
var sort = this;
//表头信息
sort.tag.title.html(conf.title);
var sortlist = sort.tag.sortlist;
var offset = conf.dest.offset();
if(conf.style.top == ""){
var height = conf.dest.outerHeight();
sortlist.css("top",offset.top + height);
} else {
sortlist.css("top",conf.style.top);
}
if(conf.style.top == ""){
sortlist.css("left",offset.left);
} else {
sortlist.css("left",conf.style.left);
}
},
//还原成初始状态
restore: function(){
var sort = this;
//删除所有li下面的数据
sort.tag.content.find("div").remove();
var li = sort.tag.content.find("li").removeClass("sortList_content_hightLight");
li.hide();
var menu = sort.tag.menu;
menu.show();
},
//根据conf.items的值填充列表
fullSortList:function(){
var items = conf.items;
for(var val in items){
var text = items[val];
if(!val || !text){
continue;
}
var item = $("<div id='sort_item_"+val+"' class='sort_item'>"+text+"</div>");
if(!conf.isSort){
var notsort = sort.tag.notsort;
notsort.append(item);
notsort.show();
var menu = sort.tag.menu;
menu.hide();
continue;
}
var py = makePy(text.charAt(0))[0];
var li = $("#c_m_" + py);
li.append(item);
li.show();
}
},
//隐藏
hideSortList: function(){
this.tag.sortlist.hide();
},
//单选模式
singleModel: function(){
var sort = this;
var clsbtn = sort.tag.clsbtn;
var okbtn = sort.tag.okbtn;
clsbtn.click(function(){
sort.clearSingleModel();
});
okbtn.click(function(){
sort.hideSortList();
});
var divs = sort.tag.content.find("div");
var dest = conf.dest;
divs.click(function(){
var div = $(this);
var val = div.attr("id");
val = val.split("sort_item_")[1];
var text = div.html();
sort.clearSingleModel();
dest.val(text);
dest.after("<input type='hidden' name='"+conf.name+"' value='"+val+"'/>");
if(conf.selectClose){
sort.hideSortList();
}
conf.selectItems = {};
conf.selectItems[val] = text;
conf.handle(conf.selectItems);
});
},
clearSingleModel: function(){
conf.dest.val("");
var hid = conf.dest.next();
if(hid.attr("type") == 'hidden'){
hid.remove();
}
},
//多选模式
multiSelect:function(){
var sort = this;
var divs = sort.tag.content.find("div");
sort.tag.okbtn.click(function(){
sort.OkBtn();
});
sort.tag.clsbtn.click(function(){
sort.clearMultiModel();
});
$.each(conf.selectItems, function(key, val){
$("#sort_item_" + key).addClass("sortList_content_selected");
});
divs.click(function(){
var div = $(this);
var val = div.attr("id");
val = val.split("sort_item_")[1];
var text = div.html();
if(div.data("select") == true){
//点两次,就删除节点
delete conf.selectItems[val];
sort.clearSelectItem(div);
return;
}
div.data("select",true);
div.addClass("sortList_content_selected");
conf.selectItems[val] = text;
});
},
OkBtn: function(){
var sort = this;
conf.handle(conf.selectItems);
sort.hideSortList();
},
//多选模式下的清除
clearMultiModel: function(){
conf.selectItems = {};
var sort = this;
this.tag.content.find("div").each(function(i){
sort.clearSelectItem($(this));
});
},
//清除选中项
clearSelectItem: function(item){
item.removeClass("sortList_content_selected");
item.removeData("select");
}
};
var single;
function me(conf){
if(!single){
sr.createHtml();
single = true;
}
sr.init(conf);
}
return {init:me};
}
//注意这个必须是单列的
$.juqkai.sortRender = SortRender();
function SortList(conf){
var self = this;
// conf = cf;
if(!conf.dest){
return;
}
//设置提交名
if(!conf.name || conf.name == ""){
if(!conf.dest.attr("name")){
conf.dest.after("<span>请设置控件的name属性!</span>");
conf.dest.val("请设置控件的name属性!");
return;
}
conf.name = conf.dest.attr("name");
}
conf.dest.attr("name", "");
$.extend(self,{
ajaxRequest:function(){
if(conf.ajaxSingle){
conf.isAjax = false;
}
var url = conf.ajaxUrl;
var type = conf.ajaxType;
$.ajax({
url:url,
async: false,
dataType:"json",
type: "get",
success:function(e){
//e = eval("("+e+")");
if(conf.ajaxType == 0){
conf.items = e;
}else {
conf.arrays = e;
}
self.dataConver();
}
});
},
//数据转换,将数组数据转换成键值对的形式
dataConver: function(){
if(conf.arrays.length <= 0){
return conf.items;
}
var arrays = conf.arrays;
for(var i in arrays){
var val = arrays[i][conf.valField];
var text = arrays[i][conf.textField];
conf.items[val] = text;
}
conf.arrays = [];
},
//取得数据
fetchData : function(){
if(conf.isAjax){
//ajax请求
self.ajaxRequest();
return;
}
//转换数据
self.dataConver();
},
//目标控件事件
destEvent: function(){
var dest = conf.dest;
dest.attr("readonly","readonly");
dest.click(function(){
self.fetchData();
$.juqkai.sortRender.init(conf);
});
}
});
self.destEvent();
}
function makeList(prefix){
var mul = $("<ul></ul>");
for(var i = 65; i <91; i++){
// for(var i = 97; i <122; i++){
mul.append("<li id='"+prefix + "&#" + i+"'><p>&#"+i+"</p></li>");
}
return mul;
}
function makeListForDiv(prefix){
var mul = $("<div></div>");
for(var i = 65; i <91; i++){
// for(var i = 97; i <122; i++){
mul.append("<div id='"+prefix + "&#" + i+"'>&#"+i+"</div>");
}
return mul;
}
$.fn.SortList = function(conf){
//设置属性
var el = $(this).data("sortList");
if(el){
$(this).unbind("click");
$(this).removeData("sortList");
}
conf = $.extend(true,{dest:$(this)}, $.juqkai.SortList.conf, conf);
var sl = new SortList(conf);
$(this).data("sortList", sl);
return sl;
};
})(jQuery);