commit fcad583362cd03b3d1c5352b286afab36e98d0b5 Author: Alex Date: Sun Mar 9 18:00:01 2025 +0300 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/Hard_Demo.sln b/Hard_Demo.sln new file mode 100644 index 0000000..2593b94 --- /dev/null +++ b/Hard_Demo.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hard_Demo", "Hard_Demo\Hard_Demo.csproj", "{894A6AE0-1ADB-47E1-959E-827D0BBA9445}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Library", "Library\Library.csproj", "{F8410716-956E-41CD-BF67-B3BEF201633E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{5E1E0CBB-9205-4031-9A61-6910A62A476C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {894A6AE0-1ADB-47E1-959E-827D0BBA9445}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {894A6AE0-1ADB-47E1-959E-827D0BBA9445}.Debug|Any CPU.Build.0 = Debug|Any CPU + {894A6AE0-1ADB-47E1-959E-827D0BBA9445}.Release|Any CPU.ActiveCfg = Release|Any CPU + {894A6AE0-1ADB-47E1-959E-827D0BBA9445}.Release|Any CPU.Build.0 = Release|Any CPU + {F8410716-956E-41CD-BF67-B3BEF201633E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F8410716-956E-41CD-BF67-B3BEF201633E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F8410716-956E-41CD-BF67-B3BEF201633E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F8410716-956E-41CD-BF67-B3BEF201633E}.Release|Any CPU.Build.0 = Release|Any CPU + {5E1E0CBB-9205-4031-9A61-6910A62A476C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5E1E0CBB-9205-4031-9A61-6910A62A476C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5E1E0CBB-9205-4031-9A61-6910A62A476C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5E1E0CBB-9205-4031-9A61-6910A62A476C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Hard_Demo/AddClient.axaml b/Hard_Demo/AddClient.axaml new file mode 100644 index 0000000..652df14 --- /dev/null +++ b/Hard_Demo/AddClient.axaml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Hard_Demo/EnterHistoryWindow.axaml.cs b/Hard_Demo/EnterHistoryWindow.axaml.cs new file mode 100644 index 0000000..0e37b09 --- /dev/null +++ b/Hard_Demo/EnterHistoryWindow.axaml.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using Avalonia.Controls; +using Avalonia.Interactivity; +using Hard_Demo.Models; + +namespace Hard_Demo; + +public partial class EnterHistoryWindow : Window +{ + private ObservableCollection lastEnter = new(); + public List dataLastEnter; + public bool sort = true; + public EnterHistoryWindow() + { + InitializeComponent(); + using var context = new User2Context(); + + + dataLastEnter = context.LastEnters.Select(it => new LastEnter + { + EmployeId = it.EmployeId, + EnterDatetime = it.EnterDatetime, + EnterType = it.EnterType, + Login = it.Login + }).ToList(); + + foreach (var newlastEnter in dataLastEnter) + { + lastEnter.Add(newlastEnter); + } + lastEnters.ItemsSource = lastEnter; + LoginComboBox.ItemsSource = dataLastEnter.Select(it => it.Login); + SortLogin(); + } + + private void SortLogin() + { + var temp = dataLastEnter; + if (LoginComboBox.SelectedItem is String login) + { + temp = temp.Where(it => it.Login == login).ToList(); + } + temp=sort ? temp.OrderBy(it => it.Login).ToList() : temp.OrderByDescending(it => it.Login).ToList(); + + lastEnter.Clear(); + foreach (var userlogin in temp) + { + lastEnter.Add(userlogin); + } + } + + private void LoginComboBox_OnSelectionChanged(object? sender, SelectionChangedEventArgs e) + { + sort=!sort; + SortLogin(); + } + + private void Button_Asc(object? sender, RoutedEventArgs e) + { + var sortedList = dataLastEnter.OrderBy(it => it.EnterDatetime).ToList(); + lastEnter.Clear(); + foreach (var item in sortedList) + { + lastEnter.Add(item); + } + } + + + private void Button_Desc(object? sender, RoutedEventArgs e) + { + var sortedList = dataLastEnter.OrderByDescending(it => it.EnterDatetime).ToList(); + lastEnter.Clear(); + foreach (var descList in sortedList) + { + lastEnter.Add(descList); + } + } +} \ No newline at end of file diff --git a/Hard_Demo/FunctionWindow.axaml b/Hard_Demo/FunctionWindow.axaml new file mode 100644 index 0000000..f01787a --- /dev/null +++ b/Hard_Demo/FunctionWindow.axaml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Hard_Demo/FunctionWindow.axaml.cs b/Hard_Demo/FunctionWindow.axaml.cs new file mode 100644 index 0000000..7de67fd --- /dev/null +++ b/Hard_Demo/FunctionWindow.axaml.cs @@ -0,0 +1,107 @@ +using System; +using System.IO; +using System.Net.Mime; +using System.Threading.Tasks; +using Avalonia; +using Avalonia.Controls; +using Avalonia.Interactivity; +using Avalonia.Markup.Xaml; +using Avalonia.Media.Imaging; +using Hard_Demo.Models; + +namespace Hard_Demo; + +public partial class FunctionWindow : Window +{ + private readonly TimeSpan sessionDuration = TimeSpan.FromMinutes(10); + private readonly TimeSpan warningTime = TimeSpan.FromMinutes(5); + private DateTime sessionStartTime; + private bool warningShow = false; + + public FunctionWindow(Employee user) + { + InitializeComponent(); + DataContext = new ImageEmployee() + { + EmployeId = user.EmployeId, + Fio = user.Fio, + EmployeLogin = user.EmployeLogin, + EmployePassword = user.EmployePassword, + RoleId = user.RoleId, + EmployePhoto = user.EmployePhoto + }; + + sessionStartTime = DateTime.Now; + StartSessionTimer(); + } + + private async void StartSessionTimer() + { + while (true) + { + TimeSpan ellapsedTime = DateTime.Now - sessionStartTime; + TimeSpan remainingTime = sessionDuration - ellapsedTime; + this.FindControl("Timer").Text = $"Осталось: {remainingTime.Minutes}:{remainingTime.Seconds}"; + if (!warningShow && remainingTime <= warningTime) + { + warningShow = true; + WarningBlock.Text = "Ваш сеанс закончится через 5 минут."; + } + + if (remainingTime <= TimeSpan.Zero) + { + EndSession(); + break; + } + + await Task.Delay(1000); + } + } + + private async void EndSession() + { + this.Close(); + } + + public FunctionWindow() + { + InitializeComponent(); + } + + + private void Back_Button(object? sender, RoutedEventArgs e) + { + new MainWindow().ShowDialog(this); + } + + private void Next_Function_Button(object? sender, RoutedEventArgs e) + { + new EnterHistoryWindow().ShowDialog(this); + } + private void newOrder_OnClick(object? sender, RoutedEventArgs e) + { + new OrderWindow().ShowDialog(this); + } + + + public class ImageEmployee: Employee + { + public bool IsRole2 => RoleId == 2; + Bitmap? Image + { + get + { + try + { + string absolutePath = Path.Combine(AppContext.BaseDirectory, EmployePhoto); + return new Bitmap(absolutePath); + } + catch(Exception e) + { + Console.WriteLine(e.Message); + return null; + } + } + } + } +} \ No newline at end of file diff --git a/Hard_Demo/Hard_Demo.csproj b/Hard_Demo/Hard_Demo.csproj new file mode 100644 index 0000000..ad2f569 --- /dev/null +++ b/Hard_Demo/Hard_Demo.csproj @@ -0,0 +1,29 @@ + + + WinExe + net9.0 + enable + true + app.manifest + true + + + + + + + + + + None + All + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + diff --git a/Hard_Demo/MainWindow.axaml b/Hard_Demo/MainWindow.axaml new file mode 100644 index 0000000..e2f135b --- /dev/null +++ b/Hard_Demo/MainWindow.axaml @@ -0,0 +1,24 @@ + + + + + + + + + + + +