-
Notifications
You must be signed in to change notification settings - Fork 580
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce CommandOptions & HttpCommandOptions #8276
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces a new configuration type, HttpCommandOptions, along with corresponding updates to the WithCommand and WithHttpCommand extension methods to consolidate various command settings into a single options object. Key changes include:
- Adding HttpCommandOptions inheriting from CommandOptions to encapsulate HTTP command configuration.
- Updating the WithCommand and WithHttpCommand overloads to accept a CommandOptions/HttpCommandOptions parameter in place of multiple individual parameters.
- Refactoring documentation and tests to reflect and validate the new API design.
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
File | Description |
---|---|
src/Aspire.Hosting/ApplicationModel/HttpCommandOptions.cs | New HttpCommandOptions class introduced for HTTP command configuration. |
src/Aspire.Hosting/ResourceBuilderExtensions.cs | Updated extension methods to leverage commandOptions and updated XML documentation. |
src/Aspire.Hosting/ApplicationModel/CommandOptions.cs | New base CommandOptions class created and used across command APIs. |
src/Aspire.Hosting/ApplicationModel/HttpCommandContext.cs | Updated XML doc comments to reference the new overloads. |
tests/Aspire.Hosting.Tests/WithHttpCommandTests.cs | Modified tests to use the new overloads with commandOptions. |
tests/Aspire.Hosting.Tests/Dashboard/DashboardServiceTests.cs | Updated tests to replace the obsolete overload with the new commandOptions parameter. |
Comments suppressed due to low confidence (1)
src/Aspire.Hosting/ApplicationModel/HttpCommandOptions.cs:7
- The XML summary appears to have an extra '/>' at the end of the documentation comment. Please remove the extraneous characters to ensure proper XML formatting.
/// Optional configuration for resource HTTP commands added with <see cref="ResourceBuilderExtensions.WithHttpCommand{TResource}(IResourceBuilder{TResource}, string, string, string?, HttpCommandOptions?)"/>."/>
builder.Resource.Annotations.Remove(existingAnnotation); | ||
} | ||
|
||
return builder.WithAnnotation(new ResourceCommandAnnotation(name, displayName, commandOptions.UpdateState ?? (c => ResourceCommandState.Enabled), executeCommand, commandOptions.Description, commandOptions.Parameter, commandOptions.ConfirmationMessage, commandOptions.IconName, commandOptions.IconVariant, commandOptions.IsHighlighted)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
commandOPtions.UpdateState ?? CommandOptions.Default.UpdateState
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CommandOptions.Default.UpdateState
is null
by default so that it can be detected whether one was set or not.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Co-authored-by: David Pine <[email protected]>
Co-authored-by: David Pine <[email protected]>
Co-authored-by: James Newton-King <[email protected]>
@IEvangelist RE the pattern-matching suggestion, it can't be used with |
@DamianEdwards Ah, ok! I that these were an |
Description
React to feedback on API review: #7811 (comment)
Checklist
<remarks />
and<code />
elements on your triple slash comments?