www/lims/arrayslides/wizard.js

Code
Comments
Other
Rev Date Author Line
7604 25 Feb 19 nicklas 1 /* $Id $
7604 25 Feb 19 nicklas 2   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 3   Copyright (C) 2013 Nicklas Nordborg
7604 25 Feb 19 nicklas 4
7604 25 Feb 19 nicklas 5   This file is part of BASE - BioArray Software Environment.
7604 25 Feb 19 nicklas 6   Available at http://base.thep.lu.se/
7604 25 Feb 19 nicklas 7
7604 25 Feb 19 nicklas 8   BASE is free software; you can redistribute it and/or
7604 25 Feb 19 nicklas 9   modify it under the terms of the GNU General Public License
7604 25 Feb 19 nicklas 10   as published by the Free Software Foundation; either version 3
7604 25 Feb 19 nicklas 11   of the License, or (at your option) any later version.
7604 25 Feb 19 nicklas 12
7604 25 Feb 19 nicklas 13   BASE is distributed in the hope that it will be useful,
7604 25 Feb 19 nicklas 14   but WITHOUT ANY WARRANTY; without even the implied warranty of
7604 25 Feb 19 nicklas 15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7604 25 Feb 19 nicklas 16   GNU General Public License for more details.
7604 25 Feb 19 nicklas 17
7604 25 Feb 19 nicklas 18   You should have received a copy of the GNU General Public License
7604 25 Feb 19 nicklas 19   along with BASE. If not, see <http://www.gnu.org/licenses/>.
7604 25 Feb 19 nicklas 20   ------------------------------------------------------------------
7604 25 Feb 19 nicklas 21
7604 25 Feb 19 nicklas 22   @author Nicklas
7604 25 Feb 19 nicklas 23 */
7604 25 Feb 19 nicklas 24 'use strict';
7604 25 Feb 19 nicklas 25
7604 25 Feb 19 nicklas 26 var Wizard = function()
7604 25 Feb 19 nicklas 27 {
7604 25 Feb 19 nicklas 28   var wizard = {};
7604 25 Feb 19 nicklas 29   
7604 25 Feb 19 nicklas 30   /**
7604 25 Feb 19 nicklas 31     Initialize the page.
7604 25 Feb 19 nicklas 32   */
7604 25 Feb 19 nicklas 33   wizard.initPage = function()
7604 25 Feb 19 nicklas 34   {
7604 25 Feb 19 nicklas 35     var pageId = Doc.getPageId();
7604 25 Feb 19 nicklas 36     if (pageId == 'WizardStep1')
7604 25 Feb 19 nicklas 37     {
7604 25 Feb 19 nicklas 38       Buttons.addClickHandler('close', App.closeWindow);
7604 25 Feb 19 nicklas 39       Buttons.addClickHandler('btnNext', wizard.gotoStep2);
7604 25 Feb 19 nicklas 40       
7604 25 Feb 19 nicklas 41       Events.addEventHandler('quantity', 'keypress', Events.integerOnly);
7604 25 Feb 19 nicklas 42       Events.addEventHandler('start_at', 'keypress', Events.integerOnly);
7604 25 Feb 19 nicklas 43       Events.addEventHandler('pad_length', 'keypress', Events.integerOnly);
7604 25 Feb 19 nicklas 44
7604 25 Feb 19 nicklas 45       // Array batch
7604 25 Feb 19 nicklas 46       Buttons.addClickHandler('arraybatch_id.select', wizard.selectArrayBatch);
7604 25 Feb 19 nicklas 47       Events.addEventHandler('arraybatch_id', 'base-selected', Items.onItemSelected);
7604 25 Feb 19 nicklas 48       
7604 25 Feb 19 nicklas 49     }
7604 25 Feb 19 nicklas 50     else if (pageId == 'WizardStep2')
7604 25 Feb 19 nicklas 51     {
7604 25 Feb 19 nicklas 52       Buttons.addClickHandler('close', App.closeWindow);
7604 25 Feb 19 nicklas 53       Buttons.addClickHandler('btnSave', wizard.finishWizard);
7604 25 Feb 19 nicklas 54       
7604 25 Feb 19 nicklas 55       Buttons.addClickHandler('pasteMultipleName', wizard.pasteMultiple);
7604 25 Feb 19 nicklas 56       Buttons.addClickHandler('clearAllNames', wizard.clearAll);
7604 25 Feb 19 nicklas 57       Buttons.addClickHandler('pasteMultipleBarcode', wizard.pasteMultiple);
7604 25 Feb 19 nicklas 58       Buttons.addClickHandler('clearAllBarcodes', wizard.clearAll);
7604 25 Feb 19 nicklas 59       
7604 25 Feb 19 nicklas 60       var frm = document.forms['WizardStep2'];
7604 25 Feb 19 nicklas 61       frm.barcode0.focus();
7604 25 Feb 19 nicklas 62     }
7604 25 Feb 19 nicklas 63     else if (pageId == 'paste-multiple')
7604 25 Feb 19 nicklas 64     {
7604 25 Feb 19 nicklas 65       Buttons.addClickHandler('btnOk', wizard.saveMultiple);
7604 25 Feb 19 nicklas 66       Buttons.addClickHandler('close', App.closeWindow);
7604 25 Feb 19 nicklas 67       wizard.initPasteMultiple();
7604 25 Feb 19 nicklas 68     }
7604 25 Feb 19 nicklas 69   }
7604 25 Feb 19 nicklas 70   
7604 25 Feb 19 nicklas 71   wizard.gotoStep2 = function()
7604 25 Feb 19 nicklas 72   {      
7604 25 Feb 19 nicklas 73     if (wizard.validateStep1())
7604 25 Feb 19 nicklas 74     {
7604 25 Feb 19 nicklas 75       var frm = document.forms['WizardStep1'];
7604 25 Feb 19 nicklas 76       frm.submit();
7604 25 Feb 19 nicklas 77     }
7604 25 Feb 19 nicklas 78   }    
7604 25 Feb 19 nicklas 79   
7604 25 Feb 19 nicklas 80   // Submit and finish the wizard
7604 25 Feb 19 nicklas 81   wizard.finishWizard = function()
7604 25 Feb 19 nicklas 82   {
7604 25 Feb 19 nicklas 83     if (wizard.validateStep2())
7604 25 Feb 19 nicklas 84     {
7604 25 Feb 19 nicklas 85       var frm = document.forms['WizardStep2'];    
7604 25 Feb 19 nicklas 86       frm.submit();
7604 25 Feb 19 nicklas 87     }
7604 25 Feb 19 nicklas 88   }
7604 25 Feb 19 nicklas 89
7604 25 Feb 19 nicklas 90   wizard.validateStep1 = function()
7604 25 Feb 19 nicklas 91   {
7604 25 Feb 19 nicklas 92     var frm = document.forms['WizardStep1'];
7604 25 Feb 19 nicklas 93     if (Strings.trim(frm.name.value) == '')
7604 25 Feb 19 nicklas 94     {
7604 25 Feb 19 nicklas 95       Forms.showNotification(frm.name, 'You must enter a name');
7604 25 Feb 19 nicklas 96       return false;
7604 25 Feb 19 nicklas 97     }
7604 25 Feb 19 nicklas 98     if (frm.arraybatch_id && !frm.arraybatch_id.value)
7604 25 Feb 19 nicklas 99     {
7604 25 Feb 19 nicklas 100       Forms.showNotification('arraybatch_id.select', 'You must select an array batch');
7604 25 Feb 19 nicklas 101       return false;
7604 25 Feb 19 nicklas 102     }
7604 25 Feb 19 nicklas 103     if (Strings.trim(frm.quantity.value) == '')
7604 25 Feb 19 nicklas 104     {
7604 25 Feb 19 nicklas 105       Forms.showNotification(frm.quantity, 'You must enter a quantity of slides');
7604 25 Feb 19 nicklas 106       return false;
7604 25 Feb 19 nicklas 107     }
7604 25 Feb 19 nicklas 108     if (frm.quantity.value < 1 || frm.quantity.value > 999)
7604 25 Feb 19 nicklas 109     {
7604 25 Feb 19 nicklas 110       Forms.showNotification(frm.quantity, 'The quantity of array slides to be created must be between 1 and 999');
7604 25 Feb 19 nicklas 111       return false;
7604 25 Feb 19 nicklas 112     }
7604 25 Feb 19 nicklas 113     return true;
7604 25 Feb 19 nicklas 114   }
7604 25 Feb 19 nicklas 115
7604 25 Feb 19 nicklas 116   wizard.validateStep2 = function()
7604 25 Feb 19 nicklas 117   {
7604 25 Feb 19 nicklas 118     var frm = document.forms['WizardStep2'];
7604 25 Feb 19 nicklas 119     var quantity = parseInt(frm.quantity.value);
7604 25 Feb 19 nicklas 120     for (var i = 0; i < quantity; i++)
7604 25 Feb 19 nicklas 121     {
7604 25 Feb 19 nicklas 122       var name = frm['name'+i];
7604 25 Feb 19 nicklas 123       if (Strings.trim(name.value) == '')
7604 25 Feb 19 nicklas 124       {
7604 25 Feb 19 nicklas 125         Forms.showNotification(name, 'You must enter a name for all slides', null, 'pointer-left');
7604 25 Feb 19 nicklas 126         return false;
7604 25 Feb 19 nicklas 127       }
7604 25 Feb 19 nicklas 128     }
7604 25 Feb 19 nicklas 129     return true;
7604 25 Feb 19 nicklas 130   }
7604 25 Feb 19 nicklas 131
7604 25 Feb 19 nicklas 132   wizard.selectArrayBatch = function()
7604 25 Feb 19 nicklas 133   {
7604 25 Feb 19 nicklas 134     var frm = document.forms['WizardStep1'];
7604 25 Feb 19 nicklas 135     var url = '';
7604 25 Feb 19 nicklas 136     if (frm.arraybatch_id.length > 0) 
7604 25 Feb 19 nicklas 137     {
7604 25 Feb 19 nicklas 138       url += '&item_id='+frm.arraybatch_id[0].value;
7604 25 Feb 19 nicklas 139     }
7604 25 Feb 19 nicklas 140     Dialogs.selectItem('ARRAYBATCH', 'arraybatch_id', 0, url);
7604 25 Feb 19 nicklas 141   }
7604 25 Feb 19 nicklas 142   
7604 25 Feb 19 nicklas 143   wizard.pasteMultiple = function(event)
7604 25 Feb 19 nicklas 144   {
7604 25 Feb 19 nicklas 145     var url = 'paste_multiple.jsp?ID='+App.getSessionId();
7604 25 Feb 19 nicklas 146     url += '&form=WizardStep2&prefix='+Data.get(event.currentTarget, 'form-prefix');
7604 25 Feb 19 nicklas 147     Dialogs.openPopup(url, 'PasteMultiple', 400, 600);
7604 25 Feb 19 nicklas 148   }
7604 25 Feb 19 nicklas 149
7604 25 Feb 19 nicklas 150   wizard.clearAll = function(event)
7604 25 Feb 19 nicklas 151   {
7604 25 Feb 19 nicklas 152     var frm = document.forms['WizardStep2'];
7604 25 Feb 19 nicklas 153     var i = 0;
7604 25 Feb 19 nicklas 154     var prefix = Data.get(event.currentTarget, 'form-prefix');
7604 25 Feb 19 nicklas 155     var field;
7604 25 Feb 19 nicklas 156     while(field = frm[prefix+i])
7604 25 Feb 19 nicklas 157     {
7604 25 Feb 19 nicklas 158       field.value = '';
7604 25 Feb 19 nicklas 159       i++;
7604 25 Feb 19 nicklas 160     }
7604 25 Feb 19 nicklas 161   }
7604 25 Feb 19 nicklas 162
7604 25 Feb 19 nicklas 163   wizard.initPasteMultiple = function()
7604 25 Feb 19 nicklas 164   {
7604 25 Feb 19 nicklas 165     var formName = Data.get('page-data', 'form-name');
7604 25 Feb 19 nicklas 166     var prefix = Data.get('page-data', 'form-prefix');
7604 25 Feb 19 nicklas 167     var pfrm = window.opener.document.forms[formName];
7604 25 Feb 19 nicklas 168     var frm = document.forms['paste'];
7604 25 Feb 19 nicklas 169     if (pfrm)
7604 25 Feb 19 nicklas 170     {
7604 25 Feb 19 nicklas 171       var i = 0;
7604 25 Feb 19 nicklas 172       var text = '';
7604 25 Feb 19 nicklas 173       while (pfrm[prefix+i])
7604 25 Feb 19 nicklas 174       {
7604 25 Feb 19 nicklas 175         text += pfrm[prefix+i].value + '\n';
7604 25 Feb 19 nicklas 176         i++;
7604 25 Feb 19 nicklas 177       }
7604 25 Feb 19 nicklas 178       frm['text'].value = text;
7604 25 Feb 19 nicklas 179     }
7604 25 Feb 19 nicklas 180     frm['text'].focus();
7604 25 Feb 19 nicklas 181   }
7604 25 Feb 19 nicklas 182
7604 25 Feb 19 nicklas 183   // Submit the form
7604 25 Feb 19 nicklas 184   wizard.saveMultiple = function()
7604 25 Feb 19 nicklas 185   {
7604 25 Feb 19 nicklas 186     var formName = Data.get('page-data', 'form-name');
7604 25 Feb 19 nicklas 187     var prefix = Data.get('page-data', 'form-prefix');
7604 25 Feb 19 nicklas 188     var pfrm = window.opener.document.forms[formName];
7604 25 Feb 19 nicklas 189     var frm = document.forms['paste'];
7604 25 Feb 19 nicklas 190     if (pfrm)
7604 25 Feb 19 nicklas 191     {
7604 25 Feb 19 nicklas 192       var text = frm['text'].value.split('\n');
7604 25 Feb 19 nicklas 193       for (var i = 0; i < text.length; ++i)
7604 25 Feb 19 nicklas 194       {
7604 25 Feb 19 nicklas 195         var field = prefix + i;
7604 25 Feb 19 nicklas 196         if (pfrm[field]) pfrm[field].value = text[i];
7604 25 Feb 19 nicklas 197       }
7604 25 Feb 19 nicklas 198       // Clear any remaining fields
7604 25 Feb 19 nicklas 199       while (pfrm[prefix+i])
7604 25 Feb 19 nicklas 200       {
7604 25 Feb 19 nicklas 201         pfrm[prefix+i].value = '';
7604 25 Feb 19 nicklas 202         i++;
7604 25 Feb 19 nicklas 203       }
7604 25 Feb 19 nicklas 204     }
7604 25 Feb 19 nicklas 205     window.close();
7604 25 Feb 19 nicklas 206   }
7604 25 Feb 19 nicklas 207
7604 25 Feb 19 nicklas 208   
7604 25 Feb 19 nicklas 209   return wizard;
7604 25 Feb 19 nicklas 210 }();
7604 25 Feb 19 nicklas 211
7604 25 Feb 19 nicklas 212 Doc.onLoad(Wizard.initPage);