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

feat(filterFilter): allow overwriting the special $ property name #13356

Conversation

gkalpak
Copy link
Member

@gkalpak gkalpak commented Nov 20, 2015

Previously, the special property name that would match against any
property was hard-coded to $.
With this commit, the user can specify an arbitrary property name,
by passing a 4th argument to filterFilter(). E.g.:

var items = [{foo: 'bar'}, {baz: 'qux'}];
var expr  =  {'%': 'bar'};

console.log(filterFilter(items, expr, null, '%'));   // [{foo: 'bar'}]

Fixes #13313

Previously, the special property name that would match against any
property was hard-coded to `$`.
With this commit, the user can specify an arbitrary property name,
by passing a 4th argument to `filterFilter()`. E.g.:

```js
var items = [{foo: 'bar'}, {baz: 'qux'}];
var expr  =  {'%': 'bar'};

console.log(filterFilter(items, expr, null, '%'));   // [{foo: 'bar'}]
```

Fixes angular#13313
@gkalpak
Copy link
Member Author

gkalpak commented Nov 21, 2015

/cc @petebacondarwin (see #13313 (comment))

@@ -59,6 +60,9 @@
* Primitive values are converted to strings. Objects are not compared against primitives,
* unless they have a custom `toString` method (e.g. `Date` objects).
*
* @param {string=} specialKey The special property name that matches against any property.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we call this parameter anyPropertyKey?

@petebacondarwin
Copy link
Contributor

Other than the param name, this all looks good to me. But I think we should wait for 1.5.0 to land now.

@gkalpak gkalpak force-pushed the feat-filterFilter-overwrite-dollar branch from 890b2a0 to 64f08ef Compare November 23, 2015 11:11
@gkalpak
Copy link
Member Author

gkalpak commented Nov 23, 2015

Updated the param name. I'm fine with waiting for v1.6.x (since this is just an enhancement anyway).

@Narretz
Copy link
Contributor

Narretz commented Jun 15, 2016

Since this not a BC, should we add it to 1.5?

@gkalpak
Copy link
Member Author

gkalpak commented Jun 15, 2016

But I think we should wait for 1.5.0 to land now.

Maybe I miunderstood @petebacondarwin's comment. He probably meant to merge this in a subsequent 1.5.x release. He would know best what he meant though 😛

Since this is neither a BC nor a fix, I'm fine either way.

@petebacondarwin
Copy link
Contributor

I think I meant that we were about about release 1.5.0 so we should just put it in a 1.5.x release

@Narretz Narretz merged commit 2b182eb into angular:master Jun 16, 2016
Narretz pushed a commit that referenced this pull request Jun 16, 2016
Previously, the special property name that would match against any
property was hard-coded to `$`.
With this commit, the user can specify an arbitrary property name,
by passing a 4th argument to `filterFilter()`. E.g.:

```js
var items = [{foo: 'bar'}, {baz: 'qux'}];
var expr  =  {'%': 'bar'};

console.log(filterFilter(items, expr, null, '%'));   // [{foo: 'bar'}]
```

Fixes #13313
PR (#13356)
@gkalpak gkalpak deleted the feat-filterFilter-overwrite-dollar branch June 16, 2016 19:13
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants