/Saru-Shipment/src/com/digsarustudio/saru/erp/musaceae/client/widget/composite/login/LoginDialogView.java

https://bitbucket.org/act2017/saru-modules · Java · 288 lines · 166 code · 52 blank · 70 comment · 4 complexity · 371cd54300f6e67826b30102afc3dab7 MD5 · raw file

  1. /**
  2. *
  3. */
  4. package com.digsarustudio.saru.erp.musaceae.client.widget.composite.login;
  5. import com.digsarustudio.saru.erp.musaceae.client.mvp.presenter.Presenter;
  6. import com.google.gwt.core.client.GWT;
  7. import com.google.gwt.event.dom.client.ClickEvent;
  8. import com.google.gwt.event.dom.client.KeyCodes;
  9. import com.google.gwt.event.dom.client.KeyDownEvent;
  10. import com.google.gwt.resources.client.CssResource;
  11. import com.google.gwt.uibinder.client.UiBinder;
  12. import com.google.gwt.uibinder.client.UiField;
  13. import com.google.gwt.uibinder.client.UiHandler;
  14. import com.google.gwt.user.client.ui.DialogBox;
  15. import com.google.gwt.user.client.ui.Label;
  16. import com.google.gwt.user.client.ui.PasswordTextBox;
  17. import com.google.gwt.user.client.ui.PushButton;
  18. import com.google.gwt.user.client.ui.TextBox;
  19. import com.google.gwt.user.client.ui.Widget;
  20. /**
  21. * The user login Dialog
  22. *
  23. * @author Otto Hung <digsarustudio@gmail.com>
  24. * @since 1.0.3
  25. * @version 1.0.10
  26. * <br>
  27. * Note:<br>
  28. * 1.0.10 -> Bug Fixing: fail to reset password.<br>
  29. *
  30. */
  31. public class LoginDialogView extends DialogBox implements LoginDialogPresenter.Display{
  32. private final String WRONG_USERNAME_PASSWORD = "User name and password do not match. Please ensure the lowercase or uppercase of characters are right.";
  33. private static LoginDialogUiBinder uiBinder = GWT.create(LoginDialogUiBinder.class);
  34. interface LoginDialogUiBinder extends UiBinder<Widget, LoginDialogView> {
  35. }
  36. interface Styling extends CssResource{
  37. }
  38. @UiField Styling style;
  39. @UiField TextBox userName;
  40. @UiField PasswordTextBox password;
  41. @UiField PushButton loginBtn;
  42. @UiField PushButton resetPwdBtn;
  43. @UiField PushButton forgotPwdBtn;
  44. @UiField Label hint;
  45. private LoginDialogPresenter presenter = null;
  46. /**
  47. * Because this class has a default constructor, it can
  48. * be used as a binder template. In other words, it can be used in other
  49. * *.ui.xml files as follows:
  50. * <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
  51. * xmlns:g="urn:import:**user's package**">
  52. * <g:**UserClassName**>Hello!</g:**UserClassName>
  53. * </ui:UiBinder>
  54. * Note that depending on the widget that is used, it may be necessary to
  55. * implement HasHTML instead of HasText.
  56. */
  57. public LoginDialogView() {
  58. setWidget(uiBinder.createAndBindUi(this));
  59. this.init();
  60. }
  61. @UiHandler("loginBtn")
  62. protected void onLoginClickEvent(ClickEvent event) {
  63. this.onLogin(this.userName.getText(), this.password.getText());
  64. }
  65. @UiHandler("password")
  66. protected void onButtonKeyDownClickEvent(KeyDownEvent event) {
  67. if( event.getNativeKeyCode() != KeyCodes.KEY_ENTER ){
  68. return;
  69. }
  70. this.onLogin(this.getUserName(), this.getPassword());
  71. }
  72. @UiHandler("cancelBtn")
  73. protected void onLoginCancelClickEvent(ClickEvent event) {
  74. this.hide();
  75. this.presenter.onCancel();
  76. }
  77. @UiHandler("resetPwdBtn")
  78. protected void onResetPasswordClickEvent(ClickEvent event) {
  79. this.hide();
  80. this.presenter.onResetPassword(this.getUserName());
  81. }
  82. @UiHandler("forgotPwdBtn")
  83. protected void onForgotPasswordClickEvent(ClickEvent event) {
  84. this.hide();
  85. /**
  86. * @since 1.0.10
  87. */
  88. this.presenter.onForgotPassword(this.getUserName());
  89. }
  90. private Boolean isValidUserName(String userName){
  91. return true;
  92. }
  93. private Boolean isValidPassword(String password){
  94. return true;
  95. }
  96. private void onLogin(String userName, String password){
  97. if( !this.isValidUserName(this.userName.getText()) ){
  98. this.setHint(this.WRONG_USERNAME_PASSWORD);
  99. this.showHint();
  100. return;
  101. }
  102. if( !this.isValidPassword(this.password.getText()) ){
  103. this.setHint(this.WRONG_USERNAME_PASSWORD);
  104. this.showHint();
  105. return;
  106. }
  107. this.presenter.onLogin(this.userName.getText(), this.password.getText());
  108. }
  109. private void showHint(){
  110. this.hint.setVisible(true);
  111. }
  112. public void setHint(String hint){
  113. this.hint.setText(hint);
  114. }
  115. /* (non-Javadoc)
  116. * @see com.digsarustudio.musa.widget.composite.LoginPresenter.Display#clear()
  117. */
  118. @Override
  119. public void clear() {
  120. this.userName.setText("");
  121. this.password.setText("");
  122. this.hint.setText("");
  123. this.resetButtonState();
  124. }
  125. /* (non-Javadoc)
  126. * @see com.digsarustudio.musa.widget.composite.LoginPresenter.Display#reset()
  127. */
  128. @Override
  129. public void reset() {
  130. this.userName.setText("");
  131. this.password.setText("");
  132. this.hint.setText("");
  133. this.resetButtonState();
  134. }
  135. /* (non-Javadoc)
  136. * @see com.digsarustudio.musa.widget.composite.LoginPresenter.Display#onFailToLogin(java.lang.String)
  137. */
  138. @Override
  139. public void onFailToLogin(String message) {
  140. this.setHint(message);
  141. this.hint.setVisible(true);
  142. }
  143. /* (non-Javadoc)
  144. *
  145. */
  146. @Override
  147. public void setPresenter(Presenter presenter) {
  148. this.presenter =(LoginDialogPresenter)presenter;
  149. }
  150. /* (non-Javadoc)
  151. * @see com.digsarustudio.musa.widget.composite.LoginDialogPresenter.Display#showDialog()
  152. */
  153. @Override
  154. public void showDialog() {
  155. this.clear();
  156. this.center();
  157. this.show();
  158. }
  159. /* (non-Javadoc)
  160. * @see com.digsarustudio.musa.widget.composite.LoginDialogPresenter.Display#hideDialog()
  161. */
  162. @Override
  163. public void hideDialog() {
  164. this.hide();
  165. }
  166. /* (non-Javadoc)
  167. * @see com.digsarustudio.musa.widget.composite.login.LoginDialogPresenter.Display#showResetPasswordBtn()
  168. */
  169. @Override
  170. public void showResetPasswordBtn() {
  171. this.resetPwdBtn.setVisible(true);
  172. this.resetPwdBtn.setFocus(true);
  173. }
  174. /* (non-Javadoc)
  175. * @see com.digsarustudio.musa.widget.composite.login.LoginDialogPresenter.Display#hideResetPasswordBtn()
  176. */
  177. @Override
  178. public void hideResetPasswordBtn() {
  179. this.resetPwdBtn.setVisible(false);
  180. }
  181. /* (non-Javadoc)
  182. * @see com.digsarustudio.musa.widget.composite.login.LoginDialogPresenter.Display#showForgotPasswordBtn()
  183. */
  184. @Override
  185. public void showForgotPasswordBtn() {
  186. this.forgotPwdBtn.setVisible(true);
  187. }
  188. /* (non-Javadoc)
  189. * @see com.digsarustudio.musa.widget.composite.login.LoginDialogPresenter.Display#hideForgotPasswordBtn()
  190. */
  191. @Override
  192. public void hideForgotPasswordBtn() {
  193. this.forgotPwdBtn.setVisible(false);
  194. }
  195. /* (non-Javadoc)
  196. * @see com.digsarustudio.musa.widget.composite.login.LoginDialogPresenter.Display#getUserName()
  197. */
  198. @Override
  199. public String getUserName() {
  200. String name = this.userName.getText().trim();
  201. return name;
  202. }
  203. /* (non-Javadoc)
  204. * @see com.digsarustudio.musa.widget.composite.login.LoginDialogPresenter.Display#getPassword()
  205. */
  206. @Override
  207. public String getPassword() {
  208. String pwd = this.password.getText().trim();
  209. return pwd;
  210. }
  211. /* (non-Javadoc)
  212. * @see com.digsarustudio.musa.widget.composite.login.LoginDialogPresenter.Display#setIsPasswordExpired()
  213. */
  214. @Override
  215. public void setIsPasswordExpired() {
  216. this.resetButtonState();
  217. this.showResetPasswordBtn();
  218. }
  219. /* (non-Javadoc)
  220. * @see com.digsarustudio.musa.widget.composite.login.LoginDialogPresenter.Display#setIsWrongPassword()
  221. */
  222. @Override
  223. public void setIsWrongPassword() {
  224. this.resetButtonState();
  225. this.showForgotPasswordBtn();
  226. }
  227. private void init(){
  228. this.setAnimationEnabled(false);
  229. this.setText("Login");
  230. this.resetButtonState();
  231. }
  232. private void resetButtonState() {
  233. this.hideResetPasswordBtn();
  234. this.hideForgotPasswordBtn();
  235. }
  236. }