diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/App.razor b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/App.razor new file mode 100644 index 0000000..6fd3ed1 --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/App.razor @@ -0,0 +1,12 @@ + + + + + + + Not found + +

Sorry, there's nothing at this address.

+
+
+
diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/EasyMicroservices.UI.BlazorComponents.UITests.csproj b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/EasyMicroservices.UI.BlazorComponents.UITests.csproj new file mode 100644 index 0000000..b7576d8 --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/EasyMicroservices.UI.BlazorComponents.UITests.csproj @@ -0,0 +1,22 @@ + + + + net7.0 + enable + + + + + + + + + + + + + + + + + diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/MainLayout.razor b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/MainLayout.razor new file mode 100644 index 0000000..cd5509a --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/MainLayout.razor @@ -0,0 +1,12 @@ +@using MudBlazor +@inherits LayoutComponentBase + + + + + + + + @Body + + diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Models/TestDeleteModel.cs b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Models/TestDeleteModel.cs new file mode 100644 index 0000000..8e701a0 --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Models/TestDeleteModel.cs @@ -0,0 +1,6 @@ +namespace EasyMicroservices.UI.BlazorComponents.UITests.Models; + +public class TestDeleteModel +{ + public string Name { get; set; } +} diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Pages/Index.razor b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Pages/Index.razor new file mode 100644 index 0000000..4de4e09 --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Pages/Index.razor @@ -0,0 +1,95 @@ +@page "/" +@using EasyMicroservices.ServiceContracts +@using MudBlazor; +@using EasyMicroservices.UI.BlazorComponents; +@using EasyMicroservices.UI.BlazorComponents.UITests.Models + + + + + Delete + + + + + Delete + + + + + Add + + + + + Update + + + + + + + + + this is content of saving + + + +@code { + DeleteBaseDialog deleteDialog; + SaveChangeBaseDialog saveDialog; + + bool hasError = true; + void OnDelete() + { + deleteDialog.BindViewModel = new DialogBaseViewModel(); + deleteDialog.ShowDeleteDialog(new TestDeleteModel() { Name = "Ali" }, (item) => + { + hasError = !hasError; + if (hasError) + return (FailedReasonType.AccessDenied, "Example Access Denied!"); + else + return true; + }); + } + + void OnDeleteAsync() + { + deleteDialog.BindViewModel = new DialogBaseViewModel(); + deleteDialog.ShowDeleteDialogAsync(new TestDeleteModel() { Name = "Ali Async" }, async (item) => + { + await Task.Delay(3000); + hasError = !hasError; + if (hasError) + return (FailedReasonType.AccessDenied, "Example Access Denied!"); + else + return true; + }); + } + + void OnSave() + { + saveDialog.BindViewModel = new DialogBaseViewModel(); + saveDialog.ShowSaveDialog(new TestDeleteModel() { Name = "Ali" }, (item) => + { + hasError = !hasError; + if (hasError) + return (FailedReasonType.AccessDenied, "Example Access Denied!"); + else + return true; + }); + } + void OnSaveAsync() + { + saveDialog.BindViewModel = new DialogBaseViewModel(); + saveDialog.ShowSaveDialogAsync(new TestDeleteModel() { Name = "Ali" }, async (item) => + { + await Task.Delay(3000); + hasError = !hasError; + if (hasError) + return (FailedReasonType.AccessDenied, "Example Access Denied!"); + else + return true; + }); + } +} \ No newline at end of file diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Program.cs b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Program.cs new file mode 100644 index 0000000..75e32a2 --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Program.cs @@ -0,0 +1,33 @@ +using EasyMicroservices.UI.BlazorComponents; +using EasyMicroservices.UI.BlazorComponents.UITests; +using EasyMicroservices.UI.Cores; +using Microsoft.AspNetCore.Components.Web; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; +using MudBlazor; +using MudBlazor.Services; + +LoadLanguage("en-US"); + +var builder = WebAssemblyHostBuilder.CreateDefault(args); +builder.RootComponents.Add("#app"); +builder.RootComponents.Add("head::after"); + +builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); +builder.Services.AddTransient(); +builder.Services.AddMudServices(config => +{ + config.SnackbarConfiguration.PositionClass = Defaults.Classes.Position.BottomLeft; +}); +await builder.Build().RunAsync(); +void LoadLanguage(string languageShortName) +{ + BaseViewModel.CurrentApplicationLanguage = languageShortName; + BaseViewModel.AppendLanguage("Save", "Save"); + BaseViewModel.AppendLanguage("SaveDialog_Title", "Save"); + BaseViewModel.AppendLanguage("Saving", "Saving"); + BaseViewModel.AppendLanguage("Delete", "Delete"); + BaseViewModel.AppendLanguage("Delete_Title", "Delete"); + BaseViewModel.AppendLanguage("Deleting", "Deleting"); + BaseViewModel.AppendLanguage("Cancel", "Cancel"); + BaseViewModel.AppendLanguage("DeleteQuestion_Content", "Do you?"); +} \ No newline at end of file diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Properties/launchSettings.json b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Properties/launchSettings.json new file mode 100644 index 0000000..68db00d --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/Properties/launchSettings.json @@ -0,0 +1,28 @@ +{ + "iisSettings": { + "iisExpress": { + "applicationUrl": "http://localhost:34110", + "sslPort": 0 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "http://localhost:5281", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/_Imports.razor b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/_Imports.razor new file mode 100644 index 0000000..143b595 --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/_Imports.razor @@ -0,0 +1,7 @@ +@using System.Net.Http +@using System.Net.Http.Json +@using Microsoft.AspNetCore.Components.Routing +@using Microsoft.AspNetCore.Components.Web +@using Microsoft.AspNetCore.Components.WebAssembly.Http +@using Microsoft.JSInterop +@using EasyMicroservices.UI.BlazorComponents.UITests diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/wwwroot/css/app.css b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/wwwroot/css/app.css new file mode 100644 index 0000000..ffcb043 --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/wwwroot/css/app.css @@ -0,0 +1,32 @@ +h1:focus { + outline: none; +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/wwwroot/index.html b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/wwwroot/index.html new file mode 100644 index 0000000..1cf31d2 --- /dev/null +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.UITests/wwwroot/index.html @@ -0,0 +1,29 @@ + + + + + + EasyMicroservices.UI.BlazorComponents.UITests + + + + + + + + + + +
Loading...
+ +
+ An unhandled error has occurred. + Reload + 🗙 +
+ + + + + diff --git a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.sln b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.sln index 68e34b9..8a3826c 100644 --- a/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.sln +++ b/src/CSharp/BlazorComponents/EasyMicroservices.UI.BlazorComponents.sln @@ -9,6 +9,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "App", "App", "{13E6A614-284 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EasyMicroservices.UI.Cores.Mvvm", "..\Cores\EasyMicroservices.UI.Cores.Mvvm\EasyMicroservices.UI.Cores.Mvvm.csproj", "{CCEEDCC5-B976-4B0B-A293-7D91B893612D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EasyMicroservices.UI.BlazorComponents.UITests", "EasyMicroservices.UI.BlazorComponents.UITests\EasyMicroservices.UI.BlazorComponents.UITests.csproj", "{A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -43,12 +45,25 @@ Global {CCEEDCC5-B976-4B0B-A293-7D91B893612D}.Release|x64.Build.0 = Release|x64 {CCEEDCC5-B976-4B0B-A293-7D91B893612D}.Release|x86.ActiveCfg = Release|x86 {CCEEDCC5-B976-4B0B-A293-7D91B893612D}.Release|x86.Build.0 = Release|x86 + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Debug|x64.ActiveCfg = Debug|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Debug|x64.Build.0 = Debug|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Debug|x86.ActiveCfg = Debug|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Debug|x86.Build.0 = Debug|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Release|Any CPU.Build.0 = Release|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Release|x64.ActiveCfg = Release|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Release|x64.Build.0 = Release|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Release|x86.ActiveCfg = Release|Any CPU + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution {86DEB4A1-E776-461D-9C09-B0484799E6FA} = {13E6A614-2843-4B9B-A175-7C6D66E141E0} + {A1612717-15E7-41FF-ADAB-AC7AFD4F5E6C} = {13E6A614-2843-4B9B-A175-7C6D66E141E0} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {06F00B56-54D5-4A4D-957D-24527B0347ED}