using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.IO; using System.Linq; using Avalonia.Controls; using Avalonia.Interactivity; using Avalonia.Media; using Avalonia.Media.Imaging; using demofinish.Model; using Microsoft.EntityFrameworkCore; namespace demofinish { public partial class MainWindow : Window { private ObservableCollection agents = new ObservableCollection(); public List agentsList = new List(); private const int pageSize = 10; private int currentPage = 1; private int pageCount = 0; public MainWindow() { InitializeComponent(); LoadAgents(); ComboboxAgentType(); SearchFiels(); TypeAgentCombobox.SelectionChanged += TypeAgentCombobox_SelectionChanged; NameComboBox.SelectionChanged += SortName_SelectedChanged; PriorityCombobox.SelectionChanged += PrioritySort_SelectedChanged; SaleCombobox.SelectionChanged += SaleSort_SelectedChanged; } private void SearchFiels() { using var context = new User1Context(); var searchItems = context.Agents .Select(a => a.Title) .Union(context.Agents.Select(a => a.Phone)) .Union(context.Agents.Select(a => a.Email)) .Where(x => !string.IsNullOrEmpty(x)) .ToList(); SearchBox.ItemsSource = searchItems; SearchBox.SelectionChanged += SearchBox_SelectionChanged; } private void SearchBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (SearchBox.SelectedItem == null || string.IsNullOrEmpty(SearchBox.Text)) { AgentListBox.ItemsSource = agents; return; } string searchValue = SearchBox.SelectedItem.ToString(); var filtered = agentsList .Where(a => a.Title == searchValue || a.Phone == searchValue || a.Email == searchValue) .ToList(); AgentListBox.ItemsSource = filtered; } public class AgentPresenter : Agent { public string AgentTypeName { get; set; } public int DiscountPercent { get; set; } public decimal TotalSales { get; set; } Bitmap? LogoImage { get { try { string absolutepass = Path.Combine(AppContext.BaseDirectory, Logo); return new Bitmap(absolutepass); } catch { return null; } } } } private void ComboboxAgentType() { using var context = new User1Context(); var type = context.Agenttypes.Select(x => x.Title).ToList(); type.Insert(0, "Все типы"); TypeAgentCombobox.ItemsSource = type; TypeAgentCombobox.SelectedIndex = 0; } private void TypeAgentCombobox_SelectionChanged(object sender, SelectionChangedEventArgs e) { using var context = new User1Context(); string selectedType = TypeAgentCombobox.SelectedItem.ToString(); if (TypeAgentCombobox.SelectedItem == null) return; if (TypeAgentCombobox.SelectedItem is string && (string)TypeAgentCombobox.SelectedItem == "Все типы") { AgentListBox.ItemsSource = agents; } else { var selectedTypeId = context.Agenttypes .Where(at => at.Title == selectedType) .Select(at => at.Id) .FirstOrDefault(); var filteredAgents = agentsList .Where(x => x.Agenttypeid == selectedTypeId) .ToList(); AgentListBox.ItemsSource = filteredAgents; } ShowCurrentPage(); } private void SortName_SelectedChanged(object sender, SelectionChangedEventArgs e) { if (NameComboBox.SelectionBoxItem == null) return; var currentPageItems = agents.ToList(); List sorted; if (NameComboBox.SelectionBoxItem.ToString() == "по возрастанию") { sorted = currentPageItems.OrderBy(it => it.Title).ToList(); } else { sorted = currentPageItems.OrderByDescending(it => it.Title).ToList(); } agents.Clear(); foreach (var item in sorted) { agents.Add(item); } } private void PrioritySort_SelectedChanged(object sender, SelectionChangedEventArgs e) { if (PriorityCombobox.SelectionBoxItem == null) return; var currentPageItems = agents.ToList(); List sorted; if (PriorityCombobox.SelectionBoxItem.ToString() == "по возрастанию") { sorted = currentPageItems.OrderBy(it => it.Priority).ToList(); } else { sorted = currentPageItems.OrderByDescending(it => it.Priority).ToList(); } agents.Clear(); foreach (var item in sorted) { agents.Add(item); } } private void LoadAgents() { using var context = new User1Context(); agentsList = context.Agents .Include(a => a.Agenttype) .Include(a => a.Productsales) .ThenInclude(ps => ps.Product) .AsEnumerable() .Select(agent => { decimal totalSales = agent.Productsales?.Sum(ps => ps.Productcount * (ps.Product?.Mincostforagent ?? 0)) ?? 0; return new AgentPresenter { Id = agent.Id, Title = agent.Title, Agenttypeid = agent.Agenttypeid, AgentTypeName = agent.Agenttype?.Title ?? "Неизвестный тип", Address = agent.Address, Inn = agent.Inn, Kpp = agent.Kpp, Directorname = agent.Directorname, Phone = agent.Phone, Email = agent.Email, Logo = agent.Logo, Priority = agent.Priority, TotalSales = totalSales, DiscountPercent = CalculateDiscount(totalSales) }; }) .ToList(); agents.Clear(); foreach (var agent in agentsList) { agents.Add(agent); } AgentListBox.ItemsSource = agents; pageCount = (int)Math.Ceiling(agentsList.Count / (double)pageSize); ShowCurrentPage(); } private int CalculateDiscount(decimal totalSales) { if (totalSales >= 500000) return 25; if (totalSales >= 150000) return 20; if (totalSales >= 50000) return 10; if (totalSales >= 10000) return 5; return 0; } private void SaleSort_SelectedChanged(object sender, SelectionChangedEventArgs e) { if (SaleCombobox.SelectionBoxItem == null) return; var currentPageItems = agents.OfType().ToList(); List sorted; if (SaleCombobox.SelectionBoxItem.ToString() == "по возрастанию") { sorted = currentPageItems.OrderBy(it => it.DiscountPercent).ToList(); } else { sorted = currentPageItems.OrderByDescending(it => it.DiscountPercent).ToList(); } agents.Clear(); foreach (var item in sorted) { agents.Add(item); } } private void ShowCurrentPage() { agents.Clear(); var pageAgents = agentsList .Skip((currentPage - 1) * pageSize) .Take(pageSize); foreach (var e in pageAgents) { agents.Add(e); } AgentListBox.ItemsSource = agents; pageCount = (int)Math.Ceiling(agentsList.Count / (double)pageSize); } private void NextPage() { if (currentPage < pageCount) { currentPage++; ShowCurrentPage(); } } private void PrevPage() { if (currentPage > 1) { currentPage--; ShowCurrentPage(); } } private void PrevPage_Click(object sender, RoutedEventArgs e) => PrevPage(); private void NextPage_Click(object sender, RoutedEventArgs e) => NextPage(); private void AddNew_Agent(object? sender, RoutedEventArgs e) { new AddAgent_Window().ShowDialog(this); } private void AgentListBox_OnSelectionChanged(object? sender, SelectionChangedEventArgs e) { if (AgentListBox.SelectedItem is AgentPresenter selectedAgent) { var editWindow = new EditWindow(selectedAgent); editWindow.ShowDialog(this); } } } }