|
@@ -1,22 +1,69 @@
|
|
|
//namespace
|
|
|
var formGenerator={};
|
|
|
|
|
|
-formGenerator.set=
|
|
|
-function(parentClass){
|
|
|
- this.parent=parentClass;
|
|
|
+formGenerator.init=
|
|
|
+function(cb=null){
|
|
|
+ let that=this;
|
|
|
+ let action=function(){that.afterScripts(cb);};
|
|
|
+ let dependencies=new Array();
|
|
|
+ dependencies.push("crf/crfHTML.js");
|
|
|
+ dependencies.push("crf/crfSetup.js");
|
|
|
+ dependencies.push("crf/crfData.js");
|
|
|
+ dependencies.push("crf/runQuery.js");
|
|
|
+
|
|
|
+
|
|
|
+ LABKEY.requiresScript(dependencies,action);
|
|
|
+}
|
|
|
+
|
|
|
+formGenerator.afterScripts=
|
|
|
+function(cb=null){
|
|
|
+
|
|
|
+ crfData.setSetup(crfSetup);
|
|
|
+ let initData=function(){crfData.init(cb);};
|
|
|
+ crfSetup.init(initData);
|
|
|
+}
|
|
|
+
|
|
|
+formGenerator.setRoleAndSite=
|
|
|
+function(roleAndSite){
|
|
|
+ this.roleAndSite=roleAndSite;
|
|
|
+}
|
|
|
+
|
|
|
+formGenerator.showFormGenerator=
|
|
|
+function(){
|
|
|
+ if ("table" in this){
|
|
|
+ this.table.display='block';
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ addFormGenerator();
|
|
|
+}
|
|
|
+
|
|
|
+formGenerator.hideFormGenerator=
|
|
|
+function(){
|
|
|
+ if (this.table){
|
|
|
+ this.table.display='none';
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+formGenerator.getCrfSelectRow=
|
|
|
+function(crfRef){
|
|
|
+ let rows=this.crfSelectRows;
|
|
|
+ for (let i=0;i<rows.length;i++){
|
|
|
+ if (rows[i]['crfRef']==crfRef)
|
|
|
+ return rows[i];
|
|
|
+
|
|
|
+ }
|
|
|
+ return new Object();
|
|
|
}
|
|
|
|
|
|
formGenerator.addFormGenerator=
|
|
|
function(){
|
|
|
//parentClass should provide config and print and getContainer
|
|
|
- let config=this.parent.config;
|
|
|
|
|
|
let fName='[addFormGenerator]';
|
|
|
- this.parent.print(fName);
|
|
|
+ this.print(fName);
|
|
|
//layout
|
|
|
- let table=config.document.createElement("table");
|
|
|
+ this.table=crfHTML.createTable('formDiv');
|
|
|
table.className="t2";
|
|
|
- config.document.getElementById(config.div).appendChild(table);
|
|
|
//this is a form manipulator
|
|
|
let fgForm=new Object();
|
|
|
|
|
@@ -25,17 +72,19 @@ function(){
|
|
|
fgForm.comment=this.addInputRow(table,'Enter comment','text');
|
|
|
fgForm.details=this.addInputRow(table,'Details','label');
|
|
|
fgForm.warnings=this.addInputRow(table,'Warnings','label');
|
|
|
- fgForm.warnings.innerHTML='formGenerator version 2.1.0';
|
|
|
- this.addOption(fgForm.formSelect,'<Select>',-1);
|
|
|
- let formRows=config.formConfig.generateConfigData.rows;
|
|
|
+ fgForm.warnings.innerHTML='formGenerator version 3.1.0';
|
|
|
+ let formRows=crfSetup.getRows('generateConfigData');
|
|
|
+ let options=new Object();
|
|
|
for (let i=0;i<formRows.length;i++){
|
|
|
let formId=formRows[i]["formId"];
|
|
|
let formName=this.getFormName(formId);
|
|
|
- this.parent.print(fName+' '+formRows[i]["formId"]+'/'+formName);
|
|
|
- this.addOption(fgForm.formSelect,formName,formId);
|
|
|
+ this.print(fName+' '+formRows[i]["formId"]+'/'+formName);
|
|
|
+ options[formId]=formName;
|
|
|
+ //this.addOption(fgForm.formSelect,formName,formId);
|
|
|
}
|
|
|
//callbacks should be called on copy of this
|
|
|
let that=this;
|
|
|
+ crfHTML.addSelectOptions(fgForm.formSelect,options);
|
|
|
fgForm.formSelect.onchange=function(){that.updateIdList(fgForm);};
|
|
|
fgForm.crfSelect.onchange=function(){that.updateLabel(fgForm);};
|
|
|
fgForm.generateButton=this.addInputRow(table,'Generate Form','button');
|
|
@@ -44,134 +93,50 @@ function(){
|
|
|
|
|
|
}
|
|
|
|
|
|
-formGenerator.insertRow=
|
|
|
-function(schemaName,queryName,row,cb=null,containerPath=null){
|
|
|
- let fName='[fgInsertRow]';
|
|
|
- this.parent.print(fName);
|
|
|
- //cb=function(data){....}
|
|
|
- let qconfig=new Object();
|
|
|
- if (containerPath)
|
|
|
- qconfig.containerPath=containerPath;
|
|
|
- qconfig.schemaName=schemaName;
|
|
|
- qconfig.queryName=queryName;
|
|
|
- qconfig.success=function(data){;};
|
|
|
- if (cb) qconfig.success=cb;
|
|
|
- qconfig.rows=[row];
|
|
|
- this.parent.print(fName+' qconfig '+qconfig);
|
|
|
- LABKEY.Query.insertRows(qconfig);
|
|
|
-}
|
|
|
-
|
|
|
formGenerator.addInputRow=
|
|
|
function(table,header,type){
|
|
|
- let config=this.parent.config;
|
|
|
let fName='[addInputRow]';
|
|
|
- this.parent.print(fName);
|
|
|
+ this.print(fName);
|
|
|
let row=table.insertRow();
|
|
|
- let cell=config.document.createElement('th');
|
|
|
- let text=config.document.createTextNode(header);
|
|
|
- cell.appendChild(text);
|
|
|
- row.appendChild(cell);
|
|
|
+ let cell=crfHTML.createTblHeader(null,row);
|
|
|
+ crfHTML.createTextNode(header,null,cell);
|
|
|
+
|
|
|
+ cell=row.insertCell();
|
|
|
let input=null;
|
|
|
|
|
|
if (type=="select")
|
|
|
- input=config.document.createElement(type);
|
|
|
+ input=crfHTML.createSelect(new Object(),null,cell);
|
|
|
+
|
|
|
+ if (type=="button")
|
|
|
+ input=crfHTML.createButton(null,cell);
|
|
|
|
|
|
- if (type=="button"){
|
|
|
- input=config.document.createElement("input");
|
|
|
- input.type="button";
|
|
|
- }
|
|
|
if (type=="text"){
|
|
|
- input=config.document.createElement('textarea');
|
|
|
+ input=crfHTML.createTextArea(null,cell);
|
|
|
input.cols="65";
|
|
|
input.rows="5";
|
|
|
}
|
|
|
if (type=="label")
|
|
|
- input=config.document.createElement(type);
|
|
|
+ input=crfHTML.createLabel('Loading',null,cell);
|
|
|
|
|
|
- let cell1=row.insertCell();
|
|
|
- cell1.appendChild(input);
|
|
|
return input;
|
|
|
}
|
|
|
|
|
|
-formGenerator.getFormName=
|
|
|
-function(formId){
|
|
|
- let config=this.parent.config;
|
|
|
- let rows=config.formConfig.dataForms.rows;
|
|
|
- for (let i=0;i<rows.length;i++){
|
|
|
- if (rows[i]['Key']==formId){
|
|
|
- return rows[i]['formName'];
|
|
|
- }
|
|
|
- }
|
|
|
- return "NONE";
|
|
|
-}
|
|
|
-
|
|
|
-formGenerator.getQueryName=
|
|
|
-function(queryId){
|
|
|
- let config=this.parent.config;
|
|
|
- let rows=config.formConfig.inputLists.rows;
|
|
|
- for (let i=0;i<rows.length;i++){
|
|
|
- if (rows[i]['Key']==queryId){
|
|
|
- return rows[i]['queryName'];
|
|
|
- }
|
|
|
- }
|
|
|
- return "NONE";
|
|
|
-}
|
|
|
-
|
|
|
-formGenerator.getGCRow=
|
|
|
-function(formId){
|
|
|
- let config=this.parent.config;
|
|
|
- let formRows=config.formConfig.generateConfigData.rows;
|
|
|
- for (let i=0;i<formRows.length;i++){
|
|
|
- if (formRows[i]['formId']==formId){
|
|
|
- return formRows[i];
|
|
|
- }
|
|
|
- }
|
|
|
- return Object();
|
|
|
-}
|
|
|
-
|
|
|
-formGenerator.getCrfSelectRow=
|
|
|
-function(crfRef){
|
|
|
- let config=this.parent.config;
|
|
|
- let rows=config.formConfig.crfSelectRows;
|
|
|
- for (let i=0;i<rows.length;i++){
|
|
|
- if (rows[i]['crfRef']==crfRef)
|
|
|
- return rows[i];
|
|
|
-
|
|
|
- }
|
|
|
- return Object();
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-formGenerator.addOption=
|
|
|
-function(input,name,value){
|
|
|
- let config=this.parent.config;
|
|
|
- let opt=config.document.createElement("option");
|
|
|
- opt.text=name;
|
|
|
- opt.value=value;
|
|
|
- input.options[input.options.length]=opt;
|
|
|
-}
|
|
|
-
|
|
|
-formGenerator.clearOptions=
|
|
|
-function(input){
|
|
|
- for(let i = input.options.length; i >= 0; i--) {
|
|
|
- input.remove(i);
|
|
|
- }
|
|
|
-}
|
|
|
|
|
|
formGenerator.createFormWithId=
|
|
|
function(fgForm){
|
|
|
//get form id and entry id from select and create form as above
|
|
|
let fName='[createFormWithId]';
|
|
|
+ let ar=roleAndSite.split(':');
|
|
|
+ let role=ar[0];
|
|
|
+ let siteNumber=ar[1];
|
|
|
|
|
|
- this.parent.print(fName);
|
|
|
- let config=this.parent.config;
|
|
|
+ this.print(fName);
|
|
|
let formId=fgForm.formSelect.options[fgForm.formSelect.selectedIndex].value;
|
|
|
let crfRef=fgForm.crfSelect.options[fgForm.crfSelect.selectedIndex].text;
|
|
|
- let configRow=this.getGCRow(formId);
|
|
|
+ let configRow=crfSetup.getEntryMap('generateConfigData:formId')[formId];
|
|
|
let crfSelectRow=this.getCrfSelectRow(crfRef);
|
|
|
- let formConfig=config.formConfig;
|
|
|
|
|
|
- this.parent.print("Create form w/id "+formId);
|
|
|
+ this.print("Create form w/id "+formId);
|
|
|
|
|
|
let crfEntry=new Object();
|
|
|
crfEntry.entryId=Date.now();
|
|
@@ -184,15 +149,15 @@ function(fgForm){
|
|
|
crfEntry.formStatus=configRow['formStatus'];//In progress
|
|
|
//set other variables
|
|
|
//requires studyData as part of formConfig
|
|
|
- let studyData=formConfig.studyData.rows[0];
|
|
|
- let varRows=formConfig['crfStaticVariables'].rows;
|
|
|
+ let studyData=crfSetup.getRows('studyDataAll')[0];
|
|
|
+ let varRows=crfSetup.getRows('crfStaticVariables');
|
|
|
for (let i=0;i<varRows.length;i++){
|
|
|
let varName=varRows[i].staticVariable;
|
|
|
crfEntry[varName]=studyData[varName];
|
|
|
}
|
|
|
crfEntry.UserId=LABKEY.Security.currentUser.id;
|
|
|
- crfEntry.Site=config.formConfig.currentSites[0].siteNumber;
|
|
|
- this.parent.print("Setting site to id="+crfEntry.Site);
|
|
|
+ crfEntry.Site=siteNumber;
|
|
|
+ this.print("Setting site to id="+crfEntry.Site);
|
|
|
//from argument list
|
|
|
crfEntry.Form=formId;
|
|
|
crfEntry.parentCrf=crfRef;
|
|
@@ -204,7 +169,7 @@ function(fgForm){
|
|
|
reviewComment['crfRef']=crfRef;
|
|
|
//comment length
|
|
|
let x=fgForm.comment.value;
|
|
|
- this.parent.print(fName+' comment length '+x.length);
|
|
|
+ this.print(fName+' comment length '+x.length);
|
|
|
if (x.length==0){
|
|
|
fgForm.warnings.innerHTML='Supply a comment';
|
|
|
return;
|
|
@@ -212,21 +177,16 @@ function(fgForm){
|
|
|
reviewComment['reviewComment']=fgForm.comment.value;
|
|
|
reviewComment['queryName']=configRow['queryId'];
|
|
|
|
|
|
- let crfStatus=new Object();
|
|
|
- crfStatus.entryId=crfEntry.entryId;
|
|
|
- crfStatus.submissionDate=new Date();
|
|
|
- crfStatus.FormStatus=crfEntry.formStatus;
|
|
|
- crfStatus.User=crfEntry.UserId;
|
|
|
- crfStatus.Form=crfEntry.Form;
|
|
|
- crfStatus.operator=config.role;
|
|
|
+ let crfStatus=crfData.createCrfStatus(crfEntry);
|
|
|
+ crfStatus.operator=role;
|
|
|
crfStatus.action='createFormWithId';
|
|
|
|
|
|
let that=this;
|
|
|
- let containerPath=this.parent.getContainer('data');
|
|
|
+ let containerPath=crfSetup.getContainer('data');
|
|
|
let rd=function(data){that.redirect();};
|
|
|
- let pass1=function(data){that.insertRow('lists','crfStatus',crfStatus,rd,containerPath);};
|
|
|
- let pass=function(data){that.insertRow('lists','reviewComments',reviewComment,pass1,containerPath);};
|
|
|
- this.insertRow('lists','crfEntry',crfEntry,pass,this.parent.getContainer('data'));
|
|
|
+ let pass1=function(data){runQuery.insertRows('lists','crfStatus',[crfStatus],rd,containerPath);};
|
|
|
+ let pass=function(data){runQuery.insertRows('lists','reviewComments',[reviewComment],pass1,containerPath);};
|
|
|
+ runQuery.insertRows('lists','crfEntry',crfEntry,pass,containerPath);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -234,34 +194,28 @@ formGenerator.updateIdList=
|
|
|
function(fgForm){
|
|
|
let fName='[updateIdList]';
|
|
|
let formId=fgForm.formSelect.options[fgForm.formSelect.selectedIndex].value;
|
|
|
- this.parent.print(fName+' id '+formId);
|
|
|
- //remove old options
|
|
|
- this.clearOptions(fgForm.crfSelect);
|
|
|
- this.parent.print(fName+' options cleared');
|
|
|
+ this.print(fName+' id '+formId);
|
|
|
//get query associated with form
|
|
|
- let configRow=this.getGCRow(formId);
|
|
|
+ let configRow=crfSetup.getEntryMap('generateConfigData:formId')[formId];
|
|
|
let queryId=configRow['queryId'];
|
|
|
- this.parent.print(fName+' queryId '+queryId);
|
|
|
+ this.print(fName+' queryId '+queryId);
|
|
|
if (!queryId || queryId<0)
|
|
|
return;
|
|
|
-
|
|
|
- let qselect=new Object();
|
|
|
- qselect.containerPath=this.parent.getContainer('data');
|
|
|
- qselect.schemaName='lists';
|
|
|
- qselect.queryName=this.getQueryName(queryId);
|
|
|
- let that=this;
|
|
|
- qselect.success=function(data){that.updateIdListWithData(fgForm,data);};
|
|
|
- LABKEY.Query.selectRows(qselect);
|
|
|
+ let qMap=crfSetup.getMap('inputLists');
|
|
|
+ let containerPath=crfSetup.getContainer('data');
|
|
|
+ let success=function(data){that.updateIdListWithData(fgForm,data);};
|
|
|
+ runQuery.selectRows('lists',qMap[queryId],[],success,containerPath);
|
|
|
}
|
|
|
|
|
|
formGenerator.updateIdListWithData=
|
|
|
function(fgForm,data){
|
|
|
- let config=this.parent.config;
|
|
|
let rows=data.rows;
|
|
|
- config.formConfig.crfSelectRows=data.rows;
|
|
|
+ this.crfSelectRows=data.rows;
|
|
|
+ let options=new Object();
|
|
|
for (let i=0;i<rows.length;i++){
|
|
|
- this.addOption(fgForm.crfSelect,rows[i]['crfRef'],i);
|
|
|
+ options[i]=rows[i]['crfRef'];
|
|
|
}
|
|
|
+ crfHTML.addSelectOptions(fgForm.crfSelect,options);
|
|
|
let event=new Event('change');
|
|
|
fgForm.crfSelect.dispatchEvent(event);
|
|
|
}
|
|
@@ -276,22 +230,20 @@ function(fgForm){
|
|
|
formGenerator.redirect=
|
|
|
function(){
|
|
|
|
|
|
- let debug=false;
|
|
|
let formUrl="begin";
|
|
|
let params=new Object();
|
|
|
params.name=formUrl;
|
|
|
params.pageId="CRF";
|
|
|
|
|
|
//points to crf container
|
|
|
- let containerPath=this.parent.getContainer('data');
|
|
|
+ let containerPath=crfSetup.getContainer('data');
|
|
|
|
|
|
// This changes the page after building the URL.
|
|
|
//Note that the wiki page destination name is set in params.
|
|
|
|
|
|
var homeURL = LABKEY.ActionURL.buildURL(
|
|
|
"project", formUrl , containerPath, params);
|
|
|
- this.parent.print("Redirecting to "+homeURL);
|
|
|
- if (debug) return;
|
|
|
+ this.print("Redirecting to "+homeURL);
|
|
|
window.location = homeURL;
|
|
|
|
|
|
|