feat(database-modal): add validation loading state and duplicate name check #36880
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
SUMMARY
Problem
When users fill out the database connection form, they experience two UX issues:
Solution
This PR addresses both issues:
isValidatingprop is now passed toTableCatalog,ValidatedInputField, andCommonParameterscomponents.Additionally, fixed the
LabeledErrorBoundInputcomponent where hasFeedback was only set when there was an error. Changed it, so the Ant Design FormItem displays the loading spinner during validation, not just the error icon when validation fails.ValidateDatabaseParametersCommand.validate()method to check for duplicate database names usingDatabaseDAO.validate_uniqueness()(for new databases) orDatabaseDAO.validate_update_uniqueness()(for existing databases).This provides real-time feedback as users type, preventing wasted time on form submissions that will fail.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
before.mp4
after.mp4
ADDITIONAL INFORMATION
es new feature or API