2024-09-04 09:08:53 +00:00
|
|
|
using Avalonia;
|
|
|
|
using Avalonia.Controls;
|
2024-09-05 13:11:39 +00:00
|
|
|
using Avalonia.Interactivity;
|
2024-09-09 11:45:33 +00:00
|
|
|
using Avalonia.Input;
|
2024-09-04 09:08:53 +00:00
|
|
|
using Avalonia.Markup.Xaml;
|
2024-09-05 13:11:39 +00:00
|
|
|
using DemoService.Models;
|
2024-09-06 14:13:21 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2024-09-09 11:45:33 +00:00
|
|
|
using Avalonia.Media.TextFormatting;
|
2024-09-04 09:08:53 +00:00
|
|
|
|
|
|
|
namespace DemoService;
|
|
|
|
|
|
|
|
public partial class ServiceWindow : Window
|
|
|
|
{
|
2024-09-05 13:11:39 +00:00
|
|
|
private readonly bool AdminMode;
|
2024-09-06 14:13:21 +00:00
|
|
|
private List<Service> displayList = Utils.Context.Services;
|
2024-09-04 09:08:53 +00:00
|
|
|
public ServiceWindow()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
2024-09-06 14:13:21 +00:00
|
|
|
ServicesListBox.ItemsSource = displayList;
|
2024-09-09 11:45:33 +00:00
|
|
|
UserServicesListBox.ItemsSource = displayList;
|
|
|
|
ServicesListBox.Background = Colors.lightYellow;
|
|
|
|
UserServicesListBox.Background = Colors.lightYellow;
|
2024-09-09 06:46:08 +00:00
|
|
|
SortComboBox.SelectedIndex = 0;
|
2024-09-09 11:45:33 +00:00
|
|
|
FilterComboBox.SelectedIndex = 0;
|
2024-09-04 09:08:53 +00:00
|
|
|
}
|
|
|
|
public ServiceWindow(bool admin)
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
2024-09-05 13:11:39 +00:00
|
|
|
AdminMode = admin;
|
2024-09-09 11:45:33 +00:00
|
|
|
switch (AdminMode)
|
2024-09-05 13:11:39 +00:00
|
|
|
{
|
2024-09-09 11:45:33 +00:00
|
|
|
case true:
|
|
|
|
ServicesListBox.ItemsSource = displayList;
|
|
|
|
UserServicesListBox.IsVisible = false;
|
|
|
|
ServicesListBox.Background = Colors.lightYellow;
|
|
|
|
break;
|
|
|
|
case false:
|
|
|
|
AddButton.IsVisible = false;
|
|
|
|
UserServicesListBox.ItemsSource = displayList;
|
|
|
|
ServicesListBox.IsVisible = false;
|
|
|
|
UserServicesListBox.Background = Colors.lightYellow;
|
|
|
|
break;
|
2024-09-05 13:11:39 +00:00
|
|
|
}
|
2024-09-09 06:46:08 +00:00
|
|
|
SortComboBox.SelectedIndex = 0;
|
2024-09-09 11:45:33 +00:00
|
|
|
FilterComboBox.SelectedIndex = 0;
|
2024-09-05 13:11:39 +00:00
|
|
|
}
|
|
|
|
public void AddButtonClick(object sender, RoutedEventArgs args)
|
|
|
|
{
|
|
|
|
AddEditWindow addEditWindow = new();
|
|
|
|
addEditWindow.Show();
|
|
|
|
Close();
|
|
|
|
}
|
2024-09-09 06:46:08 +00:00
|
|
|
/*private decimal? CostAfterDiscount(decimal previousCost, decimal? discount)
|
2024-09-05 13:11:39 +00:00
|
|
|
{
|
|
|
|
if (discount.HasValue || discount != 0)
|
|
|
|
{
|
|
|
|
decimal actualCost = previousCost - previousCost * discount.Value;
|
|
|
|
return actualCost;
|
|
|
|
}
|
|
|
|
return null;
|
2024-09-09 06:46:08 +00:00
|
|
|
}*/
|
2024-09-09 11:45:33 +00:00
|
|
|
private void AddButton_Click(object? sender, RoutedEventArgs e)
|
2024-09-06 14:13:21 +00:00
|
|
|
{
|
|
|
|
AddEditWindow addEditWindow = new();
|
|
|
|
addEditWindow.Show();
|
|
|
|
Close();
|
|
|
|
}
|
2024-09-09 11:45:33 +00:00
|
|
|
private void SortComboBox_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
|
|
|
{
|
|
|
|
DisplayService();
|
|
|
|
}
|
|
|
|
private void SearchTextBox_KeyUp(object? sender, KeyEventArgs e)
|
|
|
|
{
|
|
|
|
DisplayService();
|
|
|
|
}
|
|
|
|
private void FilterComboBox_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
2024-09-06 14:13:21 +00:00
|
|
|
{
|
|
|
|
DisplayService();
|
|
|
|
}
|
|
|
|
private void DisplayService()
|
|
|
|
{
|
2024-09-09 11:45:33 +00:00
|
|
|
displayList = Utils.Context.Services;
|
2024-09-09 06:46:08 +00:00
|
|
|
switch (SortComboBox.SelectedIndex)
|
2024-09-06 14:13:21 +00:00
|
|
|
{
|
2024-09-09 06:46:08 +00:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 1:
|
2024-09-06 14:13:21 +00:00
|
|
|
displayList = displayList.OrderBy(service => service.Cost).ToList();
|
|
|
|
break;
|
2024-09-09 06:46:08 +00:00
|
|
|
case 2:
|
2024-09-06 14:13:21 +00:00
|
|
|
displayList = displayList.OrderByDescending(service => service.Cost).ToList();
|
|
|
|
break;
|
|
|
|
}
|
2024-09-09 11:45:33 +00:00
|
|
|
switch (FilterComboBox.SelectedIndex)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
displayList = displayList.Where(x => x.Discount >= 0 && x.Discount < (decimal)0.05).ToList();
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
displayList = displayList.Where(x => x.Discount >= (decimal)0.05 && x.Discount < (decimal)0.15).ToList();
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
displayList = displayList.Where(x => x.Discount >= (decimal)0.15 && x.Discount < (decimal)0.30).ToList();
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
displayList = displayList.Where(x => x.Discount >= (decimal)0.30 && x.Discount < (decimal)0.70).ToList();
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
displayList = displayList.Where(x => x.Discount >= (decimal)0.70 && x.Discount < (decimal)1.00).ToList();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(SearchTextBox.Text))
|
|
|
|
{
|
|
|
|
displayList = displayList.Where(x => x.Title.ToLower().Contains(SearchTextBox.Text.ToLower())).ToList();
|
|
|
|
}
|
2024-09-09 06:46:08 +00:00
|
|
|
ServicesListBox.ItemsSource = displayList;
|
2024-09-06 14:13:21 +00:00
|
|
|
}
|
2024-09-04 09:08:53 +00:00
|
|
|
}
|