MainWindowViewModel.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  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. foreach (var item in TestMain.TestPages.ProgressButtons)
  223. item.Check = false;
  224. ButtonVisible = false;
  225. Response.timer.Stop();
  226. }
  227. Login = "";
  228. Password = "";
  229. Info = true;
  230. IsAuth = true;
  231. IsExit = false;
  232. UserResultVisible = false;
  233. TestMain = new TestMainViewModel();
  234. UC = new TestMain();
  235. }
  236. public void AddQuestion()
  237. {
  238. EditorPages.EditingVisible = false;
  239. EditorPages.TaskEditorPage = new TaskEditorViewModel();
  240. UC = new TaskEditor();
  241. }
  242. public void EditQuestion(int idQuestion)
  243. {
  244. EditorPages.EditingVisible = false;
  245. EditorPages.TaskEditorPage = new TaskEditorViewModel(idQuestion);
  246. UC = new TaskEditor();
  247. }
  248. public async void ExitFromEditor()
  249. {
  250. try
  251. {
  252. var result = await MessageBoxManager.GetMessageBoxStandard("Выйти из редактора", "Вы действительно хотите выйти из редактора? Все введенные вами изменения могут удалиться", ButtonEnum.YesNo).ShowAsync();
  253. switch (result)
  254. {
  255. case ButtonResult.Yes:
  256. {
  257. if (EditorPages.TaskEditorPage.Header == "Добавление вопроса")
  258. {
  259. EntranceTestingContext connection = new EntranceTestingContext();
  260. Question q = connection.Questions
  261. .Include(tb => tb.ElementOfArrangements)
  262. .Include(tb => tb.ElementOfEqualities)
  263. .Include(tb => tb.ElementOfChooses)
  264. .Include(tb => tb.TextOfPuttings)
  265. .Include(tb => tb.Groups)
  266. .FirstOrDefault(tb => tb.Id == EditorPages.TaskEditorPage.Q.Id);
  267. bool flag = q.ElementOfArrangements.Count == 0 && q.ElementOfEqualities.Count == 0 && q.ElementOfChooses.Count == 0 && q.TextOfPuttings.Count == 0 && q.Groups.Count == 0;
  268. if (flag)
  269. {
  270. connection.Questions.Remove(q);
  271. connection.SaveChanges();
  272. }
  273. }
  274. EditorPages.EditingVisible = true;
  275. EditorPages = new EditorPageViewModel(true);
  276. UC = new EditorPage();
  277. break;
  278. }
  279. case ButtonResult.No:
  280. {
  281. return;
  282. }
  283. }
  284. }
  285. catch (Exception ex)
  286. {
  287. #if DEBUG
  288. Debug.Write(ex.Message);
  289. #endif
  290. }
  291. }
  292. public async void LoadImageForQuestion()
  293. {
  294. try
  295. {
  296. var topLevel = TopLevel.GetTopLevel(UC);
  297. var files = await topLevel.StorageProvider.OpenFilePickerAsync(new FilePickerOpenOptions
  298. {
  299. Title = "Выберите изображения для вопроса",
  300. AllowMultiple = true,
  301. FileTypeFilter = new[] { FilePickerFileTypes.ImageAll }
  302. });
  303. if (files.Count >= 1)
  304. {
  305. EntranceTestingContext connection = new EntranceTestingContext();
  306. foreach (var file in files)
  307. {
  308. QuestionImage qImage = new QuestionImage();
  309. qImage.IdQuestion = EditorPages.TaskEditorPage.Q.Id;
  310. qImage.Image = File.ReadAllBytes(file.Path.ToString().Replace("file:///", ""));
  311. EditorPages.TaskEditorPage.QImage.Add(qImage);
  312. connection.QuestionImages.Add(qImage);
  313. }
  314. connection.SaveChanges();
  315. }
  316. }
  317. catch (Exception ex)
  318. {
  319. await MessageBoxManager.GetMessageBoxStandard("Ошибка добавления", "Во время добавления возникла ошибка", ButtonEnum.Ok).ShowAsync();
  320. #if DEBUG
  321. Debug.Write(ex.Message);
  322. #endif
  323. }
  324. }
  325. public async void LoadImageForHint(int idHint)
  326. {
  327. try
  328. {
  329. var topLevel = TopLevel.GetTopLevel(UC);
  330. var files = await topLevel.StorageProvider.OpenFilePickerAsync(new FilePickerOpenOptions
  331. {
  332. Title = "Выберите изображения для вопроса",
  333. AllowMultiple = true,
  334. FileTypeFilter = new[] { FilePickerFileTypes.ImageAll }
  335. });
  336. if (files.Count >= 1)
  337. {
  338. QuestionHint qh = EditorPages.TaskEditorPage.QHint.FirstOrDefault(tb => tb.IdHint == idHint);
  339. int index = EditorPages.TaskEditorPage.QHint.IndexOf(qh);
  340. EntranceTestingContext connection = new EntranceTestingContext();
  341. foreach (var file in files)
  342. {
  343. HintImage hImage = new HintImage();
  344. hImage.IdHint = idHint;
  345. hImage.Image = File.ReadAllBytes(file.Path.ToString().Replace("file:///", ""));
  346. connection.HintImages.Add(hImage);
  347. }
  348. connection.SaveChanges();
  349. EditorPages.TaskEditorPage.QHint = connection.QuestionHints.Include(tb => tb.IdHintNavigation).ThenInclude(tb => tb.HintImages).Where(tb => tb.IdQuestion == qh.IdQuestion).ToList();
  350. }
  351. }
  352. catch (Exception ex)
  353. {
  354. await MessageBoxManager.GetMessageBoxStandard("Ошибка добавления", "Во время добавления возникла ошибка", ButtonEnum.Ok).ShowAsync();
  355. #if DEBUG
  356. Debug.Write(ex.Message);
  357. #endif
  358. }
  359. }
  360. // Метод для изменения содержимого страницы теста
  361. public async void NextQuestion()
  362. {
  363. TestMain.changeResponse();
  364. if (TestMain.TestPages.NumQuestion < TestMain.TestPages.CountQuestion)
  365. {
  366. TestMain.TestPages.ProgressButtons[TestMain.TestPages.NumQuestion - 1].Active = false;
  367. TestMain.TestPages.NumQuestion++;
  368. }
  369. else if (TestMain.TestPages.NumQuestion == TestMain.TestPages.CountQuestion)//если конец теста
  370. {
  371. if (TestMain.TestPages.QuestionsCollection.Count() != TestMain.TestPages.ProgressButtons.Where(tb => tb.Check == true).Count())
  372. {
  373. var result = await MessageBoxManager.GetMessageBoxStandard("", "У вас остались невыполненные заданияю Вы точно хотите закончить?", ButtonEnum.YesNo).ShowAsync();
  374. switch (result)
  375. {
  376. case ButtonResult.Yes:
  377. break;
  378. case ButtonResult.No:
  379. return;
  380. }
  381. }
  382. SaveResults();
  383. }
  384. TestMain.TestPages.ProgressButtons[TestMain.TestPages.NumQuestion - 1].Active = true;
  385. if (TestMain.TestPages.NumQuestion == TestMain.TestPages.CountQuestion)
  386. TestMain.TestPages.ButtonValue = "Завершить тест";
  387. while (!TestMain.TestPages.TakeProgressButtons.Contains(TestMain.TestPages.ProgressButtons[TestMain.TestPages.NumQuestion - 1]))
  388. {
  389. if (TestMain.TestPages.NumQuestion > TestMain.TestPages.TakeProgressButtons.Last().Num)
  390. TestMain.TestPages.SkipItem++;
  391. else
  392. TestMain.TestPages.SkipItem--;
  393. }
  394. TestMain.TestPages.changingPage();
  395. }
  396. public async void SaveResults()
  397. {
  398. if (reSave) return;
  399. try
  400. {
  401. foreach (var item in TestMain.TestPages.ProgressButtons)
  402. item.Check = false;
  403. ButtonVisible = false;
  404. TestMain.changeResponse();//сохраняем ответ последнего задания
  405. EntranceTestingContext connection = new EntranceTestingContext();
  406. Response.userSession.Time = DateTime.Now.TimeOfDay - Response.userSession.Date.TimeOfDay;
  407. Response.userSession.UserGroup = Response.userSession.UserGroup.ToUpper().Trim();
  408. Response.userSession.UserName = Response.userSession.UserName.Trim();
  409. Response.userSession.CountHint = TestMain.TestPages.HintCount;
  410. connection.UserSessions.Add(Response.userSession);
  411. connection.SaveChanges();
  412. for (int i = 0; i < Response.responseUsers.Count; i++)
  413. {
  414. Response.responseUsers[i].IdSession = Response.userSession.Id;
  415. connection.UserResponses.Add(Response.responseUsers[i]);
  416. }
  417. connection.SaveChanges();
  418. reSave = true;
  419. if (timerEnd)
  420. {
  421. UC = new TestEnd();
  422. }
  423. else
  424. {
  425. Response.timer.Stop();
  426. EndTest();
  427. }
  428. }
  429. catch (Exception ex)
  430. {
  431. await MessageBoxManager.GetMessageBoxStandard("", "По какой-то причине не удалось сохранить данные", ButtonEnum.Ok).ShowAsync();
  432. #if DEBUG
  433. Debug.WriteLine(ex.Message);
  434. #endif
  435. }
  436. }
  437. [RelayCommand]
  438. private void EndTest()
  439. {
  440. //страница итогов
  441. if (TestMain.TestPages.SettingTest.ResultVisibiliry)
  442. {
  443. TestMain.TestResults = new TestResultViewModel(null);
  444. UC = new TestResult();
  445. }
  446. else
  447. {
  448. TestMain = new TestMainViewModel();
  449. UC = new TestMain();
  450. }
  451. }
  452. public void ClickToUserResult(int idSession)
  453. {
  454. UserResultVisible = true;
  455. UserResult = new UserResultViewModel(idSession);
  456. UC = new UserResultPage();
  457. EditorPages.Results.Timer.Stop();
  458. }
  459. public void ClickToAllResult()
  460. {
  461. UserResultVisible = false;
  462. UC = new EditorPage();
  463. EditorPages.Results.Timer.Start();
  464. }
  465. }
  466. }