korbit-ai[bot] commented on code in PR #35886:
URL: https://github.com/apache/superset/pull/35886#discussion_r2479024832
##########
superset-frontend/src/dashboard/reducers/nativeFilters.ts:
##########
@@ -69,7 +69,13 @@ function handleFilterChangesComplete(
) {
const modifiedFilters = { ...state.filters };
filters.forEach(filter => {
- modifiedFilters[filter.id] = filter;
+ const existingFilter = modifiedFilters[filter.id];
+
+ modifiedFilters[filter.id] = {
+ ...filter,
+ chartsInScope: filter.chartsInScope ?? existingFilter?.chartsInScope,
+ tabsInScope: filter.tabsInScope ?? existingFilter?.tabsInScope,
+ };
});
Review Comment:
### Unnecessary object operations in filter loop <sub></sub>
<details>
<summary>Tell me more</summary>
###### What is the issue?
The code performs unnecessary object spreading and property access for every
filter in the loop, even when the fallback values are not needed.
###### Why this matters
This creates performance overhead when processing large numbers of filters,
as it spreads the entire filter object and accesses existingFilter properties
unconditionally, regardless of whether the nullish coalescing operator will
actually use the fallback values.
###### Suggested change ∙ *Feature Preview*
Only perform the expensive operations when the fallback values are actually
needed:
```typescript
filters.forEach(filter => {
if (filter.chartsInScope != null && filter.tabsInScope != null) {
modifiedFilters[filter.id] = filter;
} else {
const existingFilter = modifiedFilters[filter.id];
modifiedFilters[filter.id] = {
...filter,
chartsInScope: filter.chartsInScope ?? existingFilter?.chartsInScope,
tabsInScope: filter.tabsInScope ?? existingFilter?.tabsInScope,
};
}
});
```
###### Provide feedback to improve future suggestions
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/957b030e-39eb-448a-af33-e12bf3a97e76/upvote)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/957b030e-39eb-448a-af33-e12bf3a97e76?what_not_true=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/957b030e-39eb-448a-af33-e12bf3a97e76?what_out_of_scope=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/957b030e-39eb-448a-af33-e12bf3a97e76?what_not_in_standard=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/957b030e-39eb-448a-af33-e12bf3a97e76)
</details>
<sub>
💬 Looking for more details? Reply to this comment to chat with Korbit.
</sub>
<!--- korbi internal id:9141be94-31fd-441e-ac74-ed0d668ec466 -->
[](9141be94-31fd-441e-ac74-ed0d668ec466)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]