crfVisitNew.js 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253
  1. var crfVisit={};
  2. //crfVisit.config=new Object();
  3. crfVisit.setDebug=
  4. function(debug=null){
  5. if (debug){
  6. this.print=function(msg){debug.this.print(msg);};
  7. this.clear=function(){debug.clear();}
  8. return;
  9. }
  10. //provide default functions if not debug object is available
  11. this.print=function(msg){console.log(msg);}
  12. this.clear=function(){;}
  13. }
  14. crfVisit.setDebug();
  15. crfVisit.init=
  16. function(cb=null){
  17. let that=this;
  18. let action=function(){that.scriptsLoaded(cb);};
  19. let dependencies=new Array();
  20. dependencies.push('crf/runQuery.js');
  21. dependencies.push("crf/crfReviewSection.js");
  22. dependencies.push("crf/participantIdManager.js");
  23. dependencies.push("crf/variableList.js");
  24. dependencies.push("crf/webdav.js");
  25. dependencies.push("crf/crfPrint.js");
  26. dependencies.push("crf/crfSetup.js");
  27. dependencies.push("crf/crfData.js");
  28. dependencies.push("crf/crfHTML.js");
  29. dependencies.push("crf/generateRegistration.js");
  30. LABKEY.Utils.requiresScript(dependencies,action);
  31. }
  32. crfVisit.scriptsLoaded=
  33. function(cb=null){
  34. participantIdManager.set(crfSetup,crfData);
  35. webdav.set(this);
  36. crfReviewSection.set(this);
  37. crfPrint.set(this);
  38. crfData.setSetup(crfSetup);
  39. crfHTML.init();
  40. generateRegistration.init();
  41. let initRegistration=function(){generateRegistration.init(cb);};
  42. let initIdManager=function(){participantIdManager.init(initRegistration);};
  43. let action=function(){crfData.init(initIdManager)};
  44. crfSetup.init(action);
  45. }
  46. crfVisit.getContainer=
  47. function(label){
  48. return crfSetup.getContainer(label);
  49. }
  50. crfVisit.getCrfRefFirst=
  51. function(){
  52. //crfRef is part of html call and gets stored in the page
  53. return this.crfRef;
  54. }
  55. crfVisit.getCrfRef=
  56. function (){
  57. //'crfRefId'
  58. return crfData.getCrfEntry()['entryId'];
  59. }
  60. crfVisit.getCrfRefData=
  61. function(){
  62. let parentCrf=crfData.getCrfEntry()['parentCrf'];
  63. if (parentCrf!=undefined) return parentCrf;
  64. return this.getCrfRef();
  65. }
  66. crfVisit.onFailure=
  67. function(errorInfo, options, responseObj){
  68. if (errorInfo && errorInfo.exception)
  69. alert("Failure: " + errorInfo.exception);
  70. else
  71. alert("Failure: " + responseObj.statusText);
  72. }
  73. crfVisit.doNothing=
  74. function (){
  75. this.print('doNothing called');
  76. }
  77. crfVisit.getIdManager=
  78. function(){
  79. if (!("idManager" in this)){
  80. participantIdManager.masterForm=this.masterForm;
  81. this.idManager=participantIdManager.getObject();
  82. }
  83. return this.idManager;
  84. }
  85. crfVisit.getSetupObject=
  86. function(){
  87. if (!("setups" in this))
  88. this.setups=new Object();
  89. return this.setups;
  90. }
  91. crfVisit.getStoredSetup=
  92. function(sectionId){
  93. let sObj=this.getSetupObject();
  94. if (sectionId in sObj) return sObj[sectionId];
  95. return null;
  96. }
  97. crfVisit.addSetup=
  98. function(sectionId,setup){
  99. let sObj=this.getSetupObject();
  100. sObj[sectionId]=setup;
  101. }
  102. crfVisit.makeSetup=
  103. function(sectionId,listName){
  104. //generate setup object whcih should contain fields:
  105. //readonlyFlag - whether the dataset is writeable
  106. //filters - selection fields that allow creation of LABKEY.Filter.create()
  107. //getInputId - formating of unique ids for html elements
  108. //
  109. let fName='[Setup]';
  110. this.print(fName+' '+sectionId+'/'+listName);
  111. let setup=new Object();
  112. setup.queryName=listName;
  113. setup.readonlyFlag=function(vName){return false};
  114. setup.filters=new Object();
  115. setup.filters['crfRef']=this.getCrfRef();
  116. setup.getInputId=function(vName){return sectionId+"_"+vName;}
  117. setup.sectionId=sectionId;
  118. setup.isReview=false;
  119. this.addSetup(sectionId,setup);
  120. setup.setVariables=new Object();
  121. return setup;
  122. }
  123. crfVisit.makeFullAccessSetup=
  124. function(sectionId,listName){
  125. //addApply - whether a submit/Save button is generated
  126. let setup=this.makeSetup(sectionId,listName);
  127. setup.addApply="Save";
  128. return setup;
  129. }
  130. crfVisit.makeReadonlySetup=
  131. function(sectionId,listName){
  132. let setup=this.makeSetup(sectionId,listName);
  133. //see definition of setup object above, change readonly flag
  134. setup.readonlyFlag=function(vName){return true};
  135. return setup;
  136. }
  137. crfVisit.getSetup=
  138. function(sectionId,listName,writeAccess=true){
  139. //change to section granulated permission of type EDIT, COMMENT, READ
  140. //let formStatus=config.formConfig.formStatus;
  141. //equivalent to READ
  142. let setup=this.getStoredSetup(sectionId);
  143. if (setup) return setup;
  144. if (!writeAccess)
  145. //if (formStatus=="Submitted")
  146. return this.makeReadonlySetup(sectionId,listName);
  147. //if (formStatus=="Approved")
  148. // return readonlySetup(listName);
  149. return this.makeFullAccessSetup(sectionId,listName);
  150. }
  151. crfVisit.generateSection=
  152. function(formSetupEntry){
  153. let that=this;
  154. let listName=crfSetup.getMap('inputLists')[formSetupEntry['queryName']];
  155. let sectionId="section"+formSetupEntry['Key'];
  156. //if (!listName) is for debugSection
  157. if (!listName){
  158. listName="debugSection";
  159. }
  160. let fName='[generateSection/'+listName+']';
  161. let sectionTitle=formSetupEntry['title'];
  162. let accessModeColumn=this.role+'Mode';
  163. let accessMode=formSetupEntry[accessModeColumn];
  164. //this will fix it for later use as well
  165. this.print(fName+' title '+sectionTitle);
  166. let tb=crfHTML.createTable(this.masterForm);
  167. tb.className='t2';
  168. let row=tb.insertRow();
  169. let cell=crfHTML.createTblHeader(null,row);
  170. cell.setAttribute("colspan","4");
  171. cell.style.fontSize="20px";
  172. cell.style.textAlign="center";
  173. crfHTML.createTextNode(sectionTitle,null,cell);
  174. cell=row.insertCell();
  175. let input=crfHTML.createButton(null,cell);
  176. input.value="Show";
  177. input.id="toggle"+sectionId+"VisbilityButton";
  178. input.onclick=function(){that.toggleVisibility(sectionId,input.id)};
  179. let div=crfHTML.createDiv(sectionId,this.masterForm);
  180. div.style.display="none";
  181. //here divert for debugArea
  182. if (listName=="debugSection"){
  183. let debugArea=crfHTML.createTextArea(null,div);
  184. debugArea.rows=10;
  185. debugArea.cols=95;
  186. debugArea.id=this.debugId;
  187. return;
  188. }
  189. let additionalData=crfSetup.getAdditionalData(listName);
  190. let divTable=crfHTML.createDiv(sectionId+"Table",null,div);
  191. if ("showFlag" in additionalData) {
  192. additionalData.divName=sectionId+"SubDiv";
  193. additionalData.divQueryName=sectionId+"SubDivList";
  194. let div1=crfHTML.createDiv(additionalData.divName,null,div);
  195. div1.style.display="none";
  196. let div2=crfHTML.createDiv(additionalData.divQueryName,null,div1);
  197. }
  198. this.print(fName+" generate master table");
  199. let writeMode=accessMode=="EDIT";
  200. let setup=this.getSetup(sectionId,listName,writeMode);
  201. setup.setVariables=variableList.parseVariables(formSetupEntry['variableDefinition']);
  202. if ("isReview" in additionalData){
  203. crfReviewSection.set(this);
  204. let action=function(){crfReviewSection.CB();};
  205. crfReviewSection.generateSection(listName,div.id,action);
  206. return;
  207. }
  208. //master table is unique per visit
  209. setup.unique=true;
  210. this.generateTable(listName,divTable.id,additionalData,setup);
  211. this.print("generate master table: done");
  212. let generateSubTable=true;
  213. //generateSubTable equivalent to read/write access to section
  214. if (accessMode != "EDIT")
  215. generateSubTable=false;
  216. if (! ("showFlag" in additionalData) ) generateSubTable=false;
  217. if (generateSubTable){
  218. let qName=additionalData.queryName;
  219. let dName=additionalData.divName;
  220. let subsectionId='sub'+sectionId;
  221. let xsetup=this.makeFullAccessSetup(subsectionId,qName);
  222. //only set master query for additionalData
  223. xsetup.masterQuery=listName;
  224. //if (readonly) setup=readonlySetup(config);
  225. xsetup.subTable=true;
  226. this.generateTable(qName,dName,additionalData,xsetup);
  227. //generateTable(formSetupEntry,qName,dName,additionalData,setup);
  228. }
  229. this.print("generate review");
  230. let divReviewList=crfHTML.createDiv(sectionId+"ReviewList",null,div);
  231. let divReview=crfHTML.createDiv(sectionId+"Review",null,div);
  232. //assume we already have listId (content of config.setupQueryName is listId)
  233. //we need listName also
  234. //qconfig.queryName=config.setupQueryName;
  235. this.generateReview(divReview.id,divReviewList.id,listName,accessMode);
  236. if (accessMode!='GENERATE') return;
  237. this.print('Adding generate button');
  238. //add generateButton
  239. let divGenerateButton=crfHTML.createDiv(listName+"GenerateButton",null,div);
  240. this.print('Adding generate button completed to here');
  241. let cb=function(){that.onGenerateQuery(listName);};
  242. this.generateButton(divGenerateButton.id,'Generate','Generate '+listName,'onGenerateQuery',cb);
  243. this.print(fName+' adding generate button completed');
  244. }
  245. crfVisit.generateReview=
  246. function(divReviewId,divReviewListId, listName, accessMode){
  247. let qMapInvert=crfSetup.invertMap(crfSetup.getMap('inputLists'));
  248. let listId=qMapInvert[listName]
  249. //listId is a number->should it be queryName?
  250. let fName='[generateReview]';
  251. this.print(fName+" list "+listId+'/'+listName);
  252. let reviewSetup=new Object();
  253. reviewSetup.setVariables=new Object();
  254. reviewSetup.readonlyFlag=function(vName){
  255. if (vName=="queryName") return true;
  256. if (vName=="queryname") return true;
  257. if (vName=="ModifiedBy") return true;
  258. return false;};
  259. reviewSetup.addApply="Add Review";
  260. reviewSetup.reviewTable=true;
  261. let generateTableFlag=true;
  262. let formStatus=crfData.getCrfEntry()['FormStatus'];
  263. //COMMENTS allowed or not
  264. //three levels of access: EDIT, COMMENT, READ
  265. if (accessMode == "READ"){
  266. //if (formStatus == "Approved" ){
  267. delete reviewSetup.addApply;
  268. reviewSetup.readonlyFlag=function(vName){return false;}
  269. generateTableFlag=false;
  270. }
  271. reviewSetup.filters=new Object();
  272. reviewSetup.filters["crfRef"]=this.crfRef;
  273. if (crfData.getCrfEntry()['parentCrf']){
  274. let parentCrf=crfData.getCrfEntry()['parentCrf'];
  275. reviewSetup.filters["crfRef"]=this.crfRef+";"+parentCrf;
  276. }
  277. reviewSetup.filters["queryName"]=listId;//entry in reviewComments list is queryname, all in small caps
  278. //needs listName, in argument
  279. reviewSetup.getInputId=function(vName){return listName+"_add"+vName};
  280. reviewSetup.divReviewListId=divReviewListId;
  281. reviewSetup.isReview=true;
  282. this.addSetup(divReviewId,reviewSetup);
  283. let msg="Review: divId: "+divReviewId;
  284. msg+=" inputId: "+reviewSetup.getInputId;
  285. this.print(msg);
  286. this.updateListDisplay(divReviewListId,"reviewComments",reviewSetup.filters,true);
  287. if (! generateTableFlag) return;
  288. this.generateTable("reviewComments",divReviewId,new Object(),reviewSetup);
  289. }
  290. //>>>>>>>>>>trigger visibility of additional lists
  291. crfVisit.setListVisibility=
  292. function(input,setup,readonlyFlag){
  293. let fName="[setListVisibility/"+setup.queryName+"]";
  294. this.print(fName);
  295. let additionalData=crfSetup.getAdditionalData(setup.queryName);
  296. let x = crfHTML.getElement(additionalData.divName);
  297. this.print(fName+": Div: "+x);
  298. x.style.display="none";
  299. let sText;
  300. if (readonlyFlag) sText=input.innerText;
  301. else sText=input.options[input.selectedIndex].text;
  302. this.print(fName+": Selected option text: "+sText);
  303. if (sText == additionalData.showFlagValue){
  304. let filters=new Object();
  305. if ("filters" in additionalData) filters=additionalData.filters;
  306. x.style.display = "block";
  307. this.updateListDisplay(additionalData.divQueryName,
  308. additionalData.queryName,filters,readonlyFlag);
  309. }
  310. }
  311. //>>have list refresh when data is added (not optimal yet)
  312. //
  313. crfVisit.updateListDisplay=
  314. function(divName,queryName,filters,readonlyFlag){
  315. //use Labkey.QueryWebPart to show list
  316. let fName="[updateListDisplay]";
  317. this.print(fName+": UpdateListDisplay: Query - "+queryName
  318. +" div - "+divName);
  319. if (divName=="NONE") return;
  320. let crfRef=this.getCrfRef();
  321. let div=crfHTML.getElement(divName);
  322. this.print(fName+": generating WebPart: "+queryName);
  323. var qconfig=new Object();
  324. qconfig.renderTo=divName;
  325. //point to data container
  326. qconfig.containerPath=this.getContainer('data');
  327. qconfig.schemaName='lists';
  328. qconfig.queryName=queryName;
  329. qconfig.buttonBarPosition='top';
  330. qconfig.filters=[];
  331. for (f in filters){
  332. let fType=LABKEY.Filter.Types.EQUAL;
  333. this.print(fName+' filter ['+f+'] '+filters[f]+'/'+typeof(filters[f])+' ['+fType+']');
  334. if (variableList.isFilterList(filters[f])){
  335. fType=LABKEY.Filter.Types.IN;
  336. }
  337. qconfig.filters.push(LABKEY.Filter.create(f, filters[f],fType));
  338. }
  339. let that=this;
  340. qconfig.success=function(data){that.updateSuccess(data);};
  341. qconfig.failure=function(errorInfo,options,responseObj){that.onFailure(errorInfo,options,responseObj);};
  342. //show only print button
  343. if (readonlyFlag){
  344. qconfig.buttonBar=new Object();
  345. qconfig.buttonBar.items=["print"];
  346. }
  347. LABKEY.QueryWebPart(qconfig);
  348. }
  349. crfVisit.updateSuccess=
  350. function(data){
  351. this.print("Update success");
  352. }
  353. //TODO: this should trigger a data refresh on section, ie populateData(field)
  354. crfVisit.toggleVisibility=
  355. function(sectionId,buttonName){
  356. let fName='[toggleVisibility/'+sectionId+']';
  357. this.print(fName);
  358. let x = crfHTML.getElement(sectionId);
  359. if (x.style.display === "none") {
  360. //exclude non data sections (like debug)...
  361. this.print(fName+': issuing setData(populateSection)');
  362. x.style.display = "block";
  363. crfHTML.getElement(buttonName).value="Hide";
  364. let that=this;
  365. let cb=function(){that.populateSection(sectionId);};
  366. crfData.setData(this.crfRef,cb);
  367. } else {
  368. x.style.display = "none";
  369. crfHTML.getElement(buttonName).value="Show";
  370. }
  371. }
  372. crfVisit.generateButton=
  373. function(divName,caption,label,callbackLabel,callback=null){
  374. this.print("generateButtonX");
  375. let tb=crfHTML.createTable(divName);
  376. tb.className="t2";
  377. let r1=tb.insertRow();
  378. let th=crfHTML.createTblHeader(null,r1);
  379. th.innerHTML=caption;
  380. //*!*
  381. let c2=r1.insertCell();
  382. let i1=crfHTML.createButton(null,c2);
  383. i1.value=label;
  384. i1.style.fontSize="20px";
  385. let that=this;
  386. if (callback)
  387. i1.onclick=callback;
  388. else
  389. i1.onclick=function(){that[callbackLabel]();};
  390. i1.id='button_'+callbackLabel;
  391. let c1=r1.insertCell();
  392. c1.setAttribute("colspan","1");
  393. //this is only for saveReview?
  394. c1.id=divName+'_reportField';
  395. //c1.id=config.submitReportId;
  396. }
  397. crfVisit.generateSubQuery=
  398. function(input, setup, readonlyFlag){
  399. let fName="[generateSubQuery]";
  400. if (setup.isReview) return;
  401. if (!(setup.queryName in crfSetup.getAdditionalDataObject())){
  402. this.print(fName+': no additionalData entry (probably a subquery)');
  403. return;
  404. }
  405. let additionalData=crfSetup.getAdditionalData(setup.queryName);
  406. if (!("showFlag" in additionalData))
  407. return;
  408. this.print(fName);
  409. let expId=setup.getInputId(additionalData.showFlag);
  410. if (expId!=input.id) {
  411. this.print(fName+": ignoring field "+input.id+"/"+expId);
  412. return;
  413. }
  414. this.print(fName+": Setting onChange to "+input.id);
  415. if (readonlyFlag)
  416. return;
  417. let that=this;
  418. input.onchange=function(){that.setListVisibility(input,setup,readonlyFlag)};
  419. }
  420. //>>populate fields
  421. //
  422. //
  423. //split to field generation and field population
  424. //
  425. crfVisit.addFieldRow=
  426. function(tb,field,setup,additionalData){
  427. let fName="[addFieldRow/"+setup.queryName+':'+field.name+']';
  428. let vName=field.name;
  429. let vType=field.type;
  430. let isLookup=("lookup" in field);
  431. this.print(fName+": ["+vName+"/"+vType+'/'+isLookup+"]");
  432. let row=tb.insertRow();
  433. let cell=crfHTML.createTblHeader(null,row);
  434. cell.style.width='300px';
  435. let text = crfHTML.createTextNode(field.shortCaption,null,cell);
  436. let input=null;
  437. let colSpan="3";
  438. let cell1=row.insertCell();
  439. cell1.colSpan=colSpan;
  440. let readonlyFlag=setup.readonlyFlag(vName);
  441. //set the html input object
  442. while (1){
  443. if (readonlyFlag){
  444. input=crfHTML.createLabel('Loading',null,cell1);
  445. break;
  446. }
  447. //lookup
  448. if (isLookup){
  449. let lookup=field["lookup"];
  450. //get all values from config.formConfig.lookup[X]
  451. let lObject=crfData.getLookup(lookup.queryName);
  452. input = crfHTML.createSelect(lObject.LUT,null,cell1);
  453. break;
  454. }
  455. //date
  456. if (vType=="date"){
  457. input = crfHTML.createDate(null,cell1);
  458. break;
  459. }
  460. //string
  461. if (vType=="string"){
  462. //we have to make sure UNDEF is carried to below
  463. //since we are adapting file to either show
  464. //current file or allow user to select a file
  465. //
  466. //TODO change this so one can always select file
  467. //but also show the selected file
  468. if(vName.search("reviewComment")>-1){
  469. input = crfHTML.createTextArea(null,cell1);
  470. input.cols="65";
  471. input.rows="5";
  472. break;
  473. }
  474. input=crfHTML.createTextInput(null,cell1);
  475. if (vName.search('_file_')<0) break;
  476. cell1.setAttribute('colspan',"1");
  477. let cell2=row.insertCell();
  478. cell2.setAttribute('colspan',"2");
  479. let input1=crfHTML.createFileInput(null,cell2);
  480. input1.id=setup.getInputId(vName)+'_file_';
  481. break;
  482. }
  483. if (vType=="float"){
  484. input = crfHTML.createTextInput(null,cell1);
  485. break;
  486. }
  487. if (vType=="boolean"){
  488. input = crfHTML.createCheckbox(null,cell1);
  489. this.print("Creating checkbox");
  490. break;
  491. }
  492. break;
  493. }
  494. input.id=setup.getInputId(vName);
  495. this.print(fName+': adding element '+input.id);
  496. this.print(fName+': listing element '+crfHTML.getElement(input.id));
  497. //connect associated list
  498. this.generateSubQuery(input,setup,readonlyFlag);
  499. if (readonlyFlag) {
  500. this.print(fName+': exiting(readonlyFlag)');
  501. return;
  502. }
  503. }
  504. crfVisit.addSpecialFieldRows=
  505. function(tb,specFieldSetup,setup){
  506. //tb is the table, specFieldSetup is a row from the table where special fields are being setup
  507. //the first column is fieldUID, which is a colon joined amalgation of queryName:fieldName
  508. let fieldUID=specFieldSetup["fieldUID"];
  509. let x=fieldUID.split(':');
  510. let fieldName=x[1];
  511. let fName="[addSpecialFieldRow/"+fieldUID+"]";
  512. let q=variableList.parseVariables(specFieldSetup['actionParameters']);
  513. this.print(fName);
  514. let type=specFieldSetup['actionType'];
  515. this.print(fName+' type '+type);
  516. if (type=='textArea' || type=="textAreaFromVariableDefinition"){
  517. let row=tb.insertRow();
  518. let cell1=row.insertCell();
  519. cell1.colSpan="4";
  520. cell1.style.textAlign="justify";
  521. cell1.style.padding="10px";
  522. cell1.style.backgroundColor="#e0e0e0";
  523. cell1.innerText=q['description'];
  524. if (type!='textAreaFromVariableDefinition') return;
  525. let varName=q['varName'];
  526. //get the value. But sometimes and particularly in this case, there are two rows for the same query
  527. //one should rely on formSetup variable definition
  528. let value=setup.setVariables[varName];
  529. let code=q['pattern'];
  530. code=code.replace(varName,value);
  531. this.print(fName+' using ['+varName+'] '+value+' pattern '+q['pattern']+' code '+code);
  532. cell1.innerText=q[code];
  533. }
  534. //copyCrfEntry in populateSpecialField
  535. if (specFieldSetup['actionType']=='generationObject'){
  536. //only in EDIT mode!!
  537. let ro=setup.readonlyFlag(fieldName);
  538. if (ro) return;
  539. generateRegistration.set(this);
  540. q['setup']=setup;
  541. let gc=generateRegistration.getObject(q,setup.getInputId(fieldName));
  542. let that=this;
  543. let action=function(){that.doNothing();};
  544. if ('mailRecipient' in q){
  545. gc.callback=function(data){that.sendEmail(data,q['mailRecipient'],action,q['subject']);};
  546. }
  547. else
  548. gc.callback=function(data){that.doNothing();};
  549. if ("addData" in q){
  550. vars=q["addData"].split(',');
  551. gc.addData=new Array();
  552. for (let v in vars){
  553. let s=vars[v]
  554. //variable name can be written as A/B where A is the name in addData and B is the variable name in crfEntry
  555. //useful for mocking up crfId from daughter crf-s such as registration
  556. let sArray=s.split('/');
  557. let sTarget=sArray[0];
  558. let sSource=sArray[sArray.length-1];
  559. gc.addData[sTarget]=crfData.getCrfEntry()[sSource];
  560. this.print(fName+" addData ["+sTarget+"]: "+gc.addData[sTarget]);
  561. }
  562. }
  563. let row=tb.insertRow();
  564. let cell=crfHTML.createTblHeader(null,row);
  565. crfHTML.createTextNode("Automatic ID generator",null,cell);
  566. let cell1=row.insertCell();
  567. cell1.colSpan="3";
  568. let b=crfHTML.createButton(null,cell1);
  569. b.id="generateIdButton";
  570. b.onclick=function(){generateRegistration.execute(gc);};
  571. b.value="Generate ID";
  572. }
  573. }
  574. crfVisit.populateFieldRow=
  575. function(entry,field,setup){
  576. this.populateField(entry,field,setup);
  577. this.populateSubQuery(entry,field,setup);
  578. this.populateSpecialFields(entry,field,setup);
  579. }
  580. crfVisit.populateSubQuery=
  581. function(entry,field,setup){
  582. let fName='[populateSubQuery/'+setup.queryName+':'+field.name+']';
  583. if (setup.isReview) return;
  584. if (!(setup.queryName in crfSetup.getAdditionalDataObject())){
  585. let msg=fName+': no additionalData entry for '+setup.queryName;
  586. msg+=' (probably a subquery)';
  587. this.print(msg);
  588. return;
  589. }
  590. //find if field is connected to a sub array
  591. //find queryName
  592. //
  593. let additionalData=crfSetup.getAdditionalData(setup.queryName);
  594. this.print(fName);
  595. //let flag=additionalData.showFlag;
  596. if (!("showFlag" in additionalData)) return;
  597. let eId=setup.getInputId(additionalData.showFlag);
  598. let id=setup.getInputId(field.name);
  599. if (eId!=id) {
  600. this.print(fName+": ignoring field "+id+"/"+eId);
  601. return;
  602. }
  603. this.print(fName+': id '+id);
  604. //hard to estimate readonlyFlag
  605. //
  606. let input=crfHTML.getElement(id);
  607. let eType=input.nodeName.toLowerCase();
  608. let readonlyFlag=eType!="select";
  609. this.setListVisibility(input,setup,readonlyFlag);
  610. }
  611. crfVisit.clearField=
  612. function(field,setup){
  613. let foo=new Object();
  614. this.populateField(foo,field,setup);
  615. }
  616. crfVisit.populateField=
  617. function(entry,field,setup){
  618. let vName=field.name;
  619. let fName='[populateFieldName/'+vName+']';
  620. let varValue="UNDEF";
  621. //if (vName in setup.filters) varValue=setup.filters[vName];
  622. if (vName in entry) varValue=entry[vName];
  623. //if part of the filter, set it to value
  624. if (vName in setup.filters) varValue=setup.filters[vName];
  625. let isLookup=("lookup" in field);
  626. this.print(fName+' v='+varValue+'/'+isLookup+' ['+
  627. setup.getInputId(field.name)+']');
  628. let vType=field.type;
  629. let id=setup.getInputId(vName);
  630. let input=crfHTML.getElement(id);
  631. //date
  632. if (vType=="date"){
  633. if (varValue=="UNDEF") varValue=new Date();
  634. else varValue=new Date(varValue);
  635. }
  636. //lookup for readonly
  637. if (isLookup && varValue!="UNDEF"){
  638. let lookup=field["lookup"];
  639. //get all values from config.formConfig.lookup[X]
  640. let lObject=crfData.getLookup(lookup.queryName);
  641. varValue=lObject.LUT[varValue];
  642. }
  643. this.print('Element: '+id+'/'+input);
  644. //figure out the element type
  645. let eType=input.nodeName.toLowerCase();
  646. this.print('Element type: '+eType);
  647. //change varValue for printing
  648. if (varValue=="UNDEF") varValue="";
  649. //HTMLTextArea, createElement(textArea)
  650. if (eType==="textarea"){
  651. input.value=varValue;
  652. return;
  653. }
  654. //Text, createTextNode
  655. if (eType==="#text"){
  656. input.nodeValue=varValue;
  657. return;
  658. }
  659. //HTMLLabelElement, createElement('label')
  660. if (eType==="label"){
  661. input.innerText=varValue;
  662. return;
  663. }
  664. //HTMLSelectElement, createElement('select')
  665. if (eType==="select"){
  666. input.selectedIndex=0;
  667. for (let i=0;i<input.options.length;i++){
  668. let v=input.options[i].text;
  669. if (v!=varValue) continue;
  670. input.selectedIndex=i;
  671. break;
  672. }
  673. return;
  674. }
  675. if (eType!="input"){
  676. this.print('Unknown type: '+eType+' encountered, igonring');
  677. return;
  678. }
  679. //HTMLInputElement
  680. let type=input.type;
  681. if (type=="date"){
  682. input.valueAsDate=varValue;
  683. return;
  684. }
  685. //string,float
  686. if (type=="text"){
  687. input.value=varValue;
  688. return;
  689. }
  690. //boolean
  691. if (type=="checkbox"){
  692. input.checked=varValue;
  693. return;
  694. }
  695. this.print('Unknown input type: '+type+'. Ignoring.');
  696. }
  697. crfVisit.populateSpecialFields=
  698. function(entry,field,setup){
  699. let fName='[populateSpecialFields]';
  700. let fieldUID=setup.queryName+':'+field.name;
  701. let specialFields=crfSetup.getEntryMap('specialFields:fieldUID');
  702. if (!(fieldUID in specialFields)) return;
  703. let specFieldSetup=specialFields[fieldUID];
  704. //q is not used by copyCrfEntry, keeping it here for future reference
  705. let q=variableList.parseVariables(specFieldSetup['actionParameters']);
  706. let type=specFieldSetup['actionType'];
  707. if (type=='copyCrfEntry'){
  708. let el=crfHTML.getElement(setup.getInputId(field.name));
  709. let varName=field.name;
  710. if ("varName" in q) varName=q["varName"];
  711. let id=crfData.getCrfEntry()[varName];
  712. el.value=id;
  713. this.print(fName+' specialFields ['+field.name+'] '+id+'/'+el.value);
  714. }
  715. }
  716. crfVisit.populateTable=
  717. function(listName,writeMode,setup){
  718. //function populateTable(formSetupEntry){
  719. //let listName=config.formConfig.queryMap[formSetupEntry['queryName']];
  720. //let accessMode=config.formConfig.operator+'Mode';
  721. //let writeMode=formSetupEntry[accessMode]=='EDIT';
  722. let fName='[populateTable/'+listName+']';
  723. //should contain formSetup key
  724. //data snapshot
  725. let fQuery=crfData.getQuerySnapshot(listName);
  726. let queryLayout=crfData.getQueryLayout(listName);
  727. //here I assume that listName was parsed during setDataLayout and setData
  728. //so that rows was set (even if they are empty)
  729. this.print(fName+"]: nrows "+fQuery.rows.length);
  730. let entry=this.selectEntry(fQuery.rows,setup);
  731. if (!entry) entry=new Object();
  732. let fields=queryLayout.fields;
  733. for (f in fields){
  734. let field=fields[f];
  735. //each field is a new row
  736. this.print(fName+": Adding field: "+f+'/'+field.name+' hidden: '+field.hidden+' type:'+field.type);
  737. if (field.hidden) continue;
  738. if (field.name=="crfRef") continue;
  739. if (field.name in setup.setVariables) continue;
  740. this.populateFieldRow(entry,field,setup);
  741. }
  742. }
  743. crfVisit.generateTable=
  744. function(listName,divName,additionalData,setup){
  745. let fName="[generateTable/"+listName+"]";
  746. this.print(fName);
  747. //is listName and setup.queryName a duplicate of the same value
  748. this.print(fName+': setup.queryName '+setup.queryName);
  749. //assume data is set in config.formConfig.dataQueries[data.queryName].rows;
  750. let populateData=true;
  751. if ("subTable" in setup){
  752. this.print(fName+" is subTable");
  753. populateData=false;
  754. }
  755. let entry=new Object();
  756. //data snapshot
  757. let fQuerySnapshot=crfData.getQuerySnapshot(listName);
  758. let queryLayout=crfData.getQueryLayout(listName);
  759. //here I assume that listName was parsed during setDataLayout and setData
  760. //so that rows was set (even if they are empty)
  761. this.print(fName+": Nrows "+fQuerySnapshot.rows.length);
  762. if (fQuerySnapshot.rows.length>0)
  763. entry=fQuerySnapshot.rows[0];
  764. if ("reviewTable" in setup){
  765. entry['reviewComment']='';
  766. delete entry["ModifiedBy"];
  767. }
  768. let tb=crfHTML.createTable(divName);
  769. tb.className="t2";
  770. //this are the fields (probably constant)
  771. let fields=queryLayout.fields;
  772. for (f in fields){
  773. let field=fields[f];
  774. let fieldUID=listName+":"+field.name;
  775. //each field is a new row
  776. this.print(fName+": Adding field: "+f+'/'+field.name+' ('+fieldUID+').');
  777. //unique name
  778. if (field.hidden) continue;
  779. if (field.name=="crfRef") continue;
  780. if (field.name in setup.setVariables) continue;
  781. this.addFieldRow(tb,field,setup,additionalData);
  782. if (populateData) this.populateFieldRow(entry,field,setup);
  783. let specialFields=crfSetup.getEntryMap('specialFields:fieldUID');
  784. if (fieldUID in specialFields){
  785. let specFieldSetup=specialFields[fieldUID];
  786. this.addSpecialFieldRows(tb,specFieldSetup,setup);
  787. }
  788. }
  789. //finish of if apply button is not required
  790. if (!("addApply" in setup)) {
  791. this.print(fName+"populateTable: done");
  792. return;
  793. }
  794. let row=tb.insertRow();
  795. let th=crfHTML.createTblHeader(null,row);
  796. th.innerHTML=setup.addApply;
  797. let cell=row.insertCell();
  798. //cell.setAttribute("colspan","2");
  799. let input=crfHTML.createButton(null,cell);
  800. input.value=setup.addApply;
  801. let cell1=row.insertCell();
  802. cell1.setAttribute("colspan","2");
  803. cell1.id=setup.getInputId("rerviewLastSave");
  804. cell1.innerHTML="No recent update";
  805. //saveReview is a generic name for saving content of the html page to a list entry
  806. let that=this;
  807. input.onclick=function(){that.saveReview(listName,cell1.id,setup)};
  808. }
  809. crfVisit.setEntryFromElement=
  810. function(entry,elementId, field){
  811. //set value to entry from element using representation (field) from labkey
  812. //
  813. //
  814. let fName='setEntryFromElement';
  815. let el=crfHTML.getElement(elementId);
  816. if (!el) {
  817. this.print(fName+" element: "+elementId+" not found");
  818. return;
  819. }
  820. this.print(fName+" element: "+elementId);
  821. let vName=field.name;
  822. let vType=field.type;
  823. let eType=el.nodeName.toLowerCase();
  824. if (eType==="select"){
  825. entry[vName]=el.options[el.selectedIndex].value;
  826. return;
  827. }
  828. if (eType==="td"){
  829. entry[vName]=el.innerText;
  830. return;
  831. }
  832. if (vType=="date"){
  833. let date=el.valueAsDate;
  834. if (!date) return;
  835. date.setUTCHours(12);
  836. entry[vName]=date.toString();
  837. this.print(fName+" setting date to "+entry[vName]);
  838. return;
  839. }
  840. if (vType=="string"){
  841. entry[vName]=el.value;
  842. if (vName.search('_file_')<0)
  843. return;
  844. //upload file
  845. let id1=elementId+'_file_';
  846. let input1=crfHTML.getElement(id1);
  847. this.print(fName+' attachment field: '+input1.value);
  848. //entry[vName]=el.files[0].stream();
  849. let ctx=new Object();
  850. ctx['dirName']='consent';
  851. ctx['ID']=entry['crfRef'];
  852. //should point to data container
  853. ctx['project']=getContainer('data');
  854. //need ID->crf!
  855. //assume crfRef will get set before this
  856. //element is encountered
  857. this.uploadFile(input1,ctx);
  858. let fv=el.value;
  859. let suf=fv.split('.').pop();
  860. entry[vName]=entry['crfRef']+'.'+suf;
  861. return;
  862. }
  863. if (vType=="float" || vType=="int"){
  864. entry[vName]=el.value;
  865. if (vName=="queryName") {
  866. this.print(fName+' parsing queryName: '+el.innerText);
  867. let qMapInverse=crfSetup.invertMap(crfSetup.getMap('inputLists'));
  868. entry[vName]=qMapInverse[el.innerText];
  869. //use queryMap lookup
  870. }
  871. return;
  872. }
  873. if (vType=="boolean"){
  874. entry[vName]=el.checked;
  875. return;
  876. }
  877. return;
  878. }
  879. crfVisit.selectEntry=
  880. function(fRows,setup){
  881. let fName='[selectEntry]';
  882. if (!("unique" in setup)) return null;
  883. if (fRows.length==0) return null;
  884. keys=Object.keys(setup.setVariables);
  885. if (keys.length==0)
  886. return fRows[0];
  887. for (let i=0;i<fRows.length;i++){
  888. for (let v in setup.setVariables){
  889. this.print(fName+' row '+i+' ['+v+'] '+fRows[i][v]+'/'+setup.setVariables[v]);
  890. if (fRows[i][v]==setup.setVariables[v]){
  891. this.print(fName+' using '+i);
  892. return fRows[i];
  893. }
  894. }
  895. }
  896. return null;
  897. }
  898. crfVisit.saveReview=
  899. function(queryName,elementId,setup){
  900. //loads any queryName
  901. let debug=true;
  902. let fName='[saveReview/'+queryName+']';
  903. this.print(fName+" elementId "+elementId);
  904. let unique=("unique" in setup);
  905. //data snapshot
  906. let fQuerySnapshot=crfData.getQuerySnapshot(queryName);
  907. let nRows=fQuerySnapshot.rows.length;
  908. //data layout
  909. let queryLayout=crfData.getQueryLayout(queryName);
  910. //determine mode based on entry uniqueness and presence of data
  911. let entry=this.selectEntry(fQuerySnapshot.rows,setup);
  912. let mode='update';
  913. if (!entry){
  914. entry=new Object();
  915. mode='insert';
  916. }
  917. this.print(fName+' unique '+unique+' mode '+mode+' nRows '+nRows);
  918. entry.crfRef=this.getCrfRefData();
  919. this.print(fName+" set crfRef="+entry.crfRef);
  920. let fields=queryLayout.fields;
  921. for (f in fields){
  922. let field=fields[f];
  923. this.print(fName+" saveReview field: "+field.name);
  924. if (field.hidden) continue;
  925. if (field.name in setup.setVariables){
  926. entry[field.name]=setup.setVariables[field.name];
  927. continue;
  928. }
  929. let vName=field.name;
  930. let vType=field.type;
  931. this.print(fName+" vType: "+vType);
  932. if (vName=="crfRef") continue;
  933. //need to save queryName for reviewComments
  934. let eId=setup.getInputId(vName);
  935. //copy values from form to entry
  936. this.setEntryFromElement(entry,eId,field,setup);
  937. //clear field value
  938. if (!unique) this.clearField(field,setup);
  939. }
  940. let that=this;
  941. let action=function(data){that.updateLastSavedFlag(data,setup,elementId)};
  942. runQuery.modifyRows(mode,'lists',queryName,[entry],action,crfSetup.getContainer('data'));
  943. }
  944. crfVisit.updateLastSavedFlag=
  945. function(data,setup,elementId){
  946. let fName='[updateLastSavedFlag]';
  947. this.print(fName+" update last saved flag to "+elementId);
  948. let el=crfHTML.getElement(elementId);
  949. let dt=new Date();
  950. el.innerHTML="Last saved "+dt.toString();
  951. if (data.queryName=="reviewComments"){
  952. this.updateListDisplay(setup.divReviewListId,"reviewComments",setup.filters,true);
  953. }
  954. //refresh stored data!
  955. let writeMode=!setup.readonlyFlag();
  956. let that=this;
  957. let cb=function(){that.populateTable(data.queryName,writeMode,setup);};
  958. if ("unique" in setup)
  959. crfData.setData(this.crfRef,cb);
  960. if ("masterQuery" in setup){
  961. let ad=crfSetup.getAdditionalData(setup.masterQuery);
  962. this.print('Updating list display: '+setup.queryName+'/'+ad.queryName);
  963. this.updateListDisplay(ad.divQueryName,ad.queryName,ad.filters,false);
  964. }
  965. }
  966. //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
  967. //generic form status switch statementes
  968. crfVisit.changeFormStatusAndNotify=
  969. function(actionName){
  970. let fName='[changeStatusAndNotify]';
  971. this.print(fName);
  972. let targetStatus=crfSetup.getTargetStatus(actionName);
  973. let targetRecipient=crfSetup.getTargetRecipient(actionName);
  974. let actionSettings=crfSetup.getActionSettings(actionName);
  975. let action=new Object();
  976. action.name=actionName;
  977. let finalStep=function(){that.redirect();};
  978. if (variableList.hasVariable(actionSettings,"finalStep")){
  979. this.print(fName+' adjusting finalStep');
  980. //set to doNothing to remain on submit window
  981. if (actionSettings.finalStep=="doNothing"){
  982. finalStep=function(){that.doNothing();};
  983. }
  984. }
  985. this.print(fName+' action '+actionName+' targetStatus '+targetStatus);
  986. let that=this;
  987. action.cb=function(data){that.sendEmail(data,targetRecipient,finalStep,actionName);}
  988. this.updateFlag(targetStatus,action);//Approved
  989. }
  990. crfVisit.updateFlag=
  991. function(flag,action){
  992. let fName='[updateFlag]';
  993. let entry=crfData.getCrfEntry();
  994. entry.FormStatus=flag;
  995. let uId=LABKEY.Security.currentUser.id;
  996. entry[this.role]=uId;
  997. this.print(fName+': Form: '+entry.Form);
  998. this.print(fName+": set form status to "+entry.FormStatus);
  999. let that=this;
  1000. let cb=function(data){that.completeWithFlag(data,action);};
  1001. runQuery.modifyRows('update','lists','crfEntry',[entry],cb,crfSetup.getContainer('data'));
  1002. }
  1003. crfVisit.completeWithFlag=
  1004. function(data,action){
  1005. let fName='[completeWithFlag]';
  1006. this.print(fName+': nrows '+data.rows.length);
  1007. let fentry=data.rows[0];
  1008. this.print(fName+': form status '+fentry.FormStatus);
  1009. this.print(fName+': form '+fentry.Form);
  1010. let crfStatus=crfData.createCrfStatus(fentry);
  1011. crfStatus.operator=this.role;
  1012. crfStatus.action=action.name;
  1013. let that=this;
  1014. let cb=function(){that.doNothing();};
  1015. if (action.cb) cb=action.cb;
  1016. runQuery.insertRows('lists','crfStatus',[crfStatus],cb,crfSetup.getContainer('data'));
  1017. }
  1018. //******************************************upload to database *********************
  1019. crfVisit.onDatabaseUpload=
  1020. function(){
  1021. let actionName='onDatabaseUpload';
  1022. let fName='['+actionName+']';
  1023. this.print(fName);
  1024. let pM=this.getIdManager();
  1025. let participantId=participantIdManager.getParticipantIdFromCrfEntry(pM);
  1026. let that=this;
  1027. let crfRef=this.crfRef;
  1028. //load lists and study data
  1029. //check what needs to be updated and upload
  1030. //a (reverse) sequence of functions
  1031. let completeUpload=function(){that.changeFormStatusAndNotify(actionName);};
  1032. let uploadData=function(){crfData.uploadData(participantId,crfRef,completeUpload);};
  1033. let loadStudy=function(){crfData.setData(crfRef,uploadData,'study');}
  1034. crfData.setData(crfRef,loadStudy,'lists');
  1035. }
  1036. //*************************update for further review *************************
  1037. crfVisit.onUpdateForReview=
  1038. function(){
  1039. let actionName='onUpdateForReview';
  1040. this.changeFormStatusAndNotify(actionName);
  1041. }
  1042. //************************************************ submit *******************************************
  1043. crfVisit.onSubmit=
  1044. function(){
  1045. //update list storage and change status
  1046. this.hideErr();
  1047. this.clearErr();
  1048. this.printErr("onSubmit");
  1049. let that=this;
  1050. let actionName='onSubmit';
  1051. let action=function(){that.verifyData(actionName);};
  1052. crfData.setData(this.crfRef,action);
  1053. }
  1054. crfVisit.verifyData=
  1055. function(actionName){
  1056. let fName='[verifyData/'+actionName+']';
  1057. let qList=crfData.getActiveQueries();
  1058. let that=this;
  1059. let doNothing=function(data){that.doNothing();};
  1060. let pM=this.getIdManager();
  1061. let fieldName=participantIdManager.getCrfEntryFieldName(pM);
  1062. let setId=crfData.getCrfEntry()[fieldName];
  1063. this.print(fName+' crfEntry ['+fieldName+'] '+crfData.getCrfEntry()[fieldName]);
  1064. if (!setId){
  1065. this.printErr('Missing ID !');
  1066. return false;
  1067. }
  1068. for (let qId in qList){
  1069. let entry=qList[qId];
  1070. let q=entry['queryName'];
  1071. let qData=crfData.getQuerySnapshot(q);
  1072. if (q=="reviewComments") continue;
  1073. //copy snapshot to history
  1074. if (qData.rows.length==0){
  1075. this.print(fName+' no rows for '+q);
  1076. }
  1077. else
  1078. runQuery.insertRows('lists',q+'History',qData.rows,doNothing,this.getContainer('data'));
  1079. //if it doesn't have additionalData, it is a sub query
  1080. if (!(q in crfSetup.getAdditionalDataObject())){
  1081. continue;
  1082. }
  1083. if (qData.rows.length<1){
  1084. this.printErr('Missing entry for query '+q);
  1085. return false;
  1086. }
  1087. }
  1088. //this is necessary only for Generated to Generation completed step
  1089. let actionSettings=crfSetup.getActionSettings(actionName);
  1090. if (variableList.hasVariable(actionSettings,"updateRegistration")){
  1091. //if updateRegistrationFormId is set, only update when submit is used on that form
  1092. if (variableList.hasVariable(actionSettings,"updateRegistrationFormId")){
  1093. let formId=crfData.getCrfEntry()['Form'];
  1094. if (actionSettings['updateRegistrationFormId']==formId)
  1095. this.updateRegistration();
  1096. }
  1097. else
  1098. this.updateRegistration();
  1099. }
  1100. this.changeFormStatusAndNotify(actionName);
  1101. }
  1102. crfVisit.getEmail=
  1103. function(recipientCode){
  1104. this.print('getEmail w/'+recipientCode);
  1105. let recipients=new Array();
  1106. let typeTo=LABKEY.Message.recipientType.to;
  1107. let create=LABKEY.Message.createRecipient;
  1108. let userMap=crfSetup.getEntryMap('users');
  1109. let currentUser=userMap[LABKEY.Security.currentUser.id];
  1110. let currentSite=this.siteEntry;
  1111. let formCreator=userMap[crfData.getCrfEntry()['UserId']];
  1112. let userRows=crfSetup.getRows('users');
  1113. let parentUser=null;
  1114. if ("parentCrfData" in crfSetup){
  1115. let parentCrf=crfSetup.getRows('parentCrfData');
  1116. parentUser=userMap[parentCrf.rows[0].UserId];
  1117. }
  1118. let recipientCategories=recipientCode.split(',');
  1119. for (let i=0;i<recipientCategories.length;i++){
  1120. let recipient=recipientCategories[i];
  1121. this.print('Checking '+recipient);
  1122. if (recipient=='crfEditor'){
  1123. this.print('Adding :'+formCreator.Email);
  1124. recipients.push(create(typeTo,formCreator.Email));
  1125. if (!parentUser) continue;
  1126. this.print('Adding :'+parentUser.Email);
  1127. recipients.push(create(typeTo,parentUser.Email));
  1128. continue;
  1129. }
  1130. //Monitor or Sponsor
  1131. let fList=recipient+'s';
  1132. let fRows=crfSetup.getRows(fList);
  1133. for (let i=0;i<fRows.length;i++){
  1134. this.print('Checking '+fRows[i].User+'/'+fRows[i].Site);
  1135. if (fRows[i].Site!=currentSite.siteNumber) continue;
  1136. let targetUser=userMap[fRows[i].User];
  1137. recipients.push(create(typeTo,targetUser.Email));
  1138. }
  1139. }
  1140. return recipients;
  1141. }
  1142. crfVisit.sendEmail=
  1143. function(data,recipient='crfEditor',cb=null,subj='Form submitted'){
  1144. this.print('sendEmail; recipient: '+recipient);
  1145. let that=this;
  1146. if (!cb)
  1147. cb=function(){that.redirect();};
  1148. let cvar='sendEmail';
  1149. let cval=crfSetup.getSettings(cvar);
  1150. if (cval){
  1151. this.print(cvar+' set to '+cval);
  1152. if (cval=='FALSE'){
  1153. this.print('Skipping sending emails');
  1154. cb();
  1155. return;
  1156. }
  1157. }
  1158. if (recipient==null){
  1159. this.print('Skipping sending emails w/ no recipients');
  1160. cb();
  1161. return;
  1162. }
  1163. this.print('send email '+data.rows.length);
  1164. let crf=data.rows[0]['entryId'];
  1165. let formId=data.rows[0]['Form'];
  1166. let link=LABKEY.ActionURL.getBaseURL();
  1167. link+=LABKEY.ActionURL.getContainer();
  1168. link+='/crf_tecant-visit.view?';
  1169. link+='entryId='+crf;
  1170. link+='&formId='+formId;
  1171. link+='&role='+recipient;
  1172. //debug
  1173. let recipients=this.getEmail(recipient);
  1174. //from crfManagers list
  1175. let typeHtml=LABKEY.Message.msgType.html;
  1176. let typePlain=LABKEY.Message.msgType.plain;
  1177. let msg1=LABKEY.Message.createMsgContent(typePlain,link);
  1178. //let cb=doNothing;
  1179. //let cb=redirect;
  1180. LABKEY.Message.sendMessage({
  1181. msgFrom:'labkey@fmf.uni-lj.si',
  1182. msgSubject:subj,
  1183. msgRecipients:recipients,
  1184. msgContent:[msg1],
  1185. success: cb
  1186. });
  1187. }
  1188. crfVisit.hideErr=
  1189. function(){
  1190. let el=crfHTML.getElement("errorDiv");
  1191. el.style.display="none";
  1192. }
  1193. crfVisit.clearErr=
  1194. function(){
  1195. let el=crfHTML.getElement("errorTxt");
  1196. el.value="";
  1197. }
  1198. crfVisit.showErr=
  1199. function(){
  1200. let el=crfHTML.getElement("errorDiv");
  1201. el.style.display="block";
  1202. }
  1203. crfVisit.printErr=
  1204. function(msg){
  1205. this.showErr();
  1206. el=crfHTML.getElement("errorTxt");
  1207. el.style.color="red";
  1208. el.value+="\n"+msg;
  1209. }
  1210. //**************************************************
  1211. //
  1212. crfVisit.onRemoveCRF=
  1213. function(){
  1214. let fName='[onRemoveCRF]';
  1215. let crfRef=this.crfRef;
  1216. this.print(fName+' starting loop');
  1217. let actionName='onRemoveCRF';
  1218. let that=this;
  1219. let notify=function(){that.changeFormStatusAndNotify(actionName);};
  1220. //let removeCrfEntry=function(){crfData.removeCrfEntry(notify);};
  1221. let removeData=function(){crfData.removeData(notify);};
  1222. let setStudyData=function(){crfData.setData(crfRef,removeData,'study');};
  1223. let action=setStudyData;
  1224. let actionSettings=crfSetup.getActionSettings(actionName);
  1225. if (variableList.hasVariable(actionSettings,'removeWithParentCrf')){
  1226. //if some query needs to be deleted with parent crf, insert this as an intermediate action
  1227. let q=actionSettings['removeWithParentCrf'];
  1228. let parentCrf=crfData.getCrfEntry()['parentCrf'];
  1229. if (parentCrf){
  1230. let setParentStudyData=function(){crfData.setDataForQuery(q,parentCrf,removeData,'study');};
  1231. let setStudyData1=function(){crfData.setData(crfRef,setParentStudyData);}
  1232. action=function(){crfData.setDataForQuery(q,parentCrf,setStudyData1);};
  1233. }
  1234. }
  1235. crfData.setData(crfRef,action);
  1236. }
  1237. crfVisit.redirect=
  1238. function(){
  1239. let formUrl="participantPortal";
  1240. let params=new Object();
  1241. params.name=formUrl;
  1242. //params.pageId="CRF";
  1243. //points to crf container
  1244. let containerPath=crfSetup.getContainer('CRF');
  1245. // This changes the page after building the URL.
  1246. //Note that the wiki page destination name is set in params.
  1247. //let homeURL = LABKEY.ActionURL.buildURL("project", formUrl , containerPath, params);
  1248. let homeURL = LABKEY.ActionURL.buildURL("crf", formUrl , containerPath, params);
  1249. this.print("Redirecting to "+homeURL);
  1250. window.location = homeURL;
  1251. }
  1252. //master section, entry point from html files
  1253. crfVisit.generateMasterForm=
  1254. function(){
  1255. let that=this;
  1256. let action=function(){that.setFormConfig();}
  1257. this.init(action);
  1258. }
  1259. //helper function to set basic parameters on web page
  1260. //(fields defined in html file)
  1261. crfVisit.populateBasicData=
  1262. function(){
  1263. let staticData=new Object();
  1264. let titles=new Object();
  1265. staticData['version']='0.16.3'
  1266. titles['version']='Software version';
  1267. let varRows=crfSetup.getRows('crfStaticVariables');
  1268. for (let i=0;i<varRows.length;i++){
  1269. let vName=varRows[i].staticVariable;
  1270. let val=crfData.getCrfEntry()[vName];
  1271. if (val==undefined) continue;
  1272. staticData[vName]=val;
  1273. titles[vName]=varRows[i].Title;
  1274. }
  1275. staticData['investigatorName']=this.userEntry['DisplayName'];
  1276. titles['investigatorName']='Investigator';
  1277. staticData['email']=this.userEntry['Email'];
  1278. titles['email']='Email';
  1279. staticData['siteName']=this.siteEntry['siteName'];
  1280. titles['siteName']='Site';
  1281. staticData['sitePhone']=this.siteEntry['sitePhone'];
  1282. titles['sitePhone']='Telephone(site)';
  1283. for (f in staticData){
  1284. this.addStaticData(f,titles[f],staticData[f]);
  1285. }
  1286. let formId=crfData.getCrfEntry()['Form'];
  1287. let formEntry=crfSetup.getEntryMap('dataForms')[formId];
  1288. crfHTML.getElement('formTitle').innerText=formEntry['formName'];
  1289. }
  1290. crfVisit.addStaticData=
  1291. function(f,title,value){
  1292. let el=crfHTML.getElement(f);
  1293. //populate only
  1294. if (el!=undefined){
  1295. el.innerText=value;
  1296. return;
  1297. }
  1298. //add row to table if element cannot be found
  1299. let table=crfHTML.getElement('staticTable');
  1300. let row=table.insertRow();
  1301. let cell=row.insertCell();
  1302. cell.innerText=title;
  1303. let cell1=row.insertCell();
  1304. cell1.id=f;
  1305. cell1.style.fontWeight='bold';
  1306. //populate
  1307. cell1.innerText=value;
  1308. }
  1309. //come here after the layout is read from labkey page
  1310. //
  1311. crfVisit.generateErrorMsg=
  1312. function(msg){
  1313. let txt=crfHTML.createParagraph(msg,this.masterForm);
  1314. this.generateButton("submitDiv",'Exit','Exit','redirect');
  1315. }
  1316. crfVisit.checkPermissions=
  1317. function(){
  1318. //check if user has permission on the form
  1319. let userMap=crfSetup.getEntryMap('users');
  1320. let currentUser=userMap[LABKEY.Security.currentUser.id];
  1321. let currentSite=this.siteEntry;
  1322. let formCreator=userMap[crfData.getCrfEntry()['UserId']];
  1323. let formCreatorId=formCreator.UserId;
  1324. //let formSite=config.formConfig.crfEntry.Site;
  1325. let fList=this.role+'s';
  1326. let fRows=crfSetup.getRows(fList);
  1327. //let currentSiteId=-1;
  1328. //depending on operator mode, we should decide what is right
  1329. let operator=this.role;
  1330. if (this.role=='crfEditor'){
  1331. //editor can only edit its own forms
  1332. if (currentUser.UserId!=formCreatorId){
  1333. let msg='User '+currentUser.DisplayName;
  1334. msg+=' has no permission on this form';
  1335. this.generateErrorMsg(msg);
  1336. return false;
  1337. }
  1338. return true;
  1339. }
  1340. if (operator=='crfMonitor' || operator=='crfSponsor'){
  1341. //monitor can look at forms based on his site
  1342. //find monitor line
  1343. let operatorSites=new Array();
  1344. for (let i=0;i<fRows.length;i++){
  1345. if (fRows[i].User!=currentUser.UserId) continue;
  1346. operatorSites.push(fRows[i].Site);
  1347. }
  1348. this.print('operator Site: '+operatorSites.length);
  1349. if (operatorSites.length==0){
  1350. let msg='User '+currentUser.DisplayName;
  1351. msg+=' is not a '+operator;
  1352. this.generateErrorMsg(msg);
  1353. return false;
  1354. }
  1355. //implementation of currentSite in operatorSites
  1356. if (!operatorSites.includes(currentSite.siteNumber)){
  1357. let msg='User '+currentUser.DisplayName;
  1358. msg+=' is not a '+operator+' for site ';
  1359. msg+=currentSite.siteName+'('+currentSite.siteNumber+')';
  1360. msg+='/'+operatorSites.join(',');
  1361. this.generateErrorMsg(msg);
  1362. return false;
  1363. }
  1364. }
  1365. this.print('User '+currentUser.DisplayName+'/'+
  1366. currentSite['siteName']+
  1367. ' acting as '+this.role);
  1368. return true;
  1369. }
  1370. crfVisit.afterConfig=
  1371. function(){
  1372. let fName='[afterConfig]';
  1373. this.print(fName);
  1374. this.populateBasicData();
  1375. if (!this.checkPermissions()) return;
  1376. crfSetup.parseButtons();
  1377. let formStatus=crfSetup.getRows('formStatus')[0]['formStatus'];
  1378. //let functionArray=new Array();
  1379. this.print("Generating buttons for formStatus \""+ formStatus+"\"");
  1380. let allButtonRows=crfSetup.getRows('crfButtons');
  1381. let buttonRows=new Array();
  1382. //specifying role=X in actionSettings will limit button to that role
  1383. for (let i=0;i<allButtonRows.length;i++){
  1384. let action=allButtonRows[i]['action'];
  1385. //filter on actionSettings
  1386. let as=crfSetup.getActionSettings[action];
  1387. if (variableList.hasVariable(as,'role')){
  1388. this.print('Role['+this.role+'/'+as['role']+'] limited for action '+action);
  1389. //mismatch skips addition of button to buttonRows
  1390. if (this.role!=as['role']) continue;
  1391. }
  1392. buttonRows.push(allButtonRows[i]);
  1393. }
  1394. for (let i=0;i<buttonRows.length;i++){
  1395. let bt=buttonRows[i];
  1396. //if (typeof window[bt.action]==="function"){
  1397. this.generateButton("submitDiv",bt.caption,bt.label,bt.action,null);
  1398. //}
  1399. //else{
  1400. // this.print('No match for function :'+bt.action+
  1401. // ' obj: '+window[bt.action]);
  1402. //}
  1403. }
  1404. this.print('Here');
  1405. //here we should get data. For now, just initialize objects that will hold data
  1406. let that=this;
  1407. let action=function(){that.afterDataLayout();};
  1408. let formId=crfData.getCrfEntry()['Form'];
  1409. crfData.setDataLayout(formId,this.role,action);//callback is afterDataLayout
  1410. }
  1411. crfVisit.afterDataLayout=
  1412. function(){
  1413. let that=this;
  1414. let action=function(){that.afterData();};
  1415. //let action=function(){that.doNothing();};
  1416. crfData.setData(this.crfRef,action);//callback is afterData
  1417. }
  1418. crfVisit.updateRegistration=
  1419. function(){
  1420. let fName="[updateRegistration]";
  1421. this.print(fName);
  1422. let pM=this.getIdManager();
  1423. let idFieldName=participantIdManager.getCrfEntryFieldName(pM,"STUDY");
  1424. //have to reload query data
  1425. let regQueryPars=variableList.parseVariables(crfSetup.getSettings('registrationQuery'));
  1426. let regQuery=regQueryPars['query'];
  1427. let fQuery=crfData.getQuerySnapshot(regQuery);
  1428. if (fQuery.rows.length==0) {
  1429. this.print(fName+" registration is empty");
  1430. return; //registration is empty
  1431. }
  1432. let regEntry=fQuery.rows[0];
  1433. for (x in regEntry){
  1434. this.print(fName+" ["+x+"] "+regEntry[x]);
  1435. }
  1436. let studyId=fQuery.rows[0][idFieldName];
  1437. if (!studyId) {
  1438. this.print(fName+" study id not set ("+idFieldName+'/'+studyId+")");
  1439. return; //study id not set
  1440. }
  1441. //set
  1442. participantIdManager.setParticipantIdToCrfEntry(pM,studyId,"STUDY");
  1443. //this will only update crfEntry in memory, but not on LabKey,
  1444. //we are counting on updateFlag to follow updateRegistration
  1445. //update parentCRF as well, here we schedule update of data entry as well
  1446. if ("parentCrfData" in crfSetup){
  1447. let parentCrfEntry=crfSetup.getRows('parentCrfData')[0];
  1448. parentCrfEntry[idFieldName]=studyId;
  1449. let that=this;
  1450. let action={name:"updateRegistration",cb:function(){that.doNothing();}};
  1451. let cb=function(data){that.completeWithFlag(data,action);};
  1452. this.modifyRows('update','lists','crfEntry',[parentCrfEntry],cb,crfSetup.getContainer('CRF'));
  1453. }
  1454. }
  1455. crfVisit.afterData=
  1456. function(){
  1457. let fName='afterData';
  1458. this.configureIdManager();
  1459. this.generateSections();
  1460. }
  1461. crfVisit.configureIdManager=
  1462. function(){
  1463. let idMode=this.formEntry['idMode'];
  1464. //set default value if no value is in the list (read value is null)
  1465. if (!idMode) idMode="STUDY:EDIT";
  1466. this.print(fName+': idMode '+idMode);
  1467. //add print to config so participantManager can use it
  1468. let pM=this.getIdManager();
  1469. //extend object
  1470. let that=this;
  1471. let action=new Object();
  1472. action.name='updateCrfEntry';
  1473. action.cb=function(){that.doNothing();};
  1474. let formStatus=crfData.getCrfEntry()['FormStatus'];
  1475. pM.updateCrfEntry=function(){that.updateFlag(formStatus,action);};
  1476. let idModeArray=idMode.split(':');
  1477. pM.mode="STUDY";
  1478. if (idModeArray.includes("LOCAL")) {
  1479. pM.mode="LOCAL";
  1480. //OK, but check if CRF or registration indicate that study id is already set
  1481. participantIdManager.verifyCrfStudyId(pM);
  1482. //study id should already be set by updateRegistration
  1483. //verifyRegistration(pM);
  1484. }
  1485. if (idModeArray.includes("READONLY")){
  1486. pM.readOnly="TRUE";
  1487. }
  1488. let pId=participantIdManager.getParticipantIdFromCrfEntry(pM);
  1489. if (!pId){
  1490. participantIdManager.setEditMode(pM);
  1491. }
  1492. else{
  1493. let label=pId;
  1494. if (pM.mode=="STUDY"){
  1495. let loc=participantIdManager.getParticipantIdFromCrfEntry(pM,'LOCAL');
  1496. label=pId+':'+loc;
  1497. pM.readOnly="true";
  1498. }
  1499. participantIdManager.setLabelMode(pM,label);
  1500. //in STUDY mode also change LOCAL ID from crfEntry
  1501. }
  1502. }
  1503. crfVisit.generateSections=
  1504. function(){
  1505. let accessMode=this.role+'Mode';
  1506. let formId=crfData.getCrfEntry()['Form'];
  1507. let rowsSetup=crfSetup.selectFormSetupRows(formId);
  1508. for (let i=0;i<rowsSetup.length;i++){
  1509. let entry=rowsSetup[i];
  1510. //debug
  1511. let queryName=crfSetup.getMap('inputLists')[entry['queryName']];
  1512. this.print(fName+" ["+queryName+"]: showFlag: "+entry["showFlag"]);
  1513. this.print(fName+" ["+queryName+"]: accessMode: "+entry[accessMode]);
  1514. const nData=crfData.getQuerySnapshot(queryName).rows.length;
  1515. this.print(fName+" ["+queryName+"]: nData: "+nData);
  1516. //skip sections
  1517. //also from fields
  1518. if (entry[accessMode]=="NONE") continue;
  1519. //section fits one dataset/list
  1520. this.generateSection(entry);
  1521. }
  1522. }
  1523. crfVisit.populateSection=
  1524. function(sectionId){
  1525. let fName='[populateSection/'+sectionId+']';
  1526. this.print(fName);
  1527. //old setting
  1528. let entry=crfSetup.findSetupRow(sectionId);
  1529. //ignore names without associated entry in formSetup
  1530. if (!entry){
  1531. this.print(fName+': no matching FormSetup entry found');
  1532. return;
  1533. }
  1534. //populate comes after generate, we should be pretty safe in taking
  1535. //already generated additionalData
  1536. let queryName=crfSetup.getMap('inputLists')[entry['queryName']];
  1537. if (!(queryName in crfSetup.getAdditionalDataObject())){
  1538. this.print(fName+': no additionalData generated for '+queryName);
  1539. return;
  1540. }
  1541. let additionalData=crfSetup.getAdditionalData(queryName);
  1542. this.print(fName+': using additionalData '+additionalData);
  1543. if ("isReview" in additionalData){
  1544. let action=function(){crfReviewSection.CB();};
  1545. crfReviewSection.generateSection(queryName,queryName,action);
  1546. return;
  1547. }
  1548. let accessMode=this.role+'Mode';
  1549. let aM=entry[accessMode];
  1550. this.print(fName+': accessMode '+aM);
  1551. if (aM!='GENERATE'){
  1552. let writeMode=entry[accessMode]=='EDIT';
  1553. this.print(fName+': mode='+writeMode);
  1554. let setup=this.getStoredSetup(sectionId);
  1555. this.populateTable(queryName,writeMode,setup);
  1556. return;
  1557. }
  1558. //deal with generate
  1559. //
  1560. //already available -> shift to READ mode
  1561. let divTable=queryName+'Table';
  1562. let divObj=crfHTML.getElement(divTable);
  1563. let divRev=crfHTML.getElement(queryName+'Review');
  1564. let divRLi=crfHTML.getElement(queryName+'ReviewList');
  1565. let divGBu=crfHTML.getElement(queryName+'GenerateButton');
  1566. this.print('div GBU: '+divGBu);
  1567. divObj.style.display="block";
  1568. divRev.style.display="block";
  1569. divRLi.style.display="block";
  1570. if (divGBu!=undefined) divGBu.style.display="none";
  1571. let nData=crfData.getQuerySnapshot(queryName).rows.length;
  1572. let setup=this.getSetup(sectionId,queryName,0);
  1573. this.print('['+queryName+']: nrows '+nData);
  1574. if (nData>0){
  1575. this.populateTable(queryName,0,setup);
  1576. return;
  1577. }
  1578. //hide table
  1579. divObj.style.display="none";
  1580. divRev.style.display="none";
  1581. divRLi.style.display="none";
  1582. if (divGBu!=undefined) divGBu.style.display="block";
  1583. //add buttons?
  1584. //is button already generated?
  1585. //populateTable(entry);
  1586. }
  1587. //******* generateQuery infrastructure *********************
  1588. crfVisit.onGenerateQuery=
  1589. function(queryName){
  1590. let fName='[onGenerateQuery]';
  1591. this.print(fName+' '+queryName);
  1592. //
  1593. let cfgRows=crfSetup.getRows('generateConfigData');
  1594. // //queryName to queryId?
  1595. let qMapInverse=crfSetup.invertMap(crfSetup.getMap('inputLists'));
  1596. let queryId=qInverseMap[queryName];
  1597. let cfgRow=crfSetup.getEntryMap('generateConfigData')[queryId];
  1598. if (!cfgRow){
  1599. this.print('generateConfig for queryName['+queryId+']='+queryName+' not found');
  1600. return;
  1601. }
  1602. //let formRows=crfSetup.selectFormSetupRows(cfgRow.formId);
  1603. //
  1604. // //check if all required datasets were at least saved
  1605. this.checkGenerationFields(cfgRow);
  1606. }
  1607. crfVisit.checkGenerationFields=
  1608. function(entry){
  1609. //entry is generateConfig row
  1610. let fName='[checkGenerationFields]';
  1611. let mailRecipient=crfRow.emailRecipient;
  1612. let qMap=crfSetup.getMap('inputLists');
  1613. let qName=qMap[entry['queryId']];
  1614. //list of queries that are part of Registration form
  1615. this.print(fName);
  1616. this.print(fName+' setRecipient: '+mailRecipient);
  1617. let formId=entry['formId'];
  1618. this.print(fName+" Checking form w/id "+formId);
  1619. let formRows=this.selectFormSetupRows(formId);
  1620. //registration rows
  1621. for (let i=0;i<formRows.length;i++){
  1622. let row=formRows[i];
  1623. let queryId=row.queryName;
  1624. if (queryId==entry.queryId) continue;
  1625. let fQuery=crfData.getQuerySnapshot(qMap[queryId]);
  1626. this.print('Checking '+qMap[queryId]+' nrows: '+fQuery.rows.length);
  1627. if (fQuery.rows.length==0){
  1628. this.generateError(qName,qMap[queryId]);
  1629. return;
  1630. }
  1631. }
  1632. this.generateMessage(qName,'Vailidation OK');
  1633. this.print('callback: set recipient: '+mailRecipient);
  1634. let that=this;
  1635. let cb=function(){that.prepareForm(entry,mailRecipient);};
  1636. this.generateListEntry(entry.formId,qName,cb);
  1637. }
  1638. crfVisit.prepareForm=
  1639. function(entry,mailRecipient){
  1640. //entry is generateConfig row
  1641. let fName="[prepareForm]";
  1642. let formId=entry['formId'];
  1643. this.print(fName+' recipient '+mailRecipient);
  1644. //look for existing registration entry
  1645. let that=this;
  1646. let action=function(data){that.generateForm(data,entry,mailRecipient);};
  1647. let formFilter=LABKEY.Filter.create('Form',formId);
  1648. let parentCrfFilter=LABKEY.Filter.create('parentCrf',this.crfRef);
  1649. let filters=[formFilter,parentCrfFilter];
  1650. this.selectRows('lists','crfEntry',filters,action,crfSetup.getContainer('data'));
  1651. }
  1652. crfVisit.generateError=
  1653. function(queryName,fQueryName){
  1654. let elName=queryName+'GenerateButton'+'_reportField';
  1655. let el=crfHTML.getElement(elName);
  1656. el.innerText='Error: '+fQueryName+' was not set';
  1657. el.style.color='red';
  1658. }
  1659. crfVisit.generateMessage=
  1660. function(queryName,msg){
  1661. let elName=queryName+'GenerateButton'+'_reportField';
  1662. let el=crfHTML.getElement(elName);
  1663. el.innerText=msg;
  1664. el.style.color='green';
  1665. }
  1666. crfVisit.generateForm=
  1667. function(data,entry,mailRecipient){
  1668. //entry is generateConfig entry
  1669. let fName='[generateForm]';
  1670. this.print(fName+' recipient: '+mailRecipient);
  1671. //
  1672. const nData=data.rows.length;
  1673. this.print(fName+' Registration: '+nData+' rows');
  1674. //we have to generate masterQuery with parentCrf and crfRef
  1675. //and crfEntry with new entryId and parentCrf equal to crfRef
  1676. let queryName=crfSetup.getMap('inputLists')[entry['queryId']];
  1677. if (nData>0) {
  1678. this.generateMessage(queryName,'Registration already generated.');
  1679. return;
  1680. }
  1681. let formId=entry['formId'];
  1682. let formEntry=crfSetup.getMap('dataForms')[formId];
  1683. let formName=formEntry.formName;
  1684. let crfBase=crfData.getCrfEntry();
  1685. let crfEntry=new Object();
  1686. //add new reference
  1687. crfEntry.entryId=Date.now();
  1688. crfEntry.parentCrf=this.crfRef;
  1689. crfEntry["Date"]=new Date();
  1690. crfEntry["View"]="[VIEW]";
  1691. crfEntry.formStatus=1;//In progress
  1692. //checks for both field presence (if not in query, undefined) and field value (if not set, null)
  1693. this.print(fName+' setup status: '+entry.formStatus);
  1694. if (entry.formStatus){
  1695. crfEntry.formStatus=entry.formStatus;
  1696. }
  1697. //get local Id
  1698. let pM=this.getIdManager();
  1699. crfEntry[participantIdManager.getCrfEntryFieldName(pM)]=participantIdManager.getParticipantIdFromCrfEntry(pM);
  1700. // //set other variables
  1701. //requires studyData as part of formConfig
  1702. // let studyData=config.formConfig.studyData;
  1703. this.print('Adding study: '+crfBase.EudraCTNumber);
  1704. crfEntry.EudraCTNumber=crfBase.EudraCTNumber;
  1705. crfEntry.StudyCoordinator=crfBase.StudyCoordinator;
  1706. crfEntry.StudySponsor=crfBase.StudySponsor;
  1707. crfEntry.RegulatoryNumber=crfBase.RegulatoryNumber;
  1708. //
  1709. // //find sponsor for site
  1710. let site=crfBase.Site;
  1711. let crfSponsors=crfSetup.getRows('crfSponsors');
  1712. let userMap=crfSetup.getEntryMap('users');
  1713. let sponsorId=null;
  1714. for (let i=0;i<crfSponsors.length;i++){
  1715. //take first matching sponsor
  1716. if (crfSponsors[i].Site!=site) contnue;
  1717. sponsorId=crfSponsors[i].User;
  1718. //finds first
  1719. break;
  1720. }
  1721. let sponsor=userMap[sponsorId];
  1722. this.print('Selecting '+sponsor.DisplayName+' as sponsor');
  1723. //different user than the original form...
  1724. //should be set to the study sponsor
  1725. crfEntry.UserId=sponsor.UserId;
  1726. crfEntry.Site=site;
  1727. // //set formId to one found through registration search
  1728. crfEntry.Form=formId;
  1729. ////
  1730. let crfStatus=crfData.createCrfStatus(crfEntry);
  1731. crfStatus.operator=this.role;
  1732. crfStatus.action='generateForm';
  1733. let that=this;
  1734. let action=function(){that.doNothing();};
  1735. let cb=function(data){that.sendEmail(data,mailRecipient,action,formName+' generated');}
  1736. let containerPath=crfSetup.getContainer('data');
  1737. let pass=function(data){runQuery.insertRows('lists','crfStatus',[crfStatus],cb,containerPath);};
  1738. runQuery.insertRows('lists','crfEntry',[crfEntry],pass,crfSetup.getContainer('data'));
  1739. }
  1740. crfVisit.generateListEntry=
  1741. function(formId,queryName,cb){
  1742. //check if registration was already generated
  1743. let formRows=crfSetup.selectFormSetupRows(formId);
  1744. let nData=crfData.getQuerySnapshot(queryName).rows.length;
  1745. if (nData>0) return;
  1746. //create new list entry
  1747. let pM=this.getIdManager();
  1748. let e2=new Object();
  1749. e2.crfRef=this.getCrfRef();
  1750. e2.registrationStatus=0;
  1751. e2.submissionDate=new Date();
  1752. e2[participantIdManager.getCrfEntryFieldName(pM)]=participantIdManager.getParticipantIdFromCrfEntry(pM);
  1753. this.print('set values');
  1754. runQuery.insertRows('lists',queryName,[e2],cb,crfSetup.getContainer('data'));
  1755. }
  1756. // ******************** end form generator (Registration) ********************
  1757. //jump to populate table/generate review, etc defined at the begining of the file
  1758. //entry point from generateMasterForm
  1759. crfVisit.setFormConfig=
  1760. function(){
  1761. let fName="[setFormConfig]";
  1762. let crfRef=this.crfRef;
  1763. let that=this;
  1764. let afterCrfEntry=function(){that.afterCrfEntry();};
  1765. let action=function(){crfData.setCrfEntry(crfRef,afterCrfEntry);};//afterCrfEntry
  1766. crfSetup.setContainers(action);
  1767. }
  1768. crfVisit.afterCrfEntry=
  1769. function(){
  1770. let fName='[afterCRFEntry]';
  1771. this.print("Setting crfEntry (x) to "+crfData.getCrfEntry()["entryId"]);
  1772. //for empty records or those with parentCrf not set, parentCrf comes up as null
  1773. //nevertheless, with two equal signs, check against undefined also works
  1774. crfSetup.formStatus=crfData.getCrfEntry()['FormStatus'];
  1775. let parentCrf=crfData.getCrfEntry()['parentCrf'];
  1776. this.print('parentCrf set to '+parentCrf);
  1777. if (parentCrf) crfSetup.parentCrf=parentCrf;
  1778. let that=this;
  1779. let action=function(){that.parseSetup();};
  1780. crfSetup.parseSetup(action);
  1781. }
  1782. crfVisit.parseSetup=
  1783. function(){
  1784. //debug
  1785. let fName='[parseSetup]';
  1786. let varRows=crfSetup.getRows('crfStaticVariables');
  1787. let studyVars=crfSetup.getRows('studyData')[0];
  1788. for (let i=0;i<varRows.length;i++){
  1789. let vName=varRows[i].staticVariable;
  1790. this.print(fName+' '+vName+': '+studyVars[vName]);
  1791. }
  1792. //parse site
  1793. this.siteEntry=crfSetup.getEntryMap('siteData')[crfData.getCrfEntry()['Site']];
  1794. this.print("Setting site name to "+this.siteEntry['siteName']);
  1795. //study
  1796. this.print("XSetting participantField to "+studyVars["SubjectColumnName"]);
  1797. //parse user
  1798. this.userEntry=crfSetup.getEntryMap('users')[crfData.getCrfEntry()['UserId']];
  1799. this.print("Setting user to "+this.userEntry["DisplayName"]);
  1800. this.print('Setting operator to: '+this.role);
  1801. //point formId to point to form set in crfEntry
  1802. let formId=crfData.getCrfEntry()['Form'];
  1803. this.formEntry=crfSetup.getEntryMap('dataForms')[formId];
  1804. let accessModeColumn=this.role+'Status';
  1805. let targetStatus=this.formEntry[accessModeColumn];
  1806. let formStatus=crfData.getCrfEntry()['FormStatus'];
  1807. this.print(fName+' comparing status '+formStatus+'/'+targetStatus);
  1808. if (targetStatus!=formStatus){
  1809. let statusMap=crfSetup.getEntryMap('formStatusAll');
  1810. let targetEntry=statusMap[targetStatus];
  1811. let actualEntry=statusMap[formStatus];
  1812. alert('Form status ['+actualEntry.formStatus+'] not suitable to be operated by '+this.role+' targeting status ['+targetEntry.formStatus+']');
  1813. this.redirect();
  1814. }
  1815. crfSetup.setAdditionalData(this.crfRef,formId);
  1816. this.afterConfig();
  1817. }
  1818. crfVisit.uploadFile=
  1819. function(inputElement,context){
  1820. //context should have ID and dirName attributes;
  1821. //path will be dirName/ID/fieldName_ID.suf
  1822. //where suf is identical to localPath content picked from
  1823. //inputElement
  1824. this.print('uploadFile: '+inputElement.value+'/');
  1825. if (inputElement.type=="text") return;
  1826. this.print('uploadFile: '+inputElement.files+'/');
  1827. this.print('uploadFile: '+inputElement.files.length+'/');
  1828. if (inputElement.files.length>0){
  1829. let file=inputElement.files[0];
  1830. this.print('uploadFile: '+inputElement.value+'/'+file.size);
  1831. webdav.uploadFile(file,context);
  1832. }
  1833. }
  1834. crfVisit.printForm=
  1835. function(){
  1836. crfPrint.printForm();
  1837. }