Skip to content
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

Merged
merged 9 commits into from
Mar 25, 2025

Conversation

DamianEdwards
Copy link
Member

@DamianEdwards DamianEdwards commented Mar 24, 2025

Description

React to feedback on API review: #7811 (comment)

Checklist

@github-actions github-actions bot added the area-app-model Issues pertaining to the APIs in Aspire.Hosting, e.g. DistributedApplication label Mar 24, 2025
Copy link
Contributor

@Copilot Copilot AI left a 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));
Copy link
Member

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 ?

Copy link
Member Author

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.

Copy link
Member

@mitchdenny mitchdenny left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@DamianEdwards
Copy link
Member Author

@IEvangelist RE the pattern-matching suggestion, it can't be used with KnownResourceStates as pattern matching requires constant values when comparing to strings.

@DamianEdwards DamianEdwards enabled auto-merge (squash) March 25, 2025 15:32
@DamianEdwards DamianEdwards merged commit 5a06331 into main Mar 25, 2025
163 checks passed
@DamianEdwards DamianEdwards deleted the damianedwards/WithCommandOptions branch March 25, 2025 15:46
@IEvangelist
Copy link
Member

@IEvangelist RE the pattern-matching suggestion, it can't be used with KnownResourceStates as pattern matching requires constant values when comparing to strings.

@DamianEdwards Ah, ok! I that these were an enum...that's the KnownResourceState type I was thinking, which caters nicely to the compile time const constraint on the pattern matching suggestion. I'm seeing that KnownResourceStates.* fields as static readonly instead of const, which would allow for pattern matching.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-app-model Issues pertaining to the APIs in Aspire.Hosting, e.g. DistributedApplication
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants