You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.3 KiB
70 lines
2.3 KiB
1 year ago
|
using System.Collections.Generic;
|
||
|
using System.Globalization;
|
||
|
using Localization.Resources.AbpUi;
|
||
|
using Microsoft.AspNetCore.Builder;
|
||
|
using Microsoft.AspNetCore.Localization;
|
||
|
using Microsoft.AspNetCore.Mvc.ApplicationParts;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using API.Localization;
|
||
|
using API.Web;
|
||
|
using API.Web.Menus;
|
||
|
using Volo.Abp.AspNetCore.TestBase;
|
||
|
using Volo.Abp.Localization;
|
||
|
using Volo.Abp.Modularity;
|
||
|
using Volo.Abp.UI.Navigation;
|
||
|
using Volo.Abp.Validation.Localization;
|
||
|
|
||
|
namespace API
|
||
|
{
|
||
|
[DependsOn(
|
||
|
typeof(AbpAspNetCoreTestBaseModule),
|
||
|
typeof(APIWebModule),
|
||
|
typeof(APIApplicationTestModule)
|
||
|
)]
|
||
|
public class APIWebTestModule : AbpModule
|
||
|
{
|
||
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
||
|
{
|
||
|
context.Services.PreConfigure<IMvcBuilder>(builder =>
|
||
|
{
|
||
|
builder.PartManager.ApplicationParts.Add(new AssemblyPart(typeof(APIWebModule).Assembly));
|
||
|
});
|
||
|
}
|
||
|
|
||
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||
|
{
|
||
|
ConfigureLocalizationServices(context.Services);
|
||
|
ConfigureNavigationServices(context.Services);
|
||
|
}
|
||
|
|
||
|
private static void ConfigureLocalizationServices(IServiceCollection services)
|
||
|
{
|
||
|
var cultures = new List<CultureInfo> { new CultureInfo("en"), new CultureInfo("tr") };
|
||
|
services.Configure<RequestLocalizationOptions>(options =>
|
||
|
{
|
||
|
options.DefaultRequestCulture = new RequestCulture("en");
|
||
|
options.SupportedCultures = cultures;
|
||
|
options.SupportedUICultures = cultures;
|
||
|
});
|
||
|
|
||
|
services.Configure<AbpLocalizationOptions>(options =>
|
||
|
{
|
||
|
options.Resources
|
||
|
.Get<APIResource>()
|
||
|
.AddBaseTypes(
|
||
|
typeof(AbpValidationResource),
|
||
|
typeof(AbpUiResource)
|
||
|
);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
private static void ConfigureNavigationServices(IServiceCollection services)
|
||
|
{
|
||
|
services.Configure<AbpNavigationOptions>(options =>
|
||
|
{
|
||
|
options.MenuContributors.Add(new APIMenuContributor());
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|