I am just a baby in GWT and have tried to implement a small login app which has a login page, a main screen, a withdraw & a deposit page. I want my user to log-in before using any module (if he has bookmarked them). I am not concerned about UI for now, only module called and login. If a user uses #deposit page before logging in, I am not able to send him to deposit module after logging in since History.back() takes him out of the application even if I add the deposit module as new History Item.
Please help me improve the code n find out d flaws n bad practices(There r many).
All classes r in d same package
TestHistory.java
public class TestHistory implements EntryPoint, ValueChangeHandler<String> {
static boolean isLoggedIn = false;
public void onModuleLoad()
{
History.addValueChangeHandler(this);
String startToken = History.getToken();
System.out.println("onModuleLoad Called..... start token= ***"+startToken+"***");
if(!isLoggedIn)
{
if(startToken.isEmpty() || "login".equals(startToken)) //1st time opened the site normally
new Login().display(false);
else {
History.newItem(startToken,true); //user uses some bookmarked page(token)
new Login().display(true); //true, bcz user will be redirected to this token after successful login
}
//History.fireCurrentHistoryState();
}
else {
Label displayLabel = new Label("This is the Main Screen");
RootPanel.get().add(displayLabel);
}
}
@Override
public void onValueChange(ValueChangeEvent<String> event) {
String token = event.getValue();
System.out.println("onValueChange called with token = ***"+token+"***");
if(!isLoggedIn)
{
if(token.isEmpty() || "login".equals(token)) //1st time opened the site normally
new Login().display(false);
else {
History.newItem(token,true); //user uses some bookmarked page(token)
new Login().display(true);
}
}
else
{
if(token.isEmpty() || "login".equals(token))
{
if(isLoggedIn)
Window.alert("Ur already logged in!!!");
else
new Login().display(false);
}
else if("withdraw".equals(token))
new Withdraw().display();
else if("deposit".equals(token))
new Deposit().display();
else //token not clear
Window.alert("Unrecognized token=" + token);
}
}
}
Login.java
public class Login {
void display(final boolean hasTypedSomeToken) //Process login
{
System.out.println("login display called");
Label displayLabel = new Label("This is the Login Page");
Label enterName = new Label("Enter ur name");
final TextBox txtName = new TextBox();
Label enterPasswd = new Label("Enter ur Passwd");
final TextBox txtPasswd = new TextBox();
Button btnLogIn = new Button("Login", new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
/* Real app will check DB. Here we r jst chckng d txt fields hv value */
if(txtName.getValue().length()>0 && txtPasswd.getValue().length()>0)
{
if(hasTypedSomeToken) {
//History.back(); //send him to the URL(token) he bookmarked b4 loggin in
System.out.println(History.getToken());
}
else
new TestHistory().onModuleLoad();
TestHistory.isLoggedIn = true;
}
}
});
RootPanel.get().add(displayLabel);
RootPanel.get().add(enterName);
RootPanel.get().add(txtName);
RootPanel.get().add(enterPasswd);
RootPanel.get().add(txtPasswd);
RootPanel.get().add(btnLogIn);
}
}
Deposit.java
public class Deposit {
void display()
{
System.out.println("deposit display called");
Label displayLabel = new Label("This is the Deposit Page");
RootPanel.get().add(displayLabel);
}
}
Withdraw.java same as Deposit.java.