Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gui-0.7 - Show username in window title of Feed- and ProfileWindow #16

Open
wants to merge 2 commits into
base: 0.7
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
2011-07-21 Sven Drieling

* Show username in window title of Feed- and ProfileWindow (Daniel Renfer, <http://onesocialweb.uservoice.com/forums/102807-general/suggestions/1776833-include-the-authenticated-user-s-name-on-the-web-c>)
16 changes: 16 additions & 0 deletions src/main/java/org/onesocialweb/gwt/client/OswClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
import org.onesocialweb.gwt.client.ui.dialog.LoginDialog;
import org.onesocialweb.gwt.client.ui.menu.MainMenu;
import org.onesocialweb.gwt.client.ui.menu.MenuCommand;
import org.onesocialweb.gwt.client.ui.window.AbstractWindow;
import org.onesocialweb.gwt.client.ui.window.FeedWindow;
import org.onesocialweb.gwt.client.util.OSWUrlBuilder;
import org.onesocialweb.gwt.service.OswService;
import org.onesocialweb.gwt.service.OswServiceFactory;
Expand Down Expand Up @@ -181,6 +183,17 @@ public void handleLogin(boolean success) {
if (success) {
LoginDialog.getInstance().hide();
createSession();

// TODO Use the first or the commented version?
AbstractWindow w = currentApplication.getWindow(0);
if(null != w) {
// Shows window title with login name from LoginDialog.loginJID
w.repaint();
}
// if(null != w && w instanceof FeedWindow) {
// // Update window title: Gets loginJID from LoginDialog.loginJID
// w.setWindowTitle(uiText.Activities());
// }
}
}
});
Expand Down Expand Up @@ -270,6 +283,9 @@ private void destroySession() {
// clear the local storage
Storage.getLocalStorage().clear();

// clear loginJID
LoginDialog.loginJID = null;

// show login dialog
showLogin();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ public void removeWindow(AbstractWindow window) {
}
}

protected AbstractWindow getWindow(int slotId) {
return windows.get(slotId);
public AbstractWindow getWindow(int slotId) {
return windows.get(getSlot(slotId));
}

protected Slot getSlot(int slotId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
import eu.maydu.gwt.validation.client.validators.strings.EmailValidator;

public class LoginDialog extends AbstractDialog {
public static String loginJID = null;

// internationalization
private UserInterfaceText uiText = (UserInterfaceText) GWT.create(UserInterfaceText.class);
Expand Down Expand Up @@ -365,6 +366,7 @@ private void processLogin() {

@Override
public void onFailure() {
loginJID = null;
loginError
.setText(uiText.LoginFailure());
loginError.setVisible(true);
Expand All @@ -384,6 +386,7 @@ public void onSuccess(Object result) {
.getValue());
}

loginJID = usernameText.getValue() + "@" + OswClient.getInstance().getPreference("xmpp_domain");
complete();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@

import org.onesocialweb.gwt.client.OswClient;
import org.onesocialweb.gwt.client.i18n.UserInterfaceText;
import org.onesocialweb.gwt.client.ui.dialog.LoginDialog;
import org.onesocialweb.gwt.client.ui.event.ComponentEvent;
import org.onesocialweb.gwt.client.ui.event.ComponentListener;
import org.onesocialweb.gwt.client.ui.widget.activity.InboxPanel;
import org.onesocialweb.gwt.client.ui.widget.compose.NewActivityPanel;
import org.onesocialweb.gwt.service.OswServiceFactory;
import org.onesocialweb.gwt.service.RequestCallback;
import org.onesocialweb.model.vcard4.Profile;

import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
Expand All @@ -42,6 +45,8 @@ public class FeedWindow extends AbstractWindow {
private NewActivityPanel statusPanel;
private StatusPanelListener statusPanelListener;

private String tmpWindowTitle; // To access window title in callback

@Override
protected void onInit() {
composeWindow();
Expand All @@ -62,6 +67,40 @@ protected void onDestroy() {
statusPanel.removeComponentListener(statusPanelListener);
}


public void setWindowTitle(String windowTitle, String name) {
super.setWindowTitle(windowTitle + ", " + name + "?"); // TODO Use message {}
}

@Override
public void setWindowTitle(String windowTitle) {
// Access in callback
tmpWindowTitle = windowTitle;

if(null != LoginDialog.loginJID) {
OswServiceFactory.getService().getProfile(LoginDialog.loginJID,
new RequestCallback<Profile>() {
@Override
public void onFailure() {
setWindowTitle(tmpWindowTitle, LoginDialog.loginJID);
}

@Override
public void onSuccess(Profile result) {
// use display name
final String fullName = result.getFullName();
if (fullName != null && fullName.length() > 0) {
setWindowTitle(tmpWindowTitle, fullName);
} else {
setWindowTitle(tmpWindowTitle, LoginDialog.loginJID);
}
}
});
} else {
super.setWindowTitle(windowTitle);
}
}

private void composeWindow() {

// Setup window elements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void setJID(String jid) {

// setup window
setStyle("profileWindow");
setWindowTitle(uiText.Profile());
setWindowTitle(uiText.Profile() + " " + jid);
enableClose();

// set profile ID
Expand Down Expand Up @@ -151,6 +151,12 @@ public void onFailure() {
public void onSuccess(Profile result) {
task.complete("", Status.succes);
model = result;

final String fullname = model.getFullName();
if(null != fullname && fullname.length() > 0) {
setWindowTitle(uiText.Profile() + " " + fullname);
}

composeWindow();
hasProfile = true;
}
Expand Down
1 change: 1 addition & 0 deletions war/themes/osw/styles/core.css
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@ img.logo {
border-top-left-radius: 5px;
-moz-border-radius-topleft: 5px;
-webkit-border-top-left-radius: 5px;
max-width: 300px;
margin: 0;
}

Expand Down