CommunicationVM.cs
5.72 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using HandyControl.Data;
using HHECS.BllModel;
using HHECS.DAQClient.Model;
using HHECS.DAQClient.View.CommunicationView;
using LinqKit;
using System.Collections;
using System.Collections.ObjectModel;
using System.Linq.Expressions;
using System.Windows;
using MessageBox = HandyControl.Controls.MessageBox;
namespace HHECS.DAQClient.ViewModel.CommunicationVM
{
public partial class CommunicationVM : ObservableObject
{
[ObservableProperty]
private string code;
[ObservableProperty]
private string name;
[ObservableProperty]
private Dictionary<string, CommunicationTypeConst?> communicationTypes = new Dictionary<string, CommunicationTypeConst?>();
[ObservableProperty]
private CommunicationTypeConst? communicationType;
[ObservableProperty]
private int pageIndex = 1;
[ObservableProperty]
private long maxPage;
[ObservableProperty]
private int pageSize = 30;
[ObservableProperty]
private ObservableCollection<CommunicationConfig> communicationConfigs = new ObservableCollection<CommunicationConfig>();
private readonly IFreeSql _freeSql;
public CommunicationVM(IFreeSql freeSql)
{
_freeSql = freeSql;
InitialData();
LoadData();
}
private void InitialData()
{
var keyValuePairs = new Dictionary<string, CommunicationTypeConst?>()
{
{ "全部", null },
};
foreach (var item in Enum.GetNames<CommunicationTypeConst>())
{
keyValuePairs.Add(item, Enum.Parse<CommunicationTypeConst>(item));
}
CommunicationTypes = keyValuePairs;
}
[RelayCommand]
public void Serach()
{
var result = LoadData();
if (!result.Success)
{
MessageBox.Error($"[{nameof(CommunicationVM)}]加载数据失败.{result.Msg}");
}
}
[RelayCommand]
public void Add()
{
var view = new CommunicationAddOrEditView();
var result = view.ShowDialog();
if (result == true)
{
LoadData();
}
}
[RelayCommand]
public void Edit(int communicationId)
{
var vm = new CommunicationAddOrEditView(communicationId);
var result = vm.ShowDialog();
if (result == true)
{
LoadData();
}
}
[RelayCommand]
public void Delete(int communicationId)
{
try
{
var result = MessageBox.Ask($"确认删除数据?");
if (result != MessageBoxResult.OK)
{
return;
}
_freeSql.Delete<CommunicationConfig>().Where(x => x.Id == communicationId).ExecuteAffrows();
LoadData();
MessageBox.Success("删除数据成功");
}
catch (Exception ex)
{
MessageBox.Error($"删除数据失败.{ex.Message}");
}
}
[RelayCommand]
public void BatchDelete(IList sender)
{
try
{
var temps = sender.Cast<CommunicationConfig>().ToList();
if (temps.Count == 0)
{
MessageBox.Warning("未选中任何数据!");
return;
}
var result = MessageBox.Ask($"确认删除选中数据?");
if (result == MessageBoxResult.OK)
{
return;
}
var communicationIds = temps.Select(x => x.Id).ToList();
_freeSql.Delete<CommunicationConfig>().Where(x => communicationIds.Contains(x.Id)).ExecuteAffrows();
LoadData();
MessageBox.Success($"成功删除{temps.Count}条数据");
}
catch (Exception ex)
{
MessageBox.Error($"删除失败.{ex.Message}");
}
}
/// <summary>
/// 页码改变
/// </summary>
[RelayCommand]
private void PageUpdated(FunctionEventArgs<int> info)
{
PageIndex = info.Info;
LoadData();
}
private BllResult LoadData()
{
try
{
var query = _freeSql.Queryable<CommunicationConfig>().Where(GetFilter());
var total = query.Count();
MaxPage = total / PageSize + Convert.ToInt32(total % PageSize != 0);
var result = query.Page(PageIndex, PageSize).ToList();
CommunicationConfigs = new ObservableCollection<CommunicationConfig>(result);
return BllResultFactory.Success();
}
catch (Exception ex)
{
return BllResultFactory.Error(ex.Message);
}
}
private Expression<Func<CommunicationConfig, bool>> GetFilter()
{
var filter = PredicateBuilder.New<CommunicationConfig>(true);
if (!string.IsNullOrWhiteSpace(Code))
{
filter = filter.And(x => x.Code.Contains(Code));
}
if (!string.IsNullOrWhiteSpace(Name))
{
filter = filter.And(x => x.Name.Contains(Name));
}
if (CommunicationType != null)
{
filter = filter.And(x => x.CommunicationType.Equals(CommunicationType));
}
return filter;
}
}
}