mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
27 lines
865 B
C#
27 lines
865 B
C#
using GraphQL.Client.Http;
|
|
using GraphQL.Client.Serializer.Newtonsoft;
|
|
using ShoppingAssistantWebClient.Web.Network;
|
|
|
|
namespace ShoppingAssistantWebClient.Web.Configurations;
|
|
|
|
public static class DependencyInjectionExtension
|
|
{
|
|
public static IServiceCollection AddApiClient(this IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
services.AddHttpContextAccessor();
|
|
|
|
var apiUrl = configuration.GetValue<string>("ApiUrl");
|
|
services.AddHttpClient("ApiHttpClient", client => {
|
|
client.BaseAddress = new Uri(apiUrl + "api/");
|
|
});
|
|
|
|
services.AddScoped<GraphQLHttpClient>(p =>
|
|
new GraphQLHttpClient(apiUrl + "graphql", new NewtonsoftJsonSerializer())
|
|
);
|
|
|
|
services.AddScoped<AuthenticationService>();
|
|
services.AddScoped<ApiClient>();
|
|
|
|
return services;
|
|
}
|
|
} |