diff --git a/ShoppingAssistantWebClient.Web/Pages/Cards.razor b/ShoppingAssistantWebClient.Web/Pages/Cards.razor index 1bc92c2..4bd8442 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Cards.razor +++ b/ShoppingAssistantWebClient.Web/Pages/Cards.razor @@ -26,8 +26,8 @@ product image } } - next image - previous image + next image + previous image } else { @@ -55,15 +55,15 @@ } @for(int i = 0; i < 5; i++) { if(i < whole) { - star + star continue; } if(fractal != 0.0) { - star + star fractal -= fractal; } else { - star + star } } @@ -72,9 +72,12 @@
- + @{ + string[] type = {"cancel", "like"}; + } + - +
@@ -87,7 +90,7 @@
- +
diff --git a/ShoppingAssistantWebClient.Web/Pages/Cards.razor.cs b/ShoppingAssistantWebClient.Web/Pages/Cards.razor.cs index c0bf1b9..2a9fd60 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Cards.razor.cs +++ b/ShoppingAssistantWebClient.Web/Pages/Cards.razor.cs @@ -23,36 +23,49 @@ public partial class Cards private string currentImage {get; set;} private bool isProductsNull = false; - - //private static string[] Images = { - // "/images/return-card.png", - // "/images/exit.png", - // "/images/avatar.jpg" - //}; - - //public List Products = new() - //{ - // new Product {Id = "0", Url = "some link", Name = "Belkin USB C to VGA + Charge Adapter - USB C to VGA Cable for MacBook", - // Description = "The USB C to VGA + Charge Adapter connects to your laptop or tablet via USB-C port, giving you both a VGA port for video display and a USB-C port for power", Rating = 3.8, Price = 120, ImagesUrls = Images, WasOpened = false, WishlistId = "0"}, - // new Product {Id = "1", Url = "some link", Name = "Second product", - // Description = "Test description", Rating = 4.2, Price = 30, ImagesUrls = Images, WasOpened = false, WishlistId = "0"} - //}; - public List Products {get; set;} - //public List productsNames {get; set;} + public List Products {get; set;} = new List(); + + public List ProductsNames {get; set;} + + private List isProductSaved { get; set; } protected override async Task OnInitializedAsync() { - if (Products != null) { - if(Products[currentProduct].ImagesUrls.Length > 0) { - currentImage = Products[currentProduct].ImagesUrls[currentIndex]; + ProductsNames = _searchService.Products; + + if (ProductsNames != null && ProductsNames.Any()) + { + + foreach (var productName in ProductsNames) + { + var newProduct = new Product + { + Id = "", + Url = "link", + Name = productName, + Description = "", + Rating = 0.0, + Price = 0.0, + ImagesUrls = new string[0], + WasOpened = false, + WishlistId = chatId + }; + + Products.Add(newProduct); } + + isProductSaved = new List(new bool[Products.Count]); + } + + if (Products[currentProduct].ImagesUrls.Length > 0) + { + currentImage = Products[currentProduct].ImagesUrls[currentIndex]; } else { - //productsNames = _searchService.Products; currentImage = ""; isProductsNull = true; - } + } } private void ShowNextImage(string image) @@ -86,17 +99,72 @@ public partial class Cards } } - private async void LoadNextProduct() + private async void LoadNextProduct(string type) { + if(type == "like" && isProductSaved[currentProduct] == false) { + isProductSaved[currentProduct] = true; + await AddProductToCart(Products[currentProduct]); + } currentProduct += 1; StateHasChanged(); } private async void LoadPreviousProduct() { - currentProduct -= 1; + currentProduct = currentProduct == 0 ? 0 : --currentProduct; StateHasChanged(); } + private async Task AddProductToCart(Product product) { + try { + var request = new GraphQLRequest { + Query = @"mutation AddProductToPersonalWishlist($wishlistId: String!, $url: String!, $name: String!, $description: String!, $rating: Float!, $price: Float!, $imagesUrls: [String!]!, $wasOpened: Boolean!) { + addProductToPersonalWishlist( + wishlistId: $wishlistId + dto: { + url: $url + name: $name + description: $description + rating: $rating + price: $price + imagesUrls: $imagesUrls + wasOpened: $wasOpened + } + ) { + id + url + name + description + rating + price + imagesUrls + wasOpened + wishlistId + } + }", + Variables = new { + wishlistId = product.WishlistId, + url = product.Url, + name = product.Name, + description = product.Description, + rating = product.Rating, + price = product.Price, + imagesUrls = product.ImagesUrls, + wasOpened = product.WasOpened + } + }; + + Console.WriteLine("Sending GraphQL request: " + request); + + var response = await _apiClient.QueryAsync(request); + var responseData = response.Data; + + } + catch(Exception ex) + { + Console.WriteLine($"Error in AddProductToCart: {ex}"); + } + } + private void LoadMoreProducts() { } diff --git a/ShoppingAssistantWebClient.Web/Pages/Cart.razor b/ShoppingAssistantWebClient.Web/Pages/Cart.razor index f0e1fbd..acacd75 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Cart.razor +++ b/ShoppingAssistantWebClient.Web/Pages/Cart.razor @@ -21,15 +21,20 @@ @if (Products.Count > 0) { @foreach (var product in Products) {
- product image - + @if(product.ImagesUrls != null && product.ImagesUrls.Length > 0) { + product image + } + else { + product image + } +
- star + star
} diff --git a/ShoppingAssistantWebClient.Web/Pages/Cart.razor.css b/ShoppingAssistantWebClient.Web/Pages/Cart.razor.css index bf3641a..8e3bdd1 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Cart.razor.css +++ b/ShoppingAssistantWebClient.Web/Pages/Cart.razor.css @@ -31,7 +31,7 @@ .back-button { width: 15px; height: 15px; - background-image: url("/images/back-button.png"); + background-image: url("/images/back-button.svg"); background-size: cover; border: none; background-color: transparent; diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.razor.cs b/ShoppingAssistantWebClient.Web/Pages/Chat.razor.cs index a5f8eb6..c2a8fc8 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Chat.razor.cs +++ b/ShoppingAssistantWebClient.Web/Pages/Chat.razor.cs @@ -164,7 +164,7 @@ public partial class Chat : ComponentBase } } - if(Products != null) { + if(Products.Any()) { string n = name; _searchServise.SetProducts(Products); Products = null; diff --git a/ShoppingAssistantWebClient.Web/wwwroot/css/Cards.css b/ShoppingAssistantWebClient.Web/wwwroot/css/Cards.css index b8564db..bf7549a 100644 --- a/ShoppingAssistantWebClient.Web/wwwroot/css/Cards.css +++ b/ShoppingAssistantWebClient.Web/wwwroot/css/Cards.css @@ -55,7 +55,7 @@ .back-button { width: 20px; height: 20px; - background-image: url("/images/back-button.png"); + background-image: url("/images/back-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -120,7 +120,7 @@ .cancel-button { width: 25px !important; height: 25px !important; - background-image: url("/images/cancel-button.png"); + background-image: url("/images/cancel-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -129,7 +129,7 @@ .return-button { width: 25px !important; height: 25px !important; - background-image: url("/images/return-card.png"); + background-image: url("/images/return-card.svg"); background-size: cover; border: none; background-color: transparent; @@ -138,7 +138,7 @@ .like-button { width: 25px !important; height: 25px !important; - background-image: url("/images/like-button.png"); + background-image: url("/images/like-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -147,7 +147,7 @@ .exit-button { width: 25px !important; height: 25px !important; - background-image: url("/images/exit.png"); + background-image: url("/images/exit.svg"); background-size: cover; border: none; background-color: transparent; @@ -156,7 +156,7 @@ .more-button { width: 25px !important; height: 25px !important; - background-image: url("/images/load-more.png"); + background-image: url("/images/load-more.svg"); background-size: cover; border: none; background-color: transparent; @@ -276,7 +276,7 @@ .cancel-button { width: 25px !important; height: 25px !important; - background-image: url("/images/cancel-button.png"); + background-image: url("/images/cancel-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -285,7 +285,7 @@ .return-button { width: 25px !important; height: 25px !important; - background-image: url("/images/return-card.png"); + background-image: url("/images/return-card.svg"); background-size: cover; border: none; background-color: transparent; @@ -294,7 +294,7 @@ .like-button { width: 25px !important; height: 25px !important; - background-image: url("/images/like-button.png"); + background-image: url("/images/like-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -303,7 +303,7 @@ .exit-button { width: 25px !important; height: 25px !important; - background-image: url("/images/exit.png"); + background-image: url("/images/exit.svg"); background-size: cover; border: none; background-color: transparent; @@ -312,7 +312,7 @@ .more-button { width: 25px !important; height: 25px !important; - background-image: url("/images/load-more.png"); + background-image: url("/images/load-more.svg"); background-size: cover; border: none; background-color: transparent; @@ -353,7 +353,7 @@ .back-button { width: 15px !important; height: 15px !important; - background-image: url("/images/back-button.png"); + background-image: url("/images/back-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -425,7 +425,7 @@ .cancel-button { width: 20px !important; height: 20px !important; - background-image: url("/images/cancel-button.png"); + background-image: url("/images/cancel-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -434,7 +434,7 @@ .return-button { width: 20px !important; height: 20px !important; - background-image: url("/images/return-card.png"); + background-image: url("/images/return-card.svg"); background-size: cover; border: none; background-color: transparent; @@ -443,7 +443,7 @@ .like-button { width: 20px !important; height: 20px !important; - background-image: url("/images/like-button.png"); + background-image: url("/images/like-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -452,7 +452,7 @@ .exit-button { width: 20px !important; height: 20px !important; - background-image: url("/images/exit.png"); + background-image: url("/images/exit.svg"); background-size: cover; border: none; background-color: transparent; @@ -461,7 +461,7 @@ .more-button { width: 20px !important; height: 20px !important; - background-image: url("/images/load-more.png"); + background-image: url("/images/load-more.svg"); background-size: cover; border: none; background-color: transparent; @@ -662,7 +662,7 @@ .cancel-button { width: 30px; height: 30px; - background-image: url("/images/cancel-button.png"); + background-image: url("/images/cancel-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -671,7 +671,7 @@ .return-button { width: 30px; height: 30px; - background-image: url("/images/return-card.png"); + background-image: url("/images/return-card.svg"); background-size: cover; border: none; background-color: transparent; @@ -680,7 +680,7 @@ .like-button { width: 30px; height: 30px; - background-image: url("/images/like-button.png"); + background-image: url("/images/like-button.svg"); background-size: cover; border: none; background-color: transparent; @@ -689,7 +689,7 @@ .exit-button { width: 30px; height: 30px; - background-image: url("/images/exit.png"); + background-image: url("/images/exit.svg"); background-size: cover; border: none; background-color: transparent; @@ -698,7 +698,7 @@ .more-button { width: 30px; height: 30px; - background-image: url("/images/load-more.png"); + background-image: url("/images/load-more.svg"); background-size: cover; border: none; background-color: transparent; diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/amazon.png b/ShoppingAssistantWebClient.Web/wwwroot/images/amazon.png deleted file mode 100644 index 34a951b..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/amazon.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/amazon.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/amazon.svg new file mode 100644 index 0000000..e1ba179 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/amazon.svg @@ -0,0 +1,3 @@ + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/back-button.png b/ShoppingAssistantWebClient.Web/wwwroot/images/back-button.png deleted file mode 100644 index 54a32f4..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/back-button.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/back-button.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/back-button.svg new file mode 100644 index 0000000..d6d7b77 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/back-button.svg @@ -0,0 +1,3 @@ + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/cancel-button.png b/ShoppingAssistantWebClient.Web/wwwroot/images/cancel-button.png deleted file mode 100644 index 4e6d248..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/cancel-button.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/cancel-button.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/cancel-button.svg new file mode 100644 index 0000000..c3c8c94 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/cancel-button.svg @@ -0,0 +1,3 @@ + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.png b/ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.png deleted file mode 100644 index c865c5c..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.svg new file mode 100644 index 0000000..e2c08e8 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/exit.png b/ShoppingAssistantWebClient.Web/wwwroot/images/exit.png deleted file mode 100644 index 1044cb8..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/exit.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/exit.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/exit.svg new file mode 100644 index 0000000..7f64e76 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/exit.svg @@ -0,0 +1,3 @@ + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/half-star.png b/ShoppingAssistantWebClient.Web/wwwroot/images/half-star.png deleted file mode 100644 index 26febb3..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/half-star.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/half-star.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/half-star.svg new file mode 100644 index 0000000..a22bcee --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/half-star.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/like-button.png b/ShoppingAssistantWebClient.Web/wwwroot/images/like-button.png deleted file mode 100644 index 313e152..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/like-button.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/like-button.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/like-button.svg new file mode 100644 index 0000000..3782ac4 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/like-button.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/load-more-small.png b/ShoppingAssistantWebClient.Web/wwwroot/images/load-more-small.png deleted file mode 100644 index 3b53979..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/load-more-small.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/load-more-small.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/load-more-small.svg new file mode 100644 index 0000000..ebab4bb --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/load-more-small.svg @@ -0,0 +1,3 @@ + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/load-more.png b/ShoppingAssistantWebClient.Web/wwwroot/images/load-more.png deleted file mode 100644 index 3040205..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/load-more.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/load-more.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/load-more.svg new file mode 100644 index 0000000..27cb73a --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/load-more.svg @@ -0,0 +1,3 @@ + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/next-image.png b/ShoppingAssistantWebClient.Web/wwwroot/images/next-image.png deleted file mode 100644 index 8e1d219..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/next-image.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/next-image.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/next-image.svg new file mode 100644 index 0000000..5b8319a --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/next-image.svg @@ -0,0 +1,3 @@ + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/prev-image.png b/ShoppingAssistantWebClient.Web/wwwroot/images/prev-image.png deleted file mode 100644 index c89fce9..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/prev-image.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/prev-image.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/prev-image.svg new file mode 100644 index 0000000..e40cac0 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/prev-image.svg @@ -0,0 +1,3 @@ + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/return-card.png b/ShoppingAssistantWebClient.Web/wwwroot/images/return-card.png deleted file mode 100644 index b853bf6..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/return-card.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/return-card.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/return-card.svg new file mode 100644 index 0000000..46ad245 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/return-card.svg @@ -0,0 +1,4 @@ + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/return-small.png b/ShoppingAssistantWebClient.Web/wwwroot/images/return-small.png deleted file mode 100644 index 60144a4..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/return-small.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/return-small.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/return-small.svg new file mode 100644 index 0000000..c478314 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/return-small.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.png b/ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.png deleted file mode 100644 index d94f609..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.svg new file mode 100644 index 0000000..23d6b92 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/star.png b/ShoppingAssistantWebClient.Web/wwwroot/images/star.png deleted file mode 100644 index 248a5fa..0000000 Binary files a/ShoppingAssistantWebClient.Web/wwwroot/images/star.png and /dev/null differ diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/star.svg b/ShoppingAssistantWebClient.Web/wwwroot/images/star.svg new file mode 100644 index 0000000..99a4a61 --- /dev/null +++ b/ShoppingAssistantWebClient.Web/wwwroot/images/star.svg @@ -0,0 +1,10 @@ + + + + + + + + + +