Skip to content

Commit

Permalink
fix(typo): Typo in AddMinimalApiClient, filled readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
naice committed Mar 19, 2024
1 parent 383c225 commit bd7708d
Show file tree
Hide file tree
Showing 5 changed files with 103 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Blazor.MinimalApi.Client/IServiceCollectionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Blazor.MinimalApi.Client;

public static class IServiceCollectionExtensions
{
public static void AddMinimapApiClient(this IServiceCollection services)
public static void AddMinimalApiClient(this IServiceCollection services)
{
services.AddSingleton<IMinimalApiRouteProvider, MinimalApiDefaultRouteProvider>();
services.AddScoped(typeof(MinimalHttpClient<>));
Expand Down
1 change: 0 additions & 1 deletion Blazor.MinimalApi.SampleClient/Pages/CarsQuerySample.razor
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,4 @@
{
_cars = await CarClient.Get(query: new QueryParameters().With("count", _countCars)) ?? Array.Empty<Car>();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,4 @@
{
_cars = await CarClient.Query(new CarsRequest(_countCars)) ?? Array.Empty<Car>();
}

}
2 changes: 1 addition & 1 deletion Blazor.MinimalApi.SampleClient/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
builder.RootComponents.Add<HeadOutlet>("head::after");

builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
builder.Services.AddMinimapApiClient();
builder.Services.AddMinimalApiClient();

await builder.Build().RunAsync();
102 changes: 101 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,104 @@
![x](https://img.shields.io/badge/License-MIT-blue.svg)
[![Release](https://github.com/naice/Blazor.MinimalApi/actions/workflows/release.yml/badge.svg?branch=master)](https://github.com/naice/Blazor.MinimalApi/actions/workflows/release.yml)

TBD ;)
This project aims to simplify Blazor Api Data requests and get rid of messy url definitions.



## Blazor.MinimalApi.Server
[![Downloads](https://img.shields.io/nuget/dt/Blazor.MinimalApi.Server)](https://www.nuget.org/packages/Blazor.MinimalApi.Server/)

### Download & Install
**Nuget Package [Blazor.MinimalApi.Server](https://www.nuget.org/packages/Blazor.MinimalApi.Server/)**

```powershell
Install-Package Blazor.MinimalApi.Server
```
### Program.cs
```csharp
// Add endpoint definitions
builder.Services.AddEndpointDefinitions(typeof(Program));

var app = builder.Build();
// ...
app.UseEndpointDefinitions();
```
### SampleEndpointDefinition.cs
```csharp
public class SampleEndpointDefinition : IEndpointDefinition
{
public void DefineEndpoints(IEndpointRouteBuilder builder)
{
builder.MinimalMapGet<Car[]>(async ([FromQuery(Name = "count")] int count) =>
{
await Task.Delay(100);
return new CarFaker().Generate(count);
});
builder.MinimalMapGet<CarsRequest, Car[]>((CarsRequest request)
=> new CarFaker().Generate(request.Count));
builder.MinimalMapQuery<CarsRequest, Car[]>((CarsRequest request)
=> new CarFaker().Generate(request.Count));
}
}
```
## Blazor.MinimalApi.Client
[![Downloads](https://img.shields.io/nuget/dt/Blazor.MinimalApi.Client)](https://www.nuget.org/packages/Blazor.MinimalApi.Client/)

### Download & Install
**Nuget Package [Blazor.MinimalApi.Client](https://www.nuget.org/packages/Blazor.MinimalApi.Client/)**

```powershell
Install-Package Blazor.MinimalApi.Client
```
### Program.cs
```csharp
// Add minimal api client
builder.Services.AddMinimalApiClient();
```
### CarsRequestSample.razor
```csharp
@page "/"
@using Blazor.MinimalApi.Model
@inject MinimalHttpClient<CarsRequest, Car[]> CarClient

<PageTitle>MinimalHttpClient&lt;CarsRequest, Car[]&gt; Sample</PageTitle>

<input type="number" @bind="_countCars" />
<input type="button" value="Load Cars" @onclick="LoadCars"/>

<h1>Cars</h1>

@foreach (var car in _cars.OrderBy(c => c.Manufacturer))
{
<div>
<h4> @car.Manufacturer - @car.Model </h4>
<strong>@car.Type</strong> - @car.Fuel<br/>
<i>@car.Vin</i><br/>
<hr/>
</div>
}

@code{
private int _countCars = 10;
private Car[] _cars = Array.Empty<Car>();

private async Task LoadCars()
{
_cars = await CarClient.Query(new CarsRequest(_countCars)) ?? Array.Empty<Car>();
}
}
```
## Blazor.MinimalApi.Abstractions
[![Downloads](https://img.shields.io/nuget/dt/Blazor.MinimalApi.Abstractions)](https://www.nuget.org/packages/Blazor.MinimalApi.Abstractions/)
### Download & Install
**Nuget Package [Blazor.MinimalApi.Abstractions](https://www.nuget.org/packages/Blazor.MinimalApi.Abstractions/)**
```powershell
Install-Package Blazor.MinimalApi.Client
```

### Info
Main reason for the abstraction library is the `IMinimalApiRouteProvider`
interface and it's default implementation `MinimalApiDefaultRouteProvider`.
This interface is shared Client / Server side and used to build routes.

0 comments on commit bd7708d

Please sign in to comment.