korbit-ai[bot] commented on code in PR #34126:
URL: https://github.com/apache/superset/pull/34126#discussion_r2198597994
##########
superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:
##########
@@ -88,12 +88,21 @@ const ExtraOptions = ({
const isAllowRunAsyncDisabled = isFeatureEnabled(
FeatureFlag.ForceSqlLabRunAsync,
);
+ const [activeKey, setActiveKey] = useState<string[] | undefined>();
+
+ useEffect(() => {
+ if (!expandableModalIsOpen) {
+ setActiveKey(undefined);
+ }
+ }, [expandableModalIsOpen]);
Review Comment:
### Unnecessary State Updates in useEffect <sub></sub>
<details>
<summary>Tell me more</summary>
###### What is the issue?
The component re-renders unnecessarily when expandableModalIsOpen changes,
even if activeKey is already undefined.
###### Why this matters
This causes unnecessary re-renders and DOM updates, impacting performance
when the modal is frequently toggled.
###### Suggested change ∙ *Feature Preview*
Add a condition to check if activeKey is already undefined before setting it:
```typescript
useEffect(() => {
if (!expandableModalIsOpen && activeKey !== undefined) {
setActiveKey(undefined);
}
}, [expandableModalIsOpen, activeKey]);
```
###### Provide feedback to improve future suggestions
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/74ab9509-840d-4dc3-9875-43d7c987b8da/upvote)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/74ab9509-840d-4dc3-9875-43d7c987b8da?what_not_true=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/74ab9509-840d-4dc3-9875-43d7c987b8da?what_out_of_scope=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/74ab9509-840d-4dc3-9875-43d7c987b8da?what_not_in_standard=true)
[](https://app.korbit.ai/feedback/aa91ff46-6083-4491-9416-b83dd1994b51/74ab9509-840d-4dc3-9875-43d7c987b8da)
</details>
<sub>
💬 Looking for more details? Reply to this comment to chat with Korbit.
</sub>
<!--- korbi internal id:7dc20ddf-cffc-4c30-9b82-6f0aafe914e1 -->
[](7dc20ddf-cffc-4c30-9b82-6f0aafe914e1)
--
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]