2019-01-13 16:36:26 +01:00
|
|
|
|
using Magazyn.DataModels;
|
|
|
|
|
using Magazyn.Views;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
|
|
|
|
using Newtonsoft.Json;
|
2019-01-22 17:35:51 +01:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
2019-01-13 16:36:26 +01:00
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
using System.Net;
|
|
|
|
|
using Magazyn.Windows;
|
|
|
|
|
|
2019-01-13 16:36:26 +01:00
|
|
|
|
namespace Magazyn
|
|
|
|
|
{
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
2019-01-22 21:02:49 +01:00
|
|
|
|
public int size = 4;
|
|
|
|
|
public int page = 0;
|
|
|
|
|
|
|
|
|
|
bool firstPage;
|
|
|
|
|
bool lastPage;
|
2019-01-13 16:36:26 +01:00
|
|
|
|
|
|
|
|
|
HttpClient client;
|
|
|
|
|
|
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2019-01-22 21:02:49 +01:00
|
|
|
|
this.Initialized += MainWindow_Initialized; ;
|
|
|
|
|
|
|
|
|
|
client = new HttpClient();
|
|
|
|
|
}
|
2019-01-13 16:36:26 +01:00
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
private void MainWindow_Initialized(object sender, EventArgs e)
|
2019-01-13 16:36:26 +01:00
|
|
|
|
{
|
|
|
|
|
RefreshListOfFruits();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FruitViewSaveChangingAmountOfFruits(int amountChanged, Fruit fruit)
|
|
|
|
|
{
|
|
|
|
|
string json = "{\"id\": " + fruit.Id.ToString() + ", \"change\": " + amountChanged.ToString() + " }";
|
|
|
|
|
|
2019-01-13 18:05:47 +01:00
|
|
|
|
Task<HttpResponseMessage> response = client.PostAsync("https://sysmag.herokuapp.com/api/product/change-quantity", new StringContent(json, Encoding.UTF8, "application/json"));
|
2019-01-22 21:02:49 +01:00
|
|
|
|
while (response.IsCompleted != true) ;
|
2019-01-13 16:36:26 +01:00
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
if (response.Result.StatusCode == HttpStatusCode.BadRequest)
|
|
|
|
|
{
|
|
|
|
|
JObject data = JObject.Parse(response.Result.Content.ReadAsStringAsync().Result.ToString());
|
|
|
|
|
|
|
|
|
|
ErrorWindow window;
|
|
|
|
|
|
|
|
|
|
if (data["message"].ToString().Contains("Too low"))
|
|
|
|
|
{
|
|
|
|
|
window = new ErrorWindow("Wystąpił błąd niedomiaru. Próbujesz usunąć więcej owoców niż masz w magazynie.");
|
|
|
|
|
}
|
|
|
|
|
else if (data["message"].ToString().Contains("Over max"))
|
|
|
|
|
{
|
|
|
|
|
window = new ErrorWindow("Wystąpił błąd nadmiaru. Próbujesz dodać więcej owoców niż pomieści magazyn.");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
window = new ErrorWindow("Nieznany błąd.");
|
|
|
|
|
}
|
|
|
|
|
window.Owner = this;
|
|
|
|
|
window.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RefreshListOfFruits();
|
2019-01-13 16:36:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void RefreshListOfFruits()
|
|
|
|
|
{
|
2019-01-22 17:35:51 +01:00
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
Task<HttpResponseMessage> response = client.GetAsync("https://sysmag.herokuapp.com/api/get-all?page=" + page.ToString() + "&size=" + size.ToString());
|
2019-01-22 17:35:51 +01:00
|
|
|
|
while (response.IsCompleted != true) ;
|
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
if (response.Result.StatusCode != HttpStatusCode.OK)
|
|
|
|
|
{
|
|
|
|
|
ErrorWindow window = new ErrorWindow("Nastąpił błąd połączenia z serwerem.");
|
|
|
|
|
window.Owner = this;
|
|
|
|
|
window.ShowDialog();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-22 17:35:51 +01:00
|
|
|
|
string responseString = response.Result.Content.ReadAsStringAsync().Result;
|
|
|
|
|
|
|
|
|
|
JObject replay = JObject.Parse(responseString);
|
2019-01-13 16:36:26 +01:00
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
firstPage = bool.Parse(replay["first"].ToString());
|
|
|
|
|
lastPage = bool.Parse(replay["last"].ToString());
|
|
|
|
|
|
2019-01-22 17:35:51 +01:00
|
|
|
|
Fruit[] fruits = JsonConvert.DeserializeObject<Fruit[]>(replay["content"].ToString());
|
2019-01-13 16:36:26 +01:00
|
|
|
|
|
|
|
|
|
UpdateListOfFruits(fruits);
|
2019-01-22 21:02:49 +01:00
|
|
|
|
}
|
2019-01-13 16:36:26 +01:00
|
|
|
|
|
|
|
|
|
private void UpdateListOfFruits(Fruit[] list)
|
|
|
|
|
{
|
|
|
|
|
fruitList.Items.Clear();
|
|
|
|
|
|
|
|
|
|
foreach (Fruit item in list)
|
|
|
|
|
{
|
|
|
|
|
FruitView fruitView = new FruitView(item);
|
|
|
|
|
fruitView.SaveChangingAmountOfFruits += FruitViewSaveChangingAmountOfFruits;
|
|
|
|
|
fruitList.Items.Add(fruitView);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-13 17:01:56 +01:00
|
|
|
|
private WarehousePrice GetWarehousePrice()
|
2019-01-13 16:36:26 +01:00
|
|
|
|
{
|
|
|
|
|
Task<HttpResponseMessage> response = client.GetAsync("https://sysmag.herokuapp.com/api/get-price-of-all");
|
|
|
|
|
while (response.IsCompleted != true) ;
|
2019-01-13 17:01:56 +01:00
|
|
|
|
|
|
|
|
|
WarehousePrice price = JsonConvert.DeserializeObject<WarehousePrice>(response.Result.Content.ReadAsStringAsync().Result.ToString());
|
|
|
|
|
|
|
|
|
|
return price;
|
2019-01-13 16:36:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
private void Value_Click(object sender, RoutedEventArgs e)
|
2019-01-13 16:36:26 +01:00
|
|
|
|
{
|
2019-01-22 21:02:49 +01:00
|
|
|
|
ValueWindow window = new ValueWindow(GetWarehousePrice().Price);
|
|
|
|
|
window.Owner = this;
|
|
|
|
|
window.ShowDialog();
|
|
|
|
|
}
|
2019-01-21 19:48:10 +01:00
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
private void prevButton_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (firstPage != true) page--;
|
|
|
|
|
RefreshListOfFruits();
|
2019-01-13 16:36:26 +01:00
|
|
|
|
}
|
2019-01-14 20:10:05 +01:00
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
private void nextButton_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (lastPage != true) page++;
|
|
|
|
|
RefreshListOfFruits();
|
|
|
|
|
}
|
2019-01-14 20:10:05 +01:00
|
|
|
|
|
2019-01-22 21:02:49 +01:00
|
|
|
|
private void Window_SizeChanged(object sender, SizeChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Size size = e.NewSize;
|
|
|
|
|
double height = size.Height - 124;
|
|
|
|
|
this.size = (int)(height / 90);
|
|
|
|
|
RefreshListOfFruits();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-13 16:36:26 +01:00
|
|
|
|
}
|
|
|
|
|
|