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

[LMS-2209] switch off invalidation by default (added a setting to web-client.properties)

SVN: 21801
parent 9c81cfac
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,10 @@ ...@@ -14,6 +14,10 @@
# Maximal number of visible columns in tables. Default: 50. # Maximal number of visible columns in tables. Default: 50.
#max-visible-columns = 20 #max-visible-columns = 20
# Experimental: Enable invalidation (non-permanent deletion) of entities in UI.
# Default value: false
#enable-invalidation = true
# Should the feature of adding unofficial/ad-hoc terms to vocabularies be turned on. # Should the feature of adding unofficial/ad-hoc terms to vocabularies be turned on.
# Default value: false # Default value: false
#allow-adding-unofficial-terms = true #allow-adding-unofficial-terms = true
......
...@@ -8,6 +8,10 @@ ...@@ -8,6 +8,10 @@
# Default value: false # Default value: false
#default-anonymous-login = true #default-anonymous-login = true
# Experimental: Enable invalidation (non-permanent deletion) of entities in UI.
# Default value: false
#enable-invalidation = true
# Maximal number of visible columns in tables. Default: 50. # Maximal number of visible columns in tables. Default: 50.
max-visible-columns = 25 max-visible-columns = 25
......
...@@ -28,11 +28,12 @@ import com.google.gwt.user.client.rpc.AsyncCallback; ...@@ -28,11 +28,12 @@ import com.google.gwt.user.client.rpc.AsyncCallback;
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.AsyncCallbackWithProgressBar; import ch.systemsx.cisd.openbis.generic.client.web.client.application.AsyncCallbackWithProgressBar;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.Dict; import ch.systemsx.cisd.openbis.generic.client.web.client.application.Dict;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.IViewContext;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.field.CheckBoxField; import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.field.CheckBoxField;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.field.ReasonField; import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.field.ReasonField;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IMessageProvider;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.WidgetUtils; import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.WidgetUtils;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.DeletionType; import ch.systemsx.cisd.openbis.generic.shared.basic.dto.DeletionType;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.WebClientConfiguration;
/** /**
* {@link AbstractDataConfirmationDialog} abstract implementation for deleting given list of data on * {@link AbstractDataConfirmationDialog} abstract implementation for deleting given list of data on
...@@ -51,6 +52,8 @@ public abstract class AbstractDataListDeletionConfirmationDialog<T> extends ...@@ -51,6 +52,8 @@ public abstract class AbstractDataListDeletionConfirmationDialog<T> extends
private static final String SELECTED = " selected "; private static final String SELECTED = " selected ";
private final IViewContext<?> viewContext;
private final AbstractAsyncCallback<Void> deletionCallback; private final AbstractAsyncCallback<Void> deletionCallback;
private boolean withRadio = false; private boolean withRadio = false;
...@@ -65,10 +68,11 @@ public abstract class AbstractDataListDeletionConfirmationDialog<T> extends ...@@ -65,10 +68,11 @@ public abstract class AbstractDataListDeletionConfirmationDialog<T> extends
protected ReasonField reason; protected ReasonField reason;
public AbstractDataListDeletionConfirmationDialog(IMessageProvider messageProvider, public AbstractDataListDeletionConfirmationDialog(IViewContext<?> viewContext, List<T> data,
List<T> data, AbstractAsyncCallback<Void> deletionCallback) AbstractAsyncCallback<Void> deletionCallback)
{ {
super(messageProvider, data, messageProvider.getMessage(Dict.DELETE_CONFIRMATION_TITLE)); super(viewContext, data, viewContext.getMessage(Dict.DELETE_CONFIRMATION_TITLE));
this.viewContext = viewContext;
this.deletionCallback = deletionCallback; this.deletionCallback = deletionCallback;
} }
...@@ -89,8 +93,16 @@ public abstract class AbstractDataListDeletionConfirmationDialog<T> extends ...@@ -89,8 +93,16 @@ public abstract class AbstractDataListDeletionConfirmationDialog<T> extends
/** adds invalidation option to the dialog with fiven callback */ /** adds invalidation option to the dialog with fiven callback */
protected void withInvalidation(AbstractAsyncCallback<Void> invalidationCallback) protected void withInvalidation(AbstractAsyncCallback<Void> invalidationCallback)
{ {
this.withInvalidationOption = true; if (getWebClientConfiguration().getEnableInvalidation())
this.invalidationCallbackOrNull = invalidationCallback; {
this.withInvalidationOption = true;
this.invalidationCallbackOrNull = invalidationCallback;
}
}
private WebClientConfiguration getWebClientConfiguration()
{
return viewContext.getModel().getApplicationInfo().getWebClientConfiguration();
} }
// //
......
...@@ -72,8 +72,12 @@ public class WebClientConfigurationProvider ...@@ -72,8 +72,12 @@ public class WebClientConfigurationProvider
private static final String ALLOW_ADDING_UNOFFICIAL_TERMS = "allow-adding-unofficial-terms"; private static final String ALLOW_ADDING_UNOFFICIAL_TERMS = "allow-adding-unofficial-terms";
private static final String ENABLE_INVALIDATION = "enable-invalidation";
private static final boolean DEFAULT_ALLOW_ADDING_UNOFFICIAL_TERMS = false; private static final boolean DEFAULT_ALLOW_ADDING_UNOFFICIAL_TERMS = false;
private static final boolean DEFAULT_ENABLE_INVALIDATION = false;
static final String TECHNOLOGIES = "technologies"; static final String TECHNOLOGIES = "technologies";
private WebClientConfiguration webClientConfiguration = new WebClientConfiguration(); private WebClientConfiguration webClientConfiguration = new WebClientConfiguration();
...@@ -101,6 +105,7 @@ public class WebClientConfigurationProvider ...@@ -101,6 +105,7 @@ public class WebClientConfigurationProvider
webClientConfiguration.setMaxVisibleColumns(DEFAULT_MAX_VISIBLE_COLUMNS); webClientConfiguration.setMaxVisibleColumns(DEFAULT_MAX_VISIBLE_COLUMNS);
webClientConfiguration.setMaxEntityVisits(DEFAULT_MAX_ENTITY_VISITS); webClientConfiguration.setMaxEntityVisits(DEFAULT_MAX_ENTITY_VISITS);
webClientConfiguration.setAllowAddingUnofficialTerms(DEFAULT_ALLOW_ADDING_UNOFFICIAL_TERMS); webClientConfiguration.setAllowAddingUnofficialTerms(DEFAULT_ALLOW_ADDING_UNOFFICIAL_TERMS);
webClientConfiguration.setEnableInvalidation(DEFAULT_ENABLE_INVALIDATION);
} }
private void init(Properties properties) private void init(Properties properties)
...@@ -110,6 +115,7 @@ public class WebClientConfigurationProvider ...@@ -110,6 +115,7 @@ public class WebClientConfigurationProvider
webClientConfiguration.setMaxVisibleColumns(extractMaxVisibleColumns(properties)); webClientConfiguration.setMaxVisibleColumns(extractMaxVisibleColumns(properties));
webClientConfiguration webClientConfiguration
.setAllowAddingUnofficialTerms(extractAllowAddingUnofficialTerms(properties)); .setAllowAddingUnofficialTerms(extractAllowAddingUnofficialTerms(properties));
webClientConfiguration.setEnableInvalidation(extractEnableInvalidation(properties));
webClientConfiguration.setMaxEntityVisits(PropertyUtils.getInt(properties, webClientConfiguration.setMaxEntityVisits(PropertyUtils.getInt(properties,
MAX_ENTITY_VISITS, DEFAULT_MAX_ENTITY_VISITS)); MAX_ENTITY_VISITS, DEFAULT_MAX_ENTITY_VISITS));
webClientConfiguration webClientConfiguration
...@@ -221,6 +227,12 @@ public class WebClientConfigurationProvider ...@@ -221,6 +227,12 @@ public class WebClientConfigurationProvider
DEFAULT_ALLOW_ADDING_UNOFFICIAL_TERMS); DEFAULT_ALLOW_ADDING_UNOFFICIAL_TERMS);
} }
private boolean extractEnableInvalidation(Properties properties)
{
return PropertyUtils.getBoolean(properties, ENABLE_INVALIDATION,
DEFAULT_ENABLE_INVALIDATION);
}
public WebClientConfiguration getWebClientConfiguration() public WebClientConfiguration getWebClientConfiguration()
{ {
return webClientConfiguration; return webClientConfiguration;
......
...@@ -53,6 +53,8 @@ public class WebClientConfiguration implements ISerializable ...@@ -53,6 +53,8 @@ public class WebClientConfiguration implements ISerializable
private int maxEntityVisits; private int maxEntityVisits;
private boolean enableInvalidation;
private boolean allowAddingUnofficielTerms; private boolean allowAddingUnofficielTerms;
public String getPropertyOrNull(String technology, String key) public String getPropertyOrNull(String technology, String key)
...@@ -126,17 +128,28 @@ public class WebClientConfiguration implements ISerializable ...@@ -126,17 +128,28 @@ public class WebClientConfiguration implements ISerializable
this.maxEntityVisits = maxEntityVisits; this.maxEntityVisits = maxEntityVisits;
} }
public boolean getAllowAddingUnofficialTerms()
{
return allowAddingUnofficielTerms;
}
public void setAllowAddingUnofficialTerms(boolean allowAddingUnofficialTerms) public void setAllowAddingUnofficialTerms(boolean allowAddingUnofficialTerms)
{ {
this.allowAddingUnofficielTerms = allowAddingUnofficialTerms; this.allowAddingUnofficielTerms = allowAddingUnofficialTerms;
} }
public boolean getAllowAddingUnofficialTerms() public boolean getEnableInvalidation()
{ {
return allowAddingUnofficielTerms; return enableInvalidation;
}
public void setEnableInvalidation(boolean enableInvalidation)
{
this.enableInvalidation = enableInvalidation;
} }
public WebClientConfiguration() public WebClientConfiguration()
{ {
} }
} }
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