jselect.js 14.1 KB
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 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
/**
 * 创建一个select 模型
 * 由该模型代替默认的select 进行显示
 * 原select 隐藏
 * 
 * 模型所触发的选择事件直接触发原select
 * 同时具有select 的键盘事件功能
 *  
 */
define( 'jselect', function( require ) {
	
	var prevTarget = null, _list = [];
	
	var jselect = function( elems, options ) {
		var _list = $( elems );
		
		_list.each(function( i ) {
			this._index = i;
			new jselectMain( this, _list, options );
		});
	};
	
	/**
 * sml:sametrigger 具有该属性的元素事件统一触发
 * @param {Object} target
 * @param {Object} 
 * @param {Object} options
 */
function jselectMain( target, _this, options ) {
	this.target = target;
	
	this._total_len = _this.length;
	
	// 可选项
	this.opt = {
		// 可见多少个,超出则使用系统滚动条
		viewNum			: 8,
		// 禁用样式
		disabledClass	: "model_disabled",
		// 设置不可点击项
		unClickClass	: "disabled_click",
		// 已经被选择的样式
		selectedClass	: this.name + '-selected',
		//是否支持文本框搜索
		searchBar : false,
		// callback params
		// 1. this 环境为选中的option
		// 2. 点击的索引值
		// 3. 当前点击的模型项
		onSelect		: function() {}
	};
	
	$.extend( this.opt, options );
	
	this.Init();
}

jselectMain.prototype = {
	
	name: 'pack_jselect',
	
	Init: function(){
		this.GetModel();
		
		if( $( this.target ).is( ":disabled" ) ) {
			//return;
		}
		
		this.Bind();
	},
	
	// 获取select 模型
	GetModel: function() {
		var _this = this, id = $( this.target ).attr( 'id' ), zi = parseInt( this._total_len ) - parseInt( this.target._index );
		
		// 没有id 则使用随机数
		if( id == undefined || id == '' ) {
			id = ( new Date() ).getTime() * Math.round( Math.random() * 999 );
		}
		
		id = id + '-' + this.name;
		
		if( zi == undefined || isNaN( zi ) ) {
			zi = 0;
		}
		
		var // 当前select 已经选中的元素
			selectedOp = $( this.target ).find( 'option:selected' ),
			// 当前select 附加的样式
			curClass = $( this.target ).attr( 'class' ),
			
			// 模型元素
			// 将一个便于首字母搜索的input 藏在div 之后
			searchBarHtml = _this.opt.searchBar && $( this.target ).find( 'option' ).length > 10 ? '<p class="s-select-bar"><input type="text"/></p>' :'',
			htmlArr = [
				'\
				<div style=\'z-index:'+ zi +';\' id=\''+ id +'\' class=\''+ this.name +' '+ curClass +'\'>\
					<div style="position:relative;z-index:1;overflow:hidden;" class=\''+ ( selectedOp.attr( "class" ) || "" ) +'\' value=\''+ selectedOp.val() +'\'>\
						<span>'+ selectedOp.text() +'</span>\
						<em class=\''+ this.name +'_arrow\'><em></em></em>\
					</div>\
					<input style="position:absolute;z-index:-1;width:1px;height:1px;border:0;margin:0 0 0 -10000px;" id=\''+ id +'-search\' class=\''+ this.name +'-search\' type="text" value="" name='+id+'/>\
					<ol class="s-pack_jselect-list" style=\'z-index:'+ zi +';\'>'+searchBarHtml+'\
					<ul>'
			];
		
		$( this.target ).find( 'option' ).each(function( i ) {
			var selectedClass = $( this ).attr( 'class' ) ? $( this ).attr( 'class' ) : '',
				// option 上原始的样式
				oClass = $( this ).attr( 'class' ) ? 'oclass='+ $( this ).attr( 'class' ) : '';
			
			if( selectedOp.index() == i ) {
				selectedClass += ' '+_this.opt.selectedClass;
			}
			
			var bgpart = "", s_color = $( this ).attr( "s-color" );
			if( s_color ) {
				var bg = '';
				if( /^#/.test( s_color ) ) {
					bg = 'background-color: '+ s_color;
				} else {
					bg = 'background-image: url("'+ s_color + '")';
				}
				
				bgpart = "<b class='s-color' style='"+ bg +"'></b>";
			}
			
			var _disabledClass = $( this ).is( ":disabled" ) ? _this.opt.unClickClass : '';

			htmlArr.push( '<li class="'+_disabledClass+' '+ selectedClass +'" '+ oClass +' value="'+ $( this ).val() +'">'+ bgpart + '<span>' + $( this ).text() +'</span></li>' );
		});
		
		htmlArr.push( '</ul></ol></div>' );
		
		if( $( "#"+ id ).length ) {
			$( "#"+ id ).remove();
		}
		
		$( this.target ).after( htmlArr.join( '' ) );
		
		// 用于外部进行调用
		this.target._$smodel = $( '#' + id );
		
		if( $( this.target ).is( ":disabled" ) ) {
			this.target._$smodel.addClass( this.opt.disabledClass ).attr( "disabled", "disabled" );
		}
		
		_list.push( this.target._$smodel );
		
		this._$focus = this.target._$smodel.find( 'div' );
		this._$ul = this.target._$smodel.find( '.s-pack_jselect-list' );

		this._$search = $( '#'+ id +'-search' );
		
		// 设置模型基础样式
		this.SetStyle();
	},
	
	// 设置模型基础样式
	// 用户自定义设置为 rel='width:200,height:100'
	SetStyle: function() {
		var _this = this;
		
		// 如果没有设置宽度
		var real_w = this.target._$smodel.find( '.'+ this.name + '_arrow' ).outerWidth( true ) + $( this.target ).outerWidth( true );
		this.target._$smodel.css( 'width', real_w );
		
		// 模型实际默认宽度=宽度+下拉箭头宽度
		var toSet = $( this.target ).attr( 'rel' );
		
		// 使用用户自定义配置进行设置
		if( toSet ) {
			var setArr = toSet.split( ',' );
			
			for( var i = 0; i < setArr.length; i ++ ) {
				var s = setArr[i], sArr = s.split( ':' ), pro = sArr[0], val = sArr[1];
				
				this.target._$smodel.css( pro, val );
			}
		}
		this.SetModelListHeight();
		
		$( this.target ).hide();
		this._$ul.hide();
	},
	
	// 设置模型下拉曾的高度
	SetModelListHeight: function() {
		
		var _this = this;
		
		// 真实超过可视数量时添加滚动样式
		if( this.opt.viewNum && $( this.target ).find( 'option' ).length > this.opt.viewNum ) {
			var hei = 0;
			
			this._$ul.find( 'li' ).each(function( i ) {
				if( i < _this.opt.viewNum ) {
					hei += $( this ).outerHeight( true );
				}
			});
			
			this._$ul.find( 'ul' ).css({ height: hei, 'overflow-y': 'scroll' });
		}
	},
	
	// 当前点击项设置为z 最高
	GetMaxIndex: function() {
		var z = 0, list = $( ".pack_jselect" ), len = list.length;
		
		list.each(function() {
			var zi = parseInt( $( this ).css( "z-index" ) );
			
			z = Math.max( z, zi ? zi : len );
		});
		
		return z + 1;
	},
	
	// 绑定点击事件
	Bind: function( fn ) {
		var _this = this;
		
		// 模拟select 的交互动作
		this._$focus.bind( 'click.'+ this.name, function( event ) {
			clearTimeout( _this.timer );
			
			$( _this._$ul ).css( "z-index", _this.GetMaxIndex() );
			
			if( _this.target._$smodel && _this.target._$smodel.hasClass( _this.opt.disabledClass ) || _this.target._$smodel.attr( "disabled" ) !== undefined ) {
				return;
			}
			
			_this.timer = setTimeout(function() { 
				
				if( event.target !== prevTarget ) {
					$.each( _list, function( i, item ) {
						item.find( ".s-pack_jselect-list" ).hide();
						item.css({'z-index':'1'});
					});
				}
				_this[ _this._$ul.is( ':hidden' ) ? 'Open' : 'Close' ]();
				
				prevTarget = event.target;
			}, 100 );
			
			return false;
		});
		
		// 监听原始Select 的变化
		$( this.target ).bind( 'change.'+ this.name, function() {
			var selectedOption = $( this ).find( 'option:selected' ), selectedIndex = selectedOption.index();
			// 修改模型样式以及显示的值
			_this.UpdateModel( selectedIndex );

			//验证移除提示
			if( $( this ).val() != '' && $( this ).parent().find( 'label.error' ).length > 0 ){
				$( this ).parent().find( 'label.error' ).remove();
			}
		});
		
		// 绑定选中select 的事件
		this._$ul.find( 'li' )
			.each(function( i ) {
				this._index = i;
			})
			.bind( 'click.'+ this.name, function() {
				if( $( this ).hasClass( _this.opt.unClickClass ) || $( this ).hasClass( 's-select-bar' ) ) {
					return false;
				} else {

					// 点击的是当前项
					if( $( this ).hasClass( 'pack_jselect-selected' ) ) {
						_this.Close();
					} else {
						_this.Apply( this._index );
					}
				}
			})
			.bind( 'mouseover.'+ this.name, function() {
				var firstWord = $( this ).text().charAt( 0 );
				
				_this._$search.val( firstWord );
			});
		
		// 点击模型框区域以外的交互
		this._$ul.bind( 'mouseover.'+ this.name, function() {
			_this._in = true;
		});
		
		this._$ul.bind( 'mouseout.'+ this.name, function() {
			_this._in = false;
		});

		// 执行首字母定位
		this._$search.bind( 'keyup.'+ this.name, function( event ) {
			var v = _this._$search.val(),
				
				lastWord = v.charAt( v.length - 1 ), 
				
				index = _this.matchIndex( lastWord );
			
			// 第一个选项不进行搜索建议
			if( index !== null && index !== 0 ) {
				_this.UpdateModel( index );
				
				_this.SetDropScrollTop( index );
			}
			
			if( event.keyCode == 13 ) {
				_this.Apply( index );
				
				_this._$search.val( '' );
			}
		});

		// 收缩框执行搜索
		if( this.opt.searchBar ){
			
			new domsearch( this._$ul.find( '.s-select-bar input' ) , {
				// 元素集合, 用于隐藏显示
				dataItem	: this._$ul.find( 'ul li' ),
				// 元素集合下的对应要查找的数据源对象选择器
				// 1: tagname || selector[.class || #id]
				// 2: @attr
				dataSource	: 'span',
				
				// 自动创建模糊快速数据
				autoQuick	: true
			});
			
		}


		// 当鼠标位于模型框之外同时触发点击事件时关闭下拉框

		$( document ).bind( 'click.'+ this.name, function() {
			if( !_this._in ) {
				_this.Close();
			}
		});
		
		
		this._$focus.bind( 'selectstart', function(){ return false; });
		this._$focus.bind( 'select', function(){ document.selection.empty(); });
	},
	
	// 进行选择
	Apply: function( index ) {
		var _this = this;
		
		var elem = $( this.target ).attr( "sml:sametrigger" ) ? 
		
						// 相关联select 同样触发change 事件
						$( $( this.target ).attr( "sml:sametrigger" ) ):
						
						$( this.target );
		
		elem.each(function() {
			
			var curOption = $( this ).find( "option" ).eq( index ), curLi = _this._$ul.find( 'li' ).eq( index );
			
			//$( this ).find( "option" ).removeAttr( "selected" );
			curOption.attr( 'selected', 'selected' );

			// 同时触发该 select 元素的change 事件
			$( this ).triggerHandler( 'change' );

			_this.opt.onSelect.call( curOption, index, curLi );
		});
		
		this.UpdateModel( index );
		// 隐藏下拉框
		this._$ul.fadeOut( 100 );
	},
	
	// 显示下拉框
	Open: function() {
		this._$ul.css({ width: this._$focus.innerWidth() });
		
		this._$search.focus();
		this._$ul.fadeIn( 100 );
		this.target._$smodel.css({'z-index':'9999'});

		if( this.opt.searchBar ){
			this._$ul.find( '.s-select-bar input' ).focus();
		}
		
	},
	
	// 关闭下拉框
	Close: function() {
		var _this = this;
		
		$.each( _list, function( i, item ) {
			//item.find( ".s-pack_jselect-list" ).hide();
			
		});
		
		this._$ul.fadeOut( 100 ); 
		this.target._$smodel.css({'z-index':'1'});
		this._in = false;
	},
	
	// 修改模型选项样式以及显示的值
	// 当前选择的索引值
	UpdateModel: function( index ) {
		var list = this._$ul.find( 'li' ), c = list.eq( index ).attr( 'oclass' ) == undefined ? '' : list.eq( index ).attr( 'oclass' );
		
		this._$focus.attr({ "value": list.eq( index ).attr( 'val' ), "class": c });
		this._$focus.find( 'span' ).html( list.eq( index ).text() );
				
		// 当前点击项添加样式
		list.removeClass( this.opt.selectedClass );
		list.eq( index ).addClass( this.opt.selectedClass );
	},
	
	// 快捷选择之后,如果下拉列表存在滚动条,则设置滚动条
	SetDropScrollTop: function( index ) {
		var list = this._$ul.find( 'li' ), cur = list.eq( index );
		
		this._$ul.scrollTop( cur.outerHeight( true ) * index );
	},
	
	// 匹配是否存在有与按键项匹配的首字母项
	// 返回匹配的项的索引
	matchIndex: function( str ) {
		
		var list = this._$ul.find( 'li' );
		
		for( var i = 0; i < list.length; i ++ ) {
			var item = list.eq( i ), firstWord = item.text().charAt( 0 );
			
			if( firstWord.toLocaleUpperCase() === str.toLocaleUpperCase() ) {
				return i;
			}
		}
		
		return null;
	}
};


/**
 * 快捷搜索
 * 对原始dom 进行显示隐藏操作
 * 
 * dataSource: 数据源的父级是需要被隐藏的元素,所以如果隐藏的位置和数据位置不是同一个元素,则需要指定
 *  
 * @param {Object} options
 */
function domsearch( target, options ) {
		this.target = target;
		
		this.opt = {
			// 元素集合, 用于隐藏显示
			dataItem	: null,
			// 元素集合下的对应要查找的数据源对象选择器
			// 1: tagname || selector[.class || #id]
			// 2: @attr
			dataSource	: null,
			
			// 自动创建模糊快速数据
			autoQuick	: true
		};
		
		$.extend( this.opt, options );
		
		this.init();
	}

	domsearch.prototype = {
		
		init: function() {
			var _this = this;
			
			if( this.opt.autoQuick ) {
				this.createQuick();
			}
			
			$( this.target ).keyup(function() {
				
				var arr = _this.getMatch( $.trim( $( this ).val() ) );
				
				_this.reload( arr );
			});
		},
		
		// 自动创建一个快速搜索
		createQuick: function() {
			var _this = this;
			
			$( this.opt.dataItem ).each(function() {
				var elem = _this.getDataFrom( this ), text = _this.getText( elem );
				
				if( text.length && typeof text === 'string' ) {
					var qstr = '', arr = text.split( '' );
					
					for( var i = 0; i < arr.length; i ++ ) {
						qstr += arr[i].charAt( 0 );
					}
					
					elem.attr( 'dom-search-autoquick', qstr );
				}
			});
		},
		
		// 匹配相似数据
		getMatch: function( val ) {
			var _this = this, match_arr = [], expr = new RegExp( '^.*'+ val, 'i' );
			
			$( this.opt.dataItem ).each(function() {
				var elem = _this.getDataFrom( this );
				
				if( // 从text 中进行开头全字匹配
					expr.test( _this.getText( elem ) ) || 
					// 快速匹配
					expr.test( elem.attr( 'dom-search-autoquick' ) ) 
				) {
					match_arr.push( this );
				}
			});
			
			return match_arr;
		},
		
		// 从指定位置获取元素
		getDataFrom: function( target ) {
			var ds = this.opt.dataSource;
			
			if( ds ) {
				return /^@/.test( ds ) ? $( target ) : $( target ).find( ds );
			} else {
				return $( target );
			}
		},
		
		getText: function( elem ) {
			var ds = this.opt.dataSource;
			
			return /^@/.test( ds ) ? elem.attr( ds.replace( /^@/, '' ) ) : elem.text();
		},
		
		// 重载 dom,隐藏不匹配的项
		reload: function( arr ) {
			$( this.opt.dataItem ).not( arr ).hide();
			$( this.opt.dataItem ).filter( arr ).show();
		}
	}

	//return domsearch;


	
	return jselect;
	
});