Skip to content
Snippets Groups Projects
Commit 9d6ebbaa authored by buczekp's avatar buczekp
Browse files

minor: use GWT handler to show confirmation message on exit

SVN: 15847
parent fdebd2c0
No related branches found
No related tags found
No related merge requests found
...@@ -283,7 +283,7 @@ public class Client implements EntryPoint, ValueChangeHandler<String> ...@@ -283,7 +283,7 @@ public class Client implements EntryPoint, ValueChangeHandler<String>
viewContext.initDisplaySettingsManager(); viewContext.initDisplaySettingsManager();
dispatcher.dispatch(AppEvents.INIT); dispatcher.dispatch(AppEvents.INIT);
afterInitAction.execute(); afterInitAction.execute();
GWTUtils.setAllowConfirmOnExit(true); GWTUtils.setConfirmExitMessage();
} }
} }
} }
......
...@@ -26,19 +26,19 @@ final class LogoutCallback extends AbstractAsyncCallback<Void> ...@@ -26,19 +26,19 @@ final class LogoutCallback extends AbstractAsyncCallback<Void>
LogoutCallback(IViewContext<ICommonClientServiceAsync> viewContext) LogoutCallback(IViewContext<ICommonClientServiceAsync> viewContext)
{ {
super(viewContext); super(viewContext);
System.out.println("CREATE "+this); System.out.println("CREATE " + this);
} }
@Override @Override
protected void finalize() throws Throwable protected void finalize() throws Throwable
{ {
System.out.println("FINALIZE "+this); System.out.println("FINALIZE " + this);
} }
@Override @Override
public final void process(final Void result) public final void process(final Void result)
{ {
viewContext.getPageController().reload(true); viewContext.getPageController().reload(true);
GWTUtils.setAllowConfirmOnExit(false); GWTUtils.removeConfirmExitMessage();
} }
} }
\ No newline at end of file
...@@ -29,6 +29,9 @@ import com.extjs.gxt.ui.client.widget.tips.ToolTipConfig; ...@@ -29,6 +29,9 @@ import com.extjs.gxt.ui.client.widget.tips.ToolTipConfig;
import com.extjs.gxt.ui.client.widget.treegrid.TreeGrid; import com.extjs.gxt.ui.client.widget.treegrid.TreeGrid;
import com.google.gwt.core.client.GWT; import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.DeferredCommand; import com.google.gwt.user.client.DeferredCommand;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.Window.ClosingEvent;
import com.google.gwt.user.client.Window.ClosingHandler;
import com.google.gwt.user.client.ui.ListBox; import com.google.gwt.user.client.ui.ListBox;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.model.ModelDataPropertyNames; import ch.systemsx.cisd.openbis.generic.client.web.client.application.model.ModelDataPropertyNames;
...@@ -268,6 +271,32 @@ public final class GWTUtils ...@@ -268,6 +271,32 @@ public final class GWTUtils
"$", "-DOLLAR-"); "$", "-DOLLAR-");
} }
// confirm on exit message
private final static String CONFIRM_EXIT_MSG =
"WARNING: By doing this you will in fact leave openBIS!";
public final static void setConfirmExitMessage()
{
setConfirmExitMessage(CONFIRM_EXIT_MSG);
}
public final static void removeConfirmExitMessage()
{
setConfirmExitMessage(null);
}
private final static void setConfirmExitMessage(final String msgOrNull)
{
Window.addWindowClosingHandler(new ClosingHandler()
{
public void onWindowClosing(ClosingEvent event)
{
event.setMessage(msgOrNull);
}
});
}
// //
// native JavaScript // native JavaScript
// //
...@@ -284,15 +313,6 @@ public final class GWTUtils ...@@ -284,15 +313,6 @@ public final class GWTUtils
return search.indexOf("?") == 0 ? search.substring(1) : search; return search.indexOf("?") == 0 ? search.substring(1) : search;
}-*/; }-*/;
/**
* Depending on specified <var>allowConfirmOnExit</var> when user tries to exit application
* confirmation dialog will or will not appear.
*/
public final static native void setAllowConfirmOnExit(boolean allowConfirmOnExit)
/*-{
$wnd.allowConfirmOnExit = allowConfirmOnExit;
}-*/;
/** /**
* Tooltip template displayed when mouse is over drop down list. * Tooltip template displayed when mouse is over drop down list.
*/ */
......
...@@ -6,23 +6,12 @@ ...@@ -6,23 +6,12 @@
<link rel="shortcut icon" href="images/favicon.ico" /> <link rel="shortcut icon" href="images/favicon.ico" />
<link rel="icon" type="image/png" href="images/favicon.png" /> <link rel="icon" type="image/png" href="images/favicon.png" />
<link rel="stylesheet" type="text/css" href="resources/css/gxt-all.css" /> <link rel="stylesheet" type="text/css" href="resources/css/gxt-all.css" />
<!-- <!--
// This script loads your compiled module. If you add any GWT meta tags, they must be added before this line. // This script loads your compiled module. If you add any GWT meta tags, they must be added before this line.
--> -->
<script language="javascript" <script language="javascript"
src="ch.systemsx.cisd.openbis.OpenBIS.nocache.js"></script> src="ch.systemsx.cisd.openbis.OpenBIS.nocache.js"></script>
<script language="JavaScript">
// confirmation on exit depends on whether user is logged in
var allowConfirmOnExit = false;
window.onbeforeunload = confirmExit;
function confirmExit()
{
if (allowConfirmOnExit) {
return "WARNING: By doing this you will in fact leave openBIS!";
}
}
</script>
</head> </head>
<!-- <!--
// The body can have arbitrary html, or you can leave the body empty if you want to create a completely dynamic ui. // The body can have arbitrary html, or you can leave the body empty if you want to create a completely dynamic ui.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment