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

[LMS-979] implemented ('Only show the warning message on closing the window when not logged in')

SVN: 11575
parent 1bf36c51
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,7 @@ import com.extjs.gxt.ui.client.mvc.Dispatcher; ...@@ -20,6 +20,7 @@ import com.extjs.gxt.ui.client.mvc.Dispatcher;
import ch.systemsx.cisd.openbis.generic.client.web.client.ICommonClientService; import ch.systemsx.cisd.openbis.generic.client.web.client.ICommonClientService;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.framework.AppEvents; import ch.systemsx.cisd.openbis.generic.client.web.client.application.framework.AppEvents;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.GWTUtils;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IDelegatedAction; import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IDelegatedAction;
import ch.systemsx.cisd.openbis.generic.client.web.client.dto.SessionContext; import ch.systemsx.cisd.openbis.generic.client.web.client.dto.SessionContext;
...@@ -60,6 +61,7 @@ public final class SessionContextCallback extends AbstractAsyncCallback<SessionC ...@@ -60,6 +61,7 @@ public final class SessionContextCallback extends AbstractAsyncCallback<SessionC
viewContext.getModel().setSessionContext(sessionContext); viewContext.getModel().setSessionContext(sessionContext);
dispatcher.dispatch(AppEvents.INIT); dispatcher.dispatch(AppEvents.INIT);
afterInitAction.execute(); afterInitAction.execute();
GWTUtils.setAllowConfirmOnExit(true);
} }
} }
......
...@@ -19,6 +19,7 @@ package ch.systemsx.cisd.openbis.generic.client.web.client.application.menu.user ...@@ -19,6 +19,7 @@ package ch.systemsx.cisd.openbis.generic.client.web.client.application.menu.user
import ch.systemsx.cisd.openbis.generic.client.web.client.ICommonClientServiceAsync; import ch.systemsx.cisd.openbis.generic.client.web.client.ICommonClientServiceAsync;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAsyncCallback; import ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAsyncCallback;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.IViewContext; import ch.systemsx.cisd.openbis.generic.client.web.client.application.IViewContext;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.GWTUtils;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IDelegatedAction; import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IDelegatedAction;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.DisplaySettings; import ch.systemsx.cisd.openbis.generic.shared.basic.dto.DisplaySettings;
...@@ -54,6 +55,7 @@ public class LogoutAction implements IDelegatedAction ...@@ -54,6 +55,7 @@ public class LogoutAction implements IDelegatedAction
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);
} }
} }
} }
\ No newline at end of file
...@@ -231,21 +231,35 @@ public final class GWTUtils ...@@ -231,21 +231,35 @@ public final class GWTUtils
return (O) (selectedModel != null ? selectedModel.get(ModelDataPropertyNames.OBJECT) : null); return (O) (selectedModel != null ? selectedModel.get(ModelDataPropertyNames.OBJECT) : null);
} }
/** Returns base URL to the index page of the application. */
public final static String getBaseIndexURL()
{
return GWT.getModuleBaseURL() + "index.html";
}
//
// native JavaScript
//
/** /**
* Returns the <i>search</i> of a <i>Javascript</i> window location (without the starting * Returns the <i>search</i> of a <i>Javascript</i> window location (without the starting
* <code>?</code> if any). * <code>?</code> if any).
* *
* @return something like <code>key1=value1&key2=value2</code>. * @return something like <code>key1=value1&key2=value2</code>.
*/ */
public final static native String getParamString() /*-{ public final static native String getParamString()
var search = $wnd.location.search; /*-{
return search.indexOf("?") == 0 ? search.substring(1) : search; var search = $wnd.location.search;
}-*/; return search.indexOf("?") == 0 ? search.substring(1) : search;
}-*/;
/** Returns base URL to the index page of the application. */ /**
public final static String getBaseIndexURL() * Depending on specified <var>allowConfirmOnExit</var> when user tries to exit application
{ * confirmation dialog will or will not appear.
return GWT.getModuleBaseURL() + "index.html"; */
} public final static native void setAllowConfirmOnExit(boolean allowConfirmOnExit)
/*-{
$wnd.setAllowConfirmOnExit(allowConfirmOnExit);
}-*/;
} }
...@@ -8,11 +8,19 @@ ...@@ -8,11 +8,19 @@
--> -->
<script language="javascript" src="ch.systemsx.cisd.openbis.OpenBIS.nocache.js"></script> <script language="javascript" src="ch.systemsx.cisd.openbis.OpenBIS.nocache.js"></script>
<script language="JavaScript"> <script language="JavaScript">
// confirmation on exit depends on whether user is logged in
var allowConfirmOnExit = false;
window.onbeforeunload = confirmExit; window.onbeforeunload = confirmExit;
function confirmExit() function confirmExit()
{ {
return "WARNING: By doing this you will in fact leave openBIS!" if (allowConfirmOnExit) {
return "WARNING: By doing this you will in fact leave openBIS!";
}
} }
function setAllowConfirmOnExit(value)
{
allowConfirmOnExit = value;
}
</script> </script>
<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" />
......
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