|
@@ -1,6 +1,48 @@
|
|
|
-function generateReviewSection(listName,id,callback){
|
|
|
+//loadFile is in fileManager.js
|
|
|
+var crfReviewSection={};
|
|
|
+
|
|
|
+crfReviewSection.set=
|
|
|
+function(parentClass){
|
|
|
+ if ("parent" in this)
|
|
|
+ return;
|
|
|
+ this.parent=parentClass;
|
|
|
+}
|
|
|
+
|
|
|
+crfReviewSection.generateErrorMessage=
|
|
|
+function (id,listName,msg){
|
|
|
+ this.parent.print('generateErrorMessage:');
|
|
|
+ let eid=listName+"_errorMsg";
|
|
|
+ let el=config.document.getElementById(eid);
|
|
|
+ if (el===null){
|
|
|
+ el=config.document.createElement("p");
|
|
|
+ config.document.getElementById(id).appendChild(el);
|
|
|
+ }
|
|
|
+ el.innerHTML=msg;
|
|
|
+}
|
|
|
+
|
|
|
+crfReviewSection.clearErrorMessage=
|
|
|
+function(listName){
|
|
|
+ let eid=listName+"_errorMsg";
|
|
|
+ let el=config.document.getElementById(eid);
|
|
|
+ if (el===null) return;
|
|
|
+ el.remove();
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+crfReviewSection.generateSection=
|
|
|
+function(listName,id,callback){
|
|
|
+ let that=this;
|
|
|
+ let action=function(){that.fcontinue(listName,id,callback);};
|
|
|
+ LABKEY.requiresScript(["crfTecant/fileManager.js"],action);
|
|
|
+}
|
|
|
+
|
|
|
+crfReviewSection.fcontinue=
|
|
|
+function(listName,id,callback){
|
|
|
//callback should be generateReviewSectionCB and it takes no arguments
|
|
|
- print("generateReviewSection");
|
|
|
+ this.parent.print("generateReviewSection");
|
|
|
+ let config=this.parent.config;
|
|
|
//need base path
|
|
|
|
|
|
|
|
@@ -9,67 +51,77 @@ function generateReviewSection(listName,id,callback){
|
|
|
|
|
|
config.loadFileConfig.cb=callback;
|
|
|
config.loadFileConfig.id=id;
|
|
|
- config.loadFileConfig.url=getBasePath()+'/@files/reportSetup/'+listName+'.json';
|
|
|
- loadFile();
|
|
|
+ config.loadFileConfig.url=fileManager.getBasePath()+'/@files/reportSetup/'+listName+'.json';
|
|
|
+ fileManager.loadFile();
|
|
|
//load file and continue in the next function
|
|
|
}
|
|
|
|
|
|
-function getParticipantCode(pid){
|
|
|
+crfReviewSection.getParticipantCode=
|
|
|
+function(pid){
|
|
|
|
|
|
- let filters=[LABKEY.Filter.create("crfRef",getCRFref())];
|
|
|
+ let filters=[LABKEY.Filter.create("crfRef",this.parent.getCRFref())];
|
|
|
+ let config=this.parent.config;
|
|
|
let mfId=config.formConfig.form['masterQuery'];
|
|
|
let queryName=config.formConfig.queryMap[mfId];
|
|
|
- pid.afterId=setParticipantCode;
|
|
|
+ let that=this;
|
|
|
+ pid.afterId=function(id){that.setParticipantCode(id);};
|
|
|
pid.participantField=config.formConfig.studyData["SubjectColumnName"];
|
|
|
- let cb=function(data){afterRegistration(pid,data);}
|
|
|
+ let cb=function(data){that.afterRegistration(pid,data);}
|
|
|
//untested
|
|
|
- cvSelectRows('lists',queryName,filters,cb,getContainer('data'));
|
|
|
+ this.parent.selectRows('lists',queryName,filters,cb,this.parent.getContainer('data'));
|
|
|
}
|
|
|
|
|
|
-function visitCodeFromVisitId(visitId){
|
|
|
+crfReviewSection.visitCodeFromVisitId=
|
|
|
+function(visitId){
|
|
|
if (visitId<0) return "NONE";
|
|
|
- let project=getContainer('data');
|
|
|
- print('visitCodeFromVisitId: '+project.search('retro'));
|
|
|
+ let project=this.parent.getContainer('data');
|
|
|
+this.parent.print('visitCodeFromVisitId: '+project.search('retro'));
|
|
|
if (project.search('retro')>-1)
|
|
|
visitId-=1;
|
|
|
return 'VISIT_'+visitId.toString();
|
|
|
}
|
|
|
|
|
|
-function replaceSlash(x){
|
|
|
+crfReviewSection.replaceSlash=
|
|
|
+function(x){
|
|
|
return x.replace(/\//,'_');
|
|
|
}
|
|
|
|
|
|
-function setParticipantCode(pid){
|
|
|
+crfReviewSection.setParticipantCode=
|
|
|
+function(pid){
|
|
|
let fName='[setParticipantCode]';
|
|
|
let rows=pid.registration.rows;
|
|
|
+ let config=this.parent.config;
|
|
|
//pick from study
|
|
|
let participantField=config.formConfig.studyData["SubjectColumnName"];
|
|
|
if (rows.length==1){
|
|
|
- print(fName+': '+rows[0][participantField]+'/'+rows[0].visitId);
|
|
|
- let visitCode=visitCodeFromVisitId(rows[0].visitId);
|
|
|
- print('setParticipantCode: '+pid.participantId+'/'+visitCode);
|
|
|
- pid.participantCode=replaceSlash(pid.participantId);
|
|
|
+ this.parent.print(fName+': '+rows[0][participantField]+'/'+rows[0].visitId);
|
|
|
+ let visitCode=this.visitCodeFromVisitId(rows[0].visitId);
|
|
|
+ this.parent.print('setParticipantCode: '+pid.participantId+'/'+visitCode);
|
|
|
+ pid.participantCode=this.replaceSlash(pid.participantId);
|
|
|
pid.visitCode=visitCode;
|
|
|
}
|
|
|
- generateReviewSection2(pid);
|
|
|
+ this.generateReviewSection2(pid);
|
|
|
}
|
|
|
|
|
|
-function generateReviewSectionCB(){
|
|
|
-
|
|
|
+crfReviewSection.CB=
|
|
|
+function(){
|
|
|
+ let config=this.parent.config;
|
|
|
let listName=config.loadFileConfig.listName;
|
|
|
let id=config.loadFileConfig.id;
|
|
|
|
|
|
- clearErrorMessage(listName);
|
|
|
+ this.parent.clearErrorMessage(listName);
|
|
|
|
|
|
let pid=new Object();
|
|
|
pid.participantCode="NONE";
|
|
|
pid.visitCode="NONE";
|
|
|
- getParticipantCode(pid);
|
|
|
- print('Get participant code sent');
|
|
|
+ this.getParticipantCode(pid);
|
|
|
+ this.parent.print('Get participant code sent');
|
|
|
//involves database search, continue after callback
|
|
|
}
|
|
|
|
|
|
-function getValueFromElement(id,defaultValue){
|
|
|
+crfReviewSection.getValueFromElement=
|
|
|
+function(id,defaultValue){
|
|
|
+ let config=this.parent.config;
|
|
|
let e=config.document.getElementById(id);
|
|
|
if (e!=null){
|
|
|
defaultValue=e.innerHTML;
|
|
@@ -77,14 +129,16 @@ function getValueFromElement(id,defaultValue){
|
|
|
return defaultValue;
|
|
|
}
|
|
|
|
|
|
-function pickParticipantCodeFromPage(){
|
|
|
+crfReviewSection.pickParticipantCodeFromPage=
|
|
|
+function(){
|
|
|
let pid=new Object();
|
|
|
- pid.participantCode=getValueFromElement("participantCode","NIX-LJU-D2002-IRAE-A000");
|
|
|
- pid.visitCode=getValueFromElement("visitCode","VISIT_1");
|
|
|
- generateReviewSection2(pid);
|
|
|
+ pid.participantCode=this.getValueFromElement("participantCode","NIX-LJU-D2002-IRAE-A000");
|
|
|
+ pid.visitCode=this.getValueFromElement("visitCode","VISIT_1");
|
|
|
+ this.generateReviewSection2(pid);
|
|
|
}
|
|
|
|
|
|
-function patternReplace(src,replacements,values){
|
|
|
+crfReviewSection.patternReplace=
|
|
|
+function(src,replacements,values){
|
|
|
|
|
|
for (rep in replacements){
|
|
|
let txt1=src.replace(new RegExp(rep),values[replacements[rep]]);
|
|
@@ -94,9 +148,11 @@ function patternReplace(src,replacements,values){
|
|
|
|
|
|
}
|
|
|
|
|
|
-function plotImage(cell,k,row,rowVariable,obj,pid){
|
|
|
- let baseDir=patternReplace(obj.imageDir,obj.replacements,pid);
|
|
|
- print('Base dir: '+pid.basePath);
|
|
|
+crfReviewSection.plotImage=
|
|
|
+function(cell,k,row,rowVariable,obj,pid){
|
|
|
+ let config=this.parent.config;
|
|
|
+ let baseDir=this.patternReplace(obj.imageDir,obj.replacements,pid);
|
|
|
+ this.parent.print('Base dir: '+pid.basePath);
|
|
|
pid[obj.variable]=obj.values[k];
|
|
|
cell.id=pid[obj.variable]+"_"+rowVariable+pid[rowVariable];
|
|
|
let img=null;
|
|
@@ -108,7 +164,7 @@ function plotImage(cell,k,row,rowVariable,obj,pid){
|
|
|
cell.appendChild(img);
|
|
|
}
|
|
|
let imgSrc=patternReplace(obj.file,obj.replacements,pid);
|
|
|
- print('Image: '+imgSrc);
|
|
|
+ this.parent.print('Image: '+imgSrc);
|
|
|
let imagePath=pid.basePath+'/'+baseDir+'/'+imgSrc;
|
|
|
|
|
|
img.src=imagePath;
|
|
@@ -117,7 +173,8 @@ function plotImage(cell,k,row,rowVariable,obj,pid){
|
|
|
|
|
|
}
|
|
|
|
|
|
-function showReport(cell,k,row,rowVariable,obj,pid){
|
|
|
+crfReviewSection.showReport=
|
|
|
+function(cell,k,row,rowVariable,obj,pid){
|
|
|
|
|
|
cell.width="300px";
|
|
|
cell.id='report_'+obj.values[k]+"_"+rowVariable+pid[rowVariable];
|
|
@@ -136,13 +193,13 @@ function showReport(cell,k,row,rowVariable,obj,pid){
|
|
|
}
|
|
|
reportConfig.partConfig.showSection="myscatterplot";
|
|
|
let reportWebPartRenderer = new LABKEY.WebPart(reportConfig);
|
|
|
- print('Render to: '+reportConfig.renderTo);
|
|
|
+ this.parent.print('Render to: '+reportConfig.renderTo);
|
|
|
reportWebPartRenderer.render();
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-function showProbability(cell,k,row,rowSetup,j,obj,pid){
|
|
|
- print('showProbability: '+rowSetup);
|
|
|
+crfReviewSection.showProbability=
|
|
|
+function(cell,k,row,rowSetup,j,obj,pid){
|
|
|
+ this.parent.print('showProbability: '+rowSetup);
|
|
|
let rowVariable=rowSetup.variable;
|
|
|
cell.id='prob_'+obj.values[k]+"_"+rowVariable+pid[rowVariable];
|
|
|
|
|
@@ -150,7 +207,7 @@ function showProbability(cell,k,row,rowSetup,j,obj,pid){
|
|
|
probDensity.mean=rowSetup.mean[j];
|
|
|
probDensity.sigma=rowSetup.sigma[j];
|
|
|
|
|
|
- print('showProbability: mean '+probDensity.mean+' sigma '+probDensity.sigma);
|
|
|
+ this.parent.print('showProbability: mean '+probDensity.mean+' sigma '+probDensity.sigma);
|
|
|
|
|
|
|
|
|
probDensity.func=obj.values[k];
|
|
@@ -165,14 +222,15 @@ function showProbability(cell,k,row,rowSetup,j,obj,pid){
|
|
|
for (let f in obj.filters){
|
|
|
selectRows.filterArray.push(
|
|
|
LABKEY.Filter.create(f,pid[obj.filters[f]]));
|
|
|
- print('Filter ['+f+']: '+pid[obj.filters[f]]);
|
|
|
+ this.parent.print('Filter ['+f+']: '+pid[obj.filters[f]]);
|
|
|
}
|
|
|
- selectRows.success=function(data){
|
|
|
- drawProbability(data,cell,obj,pid,probDensity);}
|
|
|
+ selectRows.success=function(data){
|
|
|
+ this.drawProbability(data,cell,obj,pid,probDensity);}
|
|
|
LABKEY.Query.selectRows(selectRows);
|
|
|
}
|
|
|
|
|
|
-function erf(x){
|
|
|
+crfReviewSection.erf=
|
|
|
+function(x){
|
|
|
let fx=[0,0.02,0.04,0.06,0.08,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,
|
|
|
1,1.1,1.2,1.3,1.4,1.5,1.6,1.7,1.8,1.9,2,
|
|
|
2.1,2.2,2.3,2.4,2.5,3,3.5];
|
|
@@ -200,13 +258,13 @@ function erf(x){
|
|
|
let x0=fx[i0];
|
|
|
fval=y0+(y1-y0)/(x1-x0)*(Math.abs(x)-x0);
|
|
|
}
|
|
|
- print('Erf: '+fval);
|
|
|
+ this.parent.print('Erf: '+fval);
|
|
|
if (x<0) return -fval;
|
|
|
return fval;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-function setLine(fbox,name,value,fontSize){
|
|
|
+crfReviewSection.setLine=
|
|
|
+function(fbox,name,value,fontSize){
|
|
|
let fpId=fbox.id+name;
|
|
|
let fp=config.document.getElementById(fpId);
|
|
|
if (fp===null){
|
|
@@ -220,10 +278,11 @@ function setLine(fbox,name,value,fontSize){
|
|
|
fp.innerText=value;
|
|
|
}
|
|
|
|
|
|
-function drawProbability(data,cell,obj,pid,probDensity){
|
|
|
- print('drawProbability');
|
|
|
+crfReviewSection.drawProbability=
|
|
|
+function(data,cell,obj,pid,probDensity){
|
|
|
+this.parent.print('drawProbability');
|
|
|
if (data.rows.length!=1){
|
|
|
- print("drawProbability row length mismatch: "+data.rows.length);
|
|
|
+ this.parent.print("drawProbability row length mismatch: "+data.rows.length);
|
|
|
return;
|
|
|
}
|
|
|
//possible mismatch; I assume the dataset will have a field called value
|
|
@@ -238,7 +297,7 @@ function drawProbability(data,cell,obj,pid,probDensity){
|
|
|
}
|
|
|
let color="red";
|
|
|
let fzx=fz*Math.sqrt(2);
|
|
|
- print('drawProbability '+fzx);
|
|
|
+ this.parent.print('drawProbability '+fzx);
|
|
|
|
|
|
for (let i=1;i<obj.intervals.n;i++){
|
|
|
if (fzx>obj.intervals.zlimits[i]) continue;
|
|
@@ -258,7 +317,7 @@ function drawProbability(data,cell,obj,pid,probDensity){
|
|
|
fbox.style.height="180px";
|
|
|
|
|
|
|
|
|
- print('organCode '+probDensity.organCode);
|
|
|
+ this.parent.print('organCode '+probDensity.organCode);
|
|
|
let organName="Lung";
|
|
|
|
|
|
if (probDensity.organCode==4){
|
|
@@ -268,36 +327,36 @@ function drawProbability(data,cell,obj,pid,probDensity){
|
|
|
organName="Bowel";
|
|
|
}
|
|
|
|
|
|
- setLine(fbox,'_fp4_',organName,"16px");
|
|
|
- setLine(fbox,'_fp_',val.toPrecision(3),"25px");
|
|
|
- setLine(fbox,'_fp1_',"SUV("+probDensity.percentile+"%)","16px");
|
|
|
- setLine(fbox,'_fp2_',fzx.toPrecision(3),"25px");
|
|
|
- setLine(fbox,'_fp3_',"z-value","16px");
|
|
|
+ this.setLine(fbox,'_fp4_',organName,"16px");
|
|
|
+ this.setLine(fbox,'_fp_',val.toPrecision(3),"25px");
|
|
|
+ this.setLine(fbox,'_fp1_',"SUV("+probDensity.percentile+"%)","16px");
|
|
|
+ this.setLine(fbox,'_fp2_',fzx.toPrecision(3),"25px");
|
|
|
+ this.setLine(fbox,'_fp3_',"z-value","16px");
|
|
|
|
|
|
|
|
|
}
|
|
|
-
|
|
|
-function generateReviewSection2(pid){
|
|
|
-
|
|
|
+crfReviewSection.generateReviewSection2=
|
|
|
+function(pid){
|
|
|
+ let config=this.parent.config;
|
|
|
let listName=config.loadFileConfig.listName;
|
|
|
let id=config.loadFileConfig.id;
|
|
|
|
|
|
- print('generateReviewSection2: '+pid.participantCode+'/'+
|
|
|
+ this.parent.print('generateReviewSection2: '+pid.participantCode+'/'+
|
|
|
pid.visitCode);
|
|
|
if (pid.participantCode=="NONE" || pid.visitCode=="NONE"){
|
|
|
- generateErrorMessage(id,listName,
|
|
|
+ this.generateErrorMessage(id,listName,
|
|
|
"ParticipantId/visitId not set");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
|
|
|
- print('JSON: '+config.loadFileConfig.json);
|
|
|
+ this.parent.print('JSON: '+config.loadFileConfig.json);
|
|
|
|
|
|
let json=config.loadFileConfig.json;
|
|
|
let nrows=json.rows.values.length;
|
|
|
let ncol=json.columns.length;
|
|
|
|
|
|
- pid.basePath=getBasePath()+"/@files";
|
|
|
+ pid.basePath=fileManager.getBasePath()+"/@files";
|
|
|
|
|
|
|
|
|
let el=config.document.getElementById(id);
|
|
@@ -331,11 +390,11 @@ function generateReviewSection2(pid){
|
|
|
else
|
|
|
cell=row.insertCell();
|
|
|
if (obj.display=="image")
|
|
|
- plotImage(cell,k,row,json.rows.variable,obj,pid);
|
|
|
+ this.plotImage(cell,k,row,json.rows.variable,obj,pid);
|
|
|
if (obj.display=="report")
|
|
|
- showReport(cell,k,row,json.rows.variable,obj,pid);
|
|
|
+ this.showReport(cell,k,row,json.rows.variable,obj,pid);
|
|
|
if (obj.display=="probability"){
|
|
|
- showProbability(cell,k,row,json.rows,i,obj,pid);
|
|
|
+ this.showProbability(cell,k,row,json.rows,i,obj,pid);
|
|
|
}
|
|
|
ic++;
|
|
|
}
|
|
@@ -349,23 +408,24 @@ function generateReviewSection2(pid){
|
|
|
|
|
|
///>>>>>>>>>>>>>>end of reviewSection(REPORT)
|
|
|
|
|
|
-function afterRegistration(data,fc){
|
|
|
+crfReviewSection.afterRegistration=
|
|
|
+function(data,fc){
|
|
|
let fName='[afterRegistration/'+data.queryName+']';
|
|
|
- print(fName+": rows:"+data.rows.length);
|
|
|
+ this.parent.print(fName+": rows:"+data.rows.length);
|
|
|
fc.registration=data;
|
|
|
let registrationData=fc.registration;
|
|
|
- clearErr();
|
|
|
+ this.parent.clearErr();
|
|
|
if (registrationData.rows.length!=1){
|
|
|
let msg=fName+": ERROR: Found "+registrationData.rows.length;
|
|
|
- msg+=" registration entries for crfrefid "+getCRFref();
|
|
|
- print(msg);
|
|
|
+ msg+=" registration entries for crfrefid "+this.parent.getCRFref();
|
|
|
+ this.parent.print(msg);
|
|
|
fc.afterId(fc);
|
|
|
return;
|
|
|
}
|
|
|
- print(fName+'registration participant field: '+fc.participantField);
|
|
|
+ this.parent.print(fName+'registration participant field: '+fc.participantField);
|
|
|
fc.participantId=registrationData.rows[0][fc.participantField];
|
|
|
//could be a lookup field (particularly for studies)
|
|
|
- print('ID: '+fc.participantId);
|
|
|
+ this.parent.print('ID: '+fc.participantId);
|
|
|
let fields=registrationData.metaData.fields;
|
|
|
let field="NONE";
|
|
|
for (f in fields){
|
|
@@ -374,14 +434,15 @@ function afterRegistration(data,fc){
|
|
|
}
|
|
|
if ("lookup" in field){
|
|
|
let pid=fc.participantId;
|
|
|
- print("Using lookup for participantId: "+pid);
|
|
|
+ this.parent.print("Using lookup for participantId: "+pid);
|
|
|
let lookup=field["lookup"];
|
|
|
- print("Lookup: ["+lookup.schemaName+','+lookup.queryName+']');
|
|
|
+ this.parent.print("Lookup: ["+lookup.schemaName+','+lookup.queryName+']');
|
|
|
|
|
|
//load lookup
|
|
|
- let cb=function(data){afterRegistrationLookup(data,lookup.displayColumn,fc)};
|
|
|
+ let that=this;
|
|
|
+ let cb=function(data){that.afterRegistrationLookup(data,lookup.displayColumn,fc)};
|
|
|
let filters=[LABKEY.Filter.create(lookup.keyColumn,pid)];
|
|
|
- cvSelectRows(lookup.schemaName,lookup.queryName,filters,cb,lookup.containerPath);
|
|
|
+ this.parent.selectRows(lookup.schemaName,lookup.queryName,filters,cb,lookup.containerPath);
|
|
|
|
|
|
}
|
|
|
else{
|
|
@@ -390,11 +451,12 @@ function afterRegistration(data,fc){
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-function afterRegistrationLookup(data,displayColumn,fc){
|
|
|
- print("afterRegistrationLookup");
|
|
|
+crfReviewSection.afterRegistrationLookup=
|
|
|
+function(data,displayColumn,fc){
|
|
|
+ this.parent.print("afterRegistrationLookup");
|
|
|
let entry=data.rows[0];
|
|
|
fc.participantId=entry[displayColumn];
|
|
|
- print('Setting to '+fc.participantId);
|
|
|
+ this.parent.print('Setting to '+fc.participantId);
|
|
|
fc.afterId(fc);
|
|
|
//afterParticipantId(configUpload);
|
|
|
}
|