2024-05-31 13:16:09 +00:00
|
|
|
|
using Microsoft.AspNetCore.Components.Authorization;
|
2024-06-05 12:41:08 +00:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2024-05-31 13:16:09 +00:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-06-01 04:38:12 +00:00
|
|
|
|
using Neighbourhood.omg.lol.Models;
|
2024-05-30 01:06:08 +00:00
|
|
|
|
|
|
|
|
|
namespace Neighbourhood.omg.lol {
|
|
|
|
|
public static class MauiProgram {
|
|
|
|
|
public static MauiApp CreateMauiApp() {
|
|
|
|
|
var builder = MauiApp.CreateBuilder();
|
|
|
|
|
builder
|
|
|
|
|
.UseMauiApp<App>()
|
|
|
|
|
.ConfigureFonts(fonts => {
|
|
|
|
|
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
builder.Services.AddMauiBlazorWebView();
|
2024-05-31 13:16:09 +00:00
|
|
|
|
builder.Services.AddTransient<LoginWebViewPage>();
|
2024-06-05 12:41:08 +00:00
|
|
|
|
builder.Services.AddTransient<EphemeralWebPage>();
|
2024-05-31 13:16:09 +00:00
|
|
|
|
|
2024-06-01 04:38:12 +00:00
|
|
|
|
builder.Services.AddSingleton<State>();
|
|
|
|
|
builder.Services.AddSingleton<NavigatorService>();
|
|
|
|
|
|
2024-06-05 12:41:08 +00:00
|
|
|
|
ConfigurationBuilder configurationBuilder = new ConfigurationBuilder();
|
|
|
|
|
builder.Services.AddSingleton<IConfiguration>(configurationBuilder.AddUserSecrets<App>().Build());
|
|
|
|
|
|
2024-05-31 13:16:09 +00:00
|
|
|
|
builder.Services.AddAuthorizationCore();
|
|
|
|
|
builder.Services.AddScoped<CustomAuthenticationStateProvider>();
|
|
|
|
|
builder.Services.AddScoped<AuthenticationStateProvider>(s => s.GetRequiredService<CustomAuthenticationStateProvider>());
|
2024-05-30 01:06:08 +00:00
|
|
|
|
|
|
|
|
|
#if DEBUG
|
2024-05-31 13:16:09 +00:00
|
|
|
|
builder.Services.AddBlazorWebViewDeveloperTools();
|
2024-05-30 01:06:08 +00:00
|
|
|
|
builder.Logging.AddDebug();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return builder.Build();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|