-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPresenter.cs
75 lines (63 loc) · 2.17 KB
/
MainPresenter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System;
using TextEditor.BL;
namespace Notepad
{
public class MainPresenter
{
private readonly IMainForm _view;
private readonly IFileManager _manager;
private readonly IMessageService _messageService;
private string _currentFilePath;
public MainPresenter(IMainForm view, IFileManager manager, IMessageService service)
{
_view = view;
_manager = manager;
_messageService = service;
_view.SetSymbolCount(0);
_view.ContentChanged += new EventHandler(_view_ContentChanged);
_view.FileOpenClick += new EventHandler(_view_FileOpenClick);
_view.FileSaveClick += new EventHandler(_view_FileSaveClick);
}
private void _view_FileSaveClick(object sender, EventArgs e)
{
try
{
string content = _view.Content;
_manager.SaveContent(content, _currentFilePath);
_messageService.ShowMassage("Saving complite.");
}
catch (Exception ex)
{
_messageService.ShowError(ex.Message);
}
}
void _view_FileOpenClick(object sender, EventArgs e)
{
try
{
string filePath = _view.FilePath;
bool isExist = _manager.IsExist(filePath);
if (!isExist)
{
_messageService.ShowExclamation("Chosen file is not exist.");
return;
}
_currentFilePath = filePath;
string content = _manager.GetContent(filePath);
int count = _manager.GetSymbolCount(content);
_view.Content = content;
_view.SetSymbolCount(count);
}
catch (Exception ex)
{
_messageService.ShowError(ex.Message);
}
}
private void _view_ContentChanged(object sender, EventArgs e)
{
string content = _view.Content;
int count = _manager.GetSymbolCount(content);
_view.SetSymbolCount(count);
}
}
}