-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMHtmlHelper`1.cs
397 lines (385 loc) · 15.4 KB
/
MHtmlHelper`1.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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
using System.Text;
using System.Web.UI;
using System.Collections;
namespace Moon.Mvc
{
public class MHtmlHelper<TModel>
{
public TModel Model
{
get;
set;
}
protected Dictionary<string, object> _ViewData = new Dictionary<string, object>();
/// <summary>
/// 视图数据字典
/// </summary>
public Dictionary<string, object> ViewData
{
get
{
return _ViewData;
}
set
{
_ViewData = value;
}
}
public static object TypeDescriptor { get; private set; }
protected System.Web.HttpContext _context;
protected Type _modelType;
public MHtmlHelper(TModel model, System.Web.HttpContext context)
{
this.Model = model;
_context = context;
_modelType = model.GetType();
}
static string ConvertIDictionaryToHtml(IDictionary<string, object> htmlAttributes)
{
StringBuilder sb = new StringBuilder();
if (htmlAttributes != null)
{
foreach (var kvp in htmlAttributes)
{
sb.Append(kvp.Key + "='" + System.Web.HttpUtility.HtmlEncode(kvp.Value) + "' ");
}
}
return sb.ToString();
}
public string RadioButtonFor<TProperty>(Expression<Func<TModel, TProperty>> expression, bool setChecked, string paramterName, object htmlAttributes = null)
{
var dic = AnonymousObjectToHtmlAttributes(htmlAttributes);
if (dic.ContainsKey("checked") == false && setChecked)
{
dic["checked"] = "checked";
}
else if (dic.ContainsKey("checked"))
{
var value = dic["checked"].ToString();
if (value == "checked" || value == true.ToString())
{
dic["checked"] = "checked";
}
else
{
dic.Remove("checked");
}
}
return InputFor(expression, "radio", paramterName, dic);
}
public string DropDownListFor<TProperty>(Expression<Func<TModel, TProperty>> expression, List<SelectListItem> allData, string paramterName, object htmlAttributes = null)
{
string value = string.Empty;
if (this.Model != null)
{
var comp = expression.Compile();
value = comp.Invoke(this.Model).ToString();
}
string rvalue = System.Web.HttpUtility.HtmlEncode(value);
string expressionName = expression.Parameters[0].Name;
string name = ExpressionHelper.GetExpressionText(expression);
if (!string.IsNullOrEmpty(paramterName))
{
name = paramterName + "." + name;
}
else
{
name = expressionName + "." + name;
}
string id = name.Replace('.', '_');
var dic = AnonymousObjectToHtmlAttributes(htmlAttributes);
if (dic.ContainsKey("id") == false)
{
dic["id"] = id;
}
string otherInfo = ConvertIDictionaryToHtml(dic);
if (allData == null)
{
allData = new List<SelectListItem>();
}
StringBuilder sb = new StringBuilder();
sb.Append("<select name='{0}' {1}>");
foreach (var item in allData)
{
if (item.Value == rvalue)
{
sb.Append("<option selected='selected'>");
}
else
{
sb.Append("<option>");
}
sb.Append(rvalue);
sb.Append("</option>");
}
sb.Append("</select>");
var ret = string.Format(sb.ToString(), name, otherInfo);
return ret;
}
public string LabelFor<TProperty>(Expression<Func<TModel, TProperty>> expression, string info, object htmlAttributes = null)
{
return LabelFor(expression, info, null, htmlAttributes);
}
public string LabelFor<TProperty>(Expression<Func<TModel, TProperty>> expression, string info, string paramterName, object htmlAttributes = null)
{
string value = string.Empty;
if (this.Model != null)
{
var comp = expression.Compile();
value = comp.Invoke(this.Model).ToString();
}
string rvalue = System.Web.HttpUtility.HtmlEncode(value);
string expressionName = expression.Parameters[0].Name;
string name = ExpressionHelper.GetExpressionText(expression);
if (!string.IsNullOrEmpty(paramterName))
{
name = paramterName + "." + name;
}
else
{
name = expressionName + "." + name;
}
string forID = name.Replace('.', '_');
var dic = AnonymousObjectToHtmlAttributes(htmlAttributes);
string otherInfo = ConvertIDictionaryToHtml(dic);
string inputBox = "<label for='{0}' {1} >{2}</label>";
string ret = string.Format(inputBox, forID, otherInfo, info);
return ret;
}
public string InputFor<TProperty>(Expression<Func<TModel, TProperty>> expression, string inputType, string paramterName, object htmlAttributes = null)
{
string value = string.Empty;
if (this.Model != null)
{
var comp = expression.Compile();
value = comp.Invoke(this.Model).ToString();
}
string rvalue = System.Web.HttpUtility.HtmlEncode(value);
string expressionName = expression.Parameters[0].Name;
string name = ExpressionHelper.GetExpressionText(expression);
if (!string.IsNullOrEmpty(paramterName))
{
name = paramterName + "." + name;
}
else
{
name = expressionName + "." + name;
}
string id = name.Replace('.', '_');
var dic = AnonymousObjectToHtmlAttributes(htmlAttributes);
if (dic.ContainsKey("id") == false)
{
dic["id"] = id;
}
string otherInfo = ConvertIDictionaryToHtml(dic);
string inputBox = "<input type='{0}' name='{1}' value='{2}' {3} />";
string ret = string.Format(inputBox, inputType, name, rvalue, otherInfo);
return ret;
}
public string TextAreaFor<TProperty>(Expression<Func<TModel, TProperty>> expression, object htmlAttributes = null)
{
return TextAreaFor(expression, null, htmlAttributes);
}
public string TextAreaFor<TProperty>(Expression<Func<TModel, TProperty>> expression, string paramterName, object htmlAttributes = null)
{
string value = string.Empty;
if (this.Model != null)
{
var comp = expression.Compile();
value = comp.Invoke(this.Model).ToString();
}
string rvalue = value;
string name = ExpressionHelper.GetExpressionText(expression);
string expressionName = expression.Parameters[0].Name;
if (!string.IsNullOrEmpty(paramterName))
{
name = paramterName + "." + name;
}
else
{
name = expressionName + "." + name;
}
string id = name.Replace('.', '_');
var dic = AnonymousObjectToHtmlAttributes(htmlAttributes);
if (dic.ContainsKey("id") == false)
{
dic["id"] = id;
}
string otherInfo = ConvertIDictionaryToHtml(dic);
string textarea = "<textarea name='{0}' {1} />{2}</textarea>";
string ret = string.Format(textarea, name, otherInfo, rvalue);
return ret;
}
public string TextBoxFor<TProperty>(Expression<Func<TModel, TProperty>> expression, object htmlAttributes = null)
{
return InputFor(expression, "text", null, htmlAttributes);
}
public string TextBoxFor<TProperty>(Expression<Func<TModel, TProperty>> expression, string paramterName, object htmlAttributes = null)
{
return InputFor(expression, "text", paramterName, htmlAttributes);
}
public string HiddenFor(Expression<Func<TModel, object>> expression, object htmlAttributes = null)
{
return InputFor(expression, "hidden", null, htmlAttributes);
}
public string HiddenFor(Expression<Func<TModel, object>> expression, string paramterName, object htmlAttributes = null)
{
return InputFor(expression, "hidden", paramterName, htmlAttributes);
}
public string PasswordFor(Expression<Func<TModel, object>> expression, object htmlAttributes = null)
{
return InputFor(expression, "password", null, htmlAttributes);
}
public string PasswordFor(Expression<Func<TModel, object>> expression, string paramterName, object htmlAttributes = null)
{
return InputFor(expression, "password", paramterName, htmlAttributes);
}
public string CheckBoxFor(Expression<Func<TModel, object>> expression, object htmlAttributes = null)
{
return InputFor(expression, "checkbox", null, htmlAttributes);
}
public string CheckBoxFor(Expression<Func<TModel, object>> expression, string paramterName, object htmlAttributes = null)
{
return InputFor(expression, "checkbox", paramterName, htmlAttributes);
}
public static Dictionary<string, Object> AnonymousObjectToHtmlAttributes(object htmlAttributes)
{
if (htmlAttributes is Dictionary<string, object>)
{
return htmlAttributes as Dictionary<string, Object>;
}
var result = new System.Collections.Generic.Dictionary<string, Object>(StringComparer.OrdinalIgnoreCase);
if (htmlAttributes != null)
{
var ps = htmlAttributes.GetType().GetProperties();
foreach (var property in ps)
{
result.Add(property.Name.Replace('_', '-'), property.GetValue(htmlAttributes, null));
}
}
return result;
}
//----------------
public string Partial(string virtualPath, TModel model, Dictionary<string, object> viewData)
{
string content = RenderUtil.RenderAspx(_context, virtualPath, model, viewData);
return content;
}
public string Partial(string virtualPath)
{
string content = RenderUtil.RenderAspx(_context, virtualPath, this.Model, this.ViewData);
return content;
}
public string Action<TController>(string action) where TController : BaseController
{
var url = UrlUtil.Action<TController>(action);
HttpWebRequestHelper helper = new HttpWebRequestHelper();
return helper.GetContent(url);
}
public string Action<TController>(string action, object datas) where TController : BaseController
{
var dic = AnonymousObjectToHtmlAttributes(datas);
var url = UrlUtil.Action<TController>(action);
if (dic.Count > 0)
{
url = url + "?";
foreach (var kvp in dic)
{
url += kvp.Key + "=" + System.Web.HttpUtility.UrlEncode(kvp.Value.ToString()) + "&";
}
url = url.TrimEnd('&');
}
HttpWebRequestHelper helper = new HttpWebRequestHelper();
return helper.GetContent(url);
}
public MvcForm BeginForm<TController>(string action, RequestType formType) where TController : BaseController
{
return BeginForm<TController>(action, formType, null);
}
public MvcForm BeginForm<TController>(string action, RequestType formType, object htmlAttributes) where TController : BaseController
{
var url = UrlUtil.Action<TController>(action);
var dic = MHtmlHelper<object>.AnonymousObjectToHtmlAttributes(htmlAttributes);
var name = typeof(TController).Name + "_form";
if (dic.ContainsKey("id") == false)
{
dic["id"] = name;
if (dic.ContainsKey("name") == false)
{
dic["name"] = name;
}
}
else
{
if (dic.ContainsKey("name") == false)
{
dic["name"] = dic["id"];
}
else
{
dic["name"] = name;
}
}
string otherInfo = ConvertIDictionaryToHtml(dic);
string formInfo = "<form method='{0}' action='{1}' {2}>"+Environment.NewLine;
formInfo = string.Format(formInfo, formType.ToString(),url, otherInfo);
var ret = new MvcForm(formInfo,_context);
return ret;
}
}
public class MvcForm : IDisposable
{
public MvcForm(string formInfo, System.Web.HttpContext context)
{
_context = context;
_context.Response.Write(formInfo);
}
System.Web.HttpContext _context;
static string ConvertIDictionaryToHtml(IDictionary<string, object> htmlAttributes)
{
StringBuilder sb = new StringBuilder();
if (htmlAttributes != null)
{
foreach (var kvp in htmlAttributes)
{
sb.Append(kvp.Key + "='" + System.Web.HttpUtility.HtmlEncode(kvp.Value) + "' ");
}
}
return sb.ToString();
}
#region IDisposable Support
private bool disposedValue = false; // 要检测冗余调用
protected virtual void Dispose(bool disposing)
{
if (!disposedValue)
{
if (disposing)
{
string info = "</form>" + Environment.NewLine;
_context.Response.Write(info);
}
// TODO: 释放未托管的资源(未托管的对象)并在以下内容中替代终结器。
// TODO: 将大型字段设置为 null。
disposedValue = true;
}
}
// TODO: 仅当以上 Dispose(bool disposing) 拥有用于释放未托管资源的代码时才替代终结器。
// ~MvcForm() {
// // 请勿更改此代码。将清理代码放入以上 Dispose(bool disposing) 中。
// Dispose(false);
// }
// 添加此代码以正确实现可处置模式。
public void Dispose()
{
// 请勿更改此代码。将清理代码放入以上 Dispose(bool disposing) 中。
Dispose(true);
// TODO: 如果在以上内容中替代了终结器,则取消注释以下行。
// GC.SuppressFinalize(this);
}
#endregion
}
}