-
Notifications
You must be signed in to change notification settings - Fork 27.4k
fix(filterFilter): allow array like objects to be filtered #11787
Conversation
@@ -127,7 +127,7 @@ | |||
*/ | |||
function filterFilter() { | |||
return function(array, expression, comparator) { | |||
if (!isArray(array)) { | |||
if (!isArrayLike(array)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not sufficient. We are using array.filter
, which isArrayLike
does not guarrantee to exist.
Maybe we could change array.filter(...)
with something like isArray(array) ? array.filter(...) : Array.prototype.filter.call(array, ...)
.
It might even be better to always use the latter form regardless of the type of array
.
This needs a little more investigation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think is better to use the latter form always.
I made this microbench: http://jsperf.com/with-or-without-isarray
Even assuming that using arrays is the most common case, I don't think that the performance gain is worth having the check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've updated the jsperf (http://jsperf.com/with-or-without-isarray/2) to reuse Array.prototype.filter
(although that should hardly make any noticable difference).
Basically, 99% of the time, I believe we will be dealing with arrays, so that is the usecase we should be optimizing for. So, we are mainly concerned about array with check
vs array without check
(using Array.prototype.filter
).
Indeed, on desktop Chrome and Firefox, both seem to be almost equally fast.
On mobile Chrome, the latter was about 10% slower.
More importantly, on desktop IE11, the latter was consistently >15% slower.
So, I would go with the former.
We should:
1.) Store Array.prototype.filter
(if nothing else for readability)
2.) Allow array-like
objects.
3.) Check array
and decide what function to call.
var arrayFilter = Array.prototype.filter;
...
if (!isArrayLike(array)) { /* Throw */ }
...
return isArray(array) ? array.filter(predicateFn) : arrayFilter.call(array, predicateFn);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because of my poor english I normally don't write down my arguments too well.
I'll try to explain my point a little more (however, and of course, I don't have any problem to change the PR to make the check).
In the jsperf, we see very little difference given between array with check
and array without check
that:
- we have very few elements
- most important, the filterFn is super simple and gets superoptimized by the compiler
In a more realistic scenario where we may be concerned by performance, I think we'll have this differences:
- the number of elements will be two orders of magnitude bigger or more
- the
predicateFn
will be one created bycreatePredicateFn
, that will be way slower than the one optimized in the jsbin
By this reasons, IMHO, I think that the improvement of the check is so small when performance is an issue, that is not worth it.
But again, if you think it is worth it, I'll change the PR :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think you are right. It's fine as it is.
e09ed5d
to
419f560
Compare
A little correction: |
We should also have tests for as many array-like objects as possible. |
I would like to have tests for more types of array-like objects (e.g. strings, jQuery objects etc). Thx @gonzaloruizdevilla ! |
419f560
to
7115bd1
Compare
@gkalpak I've added more checks in the test, for both string and a nodelist. As expected, the source of filter.js remained unchanged with these additions. |
7115bd1
to
f4cdcf0
Compare
LGTM |
} | ||
|
||
|
||
aux({name: 'Misko'}, {name: 'Igor'}, {name: 'Brad'}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was not immediately clear to me what was being tested here, i.e. the array-like arguments
object. It would be better to write something like:
function getArguments() {
return arguments;
}
var argsObj = getArguments({name: 'Misko'}, {name: 'Igor'}, {name: 'Brad'});
expect(filter(argsObj, 'i').length).toBe(2);
I think we can merge this with the change to the |
The "arraylike-ness" of the input is determined using
But it doesn't seem to break var obj = {length: 10, k1: 'v1', k2: 'v2', 9: 'test'};
Array.prototype.filter.call(obj, function () { return true; }); // results in: ['test'] Other than that, Besides, even if there is a way to break it (and you try really hard), you might end up with an error. |
Awesome let's go with it! |
Throw error if filter is not used with an array like object. Closes angular#11782
f4cdcf0
to
42b6453
Compare
Trying really hard 😄, the only thing I've achieved is to kill the performance with an object like @petebacondarwin Thanks for your suggestion, it is much more readable now. I've updated the PR and the commit message. |
LGTM |
Throw error if filter is not used with an array like object. Closes angular#11782 Closes angular#11787
Throw error if filter is not used with an array like object.
Previous PR #10352 restricted filterFilter to use only arrays, but it can perfectly work with array like objects.
Closes #11782