Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 5c86280

Browse files
author
Clement Teule
committed
feat: add trim option
Closes #2064
1 parent a5e9380 commit 5c86280

11 files changed

+75
-13
lines changed

dist/select.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.19.8 - 2018-08-29T05:34:50.133Z
4+
* Version: 0.19.8 - 2018-08-29T05:41:58.530Z
55
* License: MIT
66
*/
77

dist/select.js

+10-5
Large diffs are not rendered by default.

dist/select.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/select.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/select.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bootstrap/select.tpl.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
ng-class="{ 'ui-select-search-hidden' : !$select.searchEnabled }"
1010
placeholder="{{$select.placeholder}}"
1111
ng-model="$select.search"
12-
ng-show="$select.open">
12+
ng-show="$select.open"
13+
ng-trim="{{ $select.trim }}">
1314
<div ng-show="$select.open && $select.items.length > 0" class="ui-select-dropdown dropdown-menu">
1415
<div class="ui-select-header"></div>
1516
<div class="ui-select-choices"></div>

src/common.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ var uis = angular.module('ui.select', [])
113113
appendToBody: false,
114114
spinnerEnabled: false,
115115
spinnerClass: 'glyphicon glyphicon-refresh ui-select-spin',
116-
backspaceReset: true
116+
backspaceReset: true,
117+
trim: true
117118
})
118119

119120
// See Rename minErr and make it accessible from outside https://github.com/angular/angular.js/issues/6913

src/select2/select.tpl.html

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<div class="search-container" ng-class="{'ui-select-search-hidden':!$select.searchEnabled, 'select2-search':$select.searchEnabled}">
1010
<input type="search" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"
1111
ng-class="{'select2-active': $select.refreshing}"
12+
ng-trim="{{ $select.trim }}"
1213
role="combobox"
1314
aria-expanded="true"
1415
aria-owns="ui-select-choices-{{ $select.generatedId }}"

src/selectize/select.tpl.html

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
ng-model="$select.search"
1212
ng-hide="!$select.isEmpty() && !$select.open"
1313
ng-disabled="$select.disabled"
14+
ng-trim="{{ $select.trim }}"
1415
aria-label="{{ $select.baseTitle }}">
1516
</div>
1617
<div ng-show="$select.open" class="ui-select-dropdown selectize-dropdown"

src/uiSelectDirective.js

+4
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ uis.directive('uiSelect',
160160
$select.spinnerClass = spinnerClass !== undefined ? attrs.spinnerClass : uiSelectConfig.spinnerClass;
161161
});
162162

163+
scope.$watch(function () { return scope.$eval(attrs.trim); }, function(newVal) {
164+
$select.trim = newVal !== undefined ? newVal : uiSelectConfig.trim;
165+
});
166+
163167
//Automatically gets focus when loaded
164168
if (angular.isDefined(attrs.autofocus)){
165169
$timeout(function(){

test/select.spec.js

+49
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ describe('ui-select tests', function () {
176176
if (attrs.backspaceReset !== undefined) { attrsHtml += ' backspace-reset="' + attrs.backspaceReset + '"'; }
177177
if (attrs.uiDisableChoice !== undefined) { choicesAttrsHtml += ' ui-disable-choice="' + attrs.uiDisableChoice + '"'; }
178178
if (attrs.removeSelected !== undefined) { attrsHtml += ' remove-selected="' + attrs.removeSelected + '"'; }
179+
if (attrs.trim !== undefined) { attrsHtml += ' trim="' + attrs.trim + '"'; }
179180
}
180181

181182
return compileTemplate(
@@ -3494,6 +3495,54 @@ describe('ui-select tests', function () {
34943495
});
34953496
});
34963497

3498+
describe('Test trim', function () {
3499+
it('should have a default value of true', function () {
3500+
var control = createUiSelect();
3501+
expect(control.scope().$select.trim).toEqual(true);
3502+
});
3503+
3504+
it('should have set a value of false', function () {
3505+
var control = createUiSelect({ trim: false });
3506+
expect(control.scope().$select.trim).toEqual(false);
3507+
});
3508+
3509+
['selectize', 'bootstrap', 'select2'].forEach(function (theme) {
3510+
describe(theme + ' theme', function () {
3511+
it('should define ng-trim to true when undefined', function () {
3512+
var el = createUiSelect({ theme});
3513+
expect($(el).find('.ui-select-search').attr('ng-trim')).toEqual('true');
3514+
});
3515+
3516+
it('should define ng-trim when true', function () {
3517+
var el = createUiSelect({ theme, trim: true });
3518+
expect($(el).find('.ui-select-search').attr('ng-trim')).toEqual('true');
3519+
});
3520+
3521+
it('should define ng-trim when false', function () {
3522+
var el = createUiSelect({ theme, trim: false });
3523+
expect($(el).find('.ui-select-search').attr('ng-trim')).toEqual('false');
3524+
});
3525+
3526+
describe('multiple', function () {
3527+
it('should define ng-trim to true when undefined', function () {
3528+
var el = createUiSelect({ multiple: 'multiple', theme });
3529+
expect($(el).find('.ui-select-search').attr('ng-trim')).toEqual('true');
3530+
});
3531+
3532+
it('should define ng-trim when true', function () {
3533+
var el = createUiSelect({ multiple: 'multiple', theme, trim: true });
3534+
expect($(el).find('.ui-select-search').attr('ng-trim')).toEqual('true');
3535+
});
3536+
3537+
it('should define ng-trim when false', function () {
3538+
var el = createUiSelect({ multiple: 'multiple', theme, trim: false });
3539+
expect($(el).find('.ui-select-search').attr('ng-trim')).toEqual('false');
3540+
});
3541+
});
3542+
});
3543+
});
3544+
});
3545+
34973546
describe('With refresh on active', function () {
34983547
it('should refresh when is activated', function () {
34993548
scope.fetchFromServer = function () { };

0 commit comments

Comments
 (0)