-
Notifications
You must be signed in to change notification settings - Fork 134
/
Startup.cs
121 lines (106 loc) · 4.57 KB
/
Startup.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
using GridMvc.Demo.Filters;
using GridMvc.Demo.Models;
using GridMvc.Demo.Services;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Localization;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Options;
using System.Collections.Generic;
using System.Globalization;
using GridShared.Data;
namespace GridMvc.Demo
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<NorthwindDbContext>(options =>
{
options.UseGridBlazorDatabase();
//options.ConfigureWarnings(warnings => warnings.Ignore(RelationalEventId.QueryClientEvaluationWarning));
});
// Add framework services.
services.AddLocalization(options => options.ResourcesPath = "Resources");
services.AddGridMvc();
services.AddRazorPages();
services.AddServerSideBlazor();
services.AddMvc()
.AddViewLocalization()
.AddDataAnnotationsLocalization();
services.AddScoped<LanguageFilter>();
services.AddScoped<IOrderService, OrderService>();
services.AddScoped<ICustomerService, CustomerService>();
services.AddScoped<IEmployeeService, EmployeeService>();
services.AddScoped<IEmployeeFileService, EmployeeFileService>();
services.AddScoped<IShipperService, ShipperService>();
services.Configure<RequestLocalizationOptions>(
options =>
{
var supportedCultures = new List<CultureInfo>
{
new CultureInfo("en-US"),
new CultureInfo("de-DE"),
new CultureInfo("it-IT"),
new CultureInfo("es-ES"),
new CultureInfo("fr-FR"),
new CultureInfo("ru-RU"),
new CultureInfo("nb-NO"),
new CultureInfo("nl-NL"),
new CultureInfo("tr-TR"),
new CultureInfo("cs-CZ"),
new CultureInfo("sl-SI"),
new CultureInfo("se-SE"),
new CultureInfo("sr-Cyrl-RS"),
new CultureInfo("hr-HR"),
new CultureInfo("fa-IR"),
new CultureInfo("ca-ES"),
new CultureInfo("gl-ES"),
new CultureInfo("eu-ES"),
new CultureInfo("pt-BR"),
new CultureInfo("bg-BG"),
new CultureInfo("uk-UA"),
new CultureInfo("ar-EG"),
new CultureInfo("da-DK"),
new CultureInfo("ja-JP"),
new CultureInfo("zh-Hans-CN")
};
options.DefaultRequestCulture = new RequestCulture(culture: "en-US", uiCulture: "en-US");
options.SupportedCultures = supportedCultures;
options.SupportedUICultures = supportedCultures;
});
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
var locOptions = app.ApplicationServices.GetService<IOptions<RequestLocalizationOptions>>();
app.UseRequestLocalization(locOptions.Value);
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapDefaultControllerRoute();
endpoints.MapRazorPages();
endpoints.MapBlazorHub();
});
}
}
}