Angularjs検索フィルタ機能付きselectドロップダウン・ボックスのサンプル・コードの実装
10283 ワード
前言
selectのドロップダウンリストについては、国が選択するような機能で、世界中の多くの国で、スクロールバーを引っ張るのはどんなに苦労しているのか、目も見つめて探して、疲れています!したがって,ユーザ体験を最適化するためには,検索機能付きのドロップダウンボックスが非常に必要である.jqueryにはこのようなプラグインがあることはよく知られていますが、私たちはAngularjsを使っています.双方向バインド、命令で優雅にこの問題を解決したいと思っています.
ぶんせき
我々の目標は、従来の
使用および効果
詳細な説明
プログラムのキーポイントは
まとめ
以上はこの文章のすべての内容で、本文の内容がみんなの学习あるいは仕事に対して一定の助けをもたらすことができることを望んで、もし疑问があればみんなは伝言を残して交流することができます.
selectのドロップダウンリストについては、国が選択するような機能で、世界中の多くの国で、スクロールバーを引っ張るのはどんなに苦労しているのか、目も見つめて探して、疲れています!したがって,ユーザ体験を最適化するためには,検索機能付きのドロップダウンボックスが非常に必要である.jqueryにはこのようなプラグインがあることはよく知られていますが、私たちはAngularjsを使っています.双方向バインド、命令で優雅にこの問題を解決したいと思っています.
ぶんせき
我々の目標は、従来の
* [ select name,ng-options ]
*/
.directive('ngcSelectSearch', function($animate, $compile, $parse) {
function parseOptions(optionsExp, element, scope) {
// ngOptions
var NG_OPTIONS_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+group\s+by\s+([\s\S]+?))?(?:\s+disable\s+when\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+([\s\S]+?)(?:\s+track\s+by\s+([\s\S]+?))?$/;
var match = optionsExp.match(NG_OPTIONS_REGEXP);
if (!(match)) {
console.log('ng-options ')
}
var valueName = match[5] || match[7];
var keyName = match[6];
var displayFn = $parse(match[2]);
var keyFn = $parse(match[1]);
var valuesFn = $parse(match[8]);
var labelArray = [],
idArray = [],
optionValues = [];
scope.$watch(match[8], function(newValue, oldValue) {
if (newValue && newValue.length > 0) {
optionValues = valuesFn(scope) || [];
labelArray = [];
idArray = []
for (var index = 0, l = optionValues.length; index < l; index++) {
var it = optionValues[index];
if (match[2] && match[1]) {
var localIt = {};
localIt[valueName] = it;
var label = displayFn(scope, localIt);
var dataId = keyFn(scope, localIt);
labelArray.push(label);
idArray.push(dataId);
}
}
scope.options = {
'optionValues': optionValues,
'labelArray': labelArray,
'idArray': idArray
}
}
});
}
return {
restrict: 'A',
require: ['ngModel'],
priority: 100,
replace: false,
scope: true,
template: '
' +
'' +
'' +
'' +
'' +
'' +
'' +
// '- {{'+ valueTempl+'}}
'+
'
' +
'' +
'
',
link: {
pre: function selectSearchPreLink(scope, element, attr, ctrls) {
var tmplNode = $(this.template).first();
var modelName = attr.ngModel,
name = attr.name? attr.name:('def'+Date.now());
tmplNode.attr('id', name + '_chosecontianer');
$animate.enter(tmplNode, element.parent(), element);
},
post: function selectSearchPostLink(scope, element, attr, ctrls) {
var choseNode = element.next(); //$('#'+attr.name +'_chosecontianer');
choseNode.addClass(attr.class);
element.addClass('chose-hide');
//
var ngModelCtrl = ctrls[0];
if (!ngModelCtrl || !attr.name) return;
parseOptions(attr.ngOptions, element, scope);
var rs = {};
function setView() {
var currentKey = ngModelCtrl.$modelValue;
if (isNaN(currentKey) || !currentKey) {
currentKey = '';
choseNode.find('.j-view:first').text(' ');
choseNode.find('i').addClass('chose-hide');
}
if ((currentKey + '').length > 0) {
for (var i = 0, l = rs.idArray.length; i < l; i++) {
if (rs.idArray[i] == currentKey) {
choseNode.find('.j-view:first').text(rs.labelArray[i]);
choseNode.find('i').removeClass('chose-hide');
break;
}
}
}
}
function setViewAndData() {
if (!scope.options) {
return;
}
rs = scope.options;
setView();
}
scope.$watchCollection('options', setViewAndData);
scope.$watch(attr.ngModel, setView);
function getListNodes(value) {
var nodes = [];
value = $.trim(value);
for (var i = 0, l = rs.labelArray.length; i < l; i++) {
if (rs.labelArray[i].indexOf(value) > -1) {
nodes.push($('').data('id', rs.idArray[i]).text(rs.labelArray[i]))
}
}
return nodes;
}
choseNode.on('keyup', '.j-key', function() {
// keyup,
var value = $(this).val();
choseNode.find('ul:first').empty().append(getListNodes(value));
return false;
}).on('click', function() {
choseNode.find('.j-drop').removeClass('chose-hide');
if (choseNode.find('.j-view:first').text() != ' ') {
choseNode.find('i').removeClass('chose-hide');
}
choseNode.find('ul:first').empty().append(getListNodes(choseNode.find('.j-key').val()));
return false;
}).on('click', 'ul>li', function() {
var _this = $(this);
ngModelCtrl.$setViewValue(_this.data('id'));
ngModelCtrl.$render();
choseNode.find('.j-drop').addClass('chose-hide');
return false;
}).on('click', 'i', function() {
ngModelCtrl.$setViewValue('');
ngModelCtrl.$render();
choseNode.find('.j-view:first').text(' ');
return false;
});
$(document).on("click", function() {
$('.j-drop').addClass('chose-hide');
choseNode.find('i').addClass('chose-hide');
return false;
});
}
}
};
})
1.2 cssコード(lessで書かれています.以下はコンパイルされています)
.chose-hide {
position: absolute!important;
top: -999em !important;
}
.chose-container {
border: none!important;
float: left;
margin-right: 40px;
padding: 0!important;
position: relative;
}
.chose-container .chose-single {
padding: 6px 12px;
color: #333;
width: 100%;
border: 1px solid #eee;
display: inline-block;
height: 30px;
}
.chose-container .chose-single::after {
content: '';
position: absolute;
border-width: 6px 3px;
border-style: solid;
/* border-top-color: transparent; */
border-left-color: transparent;
border-right-color: transparent;
border-bottom-color: transparent;
right: 8px;
top: 12px;
}
.chose-container .chose-single i {
width: 12px;
float: right;
right: 8px;
font-size: 12px;
height: 12px;
background-color: #eee;
}
.chose-container .chose-drop {
width: 195px;
position: absolute;
border: 1px solid #eee;
z-index: 1000;
background-color: #fff;
}
.chose-container .chose-search input[type='text'] {
margin: 0;
padding-left: 12px;
width: 100%;
height: 30px;
border: 1px solid #ccc;
float: none;
}
.chose-container .chose-result {
max-height: 370px;
overflow-y: scroll;
overflow-x: hidden;
}
.chose-container .chose-result li {
padding: 5px 12px;
list-style-type: none;
}
.chose-container .chose-result li:hover {
background-color: #e1e2e7;
}
使用および効果
詳細な説明
プログラムのキーポイントは
parseOptions
関数、すなわち前の分析の問題1です.parseOptions
はng-options
のソースコードを参照して実現されたもので、元は1つのオブジェクトを返したいと思っていたが、このオブジェクトにはデータソースが含まれていたが、デバッグ時にpost
関数のうち、この関数がオブジェクトに戻ったデータが空で、watch
が届かないことが分かったので、scope.options
でデータを格納するように変更した.まとめ
以上はこの文章のすべての内容で、本文の内容がみんなの学习あるいは仕事に対して一定の助けをもたらすことができることを望んで、もし疑问があればみんなは伝言を残して交流することができます.