Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6705b0e

Browse files
committed
fix(filterFilter): let expression object {$: '...'} also match primitive items
Closes #10428
1 parent 6617b42 commit 6705b0e

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

src/ng/filter/filter.js

+9
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,15 @@ function filterFilter() {
133133
//jshint -W086
134134
case 'object':
135135
//jshint +W086
136+
if (!matchAgainstAnyProp && (expression !== null) && ('$' in expression)) {
137+
var keysCount = 0;
138+
for (var key in expression) { keysCount++; }
139+
if (keysCount === 1) {
140+
expression = expression.$;
141+
matchAgainstAnyProp = true;
142+
}
143+
}
144+
136145
predicateFn = createPredicateFn(expression, comparator, matchAgainstAnyProp);
137146
break;
138147
default:

test/ng/filter/filterSpec.js

+20
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,26 @@ describe('Filter: filter', function() {
6565
});
6666

6767

68+
it('should treat expression `{$: \'xyz\'}` as `\'xyz\'`', function() {
69+
var items, expr;
70+
71+
items = ['something', 'something else', 'another thing'];
72+
expr = {$: 'some'};
73+
expect(filter(items, expr).length).toBe(2);
74+
expect(filter(items, expr)).toEqual([items[0], items[1]]);
75+
76+
items = [{val: 'something'}, {val: 'something else'}, {val: 'another thing'}];
77+
expr = {$: 'some'};
78+
expect(filter(items, expr).length).toBe(2);
79+
expect(filter(items, expr)).toEqual([items[0], items[1]]);
80+
81+
items = [123, 456, 789];
82+
expr = {$: 1};
83+
expect(filter(items, expr).length).toBe(1);
84+
expect(filter(items, expr)).toEqual([items[0]]);
85+
});
86+
87+
6888
it('should take object as predicate', function() {
6989
var items = [{first: 'misko', last: 'hevery'},
7090
{first: 'adam', last: 'abrons'}];

0 commit comments

Comments
 (0)