ThibG f895bf1984 Optimize makeGetStatus (#11211)
* Optimize makeGetStatus

Because `ImmutableList.filter` always returns a new object and `createSelector`
memoizes based on object identity, the selector returned by `makeGetStatus`
would *always* execute.

To avoid that, we wrap `getFilters` into a new memoizer that memoizes based on
deep equality, thus returning the same object as long as the filters haven't
changed, allowing the memoization of `makeGetStatus` to work.

Furthermore, we memoize the compiled regexs instead of recomputing them each
time the selector is called.

* Fix memoized result being cleared too often

* Make notifications use memoized getFiltersRegex
2019-06-30 00:12:38 +02:00
..
2019-06-30 00:12:38 +02:00
2019-06-22 17:26:09 +02:00
2019-06-30 00:12:38 +02:00
2019-02-02 12:25:04 +01:00
2018-04-18 16:50:19 +02:00
2017-09-30 04:29:56 +02:00
2017-06-10 15:06:50 +02:00