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

[LMS-1442] registration scope chosen from the list (instead of radio)

SVN: 15230
parent 4d0dc1b3
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,6 @@ public class NamedInputStream ...@@ -36,7 +36,6 @@ public class NamedInputStream
{ {
this.stream = stream; this.stream = stream;
this.originalName = originalName; this.originalName = originalName;
// FIXME: do not require
this.bytes = bytes; this.bytes = bytes;
} }
......
...@@ -28,6 +28,8 @@ public final class Dict extends ch.systemsx.cisd.openbis.generic.client.web.clie ...@@ -28,6 +28,8 @@ public final class Dict extends ch.systemsx.cisd.openbis.generic.client.web.clie
public static final String IMPORT_SCHEDULED_MESSAGE = "import_scheduled"; public static final String IMPORT_SCHEDULED_MESSAGE = "import_scheduled";
public static final String REGISTER = "register";
private Dict() private Dict()
{ {
// Can not be instantiated. // Can not be instantiated.
......
...@@ -17,9 +17,9 @@ ...@@ -17,9 +17,9 @@
package ch.systemsx.cisd.openbis.plugin.screening.client.web.client.application.sample; package ch.systemsx.cisd.openbis.plugin.screening.client.web.client.application.sample;
import com.extjs.gxt.ui.client.widget.form.FormPanel; import com.extjs.gxt.ui.client.widget.form.FormPanel;
import com.extjs.gxt.ui.client.widget.form.Radio; import com.extjs.gxt.ui.client.widget.form.SimpleComboBox;
import com.extjs.gxt.ui.client.widget.form.RadioGroup;
import com.extjs.gxt.ui.client.widget.form.TextField; import com.extjs.gxt.ui.client.widget.form.TextField;
import com.extjs.gxt.ui.client.widget.form.ComboBox.TriggerAction;
import com.google.gwt.user.client.ui.AbstractImagePrototype; import com.google.gwt.user.client.ui.AbstractImagePrototype;
import ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAsyncCallback; import ch.systemsx.cisd.openbis.generic.client.web.client.application.AbstractAsyncCallback;
...@@ -48,6 +48,12 @@ import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.LibraryRegistr ...@@ -48,6 +48,12 @@ import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.LibraryRegistr
public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatchRegistrationForm public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatchRegistrationForm
{ {
private static final String PLATES = "Plates";
private static final String OLIGOS_PLATES = "Oligos + Plates";
private static final String GENES_OLIGOS_PLATES = "Genes + Oligos + Plates";
private static final String SESSION_KEY = "qiagen-library-sample-batch-registration"; private static final String SESSION_KEY = "qiagen-library-sample-batch-registration";
private final ExperimentChooserFieldAdaptor experimentChooser; private final ExperimentChooserFieldAdaptor experimentChooser;
...@@ -56,13 +62,7 @@ public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatc ...@@ -56,13 +62,7 @@ public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatc
private final PlateGeometrySelectionWidget plateGeometryField; private final PlateGeometrySelectionWidget plateGeometryField;
private final RadioGroup scopeField; private final SimpleComboBox<String> scopeField;
private Radio genesOligosPlatesRadio;
private Radio oligosPlatesRadio;
private Radio platesRadio;
private final TextField<String> emailField; private final TextField<String> emailField;
...@@ -99,26 +99,22 @@ public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatc ...@@ -99,26 +99,22 @@ public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatc
return field; return field;
} }
// FIXME: change to combobox private SimpleComboBox<String> createScope()
private RadioGroup createScope()
{
RadioGroup group = new RadioGroup();
group.setFieldLabel("Register");
genesOligosPlatesRadio = createCheckBox("Genes + Oligos + Plates");
oligosPlatesRadio = createCheckBox("Oligos + Plates");
platesRadio = createCheckBox("Plates");
group.add(genesOligosPlatesRadio);
group.add(oligosPlatesRadio);
group.add(platesRadio);
group.setValue(genesOligosPlatesRadio);
return group;
}
private Radio createCheckBox(String label)
{ {
Radio checkBox = new Radio(); SimpleComboBox<String> options = new SimpleComboBox<String>();
checkBox.setBoxLabel(label); options.add(GENES_OLIGOS_PLATES);
return checkBox; options.add(OLIGOS_PLATES);
options.add(PLATES);
options
.setFieldLabel(viewContext
.getMessage(ch.systemsx.cisd.openbis.plugin.screening.client.web.client.application.Dict.REGISTER));
options.setTriggerAction(TriggerAction.ALL);
options.setForceSelection(true);
options.setEditable(false);
options.setAllowBlank(false);
options.setSimpleValue(GENES_OLIGOS_PLATES);
FieldUtil.markAsMandatory(options);
return options;
} }
@Override @Override
...@@ -140,13 +136,14 @@ public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatc ...@@ -140,13 +136,14 @@ public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatc
private RegistrationScope extractRegistrationScope() private RegistrationScope extractRegistrationScope()
{ {
if (genesOligosPlatesRadio.getValue()) String value = scopeField.getValue().getValue();
if (value.equals(GENES_OLIGOS_PLATES))
{ {
return RegistrationScope.GENES_OLIGOS_PLATES; return RegistrationScope.GENES_OLIGOS_PLATES;
} else if (oligosPlatesRadio.getValue()) } else if (value.equals(OLIGOS_PLATES))
{ {
return RegistrationScope.OLIGOS_PLATES; return RegistrationScope.OLIGOS_PLATES;
} else if (platesRadio.getValue()) } else if (value.equals(PLATES))
{ {
return RegistrationScope.PLATES; return RegistrationScope.PLATES;
} }
...@@ -183,7 +180,7 @@ public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatc ...@@ -183,7 +180,7 @@ public final class LibrarySampleBatchRegistrationForm extends AbstractSampleBatc
private PlateGeometrySelectionWidget createPlateGeometryField() private PlateGeometrySelectionWidget createPlateGeometryField()
{ {
PlateGeometrySelectionWidget field = new PlateGeometrySelectionWidget(viewContext); PlateGeometrySelectionWidget field = new PlateGeometrySelectionWidget(viewContext);
field.setFieldLabel("Plate geometry"); field.setFieldLabel("Plate Geometry");
FieldUtil.markAsMandatory(field); FieldUtil.markAsMandatory(field);
return field; return field;
} }
......
...@@ -23,6 +23,7 @@ var screening = { ...@@ -23,6 +23,7 @@ var screening = {
// Sample import // Sample import
// //
import_scheduled: "Import started successfully. Notification will be sent to '{0}' upon completion.", import_scheduled: "Import started successfully. Notification will be sent to '{0}' upon completion.",
register: "Register",
// LAST LINE: KEEP IT AT THE END // LAST LINE: KEEP IT AT THE END
lastline: "" // we need a line without a comma lastline: "" // we need a line without a comma
......
...@@ -19,6 +19,8 @@ import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.ScreeningConst ...@@ -19,6 +19,8 @@ import ch.systemsx.cisd.openbis.plugin.screening.shared.basic.dto.ScreeningConst
class LibraryRegistrationTask implements Runnable class LibraryRegistrationTask implements Runnable
{ {
private static final String LIBRARY_REGISTARION_STATUS = "Library registarion status";
private final MailClientParameters mailClientParameters; private final MailClientParameters mailClientParameters;
private final String sessionToken; private final String sessionToken;
...@@ -49,7 +51,6 @@ class LibraryRegistrationTask implements Runnable ...@@ -49,7 +51,6 @@ class LibraryRegistrationTask implements Runnable
public void run() public void run()
{ {
// FIXME: improve messages, add details
StringBuilder message = new StringBuilder(); StringBuilder message = new StringBuilder();
try try
{ {
...@@ -67,7 +68,7 @@ class LibraryRegistrationTask implements Runnable ...@@ -67,7 +68,7 @@ class LibraryRegistrationTask implements Runnable
{ {
message.append("GENES: ERROR (NOT REGISTERED)\n"); message.append("GENES: ERROR (NOT REGISTERED)\n");
message.append(ex.getMessage()); message.append(ex.getMessage());
sendEmail("Library registarion status", message.toString(), email); sendEmail(LIBRARY_REGISTARION_STATUS, message.toString(), email);
return; return;
} }
try try
...@@ -86,7 +87,7 @@ class LibraryRegistrationTask implements Runnable ...@@ -86,7 +87,7 @@ class LibraryRegistrationTask implements Runnable
{ {
message.append("OLIGOS: ERROR (NOT REGISTERED)\n"); message.append("OLIGOS: ERROR (NOT REGISTERED)\n");
message.append(ex.getMessage()); message.append(ex.getMessage());
sendEmail("Library registarion status", message.toString(), email); sendEmail(LIBRARY_REGISTARION_STATUS, message.toString(), email);
return; return;
} }
try try
...@@ -105,10 +106,10 @@ class LibraryRegistrationTask implements Runnable ...@@ -105,10 +106,10 @@ class LibraryRegistrationTask implements Runnable
{ {
message.append("PLATES: ERROR (NOT REGISTERED)\n"); message.append("PLATES: ERROR (NOT REGISTERED)\n");
message.append(ex.getMessage()); message.append(ex.getMessage());
sendEmail("Library registarion status", message.toString(), email); sendEmail(LIBRARY_REGISTARION_STATUS, message.toString(), email);
return; return;
} }
sendEmail("Library registarion status", message.toString(), email); sendEmail(LIBRARY_REGISTARION_STATUS, message.toString(), email);
} }
......
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