demka/demofinish/MainWindow.axaml.cs

159 lines
4.3 KiB
C#
Raw Normal View History

2025-03-25 18:36:42 +00:00
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
2024-12-26 13:15:57 +00:00
using Avalonia.Controls;
2025-03-26 09:39:33 +00:00
using Avalonia.Interactivity;
2025-03-25 18:36:42 +00:00
using Avalonia.Media.Imaging;
using demofinish.Models;
2024-12-26 13:15:57 +00:00
namespace demofinish
{
public partial class MainWindow : Window
{
2025-03-25 18:36:42 +00:00
private ObservableCollection<Agent> agents = new ObservableCollection<Agent>();
2025-03-26 09:39:33 +00:00
public List<AgentPresenter> agentsList = new List<AgentPresenter>();
private const int pageSize = 10;
private int currentPage = 1;
private int pageCount = 0;
2025-03-25 18:36:42 +00:00
2024-12-26 13:15:57 +00:00
public MainWindow()
{
InitializeComponent();
2025-03-25 18:36:42 +00:00
LoadAgents();
2025-03-26 09:39:33 +00:00
ComboboxPriority();
PriorityCombobox.SelectionChanged += PriorutyCombobox_SelectionChanged;
2025-03-25 18:36:42 +00:00
}
2025-03-26 09:39:33 +00:00
public class AgentPresenter : Agent
2025-03-25 18:36:42 +00:00
{
2025-03-26 09:39:33 +00:00
Bitmap? LogoImage
2025-03-25 18:36:42 +00:00
{
2025-03-26 09:39:33 +00:00
get
{
try
{
var absolutepass = Path.Combine(AppContext.BaseDirectory, Logo);
return new Bitmap(absolutepass);
}
catch
{
return null;
}
}
2025-03-25 18:36:42 +00:00
}
2025-03-26 09:39:33 +00:00
}
private void ComboboxPriority()
{
using var context = new User1Context();
var priorities = context.Agents
.Select(x => x.Priority)
.Distinct()
.OrderBy(x => x)
.ToList()
.Cast<object>()
.ToList();
priorities.Insert(0, "Все типы");
PriorityCombobox.ItemsSource = priorities;
PriorityCombobox.SelectedIndex = 0;
}
private void PriorutyCombobox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
currentPage = 1;
ShowCurrentPage();
if (PriorityCombobox.SelectedItem == null)
return;
if (PriorityCombobox.SelectedItem is string && (string)PriorityCombobox.SelectedItem == "Все типы")
2025-03-25 18:36:42 +00:00
{
2025-03-26 09:39:33 +00:00
AgentListBox.ItemsSource = agents;
}
else if (PriorityCombobox.SelectedItem is int priority)
{
AgentListBox.ItemsSource = agents.Where(x => x.Priority == priority).ToList();
2025-03-25 18:36:42 +00:00
}
2024-12-26 13:15:57 +00:00
}
2025-03-25 18:36:42 +00:00
2024-12-26 13:15:57 +00:00
2025-03-26 09:39:33 +00:00
private void LoadAgents()
2024-12-26 13:15:57 +00:00
{
2025-03-25 18:36:42 +00:00
using var context = new User1Context();
2025-03-26 09:39:33 +00:00
agentsList = context.Agents.Select(agentPresenter => new AgentPresenter
{
Id = agentPresenter.Id,
Title = agentPresenter.Title,
Agenttypeid = agentPresenter.Agenttypeid,
Address = agentPresenter.Address,
Inn = agentPresenter.Inn,
Kpp = agentPresenter.Kpp,
Directorname = agentPresenter.Directorname,
Phone = agentPresenter.Phone,
Email = agentPresenter.Email,
Logo = agentPresenter.Logo,
Priority = agentPresenter.Priority,
}).ToList();
2025-03-25 18:36:42 +00:00
foreach (var agent in agentsList)
{
2025-03-26 09:39:33 +00:00
agents.Add(agent);
2025-03-25 18:36:42 +00:00
}
2025-03-26 09:39:33 +00:00
AgentListBox.ItemsSource = agents;
pageCount = (int)Math.Ceiling(agentsList.Count / (double) pageSize);
ShowCurrentPage();
}
2025-03-25 18:36:42 +00:00
2025-03-26 09:39:33 +00:00
private void ShowCurrentPage()
{
2025-03-25 18:36:42 +00:00
agents.Clear();
2025-03-26 09:39:33 +00:00
var pageAgents = agentsList.Skip((currentPage - 1) * pageSize).Take(pageSize);
foreach (var e in pageAgents)
2025-03-25 18:36:42 +00:00
{
2025-03-26 09:39:33 +00:00
agents.Add(e);
2025-03-25 18:36:42 +00:00
}
2025-03-26 09:39:33 +00:00
}
2025-03-25 18:36:42 +00:00
2025-03-26 09:39:33 +00:00
private void NextPage()
{
if (currentPage < pageCount)
{
currentPage++;
ShowCurrentPage();
}
}
private void PrevPage()
{
if (currentPage > 1)
{
currentPage--;
ShowCurrentPage();
}
2024-12-26 13:15:57 +00:00
}
2025-03-26 09:39:33 +00:00
private void PrevPage_Click(object sender, RoutedEventArgs e) => PrevPage();
private void NextPage_Click(object sender, RoutedEventArgs e) => NextPage();
2024-12-26 13:15:57 +00:00
}
}