| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using Microsoft.AspNetCore.Components;
- using Microsoft.AspNetCore.Components.Web;
- using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
- using RackPeek.Domain;
- using RackPeek.Domain.Git;
- using RackPeek.Domain.Persistence;
- using RackPeek.Domain.Persistence.Yaml;
- using Shared.Rcl;
- namespace RackPeek.Web.Viewer;
- public class Program {
- public static async Task Main(string[] args) {
- var builder = WebAssemblyHostBuilder.CreateDefault(args);
- builder.RootComponents.Add<App>("#app");
- builder.RootComponents.Add<HeadOutlet>("head::after");
- IServiceCollection services = builder.Services;
- builder.Services.AddScoped(sp => {
- NavigationManager nav = sp.GetRequiredService<NavigationManager>();
- return new HttpClient {
- BaseAddress = new Uri(nav.BaseUri)
- };
- });
- builder.Services.AddGitServices(builder.Configuration);
- builder.Services.AddScoped<ITextFileStore, WasmTextFileStore>();
- var resources = new ResourceCollection();
- builder.Services.AddSingleton(resources);
- var yamlDir = builder.Configuration.GetValue<string>("RPK_YAML_DIR") ?? "config";
- var yamlFilePath = $"{yamlDir}/config.yaml";
- builder.Services.AddScoped<RackPeekConfigMigrationDeserializer>();
- builder.Services.AddScoped<IResourceYamlMigrationService, ResourceYamlMigrationService>();
- builder.Services.AddScoped<IResourceCollection>(sp =>
- new YamlResourceCollection(
- yamlFilePath,
- sp.GetRequiredService<ITextFileStore>(),
- sp.GetRequiredService<ResourceCollection>(),
- sp.GetRequiredService<IResourceYamlMigrationService>()));
- builder.Services.AddYamlRepos();
- builder.Services.AddCommands();
- builder.Services.AddScoped<IConsoleEmulator, ConsoleEmulator>();
- builder.Services.AddUseCases();
- builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
- await builder.Build().RunAsync();
- }
- }
|