diff --git a/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs b/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs index 7fc6790..91f5823 100644 --- a/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs +++ b/ShoppingAssistantWebClient.Web/CustomMiddlewares/GlobalUserMiddleware.cs @@ -15,24 +15,26 @@ public class GlobalUserMiddleware public async Task InvokeAsync(HttpContext httpContext, AuthenticationService authenticationService, ApiClient apiClient) { - try + if (httpContext.Request.Path != "/login") { - var accessToken = await authenticationService.GetAuthTokenAsync(); - if (!string.IsNullOrEmpty(accessToken)) + try { - apiClient.JwtToken = accessToken; - GlobalUser.Roles = authenticationService.GetRolesFromJwtToken(accessToken); - GlobalUser.Id = authenticationService.GetIdFromJwtToken(accessToken); - GlobalUser.Email = authenticationService.GetEmailFromJwtToken(accessToken); - GlobalUser.Phone = authenticationService.GetPhoneFromJwtToken(accessToken); + var accessToken = await authenticationService.GetAuthTokenAsync(); + if (!string.IsNullOrEmpty(accessToken)) + { + apiClient.JwtToken = accessToken; + GlobalUser.Roles = authenticationService.GetRolesFromJwtToken(accessToken); + GlobalUser.Id = authenticationService.GetIdFromJwtToken(accessToken); + GlobalUser.Email = authenticationService.GetEmailFromJwtToken(accessToken); + GlobalUser.Phone = authenticationService.GetPhoneFromJwtToken(accessToken); + } + } + catch (AuthenticationException ex) + { + httpContext.Response.Cookies.Delete("accessToken"); + httpContext.Response.Redirect("/login"); } } - catch (AuthenticationException ex) - { - httpContext.Response.Cookies.Delete("accessToken"); - httpContext.Response.Redirect(""); - } - await _next(httpContext); } } \ No newline at end of file diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.razor b/ShoppingAssistantWebClient.Web/Pages/Chat.razor index d18129b..9dbe618 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Chat.razor +++ b/ShoppingAssistantWebClient.Web/Pages/Chat.razor @@ -1,4 +1,7 @@ @page "/chat/{chatId}" + +@inject IHttpClientFactory ClientFactory + Gift for Jessica
@@ -43,6 +46,27 @@
+
+ +
Several possible options
+ +
+ +
+ HDMI +
+
+ VGA +
+
+ DisplayPort +
+ +
+ +
+ +
Send message @@ -62,6 +86,8 @@ [Parameter] public string chatId { get; set; } + + } diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.razor.cs b/ShoppingAssistantWebClient.Web/Pages/Chat.razor.cs index 3c8cbd7..44e32ae 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Chat.razor.cs +++ b/ShoppingAssistantWebClient.Web/Pages/Chat.razor.cs @@ -1,14 +1,50 @@ using Microsoft.AspNetCore.Components; +using ShoppingAssistantWebClient.Web.Models; +using GraphQL; +using Newtonsoft.Json; +using ShoppingAssistantWebClient.Web.Network; namespace ShoppingAssistantWebClient.Web.Pages; public partial class Chat : ComponentBase { + [Inject] - public ILogger Logger { get; set; } + private ApiClient _apiClient { get; set; } + protected override async Task OnInitializedAsync() - { - // Get data from Back-end + { + await LoadMenus(); + } + + + private async Task LoadMenus() + { + var pageNumber = 1; + var request = new GraphQLRequest + { + Query = @"mutation StartPersonalWishlist { + startPersonalWishlist(dto: { type: product, firstMessageText: hello }) { + id + name + type + createdById + } + }", + + Variables = new + { + pageNumber = pageNumber, + pageSize = 12, + } + }; + + var response = await _apiClient.QueryAsync(request); + } + + + + } diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.razor.css b/ShoppingAssistantWebClient.Web/Pages/Chat.razor.css index f7f24b7..33531e7 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Chat.razor.css +++ b/ShoppingAssistantWebClient.Web/Pages/Chat.razor.css @@ -55,6 +55,36 @@ border-radius: 0.6em; } +.possible_options { + position: absolute; + bottom: 5.5em; + margin-left: 25%; + width: 50%; + border-radius: 0.6em; +} +.tite_options{ + font-size: 0.9em; + color: #ADADAD; + margin-bottom: 0.5em; + +} +.options{ + justify-content: space-between; + align-items: center; + font-size: 1em; +} +.topic_options +{ + display: inline-block; + padding: 0.5em; + border: 0.09em solid; + border-color: #009FFF; + border-radius: 0.6em; + margin: 0em 0.6em; + flex: 1; + text-align: center; +} + .input_messages { width: 100%; height: 2.5em; @@ -72,8 +102,8 @@ cursor: pointer; line-height: 2.5em; margin-right: 0.8em; - width: 1.8em; - height: 1.7em; + width: 1.5em; + height: 1.4em; } .new_chat { diff --git a/ShoppingAssistantWebClient.Web/Pages/Login.cshtml b/ShoppingAssistantWebClient.Web/Pages/Login.cshtml new file mode 100644 index 0000000..198c17b --- /dev/null +++ b/ShoppingAssistantWebClient.Web/Pages/Login.cshtml @@ -0,0 +1,8 @@ +@page "/login" +@model ShoppingAssistantWebClient.Web.Pages.LoginModel + +

Login

+ +@{ + +} diff --git a/ShoppingAssistantWebClient.Web/Pages/Login.cshtml.cs b/ShoppingAssistantWebClient.Web/Pages/Login.cshtml.cs new file mode 100644 index 0000000..f57fb3e --- /dev/null +++ b/ShoppingAssistantWebClient.Web/Pages/Login.cshtml.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; + +namespace ShoppingAssistantWebClient.Web.Pages +{ + public class LoginModel : PageModel + { + public void OnGet() + { + } + } +} diff --git a/ShoppingAssistantWebClient.Web/Program.cs b/ShoppingAssistantWebClient.Web/Program.cs index a804442..bf74514 100644 --- a/ShoppingAssistantWebClient.Web/Program.cs +++ b/ShoppingAssistantWebClient.Web/Program.cs @@ -1,5 +1,7 @@ +using GraphQL.Client.Http; using ShoppingAssistantWebClient.Web.Configurations; using ShoppingAssistantWebClient.Web.Data; +using ShoppingAssistantWebClient.Web.Network; var builder = WebApplication.CreateBuilder(args); @@ -28,6 +30,6 @@ app.UseRouting(); app.MapBlazorHub(); app.MapFallbackToPage("/_Host"); -// app.ConfigureGlobalUserMiddleware(); +app.ConfigureGlobalUserMiddleware(); app.Run(); diff --git a/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor b/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor index f9d34c6..d2e40f8 100644 --- a/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor +++ b/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor @@ -1,4 +1,6 @@ -@inject NavigationManager Navigation + +@inject NavigationManager Navigation +
@@ -27,16 +29,22 @@
- @foreach (var item in Wishlists) - { -
-
@item.Name
- Delete wishlist - Card open -
+ @if(!isLoading){ + + @foreach (var item in Wishlists) + { +
+
@item.Name
+ Delete wishlist + Card open +
+ } + + }else{ +
loading ...
} - +
@@ -90,6 +98,7 @@ @code { + private void RedirectToPage(string itemId) { var url = $"/chat/{itemId}"; Navigation.NavigateTo(url); @@ -102,7 +111,9 @@ var url = $"/chat/{itemId}/cart"; Navigation.NavigateTo(url); } - private void DeleteWishlist(string itemId) { + private async void DeleteWishlist(string itemId) { + + await DeleteWish(itemId); } diff --git a/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor.cs b/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor.cs index 7cb303a..4529eb1 100644 --- a/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor.cs +++ b/ShoppingAssistantWebClient.Web/Shared/NavMenu.razor.cs @@ -1,23 +1,82 @@ using Microsoft.AspNetCore.Components; using ShoppingAssistantWebClient.Web.Models; +using GraphQL; +using Newtonsoft.Json; +using ShoppingAssistantWebClient.Web.Network; namespace ShoppingAssistantWebClient.Web.Shared { public partial class NavMenu : ComponentBase { - public List Wishlists = new() + [Inject] + private ApiClient _apiClient { get; set; } + + //public string jwt; + + public List Wishlists { get; set; } + public bool isLoading = true; + protected override async Task OnInitializedAsync() + { + //jwt = _apiClient.JwtToken; + + await LoadMenus(); + } + + + private async Task LoadMenus() + { + + + isLoading = true; + var pageNumber = 1; + var request = new GraphQLRequest { - new Wishlist {Id = "0", Name = "Gift for Jessica", Type="product", CreateById="0"}, - new Wishlist {Id = "1", Name = "Secret Santa", Type="gift", CreateById="1"}, - new Wishlist {Id = "2", Name = "Mark’s Birthday", Type="product", CreateById="2"} + Query = @"query PersonalWishlistsPage( $pageNumber: Int!, $pageSize: Int!) { + personalWishlistsPage(pageNumber: $pageNumber, pageSize: $pageSize) { + items { + id + name + } + } + }", + + Variables = new + { + pageNumber, + pageSize = 10, + } }; - protected override async Task OnInitializedAsync() + var response = await _apiClient.QueryAsync(request); + var responseData = response.Data; + var jsonCategoriesResponse = JsonConvert.SerializeObject(responseData.personalWishlistsPage.items); + this.Wishlists = JsonConvert.DeserializeObject>(jsonCategoriesResponse); + isLoading = false; + + } + + protected async Task DeleteWish(string wishlistId) + { + var request = new GraphQLRequest { - // Get data from Back-end - } + Query = @"mutation DeletePersonalWishlist($wishlistId: String!) { + deletePersonalWishlist(wishlistId: $wishlistId) { + id + } + } + ", + + Variables = new + { + wishlistId + } + }; + + var response = await _apiClient.QueryAsync(request); + var responseData = response.Data; + } } -} +} \ No newline at end of file diff --git a/ShoppingAssistantWebClient.Web/appsettings.Development.json b/ShoppingAssistantWebClient.Web/appsettings.Development.json index 5cbb7be..252167e 100644 --- a/ShoppingAssistantWebClient.Web/appsettings.Development.json +++ b/ShoppingAssistantWebClient.Web/appsettings.Development.json @@ -1,10 +1,7 @@ { - "DetailedErrors": true, - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "ApiUrl": "https://localhost:7268/" + + "ApiUrl": "https://shopping-assistant-api-dev.azurewebsites.net/" + } + +