MainWindowViewModel.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. using Avalonia.Controls;
  2. using Avalonia.Media;
  3. using Avalonia.Media.Imaging;
  4. using Avalonia.Platform;
  5. using Avalonia.Platform.Storage;
  6. using CommunityToolkit.Mvvm.ComponentModel;
  7. using CommunityToolkit.Mvvm.Input;
  8. using EntranseTesting.Models;
  9. using HarfBuzzSharp;
  10. using Microsoft.EntityFrameworkCore;
  11. using MsBox.Avalonia;
  12. using MsBox.Avalonia.Enums;
  13. using ReactiveUI;
  14. using SkiaSharp;
  15. using System;
  16. using System.Collections.Generic;
  17. using System.Collections.ObjectModel;
  18. using System.Diagnostics;
  19. using System.IO;
  20. using System.Linq;
  21. using System.Threading.Tasks;
  22. using static System.Net.WebRequestMethods;
  23. using File = System.IO.File;
  24. namespace EntranseTesting.ViewModels
  25. {
  26. public partial class MainWindowViewModel : ObservableObject
  27. {
  28. public static EntranceTestingContext baseConnection = new EntranceTestingContext();
  29. //основные элементы окна
  30. [ObservableProperty] private UserControl uC = new TestMain();
  31. [ObservableProperty] private bool _isPaneOpen = false;
  32. [ObservableProperty] private bool _isOpenAuthorization = false;
  33. [ObservableProperty] private bool _isTextChangeOpen = false;
  34. [ObservableProperty] private bool _isHintOpen = false;
  35. [ObservableProperty] private bool _textChangeVisible = false;
  36. [ObservableProperty] private bool _hintVisible = false;
  37. [ObservableProperty] private bool _info = true;
  38. [ObservableProperty] private bool _buttonVisible = false;
  39. [ObservableProperty] private bool _userResultVisible = false;
  40. //локальные классы для работы
  41. [ObservableProperty] InterfaceSettings iS = new InterfaceSettings();//пользовательский интерфейс
  42. [ObservableProperty] Messages mess = new Messages();//большие сообщения
  43. //view model для работы с основными user control
  44. [ObservableProperty] TestMainViewModel testMain = new TestMainViewModel();
  45. [ObservableProperty] EditorPageViewModel editorPages = new EditorPageViewModel(false);
  46. [ObservableProperty] UserResultViewModel userResult;
  47. //кнопки панели
  48. [ObservableProperty] bool isAuth = true;
  49. [ObservableProperty] bool isExit = false;
  50. private bool timerEnd = false;
  51. private bool reSave = false;
  52. //для авторизации
  53. [ObservableProperty] string login = "";
  54. [ObservableProperty] string password = "";
  55. [RelayCommand]
  56. private void IsClickPain()
  57. {
  58. IsPaneOpen = !IsPaneOpen;
  59. TextChangeVisible = (IsPaneOpen && IsTextChangeOpen);
  60. HintVisible = (IsPaneOpen && IsHintOpen && Info);
  61. }
  62. [RelayCommand]
  63. private void IsTextClick()
  64. {
  65. if (!IsTextChangeOpen)
  66. {
  67. IsPaneOpen = true;
  68. IsTextChangeOpen = true;
  69. TextChangeVisible = true;
  70. }
  71. else
  72. {
  73. IsTextChangeOpen = false;
  74. TextChangeVisible = false;
  75. }
  76. }
  77. [RelayCommand]
  78. private void IsHintClick()
  79. {
  80. if (!IsHintOpen)
  81. {
  82. IsPaneOpen = true;
  83. IsHintOpen = true;
  84. HintVisible = true;
  85. }
  86. else
  87. {
  88. IsHintOpen = false;
  89. HintVisible = false;
  90. }
  91. }
  92. [RelayCommand]
  93. private async void StartTesting()
  94. {
  95. try
  96. {
  97. if (!string.IsNullOrWhiteSpace(TestMain.NameUser) && !string.IsNullOrWhiteSpace(TestMain.GroupUser))
  98. {
  99. IsAuth = false;
  100. IsExit = true;
  101. ButtonVisible = true;
  102. TestMain.TestPages = new TestPageViewModel();
  103. UC = new TestPage();
  104. //настраиваем ответы
  105. Response.userSession = new UserSession()
  106. {
  107. Date = DateTime.Now,
  108. Time = new TimeSpan(0, 0, 0),
  109. UserGroup = TestMain.GroupUser.Replace(" ", "").ToString(),
  110. UserName = TestMain.NameUser.ToString(),
  111. CountHint = 0,
  112. IdAppSettings = TestMain.TestPages.SettingTest.Id
  113. };
  114. Response.timer.Interval = TestMain.TestPages.SettingTest.Time;
  115. Response.timer.Tick += stopTimer;
  116. Response.timer.Start();
  117. timerEnd = false;
  118. reSave = false;
  119. }
  120. else
  121. {
  122. await MessageBoxManager.GetMessageBoxStandard("Ошибка формы", "Заполните поля ФИО и Группа", ButtonEnum.Ok).ShowAsync();
  123. }
  124. }
  125. catch (Exception ex)
  126. {
  127. await MessageBoxManager.GetMessageBoxStandard("Ошибка формы", "Возникла неопознаная ошибка. Возможно вы сделали сто-то не так", ButtonEnum.Ok).ShowAsync();
  128. }
  129. }
  130. private void stopTimer(object? sender, EventArgs e)
  131. {
  132. timerEnd = true;
  133. SaveResults();
  134. }
  135. [RelayCommand]
  136. private void OpenAuthorization()
  137. {
  138. IsOpenAuthorization = true;
  139. }
  140. [RelayCommand]
  141. private async void Authorization()
  142. {
  143. EntranceTestingContext connection = new EntranceTestingContext();
  144. RootUser user = connection.RootUsers.FirstOrDefault(tb => tb.Login == Login && tb.Password == Password);
  145. if (user != null)
  146. {
  147. Info = false;
  148. IsHintOpen = false;
  149. HintVisible = false;
  150. IsOpenAuthorization = false;
  151. IsAuth = false;
  152. IsExit = true;
  153. EditorPages = new EditorPageViewModel(false);
  154. UC = new EditorPage();
  155. }
  156. else
  157. await MessageBoxManager.GetMessageBoxStandard("", "Пользователь не найден").ShowAsync();
  158. }
  159. [RelayCommand]
  160. private async void ToBack()
  161. {
  162. if (typeof(TaskEditor) == UC.GetType())
  163. {
  164. try
  165. {
  166. var result = await MessageBoxManager.GetMessageBoxStandard("Выйти из редактора", "Вы действительно хотите выйти из редактора? Все введенные вами изменения могут удалиться", ButtonEnum.YesNo).ShowAsync();
  167. switch (result)
  168. {
  169. case ButtonResult.Yes:
  170. {
  171. if (EditorPages.TaskEditorPage.Header == "Добавление вопроса")
  172. {
  173. EntranceTestingContext connection = new EntranceTestingContext();
  174. Question q = connection.Questions
  175. .Include(tb => tb.ElementOfArrangements)
  176. .Include(tb => tb.ElementOfEqualities)
  177. .Include(tb => tb.ElementOfChooses)
  178. .Include(tb => tb.TextOfPuttings)
  179. .Include(tb => tb.Groups)
  180. .FirstOrDefault(tb => tb.Id == EditorPages.TaskEditorPage.Q.Id);
  181. bool flag = q.ElementOfArrangements.Count == 0 && q.ElementOfEqualities.Count == 0 && q.ElementOfChooses.Count == 0 && q.TextOfPuttings.Count == 0 && q.Groups.Count == 0;
  182. if (flag)
  183. {
  184. connection.Questions.Remove(q);
  185. connection.SaveChanges();
  186. }
  187. }
  188. break;
  189. }
  190. case ButtonResult.No:
  191. {
  192. return;
  193. }
  194. }
  195. }
  196. catch (Exception ex)
  197. {
  198. #if DEBUG
  199. Debug.Write(ex.Message);
  200. #endif
  201. }
  202. }
  203. if (typeof(EditorPage) == UC.GetType())
  204. {
  205. EditorPages.EditingVisible = false;
  206. if (EditorPages.Results != null) EditorPages.Results.Timer.Stop();
  207. }
  208. if (typeof(TestPage) == UC.GetType())
  209. {
  210. var result = await MessageBoxManager.GetMessageBoxStandard("Выход из теста", "Если вы выйдите из теста, то результат не сохраниться", ButtonEnum.YesNo).ShowAsync();
  211. switch (result)
  212. {
  213. case ButtonResult.Yes:
  214. {
  215. break;
  216. }
  217. case ButtonResult.No:
  218. {
  219. return;
  220. }
  221. }
  222. ButtonVisible = false;
  223. Response.timer.Stop();
  224. }
  225. Login = "";
  226. Password = "";
  227. Info = true;
  228. IsAuth = true;
  229. IsExit = false;
  230. UserResultVisible = false;
  231. TestMain = new TestMainViewModel();
  232. UC = new TestMain();
  233. }
  234. public void AddQuestion()
  235. {
  236. EditorPages.EditingVisible = false;
  237. EditorPages.TaskEditorPage = new TaskEditorViewModel();
  238. UC = new TaskEditor();
  239. }
  240. public void EditQuestion(int idQuestion)
  241. {
  242. EditorPages.EditingVisible = false;
  243. EditorPages.TaskEditorPage = new TaskEditorViewModel(idQuestion);
  244. UC = new TaskEditor();
  245. }
  246. public async void ExitFromEditor()
  247. {
  248. try
  249. {
  250. var result = await MessageBoxManager.GetMessageBoxStandard("Выйти из редактора", "Вы действительно хотите выйти из редактора? Все введенные вами изменения могут удалиться", ButtonEnum.YesNo).ShowAsync();
  251. switch (result)
  252. {
  253. case ButtonResult.Yes:
  254. {
  255. if (EditorPages.TaskEditorPage.Header == "Добавление вопроса")
  256. {
  257. EntranceTestingContext connection = new EntranceTestingContext();
  258. Question q = connection.Questions
  259. .Include(tb => tb.ElementOfArrangements)
  260. .Include(tb => tb.ElementOfEqualities)
  261. .Include(tb => tb.ElementOfChooses)
  262. .Include(tb => tb.TextOfPuttings)
  263. .Include(tb => tb.Groups)
  264. .FirstOrDefault(tb => tb.Id == EditorPages.TaskEditorPage.Q.Id);
  265. bool flag = q.ElementOfArrangements.Count == 0 && q.ElementOfEqualities.Count == 0 && q.ElementOfChooses.Count == 0 && q.TextOfPuttings.Count == 0 && q.Groups.Count == 0;
  266. if (flag)
  267. {
  268. connection.Questions.Remove(q);
  269. connection.SaveChanges();
  270. }
  271. }
  272. EditorPages.EditingVisible = true;
  273. EditorPages = new EditorPageViewModel(true);
  274. UC = new EditorPage();
  275. break;
  276. }
  277. case ButtonResult.No:
  278. {
  279. return;
  280. }
  281. }
  282. }
  283. catch (Exception ex)
  284. {
  285. #if DEBUG
  286. Debug.Write(ex.Message);
  287. #endif
  288. }
  289. }
  290. public async void LoadImageForQuestion()
  291. {
  292. try
  293. {
  294. var topLevel = TopLevel.GetTopLevel(UC);
  295. var files = await topLevel.StorageProvider.OpenFilePickerAsync(new FilePickerOpenOptions
  296. {
  297. Title = "Выберите изображения для вопроса",
  298. AllowMultiple = true,
  299. FileTypeFilter = new[] { FilePickerFileTypes.ImageAll }
  300. });
  301. if (files.Count >= 1)
  302. {
  303. EntranceTestingContext connection = new EntranceTestingContext();
  304. foreach (var file in files)
  305. {
  306. QuestionImage qImage = new QuestionImage();
  307. qImage.IdQuestion = EditorPages.TaskEditorPage.Q.Id;
  308. qImage.Image = File.ReadAllBytes(file.Path.ToString().Replace("file:///", ""));
  309. EditorPages.TaskEditorPage.QImage.Add(qImage);
  310. connection.QuestionImages.Add(qImage);
  311. }
  312. connection.SaveChanges();
  313. }
  314. }
  315. catch (Exception ex)
  316. {
  317. await MessageBoxManager.GetMessageBoxStandard("Ошибка добавления", "Во время добавления возникла ошибка", ButtonEnum.Ok).ShowAsync();
  318. #if DEBUG
  319. Debug.Write(ex.Message);
  320. #endif
  321. }
  322. }
  323. public async void LoadImageForHint(int idHint)
  324. {
  325. try
  326. {
  327. var topLevel = TopLevel.GetTopLevel(UC);
  328. var files = await topLevel.StorageProvider.OpenFilePickerAsync(new FilePickerOpenOptions
  329. {
  330. Title = "Выберите изображения для вопроса",
  331. AllowMultiple = true,
  332. FileTypeFilter = new[] { FilePickerFileTypes.ImageAll }
  333. });
  334. if (files.Count >= 1)
  335. {
  336. QuestionHint qh = EditorPages.TaskEditorPage.QHint.FirstOrDefault(tb => tb.IdHint == idHint);
  337. int index = EditorPages.TaskEditorPage.QHint.IndexOf(qh);
  338. EntranceTestingContext connection = new EntranceTestingContext();
  339. foreach (var file in files)
  340. {
  341. HintImage hImage = new HintImage();
  342. hImage.IdHint = idHint;
  343. hImage.Image = File.ReadAllBytes(file.Path.ToString().Replace("file:///", ""));
  344. connection.HintImages.Add(hImage);
  345. }
  346. connection.SaveChanges();
  347. EditorPages.TaskEditorPage.QHint = connection.QuestionHints.Include(tb => tb.IdHintNavigation).ThenInclude(tb => tb.HintImages).Where(tb => tb.IdQuestion == qh.IdQuestion).ToList();
  348. }
  349. }
  350. catch (Exception ex)
  351. {
  352. await MessageBoxManager.GetMessageBoxStandard("Ошибка добавления", "Во время добавления возникла ошибка", ButtonEnum.Ok).ShowAsync();
  353. #if DEBUG
  354. Debug.Write(ex.Message);
  355. #endif
  356. }
  357. }
  358. // Метод для изменения содержимого страницы теста
  359. public async void NextQuestion()
  360. {
  361. TestMain.changeResponse();
  362. if (TestMain.TestPages.NumQuestion < TestMain.TestPages.CountQuestion)
  363. {
  364. TestMain.TestPages.ProgressButtons[TestMain.TestPages.NumQuestion - 1].Active = false;
  365. TestMain.TestPages.NumQuestion++;
  366. }
  367. else if (TestMain.TestPages.NumQuestion == TestMain.TestPages.CountQuestion)//если конец теста
  368. {
  369. if (TestMain.TestPages.QuestionsCollection.Count() != TestMain.TestPages.ProgressButtons.Where(tb => tb.Check == true).Count())
  370. {
  371. var result = await MessageBoxManager.GetMessageBoxStandard("", "У вас остались невыполненные заданияю Вы точно хотите закончить?", ButtonEnum.YesNo).ShowAsync();
  372. switch (result)
  373. {
  374. case ButtonResult.Yes:
  375. break;
  376. case ButtonResult.No:
  377. return;
  378. }
  379. }
  380. SaveResults();
  381. }
  382. TestMain.TestPages.ProgressButtons[TestMain.TestPages.NumQuestion - 1].Active = true;
  383. if (TestMain.TestPages.NumQuestion == TestMain.TestPages.CountQuestion)
  384. TestMain.TestPages.ButtonValue = "Завершить тест";
  385. while (!TestMain.TestPages.TakeProgressButtons.Contains(TestMain.TestPages.ProgressButtons[TestMain.TestPages.NumQuestion - 1]))
  386. {
  387. if (TestMain.TestPages.NumQuestion > TestMain.TestPages.TakeProgressButtons.Last().Num)
  388. TestMain.TestPages.SkipItem++;
  389. else
  390. TestMain.TestPages.SkipItem--;
  391. }
  392. TestMain.TestPages.changingPage();
  393. }
  394. public async void SaveResults()
  395. {
  396. if (reSave) return;
  397. try
  398. {
  399. ButtonVisible = false;
  400. TestMain.changeResponse();//сохраняем ответ последнего задания
  401. EntranceTestingContext connection = new EntranceTestingContext();
  402. Response.userSession.Time = DateTime.Now.TimeOfDay - Response.userSession.Date.TimeOfDay;
  403. Response.userSession.UserGroup = Response.userSession.UserGroup.ToUpper().Trim();
  404. Response.userSession.UserName = Response.userSession.UserName.Trim();
  405. Response.userSession.CountHint = TestMain.TestPages.HintCount;
  406. connection.UserSessions.Add(Response.userSession);
  407. connection.SaveChanges();
  408. for (int i = 0; i < Response.responseUsers.Count; i++)
  409. {
  410. Response.responseUsers[i].IdSession = Response.userSession.Id;
  411. connection.UserResponses.Add(Response.responseUsers[i]);
  412. }
  413. connection.SaveChanges();
  414. reSave = true;
  415. if (timerEnd)
  416. {
  417. UC = new TestEnd();
  418. }
  419. else
  420. {
  421. Response.timer.Stop();
  422. EndTest();
  423. }
  424. }
  425. catch (Exception ex)
  426. {
  427. await MessageBoxManager.GetMessageBoxStandard("", "По какой-то причине не удалось сохранить данные", ButtonEnum.Ok).ShowAsync();
  428. #if DEBUG
  429. Debug.WriteLine(ex.Message);
  430. #endif
  431. }
  432. }
  433. [RelayCommand]
  434. private void EndTest()
  435. {
  436. //страница итогов
  437. if (TestMain.TestPages.SettingTest.ResultVisibiliry)
  438. {
  439. TestMain.TestResults = new TestResultViewModel(null);
  440. UC = new TestResult();
  441. }
  442. else
  443. {
  444. TestMain = new TestMainViewModel();
  445. UC = new TestMain();
  446. }
  447. }
  448. public void ClickToUserResult(int idSession)
  449. {
  450. UserResultVisible = true;
  451. UserResult = new UserResultViewModel(idSession);
  452. UC = new UserResultPage();
  453. EditorPages.Results.Timer.Stop();
  454. }
  455. public void ClickToAllResult()
  456. {
  457. UserResultVisible = false;
  458. UC = new EditorPage();
  459. EditorPages.Results.Timer.Start();
  460. }
  461. }
  462. }