open-consul/ui/packages/consul-ui/tests/unit
John Cowen 299ecff703
ui: Adds @NullValue attr decorator (#9587)
There are many places in the API where we receive a property set to
`null` which can then lead to defensive code deeper in the app in order
to guard for this type of thing when usually we are expecting an array
or for the property to be undefined using omitempty on the backend.

Previously we had two places where we would deal with this in the
serializer using our 'remove-null' util (KV and Intentions).

This new decorator lets you declaritively define this type of data using
a decorator @NullValue([]) (which would replce a null value with [].

@NullValue in turn uses a more generic @replace helper, which we
currently don't need but would let you replace any value with another,
not just a null value.

An additional benefit here is that the guard/replacement is executed
lazily when we get the property instead of serializing all the values
when they come in via the API. On super large datasets, where we only
visualize part of the dataset (say in our scroll panes), this feels like
a good improvement on the previous approach.
2021-01-27 10:41:24 +00:00
..
adapters ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
components ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
controllers ui: Misc changes for Catalog area (#9414) 2020-12-17 16:35:01 +00:00
filter/predicates ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
helpers ui: Remove old style 'filterable' searching (#9356) 2020-12-09 19:12:17 +00:00
mixins ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
models ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
routes ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
search/predicates ui: Fuzzy and Regex searching (#9424) 2020-12-18 10:38:15 +00:00
serializers ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
services ui: Move to Workspaced Structure (#8994) 2020-10-21 15:23:16 +01:00
sort/comparators ui: Add 'Search Across' for finer grained searching (#9282) 2020-12-01 15:45:09 +00:00
utils ui: Adds @NullValue attr decorator (#9587) 2021-01-27 10:41:24 +00:00