-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
67 lines (47 loc) · 2.15 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using BlazorMobile.Common;
using BlazorMobile.Common.Services;
using BlazorMobileAuth.Blazor.Helpers;
using BlazorMobileAuth.Blazor.Services;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Net.Http;
using System.Threading.Tasks;
namespace BlazorMobileAuth.Blazor
{
public class Program
{
public static async Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.Services.AddSingleton(new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
#region Services registration
ServicesHelper.ConfigureCommonServices(builder.Services);
builder.Services
.AddScoped<IAuthenticationService, AuthenticationService>()
.AddScoped<IUserService, UserService>()
.AddScoped<IHttpService, HttpService>()
.AddScoped<ILocalStorageService, LocalStorageService>();
// configure http client
builder.Services.AddScoped(x =>
{
var apiUrl = new Uri(builder.Configuration["apiUrl"]);
// use fake backend if "fakeBackend" is "true" in appsettings.json
if (builder.Configuration["fakeBackend"] == "true")
return new HttpClient(new FakeBackendHandler()) { BaseAddress = apiUrl };
return new HttpClient() { BaseAddress = apiUrl };
});
var host = builder.Build();
var authenticationService = host.Services.GetRequiredService<IAuthenticationService>();
await authenticationService.Initialize();
#endregion
BlazorMobileService.OnBlazorMobileLoaded += (object source, BlazorMobileOnFinishEventArgs eventArgs) =>
{
Console.WriteLine($"Initialization success: {eventArgs.Success}");
Console.WriteLine("Device is: " + BlazorDevice.RuntimePlatform);
};
builder.RootComponents.Add<MobileApp>("app");
await builder.Build().RunAsync();
}
}
}