/Coevery.Win.MainModule/Views/User/UserDetailPresenter.cs

http://coevery.codeplex.com · C# · 129 lines · 117 code · 12 blank · 0 comment · 11 complexity · ba45d84be10c6faaba45c36283988d3a MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Windows.Forms;
  5. using Coevery.Win.Common.Core;
  6. using Microsoft.Practices.CompositeUI.Commands;
  7. using Coevery.Win.Common;
  8. using System.Collections;
  9. using Coevery.Win.Common.Controls;
  10. namespace Coevery.Win.MainModule.Views.User
  11. {
  12. public class UserDetailPresenter : EntityDetailPresenter<IUserDetailView>
  13. {
  14. public UserDetailPresenter()
  15. {
  16. EntityName = "User";
  17. }
  18. #region Save And SaveAndClose Mothod
  19. private string oldPassword;
  20. protected override void OnSaving()
  21. {
  22. base.OnSaving();
  23. string password = DynamicEntity.Password;
  24. if (!string.IsNullOrEmpty(password))
  25. {
  26. password = BCrypt.Net.BCrypt.HashPassword(password, 4);
  27. oldPassword = password;
  28. }
  29. if (oldPassword == null) oldPassword = password;
  30. DynamicEntity.Password = oldPassword;
  31. View.HasSave = true;
  32. string firstName = DynamicEntity.FirstName;
  33. string lastName = DynamicEntity.LastName;
  34. DynamicEntity.FullName = lastName + firstName;
  35. }
  36. protected override void OnSaved()
  37. {
  38. base.OnSaved();
  39. DynamicEntity.Password = string.Empty;
  40. View.ClearPassword();
  41. }
  42. [CommandHandler("SelectRole")]
  43. public void OnUserRole(object sender, EventArgs e)
  44. {
  45. string key = EntityId + ":UserRoleListWorkItem";
  46. var detailView = WorkItem.Items.Get<UserRoleListView>(key);
  47. IEnumerable userRoleList = DynamicEntity.UserRoles;
  48. if (detailView == null)
  49. {
  50. var userRoles = (from object userRoleEntity in userRoleList
  51. select new SysBits.DynamicProxies.DynamicProxy(userRoleEntity)
  52. into dynamicEntity
  53. select new UserRole
  54. {
  55. Id = ((dynamic)dynamicEntity).Id,
  56. RoleID = ((dynamic)dynamicEntity).RoleId,
  57. UserId = ((dynamic)dynamicEntity).UserId
  58. }).ToList();
  59. WorkItem.State["UserRoleList"] = userRoles;
  60. detailView = WorkItem.Items.AddNew<UserRoleListView>(key);
  61. }
  62. else
  63. {
  64. detailView.ShowDialog();
  65. }
  66. if (detailView.DialogResult == DialogResult.OK)
  67. {
  68. SetUserRoleList();
  69. }
  70. }
  71. private void SetUserRoleList()
  72. {
  73. var userRoleListResult = WorkItem.State["UserRoleList"] as List<UserRole>;
  74. if (userRoleListResult == null) return;
  75. IList userRoleListAble = DynamicEntity.UserRoles;
  76. userRoleListAble.Clear();
  77. var userRoleType = DynamicTypeBuilder.Instance.GetDynamicType("UserRole");
  78. foreach (var userRole in userRoleListResult)
  79. {
  80. var userRoleEntity = Activator.CreateInstance(userRoleType);
  81. dynamic dynamicEntity = new SysBits.DynamicProxies.DynamicProxy(userRoleEntity);
  82. dynamicEntity.Id = userRole.Id;
  83. dynamicEntity.RoleId = userRole.RoleID;
  84. dynamicEntity.UserId = EntityId;
  85. userRoleListAble.Add(userRoleEntity);
  86. }
  87. }
  88. #endregion
  89. protected override void OnViewSet()
  90. {
  91. base.OnViewSet();
  92. RegisterCommand("DetailGeneralPageGroup", "SelectRole", "Role", "", "Role");
  93. }
  94. protected override void BindData(object data)
  95. {
  96. oldPassword = DynamicEntity.Password;
  97. DynamicEntity.Password = string.Empty;
  98. base.BindData(data);
  99. }
  100. private void RegisterCommand(string groupName, string commandName, string imageName, string overlay, string caption)
  101. {
  102. var localizedCaption = Properties.Resources.ResourceManager.GetString(caption);
  103. var buttonItem = new BarButtonItemEx(imageName, overlay) { Caption = localizedCaption };
  104. if (WorkItem.Commands[commandName] != null)
  105. {
  106. WorkItem.Commands[commandName].AddInvoker(buttonItem, "ItemClick");
  107. }
  108. buttonItem.Name = commandName;
  109. WorkItem.UIExtensionSites[groupName].Add(buttonItem);
  110. }
  111. protected override object GetEntity()
  112. {
  113. var entity = DynamicDataServiceContext.GetOrNew(EntityName, EntityId, "UserRoles,CreatedBy,ModifiedBy");
  114. return entity;
  115. }
  116. }
  117. }