Skip to content
Snippets Groups Projects
Commit d5ca0121 authored by izabel's avatar izabel
Browse files

[LMS-1528] add GUI validation

SVN: 15911
parent 9dc1b953
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,7 @@ import java.util.Set; ...@@ -26,6 +26,7 @@ import java.util.Set;
import com.extjs.gxt.ui.client.Style.LayoutRegion; import com.extjs.gxt.ui.client.Style.LayoutRegion;
import com.extjs.gxt.ui.client.Style.Scroll; import com.extjs.gxt.ui.client.Style.Scroll;
import com.extjs.gxt.ui.client.event.ButtonEvent; import com.extjs.gxt.ui.client.event.ButtonEvent;
import com.extjs.gxt.ui.client.event.Events;
import com.extjs.gxt.ui.client.event.SelectionListener; import com.extjs.gxt.ui.client.event.SelectionListener;
import com.extjs.gxt.ui.client.widget.Dialog; import com.extjs.gxt.ui.client.widget.Dialog;
import com.extjs.gxt.ui.client.widget.Window; import com.extjs.gxt.ui.client.widget.Window;
...@@ -42,7 +43,6 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAs ...@@ -42,7 +43,6 @@ import ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAs
import ch.systemsx.cisd.openbis.generic.client.web.client.application.GenericConstants; import ch.systemsx.cisd.openbis.generic.client.web.client.application.GenericConstants;
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.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.MultilineVarcharField;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.grid.IDisposableComponent; import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.grid.IDisposableComponent;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.report.ReportGeneratedCallback; import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.report.ReportGeneratedCallback;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.report.ReportGeneratedCallback.IOnReportComponentGeneratedAction; import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.report.ReportGeneratedCallback.IOnReportComponentGeneratedAction;
...@@ -152,7 +152,7 @@ public class QueryEditor extends Dialog ...@@ -152,7 +152,7 @@ public class QueryEditor extends Dialog
private final TextField<String> descriptionField; private final TextField<String> descriptionField;
private final MultilineVarcharField statementField; private final SQLQueryField statementField;
private final CheckBoxField isPublicField; private final CheckBoxField isPublicField;
...@@ -188,6 +188,7 @@ public class QueryEditor extends Dialog ...@@ -188,6 +188,7 @@ public class QueryEditor extends Dialog
statementField = createStatementField(); statementField = createStatementField();
isPublicField = new CheckBoxField(viewContext.getMessage(Dict.IS_PUBLIC), false); isPublicField = new CheckBoxField(viewContext.getMessage(Dict.IS_PUBLIC), false);
queryTypeField = new QueryTypeComboBox(viewContext); queryTypeField = new QueryTypeComboBox(viewContext);
queryTypeField.addListener(Events.SelectionChange, statementField);
if (queryOrNull != null) if (queryOrNull != null)
{ {
nameField.setValue(queryOrNull.getName()); nameField.setValue(queryOrNull.getName());
...@@ -214,8 +215,10 @@ public class QueryEditor extends Dialog ...@@ -214,8 +215,10 @@ public class QueryEditor extends Dialog
static class QueryTypeComboBox extends SimpleComboBox<QueryType> static class QueryTypeComboBox extends SimpleComboBox<QueryType>
{ {
public QueryTypeComboBox(IMessageProvider messages) public QueryTypeComboBox(IMessageProvider messages)
{ {
setFireChangeEventOnSetValue(true);
setAllowBlank(false); setAllowBlank(false);
setEditable(false); setEditable(false);
setTriggerAction(TriggerAction.ALL); setTriggerAction(TriggerAction.ALL);
...@@ -228,9 +231,9 @@ public class QueryEditor extends Dialog ...@@ -228,9 +231,9 @@ public class QueryEditor extends Dialog
} }
} }
private MultilineVarcharField createStatementField() private SQLQueryField createStatementField()
{ {
MultilineVarcharField field = new SQLQueryField(viewContext, true, 10); SQLQueryField field = new SQLQueryField(viewContext, true, 10);
field.setMaxLength(2000); field.setMaxLength(2000);
return field; return field;
} }
......
...@@ -16,11 +16,15 @@ ...@@ -16,11 +16,15 @@
package ch.systemsx.cisd.openbis.plugin.query.client.web.client.application.module; package ch.systemsx.cisd.openbis.plugin.query.client.web.client.application.module;
import com.extjs.gxt.ui.client.event.Listener;
import com.extjs.gxt.ui.client.event.SelectionChangedEvent;
import com.extjs.gxt.ui.client.widget.form.Field; import com.extjs.gxt.ui.client.widget.form.Field;
import com.extjs.gxt.ui.client.widget.form.SimpleComboValue;
import com.extjs.gxt.ui.client.widget.form.Validator; import com.extjs.gxt.ui.client.widget.form.Validator;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.field.MultilineVarcharField; import ch.systemsx.cisd.openbis.generic.client.web.client.application.ui.field.MultilineVarcharField;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IMessageProvider; import ch.systemsx.cisd.openbis.generic.client.web.client.application.util.IMessageProvider;
import ch.systemsx.cisd.openbis.generic.shared.basic.dto.QueryType;
import ch.systemsx.cisd.openbis.plugin.query.client.web.client.application.Dict; import ch.systemsx.cisd.openbis.plugin.query.client.web.client.application.Dict;
/** /**
...@@ -28,16 +32,39 @@ import ch.systemsx.cisd.openbis.plugin.query.client.web.client.application.Dict; ...@@ -28,16 +32,39 @@ import ch.systemsx.cisd.openbis.plugin.query.client.web.client.application.Dict;
* *
* @author Piotr Buczek * @author Piotr Buczek
*/ */
public class SQLQueryField extends MultilineVarcharField public class SQLQueryField extends MultilineVarcharField implements
Listener<SelectionChangedEvent<SimpleComboValue<QueryType>>>
{ {
private final static String EMPTY_TEXT = "SELECT ... \nFROM ... \nWHERE ..."; private final static String EMPTY_TEXT = "SELECT ... \nFROM ... \nWHERE ...";
private final static String EMPTY_TEXT_WITH_KEY = EMPTY_TEXT + " '${key}' ...";
private final static String EMPTY_TEXT_WITH_KEY_AND_TYPE =
EMPTY_TEXT_WITH_KEY + " ... '${type}'";
private static final String TYPE_REGEX = "'\\$\\{type\\}'";
private static final String KEY_REGEX = "'\\$\\{key\\}'";
private static final String ANY_REGEX = "(.|[\\n\\r])*";
// SQL query needs to start with 'select' (ignore-case) and can contain newlines. // SQL query needs to start with 'select' (ignore-case) and can contain newlines.
private final static String REGEX = "^(select|SELECT)(.|[\n\r])*"; private final static String SELECT_REGEX = "^(select|SELECT)" + ANY_REGEX;
private static final String SELECT_WITH_KEY_REGEX = SELECT_REGEX + KEY_REGEX + ANY_REGEX;
private static final String SELECT_WITH_KEY_AND_TYPE_REGEX =
SELECT_WITH_KEY_REGEX + TYPE_REGEX + ANY_REGEX;
private final static String REGEX_TEXT_MSG = "SQL query should begin with a 'SELECT' keyword."; private final static String REGEX_TEXT_MSG = "SQL query should begin with a 'SELECT' keyword.";
private final static String REGEX_TEXT_WITH_KEY_MSG =
REGEX_TEXT_MSG + " Magic parameter '${key}' is required.";
private final static String REGEX_TEXT_WITH_KEY_AND_TYPE_MSG =
REGEX_TEXT_WITH_KEY_MSG + " Magic parameter '${type}' required.";
private final static String SINGLE_QUERY_MSG = private final static String SINGLE_QUERY_MSG =
"SQL query should not contain ';' in the middle."; "SQL query should not contain ';' in the middle.";
...@@ -46,11 +73,7 @@ public class SQLQueryField extends MultilineVarcharField ...@@ -46,11 +73,7 @@ public class SQLQueryField extends MultilineVarcharField
public SQLQueryField(IMessageProvider messageProvider, boolean mandatory, int lines) public SQLQueryField(IMessageProvider messageProvider, boolean mandatory, int lines)
{ {
super(messageProvider.getMessage(Dict.SQL_QUERY), mandatory, lines); super(messageProvider.getMessage(Dict.SQL_QUERY), mandatory, lines);
setEmptyText(EMPTY_TEXT); updateValidation(QueryType.GENERIC);
setRegex(REGEX);
setValidator(new SingleSQLQueryValidator());
getMessages().setRegexText(REGEX_TEXT_MSG);
getMessages().setBlankText(BLANK_TEXT_MSG);
} }
public SQLQueryField(IMessageProvider messageProvider, boolean mandatory) public SQLQueryField(IMessageProvider messageProvider, boolean mandatory)
...@@ -61,6 +84,7 @@ public class SQLQueryField extends MultilineVarcharField ...@@ -61,6 +84,7 @@ public class SQLQueryField extends MultilineVarcharField
/** {@link Validator} for single SQL query. */ /** {@link Validator} for single SQL query. */
protected class SingleSQLQueryValidator implements Validator protected class SingleSQLQueryValidator implements Validator
{ {
public String validate(Field<?> field, final String fieldValue) public String validate(Field<?> field, final String fieldValue)
{ {
int indexOfSemicolon = fieldValue.trim().indexOf(';'); int indexOfSemicolon = fieldValue.trim().indexOf(';');
...@@ -73,4 +97,74 @@ public class SQLQueryField extends MultilineVarcharField ...@@ -73,4 +97,74 @@ public class SQLQueryField extends MultilineVarcharField
} }
} }
public void handleEvent(SelectionChangedEvent<SimpleComboValue<QueryType>> be)
{
SimpleComboValue<QueryType> selectedItem = be.getSelectedItem();
QueryType type = selectedItem == null ? QueryType.GENERIC : selectedItem.getValue();
updateValidation(type);
}
private void updateValidation(QueryType type)
{
setEmptyText(createEmptyText(type));
setRegex(createRegex(type));
setValidator(new SingleSQLQueryValidator());
getMessages().setRegexText(createRegexText(type));
getMessages().setBlankText(createBlankText(type));
validate();
}
private String createBlankText(QueryType type)
{
return BLANK_TEXT_MSG;
}
private String createRegexText(QueryType type)
{
switch (type)
{
case GENERIC:
return REGEX_TEXT_MSG;
case DATA_SET:
case SAMPLE:
case EXPERIMENT:
return REGEX_TEXT_WITH_KEY_MSG;
case MATERIAL:
return REGEX_TEXT_WITH_KEY_AND_TYPE_MSG;
}
return null;
}
private String createRegex(QueryType type)
{
switch (type)
{
case GENERIC:
return SELECT_REGEX;
case DATA_SET:
case SAMPLE:
case EXPERIMENT:
return SELECT_WITH_KEY_REGEX;
case MATERIAL:
return SELECT_WITH_KEY_AND_TYPE_REGEX;
}
return null;
}
private String createEmptyText(QueryType type)
{
switch (type)
{
case GENERIC:
return EMPTY_TEXT;
case DATA_SET:
case SAMPLE:
case EXPERIMENT:
return EMPTY_TEXT_WITH_KEY;
case MATERIAL:
return EMPTY_TEXT_WITH_KEY_AND_TYPE;
}
return null;
}
} }
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