From b5aac08ce562ec0a3af77041d194897f6d356328 Mon Sep 17 00:00:00 2001 From: AndriiSyrotenko Date: Thu, 23 Nov 2023 20:59:19 +0000 Subject: [PATCH] add product to cart + changed png to svg --- .../Pages/Cards.razor | 19 +-- .../Pages/Cards.razor.cs | 114 ++++++++++++++---- .../Pages/Cart.razor | 13 +- .../Pages/Cart.razor.css | 2 +- .../Pages/Chat.razor.cs | 2 +- .../wwwroot/css/Cards.css | 44 +++---- .../wwwroot/images/amazon.png | Bin 546 -> 0 bytes .../wwwroot/images/amazon.svg | 3 + .../wwwroot/images/back-button.png | Bin 300 -> 0 bytes .../wwwroot/images/back-button.svg | 3 + .../wwwroot/images/cancel-button.png | Bin 367 -> 0 bytes .../wwwroot/images/cancel-button.svg | 3 + .../wwwroot/images/empty-star.png | Bin 406 -> 0 bytes .../wwwroot/images/empty-star.svg | 10 ++ .../wwwroot/images/exit.png | Bin 577 -> 0 bytes .../wwwroot/images/exit.svg | 3 + .../wwwroot/images/half-star.png | Bin 419 -> 0 bytes .../wwwroot/images/half-star.svg | 9 ++ .../wwwroot/images/like-button.png | Bin 559 -> 0 bytes .../wwwroot/images/like-button.svg | 10 ++ .../wwwroot/images/load-more-small.png | Bin 242 -> 0 bytes .../wwwroot/images/load-more-small.svg | 3 + .../wwwroot/images/load-more.png | Bin 387 -> 0 bytes .../wwwroot/images/load-more.svg | 3 + .../wwwroot/images/next-image.png | Bin 264 -> 0 bytes .../wwwroot/images/next-image.svg | 3 + .../wwwroot/images/prev-image.png | Bin 242 -> 0 bytes .../wwwroot/images/prev-image.svg | 3 + .../wwwroot/images/return-card.png | Bin 424 -> 0 bytes .../wwwroot/images/return-card.svg | 4 + .../wwwroot/images/return-small.png | Bin 440 -> 0 bytes .../wwwroot/images/return-small.svg | 9 ++ .../wwwroot/images/star-cards.png | Bin 348 -> 0 bytes .../wwwroot/images/star-cards.svg | 10 ++ .../wwwroot/images/star.png | Bin 249 -> 0 bytes .../wwwroot/images/star.svg | 10 ++ 36 files changed, 221 insertions(+), 59 deletions(-) delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/amazon.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/amazon.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/back-button.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/back-button.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/cancel-button.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/cancel-button.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/exit.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/exit.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/half-star.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/half-star.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/like-button.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/like-button.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/load-more-small.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/load-more-small.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/load-more.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/load-more.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/next-image.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/next-image.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/prev-image.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/prev-image.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/return-card.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/return-card.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/return-small.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/return-small.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.svg delete mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/star.png create mode 100644 ShoppingAssistantWebClient.Web/wwwroot/images/star.svg 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 34a951bda645cc00ee22c9674c879a7a08b9239c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 546 zcmV+-0^R+IP)&igT#H5C%Y0 zLZ@THxoPPAC5r$#iyplw+R`j;Wra85Uwl3KeSIHa`jt#5DC5M$h)Wm)WTwH^?3`y+ zSPU5JSR>{*HM<3bv|H;R=orU?rf2C!(c+7hDd+qVje;OJx%!HXl}r6DAg+=OBE? zT2uDR8S`vP7SaVC$-lq{;$LgdD`4kG(g%E5D40l3u*L&<=q=`#1}XnNnX7-Q;U98B z#%2@+kq7C4pew+TBAUxt2^J~46uY4#&9lyzq=oHrw87rSCzzY&1 k6vE$C$lm0Ic#YBn-%*Jy1(VMbMF0Q*07*qoM6N<$f=vbJga7~l 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 54a32f45d8e8e0a453084fcf77fdec4e8562ec4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^{2``W z$lZxy-8q?;Kn_c~qpu?a!^VE@KZ&eB{y|R{$B+ufvy=979WoF&_WAfEy}5H@Vp_b? z&F4FMeYE9Pd?GpL$WhglLcuw6tU8>9^n+Yit4RJn=>G1|-$~X&EpAJ9t>bdIvsl(wTehmr&FGd0oYIsx2N8 s5BcI2b=28)+BXFVdQ&MBb@0AN^f_W%F@ 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 4e6d24810c9582d1bd2cfaa2338cbfc6fb33fb6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmeAS@N?(olHy`uVBq!ia0vp^5|4N}oEVKvU{uc#p{SXCl8McBJ-8)EPDw zo;mmA_JcV|T@6Wd52ytm+Rd6P#J(f;!W03&BDZ4Q81)Q~Q!5@+@|YNMJe_%EbyAGU z2lth_SLZPw&hl9I!SS}b8*BZ$pAlj5(}et$71=BHK4;={*`UFYTYE_}AjWlV%f80l z9{1|Y_ + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.png b/ShoppingAssistantWebClient.Web/wwwroot/images/empty-star.png deleted file mode 100644 index c865c5cf303be56a196075f0a3d389f8967f538f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 406 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uAB#T}@sR2@)1s;*b3=G`DAk4@xYmNj^kg+(( z-HBn{IhmJ04okYDuOkD)#(wTUiL5|5ZBG}+kP61qpwoee9e8R_6*Nfl1u!mTIwWYp zAnU-oqxnMPWySy?UeaVC-n8?`%7zjK^GPSuKdZd2$Vp!;dG^+&%a@}w8yj}|+w3-M zvypeIys0U%`0QhLzIri>Lpx)B<>#+u2=tkMv0JaWWOf5{^85!Z|92$c=c`w)@?U3I zBpJ7H*%ke=sHCpsC$~a1+#NkzHI6FEnZ8`g_wudL?n8SgJe~W?`b)>J<-UKHPGZgL z{P`e%e=D!sF_jJ{R?*j@JQ5=5Z8L&oZ21;S`s>VpxN_!&y*}SWG!uhn&zl*reRE*= z@|mZn9t{d + + + + + + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/exit.png b/ShoppingAssistantWebClient.Web/wwwroot/images/exit.png deleted file mode 100644 index 1044cb800a5ce802dd9195f636da5bb947f04375..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 577 zcmV-H0>1r;P)?Zf{3$Dt9f*G>n%Eua4#X9RD-c&8CXkpExZY_icC1sU z)7CG}2W{z{IrnjTT3~~Jg3#VMqY7rIBMY`M#!yUQM9hR@hFiXKgdD&G?#e?Su9|@J zGtimiA}>-20$QTPg~StzpvBde@fKcc=+IrB zpFTkja9J + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/half-star.png b/ShoppingAssistantWebClient.Web/wwwroot/images/half-star.png deleted file mode 100644 index 26febb3c0d05147614bc93602f4347f260cb00e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 419 zcmV;U0bKrxP)qLcB{lt2gar$gk_7J%FCbHy9KfJnr5w?yIYA!o4GM4ojYh*DTi<9*&SUdvq6MEoL6za4+|e_kTBi zal^q517+}BjZ4ZYNL+!bHAur4TMrWc23Yd@s6|0Q-*|8#J{&w%S&aO%ptCGsq3+r8#8g1WK54GbpawGy#a`sL>p*UVp#{#Ld~@)vp0Y+YZo+%NzD N002ovPDHLkV1fo0sX_n% 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 313e152349c6e36ed351f404e3d47e871b3aa1c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 559 zcmV+~0?_@5P)X1^@s6D=Y3@00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yPB!jj`q+3YV1#AV1|A#Nk5HmAm< zPv~}cPofbC<@HoezG!VMq>a!mXhj)bYwpg9Xd(9;@`7fkWN=MwT=gKYjF?4+D+IDW zrZKl?M=WWcU{fY^v{2^8?h&06`m(VQ4~q_)6@6zgu7{YYosviW5R(mUjL;W`>mBAw zQ{sBiaPLne#SrkR)RDtCl)nrXaPM-2;qau-jevPjBVrS02x^Yp2pD9tIF*O$hqw%2 zZ$VSi!3yYO408#%M_(u>mk!v~0u-;XS$QC_KBtJwDcwLIqtxb!8%1;JnLNQy(5wVG zwWVFE1x&Tv$|#^sF}_d!3L8Bd3%3%q^MKPllYf5jLd}Q6) zXx@mOajP$TzHHN-3RnV#RTZ|iCD-~jObK{IGbv|8zV4#x7N~`0Lgt;Z*n@*3QrS6* x%K}EktK!>~bL(|h + + + + + + + + + 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 3b53979dad949c41766b5119c2279b4ae1a363ee..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uAB#T}@sR2@)1s;*b3=G`DAk4@xYmNj^kg+(( z-HBn{IhmJ04okYDuOkD)#(wTUiL5|=yQhm|NCo5GfVaF31_HK84S5GR%o3R0Hgrn* zG;kha$w^?HY~la4y+7MTDehC;?0wbKUklcD%}O?yq;p?LV}Y>6j`kX^v${q6whuy2 z9R9;~Ypz>jP(Z5Iv*4zcTqTCVS-GdT*Qd_2` + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/load-more.png b/ShoppingAssistantWebClient.Web/wwwroot/images/load-more.png deleted file mode 100644 index 3040205c3e15f42604be486eca80873389b5b1cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 387 zcmV-}0et?6P)-;U4$NkD z$S#)&dzS#h*OF0}BZ4CeE}R5xs#yi%+5g|H1#%ke~ zz!3NF*gFnYPW*mGj~L{Zjc= + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/next-image.png b/ShoppingAssistantWebClient.Web/wwwroot/images/next-image.png deleted file mode 100644 index 8e1d219617979957488356fef51ab974effa97c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xa#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=G`DAk4@xYmNj^aIU9|V~B-+@5PORhZT4n0w=baX{R=?VKhl( zIxakc>)HnO6JD7sIUb3`b8K95zu?+k>l&tg-G*&bF1gIlQMZb=e7=u#w4LX;z{lm;z=^^rhT6M{a>hf*}>MUz4tTjBq@q>+wYIck6F8w zUurww^yU+m<;y>c{g$cbkY2!&C_6=IO|+luWEMt-J&fo6MlCkHUNar&PzFy|KbLh* G2~7Y+8C#YB 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 c89fce961d2d717fe413894ca409d5155e4805d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^d?3uh1|;P@bT0xa&H|6fVg?3oVGw3ym^DWND9BhG zc*WYzbYf?%-uFxY5WoD1^U5rO$!D_GUah>IEU>iX)4l#m|BW7Al?xSG z;u5(-71@@GJU;St+7FXJFZa4-4Ne`lb)OS@=0?3{Y`R)Fr&z1Spk9i-`yg|J0f*w9 jn5o74Y@1i^+0S@7C@u5&uCfZClNdZ*{an^LB{Ts5gB?=# 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 b853bf6dfae1b98a9a657a685801afb5132e4acb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 424 zcmV;Z0ayNsP)R%N(g7WW5<&%p3gC!D1k(YzgEh?BCKzLf4YG6c zJ6XFs`}SvM4fOQ13G;Bm%n@27XzJj2cmvV}5T2uJoQ&f{nUg76hJJ|L@zK!(pp5<5 zKy?YEb1|9*RgUyH`lrlci=_!@@X9C2tZ5Kc8(gAT>$DIrp?HKJXBKx+nt3iS>)D^e zTzbl&^vaviDy*jsh3A5Ga z6Zrixbo*iDky;JPuaeq*q)KCN*|&66$fT}&_mO5r{NY)= + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/return-small.png b/ShoppingAssistantWebClient.Web/wwwroot/images/return-small.png deleted file mode 100644 index 60144a494d5d543fe0f7325aa543079b1c5a2ea0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 440 zcmV;p0Z0CcP)KIU-F%m96um{Um?8Mo=Vf9k*Ri&LD*eGJ~xtSDX-cz}HX0j);^Ba~phaE7x%_l0iNO0hOx8o5M$C^F#yY36DmE^utk4OL zWRFphvMdml^p;vlY^9625=z=_``Oe{LT=T^6$iQA3!E{sOL~kA=9bOEQN + + + + + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.png b/ShoppingAssistantWebClient.Web/wwwroot/images/star-cards.png deleted file mode 100644 index d94f60908e9d5a7343187bd1288cfdd65e0e418b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 348 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uAB#T}@sR2@)1s;*b3=G`DAk4@xYmNj^kg+(( z-HBn{IhmJ04okYDuOkD)#(wTUiL5~WM^6{WkP61B6L0q(G7xa>f2(upUoNMn;_sbF zM;9}Bum>=zI;cCaIEYiQcOTk5&10JW^|OATfB$u_iC+BPGt=w4Q^60-lY0X)wYlP}nNlTeSE#qFRMeXq zIp1SlJ@drsso?=fI#sVYz1ZVw;rXcg!c`^P$IMHnZTzOibENOy>^bwkpEoc*bk=oS zSm0KXzS5Z&<{F=#dMfAK(X$fkR5;nrdnk$Cc#$(hucB0|bJ-S==TG;pF<98UP;r~z r-E{qjClmGln}jU=yLHv(!h^~dPdujXnEt>L=y?WDS3j3^P6 + + + + + + + + + diff --git a/ShoppingAssistantWebClient.Web/wwwroot/images/star.png b/ShoppingAssistantWebClient.Web/wwwroot/images/star.png deleted file mode 100644 index 248a5fa3ac1663352e6d2849af1ed176e584ab54..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^oFL4>1|%O$WD@{!3Opi<85p>QL70(Y)*K0-AY*Zm zyA#8@b22Z19F}xPUq=Rpjs4tz5?O)#K2I0NkP61y{?ojN3t7>N- z)$=Ns5_=Ppza@t)+KS2i + + + + + + + + +