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

minor: show last opened tab on startup

SVN: 20187
parent 5b9d8d01
No related branches found
No related tags found
No related merge requests found
Showing
with 126 additions and 38 deletions
...@@ -29,6 +29,7 @@ import com.google.gwt.user.client.History; ...@@ -29,6 +29,7 @@ import com.google.gwt.user.client.History;
import com.google.gwt.user.client.Window; import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.rpc.ServiceDefTarget; import com.google.gwt.user.client.rpc.ServiceDefTarget;
import ch.systemsx.cisd.common.shared.basic.utils.StringUtils;
import ch.systemsx.cisd.openbis.generic.client.web.client.IClientServiceAsync; import ch.systemsx.cisd.openbis.generic.client.web.client.IClientServiceAsync;
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.ICommonClientServiceAsync; import ch.systemsx.cisd.openbis.generic.client.web.client.ICommonClientServiceAsync;
...@@ -56,6 +57,7 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.dto.ApplicationInfo; ...@@ -56,6 +57,7 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.dto.ApplicationInfo;
import ch.systemsx.cisd.openbis.generic.client.web.client.dto.SessionContext; import ch.systemsx.cisd.openbis.generic.client.web.client.dto.SessionContext;
import ch.systemsx.cisd.openbis.generic.shared.basic.BasicConstant; import ch.systemsx.cisd.openbis.generic.shared.basic.BasicConstant;
import ch.systemsx.cisd.openbis.generic.shared.basic.ViewMode; import ch.systemsx.cisd.openbis.generic.shared.basic.ViewMode;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.DisplaySettings;
/** /**
* The {@link EntryPoint} implementation. * The {@link EntryPoint} implementation.
...@@ -314,11 +316,23 @@ public class Client implements EntryPoint, ValueChangeHandler<String> ...@@ -314,11 +316,23 @@ public class Client implements EntryPoint, ValueChangeHandler<String>
// also for the second user. // also for the second user.
viewContext.initDisplaySettingsManager(); viewContext.initDisplaySettingsManager();
dispatcher.dispatch(AppEvents.INIT); dispatcher.dispatch(AppEvents.INIT);
afterInitAction.execute();
if (viewContext.isSimpleMode() == false) if (viewContext.isSimpleMode() == false)
{ {
GWTUtils.setConfirmExitMessage(); GWTUtils.setConfirmExitMessage();
} }
DisplaySettings displaySettings =
viewContext.getModel().getSessionContext().getDisplaySettings();
String lastHistoryOrNull = displaySettings.getLastHistoryTokenOrNull();
if (viewContext.isSimpleMode() == false && StringUtils.isBlank(History.getToken())
&& StringUtils.isBlank(lastHistoryOrNull) == false)
{
History.newItem(lastHistoryOrNull);
} else
{
afterInitAction.execute();
}
} }
} }
} }
......
...@@ -104,7 +104,8 @@ public final class ComponentProvider ...@@ -104,7 +104,8 @@ public final class ComponentProvider
private ITabItem createSimpleTab(String title, Component component, private ITabItem createSimpleTab(String title, Component component,
boolean isCloseConfirmationNeeded) boolean isCloseConfirmationNeeded)
{ {
return DefaultTabItem.createUnaware(title, component, isCloseConfirmationNeeded); return DefaultTabItem.createUnaware(title, component, isCloseConfirmationNeeded,
viewContext);
} }
public AbstractTabItemFactory getSampleBrowser(final String initialGroupOrNull, public AbstractTabItemFactory getSampleBrowser(final String initialGroupOrNull,
......
...@@ -42,14 +42,17 @@ public class DefaultTabItem implements ITabItem ...@@ -42,14 +42,17 @@ public class DefaultTabItem implements ITabItem
private final LastModificationStateUpdater lastModificationStateUpdaterOrNull; private final LastModificationStateUpdater lastModificationStateUpdaterOrNull;
private final LastHistoryTokenUpdater historyTokenUpdater;
/** /**
* Creates a tab with the specified {@link Component}. The tab is unaware of database * Creates a tab with the specified {@link Component}. The tab is unaware of database
* modifications and will not be automatically refreshed if changes occur. * modifications and will not be automatically refreshed if changes occur.
*/ */
public static ITabItem createUnaware(final String title, final Component component, public static ITabItem createUnaware(final String title, final Component component,
boolean isCloseConfirmationNeeded) boolean isCloseConfirmationNeeded, IViewContext<?> viewContext)
{ {
return new DefaultTabItem(title, component, null, null, isCloseConfirmationNeeded); return new DefaultTabItem(viewContext, title, component, null, null,
isCloseConfirmationNeeded);
} }
/** /**
...@@ -57,10 +60,11 @@ public class DefaultTabItem implements ITabItem ...@@ -57,10 +60,11 @@ public class DefaultTabItem implements ITabItem
* modifications and will not be automatically refreshed if changes occur. * modifications and will not be automatically refreshed if changes occur.
*/ */
public static ITabItem createUnaware(final ContentPanel component, public static ITabItem createUnaware(final ContentPanel component,
boolean isCloseConfirmationNeeded) boolean isCloseConfirmationNeeded, IViewContext<?> viewContext)
{ {
String title = getTabTitle(component); String title = getTabTitle(component);
return new DefaultTabItem(title, component, null, null, isCloseConfirmationNeeded); return new DefaultTabItem(viewContext, title, component, null, null,
isCloseConfirmationNeeded);
} }
private static String getTabTitle(ContentPanel contentPanel) private static String getTabTitle(ContentPanel contentPanel)
...@@ -77,7 +81,7 @@ public class DefaultTabItem implements ITabItem ...@@ -77,7 +81,7 @@ public class DefaultTabItem implements ITabItem
final DatabaseModificationAwareComponent component, IViewContext<?> viewContext, final DatabaseModificationAwareComponent component, IViewContext<?> viewContext,
boolean isCloseConfirmationNeeded) boolean isCloseConfirmationNeeded)
{ {
return create(title, component.get(), viewContext, component, null, return create(viewContext, title, component.get(), component, null,
isCloseConfirmationNeeded); isCloseConfirmationNeeded);
} }
...@@ -86,18 +90,18 @@ public class DefaultTabItem implements ITabItem ...@@ -86,18 +90,18 @@ public class DefaultTabItem implements ITabItem
{ {
boolean isCloseConfirmationNeeded = false; boolean isCloseConfirmationNeeded = false;
IDelegatedAction disposer = createDisposer(component); IDelegatedAction disposer = createDisposer(component);
return create(title, component.getComponent(), viewContext, component, disposer, return create(viewContext, title, component.getComponent(), component, disposer,
isCloseConfirmationNeeded); isCloseConfirmationNeeded);
} }
private static DefaultTabItem create(final String title, final Component component, private static DefaultTabItem create(IViewContext<?> viewContext, final String title,
IViewContext<?> viewContext, IDatabaseModificationObserver modificationObserver, final Component component, IDatabaseModificationObserver modificationObserver,
IDelegatedAction disposerActionOrNull, boolean isCloseConfirmationNeeded) IDelegatedAction disposerActionOrNull, boolean isCloseConfirmationNeeded)
{ {
LastModificationStateUpdater updater = LastModificationStateUpdater stateUpdater =
new LastModificationStateUpdater(viewContext, modificationObserver); new LastModificationStateUpdater(viewContext, modificationObserver);
return new DefaultTabItem(title, component, updater, disposerActionOrNull, return new DefaultTabItem(viewContext, title, component, stateUpdater,
isCloseConfirmationNeeded); disposerActionOrNull, isCloseConfirmationNeeded);
} }
private static IDelegatedAction createDisposer(final IDisposableComponent disposableComponent) private static IDelegatedAction createDisposer(final IDisposableComponent disposableComponent)
...@@ -111,12 +115,14 @@ public class DefaultTabItem implements ITabItem ...@@ -111,12 +115,14 @@ public class DefaultTabItem implements ITabItem
}; };
} }
private DefaultTabItem(final String initialTitle, final Component component, private DefaultTabItem(IViewContext<?> viewContext, final String initialTitle,
final Component component,
LastModificationStateUpdater lastModificationStateUpdaterOrNull, LastModificationStateUpdater lastModificationStateUpdaterOrNull,
IDelegatedAction disposerActionOrNull, boolean isCloseConfirmationNeeded) IDelegatedAction disposerActionOrNull, boolean isCloseConfirmationNeeded)
{ {
assert initialTitle != null : "Unspecified title."; assert initialTitle != null : "Unspecified title.";
assert component != null : "Unspecified component."; assert component != null : "Unspecified component.";
this.historyTokenUpdater = new LastHistoryTokenUpdater(viewContext);
this.titleUpdater = new TabTitleUpdater(initialTitle); this.titleUpdater = new TabTitleUpdater(initialTitle);
this.component = component; this.component = component;
this.lastModificationStateUpdaterOrNull = lastModificationStateUpdaterOrNull; this.lastModificationStateUpdaterOrNull = lastModificationStateUpdaterOrNull;
...@@ -145,8 +151,12 @@ public class DefaultTabItem implements ITabItem ...@@ -145,8 +151,12 @@ public class DefaultTabItem implements ITabItem
return isCloseConfirmationNeeded; return isCloseConfirmationNeeded;
} }
public void onActivate() public void onActivate(String linkOrNull)
{ {
if (linkOrNull != null)
{
historyTokenUpdater.update(linkOrNull);
}
if (lastModificationStateUpdaterOrNull != null) if (lastModificationStateUpdaterOrNull != null)
{ {
lastModificationStateUpdaterOrNull.update(); lastModificationStateUpdaterOrNull.update();
......
...@@ -37,7 +37,7 @@ public interface ITabItem extends IClosableItem ...@@ -37,7 +37,7 @@ public interface ITabItem extends IClosableItem
* Usually refreshes the tab if it was detected that relevant database objects have changed. * Usually refreshes the tab if it was detected that relevant database objects have changed.
* </p> * </p>
*/ */
public void onActivate(); public void onActivate(String linkOrNull);
/** /**
* Returns true if the confirmation dialog should be displayed before closing the tab. * Returns true if the confirmation dialog should be displayed before closing the tab.
......
/*
* Copyright 2009 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic.client.web.client.application.framework;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.IViewContext;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.DisplaySettings;
/**
* @author Piotr Buczek
*/
class LastHistoryTokenUpdater
{
private final IViewContext<?> viewContext;
public LastHistoryTokenUpdater(IViewContext<?> viewContext)
{
this.viewContext = viewContext;
}
public void update(String historyToken)
{
DisplaySettings displaySettings =
viewContext.getModel().getSessionContext().getDisplaySettings();
displaySettings.setLastHistoryTokenOrNull(historyToken);
}
}
...@@ -85,9 +85,8 @@ public class MainTabPanel extends TabPanel implements IMainPanel ...@@ -85,9 +85,8 @@ public class MainTabPanel extends TabPanel implements IMainPanel
{ {
final Component mainComponent = WelcomePanelHelper.createWelcomePanel(viewContext, PREFIX); final Component mainComponent = WelcomePanelHelper.createWelcomePanel(viewContext, PREFIX);
final MainTabItem intro = final MainTabItem intro =
new MainTabItem( new MainTabItem(DefaultTabItem.createUnaware(BLANK_TAB_TITLE, mainComponent, false,
DefaultTabItem.createUnaware(BLANK_TAB_TITLE, mainComponent, false), viewContext), mainComponent.getId(), null, null);
mainComponent.getId(), null, null);
intro.setClosable(false); intro.setClosable(false);
return intro; return intro;
} }
...@@ -319,7 +318,7 @@ public class MainTabPanel extends TabPanel implements IMainPanel ...@@ -319,7 +318,7 @@ public class MainTabPanel extends TabPanel implements IMainPanel
{ {
if (be.getType().equals(Events.Select)) if (be.getType().equals(Events.Select))
{ {
tabItem.onActivate(); tabItem.onActivate(linkOrNull);
} }
} }
}; };
......
...@@ -41,7 +41,8 @@ public class HomeLocatorResolver extends AbstractViewLocatorResolver ...@@ -41,7 +41,8 @@ public class HomeLocatorResolver extends AbstractViewLocatorResolver
public ITabItem create() public ITabItem create()
{ {
return DefaultTabItem.createUnaware(getTabTitle(), WelcomePanelHelper return DefaultTabItem.createUnaware(getTabTitle(), WelcomePanelHelper
.createWelcomePanel(viewContext, MainPagePanel.PREFIX), false); .createWelcomePanel(viewContext, MainPagePanel.PREFIX), false,
viewContext);
} }
@Override @Override
......
...@@ -389,7 +389,8 @@ public class AttachmentBrowser extends AbstractSimpleBrowserGrid<AttachmentVersi ...@@ -389,7 +389,8 @@ public class AttachmentBrowser extends AbstractSimpleBrowserGrid<AttachmentVersi
public ITabItem create() public ITabItem create()
{ {
final Component component = helper.createVersionsPanel(versions); final Component component = helper.createVersionsPanel(versions);
return DefaultTabItem.createUnaware(getTabTitle(), component, false); return DefaultTabItem.createUnaware(getTabTitle(), component, false,
viewContext);
} }
@Override @Override
......
...@@ -118,10 +118,12 @@ public class ScriptGrid extends TypedTableGrid<Script> ...@@ -118,10 +118,12 @@ public class ScriptGrid extends TypedTableGrid<Script>
addButton(addScriptButton); addButton(addScriptButton);
Button editButton = Button editButton =
createSelectedItemButton(viewContext.getMessage(Dict.BUTTON_EDIT), createSelectedItemButton(
viewContext.getMessage(Dict.BUTTON_EDIT),
new ISelectedEntityInvoker<BaseEntityModel<TableModelRowWithObject<Script>>>() new ISelectedEntityInvoker<BaseEntityModel<TableModelRowWithObject<Script>>>()
{ {
public void invoke(BaseEntityModel<TableModelRowWithObject<Script>> selectedItem, public void invoke(
BaseEntityModel<TableModelRowWithObject<Script>> selectedItem,
boolean keyPressed) boolean keyPressed)
{ {
openEditor(selectedItem, keyPressed); openEditor(selectedItem, keyPressed);
...@@ -135,7 +137,8 @@ public class ScriptGrid extends TypedTableGrid<Script> ...@@ -135,7 +137,8 @@ public class ScriptGrid extends TypedTableGrid<Script>
new AbstractCreateDialogListener() new AbstractCreateDialogListener()
{ {
@Override @Override
protected Dialog createDialog(List<TableModelRowWithObject<Script>> scripts, protected Dialog createDialog(
List<TableModelRowWithObject<Script>> scripts,
IBrowserGridActionInvoker invoker) IBrowserGridActionInvoker invoker)
{ {
return new ScriptListDeletionConfirmationDialog(viewContext, return new ScriptListDeletionConfirmationDialog(viewContext,
...@@ -153,11 +156,12 @@ public class ScriptGrid extends TypedTableGrid<Script> ...@@ -153,11 +156,12 @@ public class ScriptGrid extends TypedTableGrid<Script>
{ {
return columnID.toLowerCase(); return columnID.toLowerCase();
} }
@Override @Override
protected ColumnDefsAndConfigs<TableModelRowWithObject<Script>> createColumnsDefinition() protected ColumnDefsAndConfigs<TableModelRowWithObject<Script>> createColumnsDefinition()
{ {
ColumnDefsAndConfigs<TableModelRowWithObject<Script>> schema = super.createColumnsDefinition(); ColumnDefsAndConfigs<TableModelRowWithObject<Script>> schema =
super.createColumnsDefinition();
schema.setGridCellRendererFor(ScriptColDefKind.DESCRIPTION.id(), schema.setGridCellRendererFor(ScriptColDefKind.DESCRIPTION.id(),
createMultilineStringCellRenderer()); createMultilineStringCellRenderer());
schema.setGridCellRendererFor(ScriptColDefKind.SCRIPT.id(), schema.setGridCellRendererFor(ScriptColDefKind.SCRIPT.id(),
...@@ -178,7 +182,8 @@ public class ScriptGrid extends TypedTableGrid<Script> ...@@ -178,7 +182,8 @@ public class ScriptGrid extends TypedTableGrid<Script>
} }
@Override @Override
protected void prepareExportEntities(TableExportCriteria<TableModelRowWithObject<Script>> exportCriteria, protected void prepareExportEntities(
TableExportCriteria<TableModelRowWithObject<Script>> exportCriteria,
AbstractAsyncCallback<String> callback) AbstractAsyncCallback<String> callback)
{ {
viewContext.getService().prepareExportScripts(exportCriteria, callback); viewContext.getService().prepareExportScripts(exportCriteria, callback);
...@@ -198,7 +203,8 @@ public class ScriptGrid extends TypedTableGrid<Script> ...@@ -198,7 +203,8 @@ public class ScriptGrid extends TypedTableGrid<Script>
DatabaseModificationKind.edit(ObjectKind.SCRIPT) }; DatabaseModificationKind.edit(ObjectKind.SCRIPT) };
} }
private void openEditor(BaseEntityModel<TableModelRowWithObject<Script>> selectedItem, boolean keyPressed) private void openEditor(BaseEntityModel<TableModelRowWithObject<Script>> selectedItem,
boolean keyPressed)
{ {
final Script script = selectedItem.getBaseObject().getObjectOrNull(); final Script script = selectedItem.getBaseObject().getObjectOrNull();
final TechId scriptId = TechId.create(script); final TechId scriptId = TechId.create(script);
...@@ -208,7 +214,8 @@ public class ScriptGrid extends TypedTableGrid<Script> ...@@ -208,7 +214,8 @@ public class ScriptGrid extends TypedTableGrid<Script>
public ITabItem create() public ITabItem create()
{ {
Component component = ScriptEditForm.create(viewContext, scriptId); Component component = ScriptEditForm.create(viewContext, scriptId);
return DefaultTabItem.createUnaware(getTabTitle(), component, true); return DefaultTabItem
.createUnaware(getTabTitle(), component, true, viewContext);
} }
@Override @Override
...@@ -249,8 +256,8 @@ public class ScriptGrid extends TypedTableGrid<Script> ...@@ -249,8 +256,8 @@ public class ScriptGrid extends TypedTableGrid<Script>
private final AbstractAsyncCallback<Void> callback; private final AbstractAsyncCallback<Void> callback;
public ScriptListDeletionConfirmationDialog( public ScriptListDeletionConfirmationDialog(
IViewContext<ICommonClientServiceAsync> viewContext, List<TableModelRowWithObject<Script>> data, IViewContext<ICommonClientServiceAsync> viewContext,
AbstractAsyncCallback<Void> callback) List<TableModelRowWithObject<Script>> data, AbstractAsyncCallback<Void> callback)
{ {
super(viewContext, data); super(viewContext, data);
this.viewContext = viewContext; this.viewContext = viewContext;
......
...@@ -58,6 +58,8 @@ public class DisplaySettings implements ISerializable ...@@ -58,6 +58,8 @@ public class DisplaySettings implements ISerializable
// For new users with clean display settings the debugging mode is disabled // For new users with clean display settings the debugging mode is disabled
private boolean debugging = false; private boolean debugging = false;
private String lastHistoryTokenOrNull;
private RealNumberFormatingParameters realNumberFormatingParameters = private RealNumberFormatingParameters realNumberFormatingParameters =
new RealNumberFormatingParameters(); new RealNumberFormatingParameters();
...@@ -222,4 +224,15 @@ public class DisplaySettings implements ISerializable ...@@ -222,4 +224,15 @@ public class DisplaySettings implements ISerializable
{ {
debugging = isDebugging; debugging = isDebugging;
} }
public String getLastHistoryTokenOrNull()
{
return lastHistoryTokenOrNull;
}
public void setLastHistoryTokenOrNull(String lastHistoryOrNull)
{
this.lastHistoryTokenOrNull = lastHistoryOrNull;
}
} }
...@@ -126,7 +126,8 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV ...@@ -126,7 +126,8 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV
{ {
final DemoSampleViewer sampleViewer = final DemoSampleViewer sampleViewer =
new DemoSampleViewer(getViewContext(), sampleId); new DemoSampleViewer(getViewContext(), sampleId);
return DefaultTabItem.createUnaware(getTabTitle(), sampleViewer, false); return DefaultTabItem.createUnaware(getTabTitle(), sampleViewer, false,
getViewContext());
} }
@Override @Override
...@@ -181,7 +182,7 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV ...@@ -181,7 +182,7 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV
@Override @Override
public ITabItem create() public ITabItem create()
{ {
return createDummyTab(getTabTitle()); return createDummyTab(getTabTitle(), getViewContext());
} }
@Override @Override
...@@ -212,7 +213,7 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV ...@@ -212,7 +213,7 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV
} }
private final static class ExperimentClientPlugin extends private final class ExperimentClientPlugin extends
ClientPluginAdapter<ExperimentType, IIdAndCodeHolder> ClientPluginAdapter<ExperimentType, IIdAndCodeHolder>
{ {
...@@ -229,7 +230,7 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV ...@@ -229,7 +230,7 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV
@Override @Override
public ITabItem create() public ITabItem create()
{ {
return createDummyTab(getTabTitle()); return createDummyTab(getTabTitle(), getViewContext());
} }
@Override @Override
...@@ -260,10 +261,10 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV ...@@ -260,10 +261,10 @@ public final class ClientPluginFactory extends AbstractClientPluginFactory<DemoV
} }
} }
private static ITabItem createDummyTab(final String identifier) private static ITabItem createDummyTab(final String identifier, IViewContext<?> viewContext)
{ {
Component component = new DummyComponent(); Component component = new DummyComponent();
return DefaultTabItem.createUnaware(identifier, component, false); return DefaultTabItem.createUnaware(identifier, component, false, viewContext);
} }
@Override @Override
......
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