crfVisit.js 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279
  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. //harmonize signature
  16. //(schema,query,row,action=cvDoNothing,container=null
  17. crfVisit.insertRows=
  18. function(schema,query,rows,action=null,container=null,failure=null){
  19. this.modifyRows('insert',schema,query,rows,action,container);
  20. }
  21. crfVisit.deleteRows=
  22. function(schema,query,rows,action=null,container=null,failure=null){
  23. this.modifyRows('delete',schema,query,rows,action,container);
  24. }
  25. crfVisit.modifyRows=
  26. function(mode,schema,query,rows,action=null,container=null,failure=null){
  27. //insert rows to container/schema/query and return with action
  28. let fName="[cvModifyRows/"+mode+"]";
  29. this.print(fName+' '+schema+'/'+query);
  30. let qconfig=new Object();
  31. qconfig.schemaName=schema;
  32. qconfig.queryName=query;
  33. if (container) qconfig.containerPath=container;
  34. if (!rows) {
  35. this.print(fName+' rows '+rows);
  36. return;
  37. }
  38. qconfig.rows=rows;
  39. qconfig.success=function(data){;};
  40. if (action) qconfig.success=action;
  41. if (mode=='insert') LABKEY.Query.insertRows(qconfig);
  42. if (mode=='update') LABKEY.Query.updateRows(qconfig);
  43. if (mode=='delete') LABKEY.Query.deleteRows(qconfig);
  44. this.print(fName+" done");
  45. }
  46. crfVisit.selectRows=
  47. function(schema,query,filters=[],action=null, container=null, failure=null, columns=null){
  48. let fName="[cvSelectRows]";
  49. this.print(fName+' '+schema+' '+query+' '+container);
  50. let qconfig=new Object();
  51. qconfig.schemaName=schema;
  52. qconfig.queryName=query;
  53. if (container) qconfig.containerPath=container;
  54. qconfig.filterArray=filters;
  55. qconfig.success=function(data){;};
  56. if (action) qconfig.success=action;
  57. if (failure) qconfig.failure=failure;
  58. if (columns) qconfig.columns=columns;
  59. LABKEY.Query.selectRows(qconfig);
  60. this.print(fName+" done");
  61. }
  62. crfVisit.createCrfStatus=
  63. function(crfEntry){
  64. let crfStatus=new Object();
  65. crfStatus.entryId=crfEntry.entryId;
  66. crfStatus.submissionDate=new Date();
  67. crfStatus.FormStatus=crfEntry.FormStatus;
  68. crfStatus.User=crfEntry.UserId;
  69. crfStatus.Form=crfEntry.Form;
  70. return crfStatus;
  71. }
  72. crfVisit.init=
  73. function(cb=null){
  74. let that=this;
  75. let action=function(){that.scriptsLoaded(cb);};
  76. LABKEY.Utils.requiresScript(["crfTecant/runQuery.js","crfTecant/crfReviewSection.js","crfTecant/participantIdManager.js","crfTecant/variableList.js","crfTecant/webdav.js","crfTecant/crfPrint.js"],action);
  77. }
  78. crfVisit.scriptsLoaded=
  79. function(cb=null){
  80. participantIdManager.set(this);
  81. webdav.set(this);
  82. crfReviewSection.set(this);
  83. crfPrint.set(this);
  84. if (cb) cb();
  85. }
  86. crfVisit.getElement=
  87. function(id){
  88. return this.config.document.getElementById(id);
  89. }
  90. crfVisit.setContainer=
  91. function(label,container){
  92. let config=this.config;
  93. if (!(config.formConfig.hasOwnProperty('container'))){
  94. config.formConfig.container=new Array();
  95. }
  96. config.formConfig.container[label]=container;
  97. }
  98. crfVisit.getContainer=
  99. function(label){
  100. return this.config.formConfig.container[label];
  101. }
  102. crfVisit.getCRFrefFirst=
  103. function(){
  104. //crfRef is part of html call and gets stored in the page
  105. return this.getElement(this.config.crfRefId).innerHTML;
  106. }
  107. crfVisit.getCRFref=
  108. function (){
  109. //'crfRefId'
  110. return this.config.formConfig.crfEntry['entryId'];
  111. }
  112. crfVisit.getCRFrefData=
  113. function(){
  114. let parentCrf=this.config.formConfig.crfEntry['parentCrf'];
  115. if (parentCrf!=undefined) return parentCrf;
  116. return this.getCRFref();
  117. }
  118. crfVisit.onFailure=
  119. function(errorInfo, options, responseObj){
  120. if (errorInfo && errorInfo.exception)
  121. alert("Failure: " + errorInfo.exception);
  122. else
  123. alert("Failure: " + responseObj.statusText);
  124. }
  125. crfVisit.doNothing=
  126. function (){
  127. this.print('doNothing called');
  128. }
  129. crfVisit.getSnapshotObject=
  130. function(){
  131. if (!("dataQueriesSnapshot" in this.config.formConfig))
  132. this.config.formConfig.dataQueriesSnapshot=new Object();
  133. return this.config.formConfig.dataQueriesSnapshot;
  134. }
  135. crfVisit.getQuerySnapshot=
  136. function(queryName){
  137. //check whether queryName is in snapshotObject?
  138. return this.getSnapshotObject()[queryName];
  139. }
  140. crfVisit.getLayoutObject=
  141. function(){
  142. if (!("dataQueriesLayout" in this.config.formConfig))
  143. this.config.formConfig.dataQueriesLayout=new Object();
  144. return this.config.formConfig.dataQueriesLayout;
  145. }
  146. crfVisit.getQueryLayout=
  147. function(queryName){
  148. //check whether queryName is in snapshotObject?
  149. return this.getLayoutObject()[queryName];
  150. }
  151. crfVisit.getLookupObject=
  152. function(){
  153. if (!("lookup" in this.config.formConfig))
  154. this.config.formConfig.lookup=new Object();
  155. return this.config.formConfig.lookup;
  156. }
  157. crfVisit.getLookup=
  158. function(queryName){
  159. let x=this.getLookupObject();
  160. if (queryName in x) return x[queryName];
  161. return null;
  162. }
  163. crfVisit.getQueryList=
  164. function(){
  165. if (!("queryList" in this.config.formConfig))
  166. this.config.formConfig.queryList=new Object();
  167. return this.config.formConfig.queryList;
  168. }
  169. crfVisit.getIdManager=
  170. function(){
  171. if (!("idManager" in this.config.formConfig))
  172. this.config.formConfig.idManager=participantIdManager.getObject();
  173. return this.config.formConfig.idManager;
  174. }
  175. crfVisit.getAdditionalData=
  176. function(formSetupEntry){
  177. //return information on additional data associated with the form
  178. //additionalData is a sub-list with multiple entries per patient/visit
  179. let config=this.config;
  180. //argument is the row of the formSetup setup list
  181. let queryName=config.formConfig.queryMap[formSetupEntry['queryName']];
  182. let fName='[getAdditionalData/'+queryName+']';
  183. this.print(fName);
  184. //additionalData holds a reference to all queries already parsed
  185. //this helps in reducing number of calls to the database (I assume)
  186. if (queryName in config.formConfig.additionalData){
  187. this.print(fName+': Returning preset value');
  188. return config.formConfig.additionalData[queryName];
  189. }
  190. //first time we see this query, so we have to do the setup
  191. this.print(fName+': generating');
  192. config.formConfig.additionalData[queryName]=new Object();
  193. //takes address, so further changes will be to the newly created object
  194. //in fact, ad is just a short alias of the long variable name on the right
  195. let ad=config.formConfig.additionalData[queryName];
  196. //no additional data
  197. if (formSetupEntry["showFlag"]==="NONE") {
  198. this.print(fName+": empty");
  199. return ad;
  200. }
  201. //use showFlag to setup report section of the CRF list
  202. if (formSetupEntry["showFlag"]==="REVIEW") {
  203. //abuse additionalData to signal different segment
  204. this.print(fName+": generateReport");
  205. ad.isReview=true;
  206. return ad;
  207. }
  208. //setup the additionalData memory object
  209. this.print(fName+': setting values');
  210. ad.showFlag=formSetupEntry["showFlag"];
  211. ad.showFlagValue=formSetupEntry["showFlagValue"];
  212. ad.queryName=formSetupEntry["showQuery"];
  213. //for data queries, limit to present CRF only
  214. ad.filters=new Object();
  215. let crfValues=this.getCRFref();
  216. let settings=this.config.formConfig.settings;
  217. let doMerge=false;
  218. if ("mergeListData" in settings){
  219. let ar=settings["mergeListData"].split(',');
  220. if (ar.includes(ad.queryName))
  221. doMerge=true;
  222. }
  223. let idField='participantStudyId';
  224. let id=this.config.formConfig.crfEntry[idField];
  225. this.print(fName+": studyId "+id+" doMerge "+doMerge);
  226. if (doMerge){
  227. let entries=config.formConfig.crfEntries.rows;
  228. for (let i=0;i<entries.length;i++){
  229. let e=entries[i];
  230. if (e[idField]==id){
  231. crfValues+=";"+e['entryId'];
  232. }
  233. }
  234. }
  235. this.print(fName+": crfValues "+crfValues);
  236. ad.filters['crfRef']=crfValues;
  237. //compose a long debug message
  238. let msg=fName+": flag "+ad.showFlag;
  239. msg+=" value "+ad.showFlagValue;
  240. msg+=" query "+ad.queryName;
  241. this.print(msg);
  242. return ad;
  243. }
  244. crfVisit.selectFormSetupRows=
  245. function(formId){
  246. let formSetupRows=new Array();
  247. let config=this.config;
  248. let allRows=config.formConfig.formSetup.rows;
  249. for (let i=0;i<allRows.length;i++){
  250. let formEntry=allRows[i];
  251. if (formEntry.formName==formId)
  252. formSetupRows.push(formEntry);
  253. }
  254. return formSetupRows;
  255. }
  256. crfVisit.findTitle=
  257. function(queryName){
  258. //find by name from formDatasets
  259. //and set associated title as title
  260. let config=this.config;
  261. let rows=config.formConfig.formDatasets.rows;
  262. for (let i=0;i<rows.length;i++){
  263. let entry=rows[i];
  264. if (entry['queryName']!=queryName) continue;
  265. return entry['title'];
  266. }
  267. return "NONE";
  268. }
  269. crfVisit.makeSetup=
  270. function(listName){
  271. //generate setup object whcih should contain fields:
  272. //readonlyFlag - whether the dataset is writeable
  273. //filters - selection fields that allow creation of LABKEY.Filter.create()
  274. //getInputId - formating of unique ids for html elements
  275. let fName='[Setup]';
  276. this.print(fName+' '+listName);
  277. let setup=new Object();
  278. setup.queryName=listName;
  279. setup.readonlyFlag=function(vName){return false};
  280. setup.filters=new Object();
  281. setup.filters['crfRef']=this.getCRFref();
  282. setup.getInputId=function(vName){return listName+"_"+vName;}
  283. setup.isReview=false;
  284. return setup;
  285. }
  286. crfVisit.getFullAccessSetup=
  287. function(listName){
  288. //addApply - whether a submit/Save button is generated
  289. let setup=this.makeSetup(listName);
  290. setup.addApply="Save";
  291. return setup;
  292. }
  293. crfVisit.getReadonlySetup=
  294. function(listName){
  295. let setup=this.makeSetup(listName);
  296. //see definition of setup object above, change readonly flag
  297. setup.readonlyFlag=function(vName){return true};
  298. return setup;
  299. }
  300. crfVisit.getSetup=
  301. function(listName,writeAccess=true){
  302. //change to section granulated permission of type EDIT, COMMENT, READ
  303. //let formStatus=config.formConfig.formStatus;
  304. //equivalent to READ
  305. if (!writeAccess)
  306. //if (formStatus=="Submitted")
  307. return this.getReadonlySetup(listName);
  308. //if (formStatus=="Approved")
  309. // return readonlySetup(listName);
  310. return this.getFullAccessSetup(listName);
  311. }
  312. crfVisit.generateSection=
  313. function(formSetupEntry){
  314. let config=this.config;
  315. let that=this;
  316. let listName=config.formConfig.queryMap[formSetupEntry['queryName']];
  317. //if (!listName) is for debugSection
  318. if (!listName){
  319. listName="debugSection";
  320. }
  321. let fName='[generateSection/'+listName+']';
  322. let sectionTitle=formSetupEntry['title'];
  323. let accessModeColumn=config.formConfig.operator+'Mode';
  324. let accessMode=formSetupEntry[accessModeColumn];
  325. //this will fix it for later use as well
  326. let additionalData=this.getAdditionalData(formSetupEntry);
  327. this.print(fName);
  328. let formName=config.masterForm;//this is HTML designator of area on page
  329. let debug=true;
  330. let tb=config.document.createElement('table');
  331. tb.className='t2';
  332. let row=tb.insertRow();
  333. let cell=config.document.createElement('th');
  334. row.appendChild(cell);
  335. cell.setAttribute("colspan","4");
  336. cell.style.fontSize="20px";
  337. cell.style.textAlign="center";
  338. let cellData=config.document.createTextNode(sectionTitle);
  339. cell.appendChild(cellData);
  340. cell=row.insertCell();
  341. let input=config.document.createElement("input");
  342. input.type="button";
  343. input.value="Show";
  344. input.id="toggle"+listName+"VisbilityButton";
  345. input.onclick=function(){that.toggleVisibility(listName,input.id)};
  346. cell.appendChild(input);
  347. this.getElement(formName).appendChild(tb);
  348. let div=config.document.createElement('div');
  349. div.id=listName;
  350. div.style.display="none";
  351. this.getElement(formName).appendChild(div);
  352. //here divert for debugArea
  353. if (listName=="debugSection"){
  354. let debugArea=config.document.createElement('textarea');
  355. debugArea.rows=10;
  356. debugArea.cols=95;
  357. debugArea.id=config.debugId;
  358. div.appendChild(debugArea);
  359. return;
  360. }
  361. let divTable=config.document.createElement('div');
  362. divTable.id=listName+"Table";
  363. div.appendChild(divTable);
  364. if ("showFlag" in additionalData) {
  365. additionalData.divName=listName+"SubDiv";
  366. additionalData.divQueryName=listName+"SubDivList";
  367. let div1=config.document.createElement('div');
  368. div1.id=additionalData.divName;
  369. div1.style.display="none";
  370. div.appendChild(div1);
  371. let div2=config.document.createElement('div');
  372. div2.id=additionalData.divQueryName;
  373. div1.appendChild(div2);
  374. }
  375. this.print(fName+" generate master table");
  376. let writeMode=accessMode=="EDIT";
  377. let setup=this.getSetup(listName,writeMode);
  378. if ("isReview" in additionalData){
  379. crfReviewSection.set(this);
  380. let action=function(){crfReviewSection.CB();};
  381. crfReviewSection.generateSection(listName,div.id,action);
  382. return;
  383. }
  384. //master table is unique per visit
  385. setup.unique=true;
  386. this.generateTable(listName,divTable.id,additionalData,setup);
  387. if (debug) this.print("generate master table: done");
  388. let generateSubTable=true;
  389. //generateSubTable equivalent to read/write access to section
  390. if (accessMode != "EDIT")
  391. generateSubTable=false;
  392. if (! ("showFlag" in additionalData) ) generateSubTable=false;
  393. if (generateSubTable){
  394. let qName=additionalData.queryName;
  395. let dName=additionalData.divName;
  396. let xsetup=this.getFullAccessSetup(qName);
  397. //only set master query for additionalData
  398. xsetup.masterQuery=listName;
  399. //if (readonly) setup=readonlySetup(config);
  400. xsetup.subTable=true;
  401. this.generateTable(qName,dName,additionalData,xsetup);
  402. //generateTable(formSetupEntry,qName,dName,additionalData,setup);
  403. }
  404. this.print("generate review");
  405. let divReviewList=config.document.createElement('div');
  406. divReviewList.id=listName+"ReviewList";
  407. div.appendChild(divReviewList);
  408. let divReview=config.document.createElement('div');
  409. divReview.id=listName+"Review";
  410. div.appendChild(divReview);
  411. //assume we already have listId (content of config.setupQueryName is listId)
  412. //we need listName also
  413. //qconfig.queryName=config.setupQueryName;
  414. this.generateReview(divReview.id,divReviewList.id,listName,accessMode);
  415. if (accessMode!='GENERATE') return;
  416. this.print('Adding generate button');
  417. //add generateButton
  418. let divGenerateButton=config.document.createElement('div');
  419. divGenerateButton.id=listName+'GenerateButton';
  420. div.appendChild(divGenerateButton);
  421. this.print('Adding generate button completed to here');
  422. let cb=function(){that.onGenerateQuery(listName);};
  423. this.generateButton(divGenerateButton.id,'Generate','Generate '+listName,'onGenerateQuery',cb);
  424. this.print('Adding generate button completed');
  425. }
  426. crfVisit.generateReview=
  427. function(divReviewId,divReviewListId, listName, accessMode){
  428. let config=this.config;
  429. let listId=config.formConfig.fields[listName].queryId;
  430. //listId is a number->should it be queryName?
  431. let fName='[generateReview]';
  432. this.print(fName+" list "+listId+'/'+listName);
  433. let reviewSetup=new Object();
  434. reviewSetup.readonlyFlag=function(vName){
  435. if (vName=="queryName") return true;
  436. if (vName=="queryname") return true;
  437. if (vName=="ModifiedBy") return true;
  438. return false;};
  439. reviewSetup.addApply="Add Review";
  440. reviewSetup.reviewTable=true;
  441. let generateTableFlag=true;
  442. let formStatus=config.formConfig.formStatus;
  443. //COMMENTS allowed or not
  444. //three levels of access: EDIT, COMMENT, READ
  445. if (accessMode == "READ"){
  446. //if (formStatus == "Approved" ){
  447. delete reviewSetup.addApply;
  448. reviewSetup.readonlyFlag=function(vName){return false;}
  449. generateTableFlag=false;
  450. }
  451. reviewSetup.filters=new Object();
  452. reviewSetup.filters["crfRef"]=this.getCRFref();
  453. if (config.formConfig.crfEntry.parentCrf){
  454. reviewSetup.filters["crfRef"]=this.getCRFref()+";"+config.formConfig.crfEntry.parentCrf;
  455. }
  456. reviewSetup.filters["queryName"]=listId;//entry in reviewComments list is queryname, all in small caps
  457. //needs listName, in argument
  458. reviewSetup.getInputId=function(vName){return listName+"_add"+vName};
  459. reviewSetup.divReviewListId=divReviewListId;
  460. reviewSetup.isReview=true;
  461. let msg="Review: divId: "+divReviewId;
  462. msg+=" inputId: "+reviewSetup.getInputId;
  463. this.print(msg);
  464. this.updateListDisplay(divReviewListId,"reviewComments",reviewSetup.filters,true);
  465. if (! generateTableFlag) return;
  466. this.generateTable("reviewComments",divReviewId,new Object(),reviewSetup);
  467. }
  468. //>>>>>>>>>>trigger visibility of additional lists
  469. crfVisit.setListVisibility=
  470. function(input,setup,readonlyFlag){
  471. let config=this.config;
  472. let fName="[setListVisibility/"+setup.queryName+"]";
  473. this.print(fName);
  474. let additionalData=config.formConfig.additionalData[setup.queryName];
  475. let x = this.getElement(additionalData.divName);
  476. this.print(fName+": Div: "+x);
  477. x.style.display="none";
  478. let sText;
  479. if (readonlyFlag) sText=input.innerText;
  480. else sText=input.options[input.selectedIndex].text;
  481. this.print(fName+": Selected option text: "+sText);
  482. if (sText == additionalData.showFlagValue){
  483. let filters=new Object();
  484. if ("filters" in additionalData) filters=additionalData.filters;
  485. x.style.display = "block";
  486. this.updateListDisplay(additionalData.divQueryName,
  487. additionalData.queryName,filters,readonlyFlag);
  488. }
  489. }
  490. //>>have list refresh when data is added (not optimal yet)
  491. //
  492. crfVisit.updateListDisplay=
  493. function(divName,queryName,filters,readonlyFlag){
  494. //use Labkey.QueryWebPart to show list
  495. let fName="[updateListDisplay]";
  496. this.print(fName+": UpdateListDisplay: Query - "+queryName
  497. +" div - "+divName);
  498. if (divName=="NONE") return;
  499. let crfRef=this.getCRFref();
  500. let div=this.getElement(divName);
  501. this.print(fName+": generating WebPart: "+queryName);
  502. var qconfig=new Object();
  503. qconfig.renderTo=divName;
  504. //point to data container
  505. qconfig.containerPath=this.getContainer('data');
  506. qconfig.schemaName='lists';
  507. qconfig.queryName=queryName;
  508. qconfig.buttonBarPosition='top';
  509. qconfig.filters=[];
  510. for (f in filters){
  511. let fType=LABKEY.Filter.Types.EQUAL;
  512. this.print(fName+' filter ['+f+'] '+filters[f]+'/'+typeof(filters[f])+' ['+fType+']');
  513. if (variableList.isFilterList(filters[f])){
  514. fType=LABKEY.Filter.Types.IN;
  515. }
  516. qconfig.filters.push(LABKEY.Filter.create(f, filters[f],fType));
  517. }
  518. let that=this;
  519. qconfig.success=function(data){that.updateSuccess(data);};
  520. qconfig.failure=function(errorInfo,options,responseObj){that.onFailure(errorInfo,options,responseObj);};
  521. //show only print button
  522. if (readonlyFlag){
  523. qconfig.buttonBar=new Object();
  524. qconfig.buttonBar.items=["print"];
  525. }
  526. qconfig.showUpdateColumn=false;
  527. qconfig.showDetailsColumn=false;
  528. LABKEY.QueryWebPart(qconfig);
  529. }
  530. crfVisit.updateSuccess=
  531. function(data){
  532. this.print("Update success");
  533. }
  534. //TODO: this should trigger a data refresh on section, ie populateData(field)
  535. crfVisit.toggleVisibility=
  536. function(divName,buttonName){
  537. let fName='[toggleVisibility/'+divName+']';
  538. this.print(fName);
  539. let config=this.config;
  540. let x = this.getElement(divName);
  541. if (x.style.display === "none") {
  542. //exclude non data sections (like debug)...
  543. this.print(fName+': issuing setData(populateSection)');
  544. x.style.display = "block";
  545. this.getElement(buttonName).value="Hide";
  546. let that=this;
  547. let cb=function(){that.populateSection(divName);};
  548. this.setData(cb);
  549. } else {
  550. x.style.display = "none";
  551. this.getElement(buttonName).value="Show";
  552. }
  553. }
  554. crfVisit.generateButton=
  555. function(divName,caption,label,callbackLabel,callback=null){
  556. this.print("generateButtonX");
  557. let config=this.config;
  558. let tb=config.document.createElement('table');
  559. tb.className="t2";
  560. let r1=tb.insertRow();
  561. th=config.document.createElement('th');
  562. r1.appendChild(th);
  563. th.innerHTML=caption;
  564. //*!*
  565. let c2=r1.insertCell();
  566. let i1=config.document.createElement("input");
  567. i1.type="button";
  568. i1.value=label;
  569. i1.style.fontSize="20px";
  570. let that=this;
  571. if (callback)
  572. i1.onclick=callback;
  573. else
  574. i1.onclick=function(){that[callbackLabel]();};
  575. i1.id='button_'+callbackLabel;
  576. c2.appendChild(i1);
  577. let c1=r1.insertCell();
  578. c1.setAttribute("colspan","1");
  579. //this is only for saveReview?
  580. c1.id=divName+'_reportField';
  581. //c1.id=config.submitReportId;
  582. let el=this.getElement(divName);
  583. this.print("generateButton: element["+divName+"]: "+el);
  584. el.appendChild(tb);
  585. }
  586. crfVisit.generateSubQuery=
  587. function(input, setup, readonlyFlag){
  588. let fName="[generateSubQuery]";
  589. let config=this.config;
  590. if (setup.isReview) return;
  591. if (!(setup.queryName in config.formConfig.additionalData)){
  592. this.print(fName+': no additionalData entry (probably a subquery)');
  593. return;
  594. }
  595. let additionalData=config.formConfig.additionalData[setup.queryName];
  596. if (!("showFlag" in additionalData))
  597. return;
  598. this.print(fName);
  599. let expId=setup.getInputId(additionalData.showFlag);
  600. if (expId!=input.id) {
  601. this.print(fName+": ignoring field "+input.id+"/"+expId);
  602. return;
  603. }
  604. this.print(fName+": Setting onChange to "+input.id);
  605. if (readonlyFlag)
  606. return;
  607. let that=this;
  608. input.onchange=function(){that.setListVisibility(input,setup,readonlyFlag)};
  609. }
  610. //>>populate fields
  611. //
  612. //
  613. //split to field generation and field population
  614. //
  615. crfVisit.addFieldRow=
  616. function(tb,field,setup,additionalData){
  617. let fName="[addFieldRow/"+setup.queryName+':'+field.name+']';
  618. let config=this.config;
  619. let vName=field.name;
  620. let vType=field.type;
  621. let isLookup=("lookup" in field);
  622. this.print(fName+": ["+vName+"/"+vType+'/'+isLookup+"]");
  623. let row=tb.insertRow();
  624. let cell=config.document.createElement('th');
  625. cell.style.width='300px';
  626. row.appendChild(cell);
  627. let text = config.document.createTextNode(field.shortCaption);
  628. cell.appendChild(text);
  629. let input=null;
  630. let colSpan="3";
  631. let cell1=row.insertCell();
  632. cell1.colSpan=colSpan;
  633. let readonlyFlag=setup.readonlyFlag(vName);
  634. //set the html input object
  635. while (1){
  636. if (readonlyFlag){
  637. input=config.document.createElement('label');
  638. input.innerText='Loading';
  639. break;
  640. }
  641. //lookup
  642. if (isLookup){
  643. input = config.document.createElement("select");
  644. break;
  645. }
  646. //date
  647. if (vType=="date"){
  648. input = config.document.createElement("input");
  649. input.type="date";
  650. break;
  651. }
  652. //string
  653. if (vType=="string"){
  654. //we have to make sure UNDEF is carried to below
  655. //since we are adapting file to either show
  656. //current file or allow user to select a file
  657. //
  658. //TODO change this so one can always select file
  659. //but also show the selected file
  660. if(vName.search("reviewComment")>-1){
  661. input = config.document.createElement("textarea");
  662. input.cols="65";
  663. input.rows="5";
  664. break;
  665. }
  666. input=config.document.createElement('input');
  667. input.type="text";
  668. if (vName.search('_file_')<0) break;
  669. cell1.setAttribute('colspan',"1");
  670. let cell2=row.insertCell();
  671. cell2.setAttribute('colspan',"2");
  672. let input1=config.document.createElement('input');
  673. input1.type="file";
  674. input1.id=setup.getInputId(vName)+'_file_';
  675. cell2.appendChild(input1);
  676. break;
  677. }
  678. if (vType=="float"){
  679. input = config.document.createElement("input");
  680. input.type="text";
  681. break;
  682. }
  683. if (vType=="boolean"){
  684. input = config.document.createElement("input");
  685. input.type="checkbox";
  686. this.print("Creating checkbox");
  687. break;
  688. }
  689. break;
  690. }
  691. input.id=setup.getInputId(vName);
  692. cell1.appendChild(input);
  693. this.print(fName+': adding element '+input.id);
  694. this.print(fName+': listing element '+this.getElement(input.id));
  695. //connect associated list
  696. this.generateSubQuery(input,setup,readonlyFlag);
  697. if (readonlyFlag) {
  698. this.print(fName+': exiting(readonlyFlag)');
  699. return;
  700. }
  701. if (!isLookup) {
  702. this.print(fName+': exiting (not lookup)');
  703. return;
  704. }
  705. let lookup=field["lookup"];
  706. //get all values from config.formConfig.lookup[X]
  707. let lObject=config.formConfig.lookup[lookup.queryName];
  708. //debug
  709. this.print(fName+": query: "+lookup.queryName);
  710. this.print(fName+": ElementId: "+input.id);
  711. this.print(fName+": No of options: " +lObject.LUT.length);
  712. this.print(fName+": Element: "+input);
  713. //set the lut value (input is text label) for readonly
  714. //clear existing fields from input
  715. for(let i = input.options.length; i >= 0; i--) {
  716. input.remove(i);
  717. }
  718. //create option -1
  719. let opt = config.document.createElement("option");
  720. opt.text = "<Select>";
  721. opt.value = -1;
  722. input.options[0] = opt;
  723. this.print(fName+": Adding <Select>");
  724. //add other, label them with LUT
  725. for (let v in lObject.LUT) {
  726. this.print(fName+': populating '+v+': '+lObject.LUT[v]);
  727. let opt = config.document.createElement("option");
  728. opt.text = lObject.LUT[v];
  729. opt.value = v;
  730. input.options[input.options.length] = opt;
  731. }
  732. input.selectedIndex=0;
  733. }
  734. crfVisit.addSpecialFieldRows=
  735. function(tb,specFieldSetup,setup){
  736. //tb is the table, specFieldSetup is a row from the table where special fields are being setup
  737. //the first column is fieldUID, which is a colon joined amalgation of queryName:fieldName
  738. let fieldUID=specFieldSetup["fieldUID"];
  739. let x=fieldUID.split(':');
  740. let fieldName=x[1];
  741. let fName="[addSpecialFieldRow/"+fieldUID+"]";
  742. let q=variableList.parseVariables(specFieldSetup['actionParameters']);
  743. let config=this.config;//for add data
  744. this.print(fName);
  745. if (specFieldSetup['actionType']=='textArea'){
  746. let row=tb.insertRow();
  747. let cell1=row.insertCell();
  748. cell1.colSpan="4";
  749. cell1.style.textAlign="justify";
  750. cell1.style.padding="10px";
  751. cell1.style.backgroundColor="#e0e0e0";
  752. cell1.innerText=q['description'];
  753. return;
  754. }
  755. if (specFieldSetup['actionType']=='generationObject'){
  756. //only in EDIT mode!!
  757. let ro=setup.readonlyFlag(fieldName);
  758. if (ro) return;
  759. generateRegistration.set(this);
  760. let gc=generateRegistration.getObject(q,setup.getInputId(fieldName));
  761. let that=this;
  762. let action=function(){that.doNothing();};
  763. if ('mailRecipient' in q){
  764. gc.callback=function(data){that.sendEmail(data,q['mailRecipient'],action,q['subject']);};
  765. }
  766. else
  767. gc.callback=function(data){that.doNothing();};
  768. if ("addData" in q){
  769. vars=q["addData"].split(',');
  770. gc.addData=new Array();
  771. for (let v in vars){
  772. let s=vars[v]
  773. //variable name can be written as A/B where A is the name in addData and B is the variable name in crfEntry
  774. //useful for mocking up crfId from daughter crf-s such as registration
  775. let sArray=s.split('/');
  776. let sTarget=sArray[0];
  777. let sSource=sArray[sArray.length-1];
  778. gc.addData[sTarget]=config.formConfig.crfEntry[sSource];
  779. this.print(fName+" addData ["+sTarget+"]: "+gc.addData[sTarget]);
  780. }
  781. }
  782. let row=tb.insertRow();
  783. let cell=config.document.createElement('th');
  784. row.appendChild(cell);
  785. let text = config.document.createTextNode("Automatic ID generator");
  786. cell.appendChild(text);
  787. let cell1=row.insertCell();
  788. cell1.colSpan="3";
  789. let b=config.document.createElement("input");
  790. b.type="button";
  791. b.id="generateIdButton";
  792. b.onclick=function(){generateRegistration.execute(gc);};
  793. b.value="Generate ID";
  794. cell1.appendChild(b);
  795. }
  796. }
  797. crfVisit.populateFieldRow=
  798. function(entry,field,setup){
  799. this.populateField(entry,field,setup);
  800. this.populateSubQuery(entry,field,setup);
  801. }
  802. crfVisit.populateSubQuery=
  803. function(entry,field,setup){
  804. let fName='[populateSubQuery/'+setup.queryName+':'+field.name+']';
  805. let config=this.config;
  806. if (setup.isReview) return;
  807. if (!(setup.queryName in config.formConfig.additionalData)){
  808. let msg=fName+': no additionalData entry for '+setup.queryName;
  809. msg+=' (probably a subquery)';
  810. this.print(msg);
  811. return;
  812. }
  813. //find if field is connected to a sub array
  814. //find queryName
  815. //
  816. let additionalData=config.formConfig.additionalData[setup.queryName];
  817. this.print(fName);
  818. //let flag=additionalData.showFlag;
  819. if (!("showFlag" in additionalData)) return;
  820. let eId=setup.getInputId(additionalData.showFlag);
  821. let id=setup.getInputId(field.name);
  822. if (eId!=id) {
  823. this.print(fName+": ignoring field "+id+"/"+eId);
  824. return;
  825. }
  826. this.print(fName+': id '+id);
  827. //hard to estimate readonlyFlag
  828. //
  829. let input=this.getElement(id);
  830. let eType=input.nodeName.toLowerCase();
  831. let readonlyFlag=eType!="select";
  832. this.setListVisibility(input,setup,readonlyFlag);
  833. }
  834. crfVisit.clearField=
  835. function(field,setup){
  836. let foo=new Object();
  837. this.populateField(foo,field,setup);
  838. }
  839. crfVisit.populateField=
  840. function(entry,field,setup){
  841. let vName=field.name;
  842. let fName='[populateFieldName/'+vName+']';
  843. let config=this.config;
  844. let varValue="UNDEF";
  845. //if (vName in setup.filters) varValue=setup.filters[vName];
  846. if (vName in entry) varValue=entry[vName];
  847. //if part of the filter, set it to value
  848. if (vName in setup.filters) varValue=setup.filters[vName];
  849. let isLookup=("lookup" in field);
  850. this.print(fName+' v='+varValue+'/'+isLookup+' ['+
  851. setup.getInputId(field.name)+']');
  852. let vType=field.type;
  853. let id=setup.getInputId(vName);
  854. let input=this.getElement(id);
  855. //date
  856. if (vType=="date"){
  857. if (varValue=="UNDEF") varValue=new Date();
  858. else varValue=new Date(varValue);
  859. }
  860. //lookup for readonly
  861. if (isLookup && varValue!="UNDEF"){
  862. let lookup=field["lookup"];
  863. //get all values from config.formConfig.lookup[X]
  864. let lObject=config.formConfig.lookup[lookup.queryName];
  865. varValue=lObject.LUT[varValue];
  866. }
  867. this.print('Element: '+input);
  868. //figure out the element type
  869. let eType=input.nodeName.toLowerCase();
  870. this.print('Element type: '+eType);
  871. //change varValue for printing
  872. if (varValue=="UNDEF") varValue="";
  873. //HTMLTextArea, createElement(textArea)
  874. if (eType==="textarea"){
  875. input.value=varValue;
  876. return;
  877. }
  878. //Text, createTextNode
  879. if (eType==="#text"){
  880. input.nodeValue=varValue;
  881. return;
  882. }
  883. //HTMLLabelElement, createElement('label')
  884. if (eType==="label"){
  885. input.innerText=varValue;
  886. return;
  887. }
  888. //HTMLSelectElement, createElement('select')
  889. if (eType==="select"){
  890. input.selectedIndex=0;
  891. for (let i=0;i<input.options.length;i++){
  892. let v=input.options[i].text;
  893. if (v!=varValue) continue;
  894. input.selectedIndex=i;
  895. break;
  896. }
  897. return;
  898. }
  899. if (eType!="input"){
  900. this.print('Unknown type: '+eType+' encountered, igonring');
  901. return;
  902. }
  903. //HTMLInputElement
  904. let type=input.type;
  905. if (type=="date"){
  906. input.valueAsDate=varValue;
  907. return;
  908. }
  909. //string,float
  910. if (type=="text"){
  911. input.value=varValue;
  912. return;
  913. }
  914. //boolean
  915. if (type=="checkbox"){
  916. input.checked=varValue;
  917. return;
  918. }
  919. this.print('Unknown input type: '+type+'. Ignoring.');
  920. }
  921. crfVisit.populateTable=
  922. function(listName,writeMode){
  923. //function populateTable(formSetupEntry){
  924. //let listName=config.formConfig.queryMap[formSetupEntry['queryName']];
  925. //let accessMode=config.formConfig.operator+'Mode';
  926. //let writeMode=formSetupEntry[accessMode]=='EDIT';
  927. let fName='[populateTable/'+listName+']';
  928. let setup=this.getSetup(listName,writeMode);
  929. let entry=new Object();
  930. //data snapshot
  931. let fQuery=this.getQuerySnapshot(listName);
  932. let queryLayout=this.getQueryLayout(listName);
  933. //here I assume that listName was parsed during setDataLayout and setData
  934. //so that rows was set (even if they are empty)
  935. this.print(fName+"]: nrows "+fQuery.rows.length);
  936. if (fQuery.rows.length>0)
  937. entry=fQuery.rows[0];
  938. let fields=queryLayout.fields;
  939. for (f in fields){
  940. let field=fields[f];
  941. //each field is a new row
  942. this.print(fName+": Adding field: "+f+'/'+field.name+' hidden: '+field.hidden+' type:'+field.type);
  943. if (field.hidden) continue;
  944. if (field.name=="crfRef") continue;
  945. this.populateFieldRow(entry,field,setup);
  946. }
  947. }
  948. crfVisit.generateTable=
  949. function(listName,divName,additionalData,setup){
  950. let fName="[generateTable/"+listName+"]";
  951. let config=this.config;
  952. this.print(fName);
  953. //is listName and setup.queryName a duplicate of the same value
  954. this.print(fName+': setup.queryName '+setup.queryName);
  955. //assume data is set in config.formConfig.dataQueries[data.queryName].rows;
  956. let populateData=true;
  957. if ("subTable" in setup){
  958. this.print(fName+" is subTable");
  959. populateData=false;
  960. }
  961. let entry=new Object();
  962. //data snapshot
  963. let fQuerySnapshot=this.getQuerySnapshot(listName);
  964. let queryLayout=this.getQueryLayout(listName);
  965. //here I assume that listName was parsed during setDataLayout and setData
  966. //so that rows was set (even if they are empty)
  967. this.print(fName+": Nrows "+fQuerySnapshot.rows.length);
  968. if (fQuerySnapshot.rows.length>0)
  969. entry=fQuerySnapshot.rows[0];
  970. if ("reviewTable" in setup){
  971. entry['reviewComment']='';
  972. delete entry["ModifiedBy"];
  973. }
  974. let tb=config.document.createElement('table');
  975. tb.className="t2";
  976. this.getElement(divName).appendChild(tb);
  977. //this are the fields (probably constant)
  978. let fields=queryLayout.fields;
  979. for (f in fields){
  980. let field=fields[f];
  981. let fieldUID=listName+":"+field.name;
  982. //each field is a new row
  983. this.print(fName+": Adding field: "+f+'/'+field.name+' ('+fieldUID+').');
  984. //unique name
  985. if (field.hidden) continue;
  986. if (field.name=="crfRef") continue;
  987. this.addFieldRow(tb,field,setup,additionalData);
  988. if (populateData) this.populateFieldRow(entry,field,setup);
  989. if (fieldUID in config.formConfig["specialFields"]){
  990. let specFieldSetup=config.formConfig["specialFields"][fieldUID];
  991. this.addSpecialFieldRows(tb,specFieldSetup,setup);
  992. }
  993. }
  994. //finish of if apply button is not required
  995. if (!("addApply" in setup)) {
  996. this.print(fName+"populateTable: done");
  997. return;
  998. }
  999. let row=tb.insertRow();
  1000. let th=config.document.createElement('th');
  1001. row.appendChild(th);
  1002. th.innerHTML=setup.addApply;
  1003. let cell=row.insertCell();
  1004. //cell.setAttribute("colspan","2");
  1005. let input=config.document.createElement("input");
  1006. input.type="button";
  1007. input.value=setup.addApply;
  1008. cell.appendChild(input);
  1009. let cell1=row.insertCell();
  1010. cell1.setAttribute("colspan","2");
  1011. cell1.id=setup.getInputId("rerviewLastSave");
  1012. cell1.innerHTML="No recent update";
  1013. //saveReview is a generic name for saving content of the html page to a list entry
  1014. let that=this;
  1015. input.onclick=function(){that.saveReview(listName,cell1.id,setup)};
  1016. }
  1017. crfVisit.setEntryFromElement=
  1018. function(entry,elementId, field){
  1019. //set value to entry from element using representation (field) from labkey
  1020. //
  1021. //
  1022. let fName='setEntryFromElement';
  1023. let config=this.config;
  1024. let el=this.getElement(elementId);
  1025. if (!el) {
  1026. this.print(fName+" element: "+elementId+" not found");
  1027. return;
  1028. }
  1029. this.print(fName+" element: "+elementId);
  1030. let vName=field.name;
  1031. let vType=field.type;
  1032. let eType=el.nodeName.toLowerCase();
  1033. if (eType==="select"){
  1034. entry[vName]=el.options[el.selectedIndex].value;
  1035. return;
  1036. }
  1037. if (eType==="td"){
  1038. entry[vName]=el.innerText;
  1039. return;
  1040. }
  1041. if (vType=="date"){
  1042. let date=el.valueAsDate;
  1043. if (!date) return;
  1044. date.setUTCHours(12);
  1045. entry[vName]=date.toString();
  1046. this.print(fName+" setting date to "+entry[vName]);
  1047. return;
  1048. }
  1049. if (vType=="string"){
  1050. entry[vName]=el.value;
  1051. if (vName.search('_file_')<0)
  1052. return;
  1053. //upload file
  1054. let id1=elementId+'_file_';
  1055. let input1=this.getElement(id1);
  1056. this.print(fName+' attachment field: '+input1.value);
  1057. //entry[vName]=el.files[0].stream();
  1058. let ctx=new Object();
  1059. ctx['dirName']='consent';
  1060. ctx['ID']=entry['crfRef'];
  1061. //should point to data container
  1062. ctx['project']=getContainer('data');
  1063. //need ID->crf!
  1064. //assume crfRef will get set before this
  1065. //element is encountered
  1066. this.uploadFile(input1,ctx);
  1067. let fv=el.value;
  1068. let suf=fv.split('.').pop();
  1069. entry[vName]=entry['crfRef']+'.'+suf;
  1070. return;
  1071. }
  1072. if (vType=="float" || vType=="int"){
  1073. entry[vName]=el.value;
  1074. if (vName=="queryName") {
  1075. this.print(fName+' parsing queryName: '+el.innerText);
  1076. entry[vName]=config.formConfig.fields[el.innerText].queryId;
  1077. //use queryMap lookup
  1078. }
  1079. return;
  1080. }
  1081. if (vType=="boolean"){
  1082. entry[vName]=el.checked;
  1083. return;
  1084. }
  1085. return;
  1086. }
  1087. crfVisit.saveReview=
  1088. function(queryName,elementId,setup){
  1089. //loads any queryName
  1090. let debug=true;
  1091. let fName='[saveReview/'+queryName+']';
  1092. this.print(fName+" elementId "+elementId);
  1093. let unique=("unique" in setup);
  1094. //data snapshot
  1095. let fQuerySnapshot=this.getQuerySnapshot(queryName);
  1096. let nRows=fQuerySnapshot.rows.length;
  1097. let mode='insert';
  1098. //data layout
  1099. let queryLayout=this.getQueryLayout(queryName);
  1100. let entry=new Object();
  1101. //determine mode based on entry uniqueness and presence of data
  1102. if (unique && nRows>0){
  1103. entry=fQuerySnapshot.rows[0];
  1104. mode='update';
  1105. }
  1106. this.print(fName+' unique '+unique+' mode '+mode+' nRows '+nRows);
  1107. entry.crfRef=this.getCRFrefData();
  1108. this.print(fName+" set crfRef="+entry.crfRef);
  1109. let fields=queryLayout.fields;
  1110. for (f in fields){
  1111. let field=fields[f];
  1112. this.print(fName+" saveReview field: "+field.name);
  1113. if (field.hidden) continue;
  1114. let vName=field.name;
  1115. let vType=field.type;
  1116. this.print(fName+" vType: "+vType);
  1117. if (vName=="crfRef") continue;
  1118. //need to save queryName for reviewComments
  1119. let eId=setup.getInputId(vName);
  1120. //copy values from form to entry
  1121. this.setEntryFromElement(entry,eId,field);
  1122. //clear field value
  1123. if (!unique) this.clearField(field,setup);
  1124. }
  1125. let that=this;
  1126. let action=function(data){that.updateLastSavedFlag(data,setup,elementId)};
  1127. this.modifyRows(mode,'lists',queryName,[entry],action,this.getContainer('data'));
  1128. }
  1129. crfVisit.updateLastSavedFlag=
  1130. function(data,setup,elementId){
  1131. let fName='[updateLastSavedFlag]';
  1132. let config=this.config;
  1133. this.print(fName+" update last saved flag to "+elementId);
  1134. let el=this.getElement(elementId);
  1135. let dt=new Date();
  1136. el.innerHTML="Last saved "+dt.toString();
  1137. if (data.queryName=="reviewComments"){
  1138. this.updateListDisplay(setup.divReviewListId,"reviewComments",setup.filters,true);
  1139. }
  1140. //refresh stored data!
  1141. let writeMode=!setup.readonlyFlag();
  1142. let that=this;
  1143. if ("unique" in setup)
  1144. this.setData(function (){that.populateTable(data.queryName,writeMode);});
  1145. if ("masterQuery" in setup){
  1146. let ad=config.formConfig.additionalData[setup.masterQuery];
  1147. this.print('Updating list display: '+setup.queryName+'/'+ad.queryName);
  1148. this.updateListDisplay(ad.divQueryName,ad.queryName,ad.filters,false);
  1149. }
  1150. }
  1151. //******************************************upload to database *********************
  1152. crfVisit.onDatabaseUpload=
  1153. function(){
  1154. let fName='[onDatabaseUpload]';
  1155. this.print(fName);
  1156. let config=this.config;
  1157. config.upload=new Object();
  1158. let fc=new Object();
  1159. let pM=this.getIdManager();
  1160. fc.participantId=participantIdManager.getParticipantIdFromCrfEntry(pM);
  1161. this.print(fName+' id '+fc.participantId);
  1162. this.afterParticipantId(fc);
  1163. }
  1164. crfVisit.afterParticipantId=
  1165. function(fc){
  1166. this.print("Setting participantId to "+fc.participantId);
  1167. let config=this.config;
  1168. config.upload.participantId=fc.participantId;
  1169. //another select rows to update all queries from setup
  1170. //just use registration for test
  1171. let formSetupRows=config.formConfig.formSetupRows;
  1172. config.upload.queries=new Array();
  1173. this.print("Form rows: "+formSetupRows.length);
  1174. for (let i=0;i<formSetupRows.length;i++){
  1175. let entry=formSetupRows[i];
  1176. //skip reviews
  1177. if (entry.showFlag=="REVIEW") continue;
  1178. //use lookup table to convert from id to name
  1179. let queryName=config.formConfig.queryMap[entry.queryName];
  1180. config.upload.queries.push({queryName:queryName,queryStatus:"QUEUED"});
  1181. this.print('form ['+i+']='+queryName+' '+entry.showFlag+'/'+entry.showQuery);
  1182. if (entry.showQuery=="NONE")
  1183. continue;
  1184. config.upload.queries.push({queryName:entry.showQuery,queryStatus:"QUEUED"});
  1185. }
  1186. //add reviews
  1187. config.upload.queries.push({queryName:"reviewComments",queryStatus:"QUEUED"});
  1188. config.upload.queryId=0;
  1189. this.copyToDataset();
  1190. }
  1191. crfVisit.copyToDataset=
  1192. function(){
  1193. let fName='[copyToDataset]: ';
  1194. let config=this.config;
  1195. this.print(fName+'['+config.upload.queryId+'/'+config.upload.queries.length+']');
  1196. //watch dog + scheduler
  1197. //
  1198. let that=this;
  1199. //watchdog part
  1200. if (config.upload.queryId==config.upload.queries.length) {
  1201. this.print(fName+'completing');
  1202. let targetStatus=config.formConfig.targetStatus['onDatabaseUpload'];
  1203. let targetRecipient=config.formConfig.targetRecipient['onDatabaseUpload'];
  1204. let action=new Object();
  1205. action.name='onDatabaseUpload';
  1206. let redirect=function(){that.redirect();};
  1207. action.cb=function(data){that.sendEmail(data,targetRecipient,redirect,'Form uploaded');}
  1208. this.updateFlag(targetStatus,action);//Approved
  1209. return;
  1210. }
  1211. //scheduler
  1212. let queryName=config.upload.queries[config.upload.queryId].queryName;
  1213. this.print("copyToDataset["+config.upload.queryId+"/"+
  1214. config.upload.queries.length+"]: "+queryName);
  1215. let filters=[LABKEY.Filter.create('crfRef',this.getCRFref())];
  1216. let action=function(data){that.afterListData(data);};
  1217. this.selectRows('lists',queryName,filters,action,this.getContainer('data'));
  1218. }
  1219. crfVisit.afterListData=
  1220. function(data){
  1221. let fName='[afterListData]: ';
  1222. let config=this.config;
  1223. let queryName=config.upload.queries[config.upload.queryId].queryName;
  1224. this.print(fName+" ["+queryName+"/list]: "+data.rows.length+" entries");
  1225. config.upload.queries[config.upload.queryId].listData=data;
  1226. let id=config.upload.participantId;
  1227. let filters=[LABKEY.Filter.create('crfRef',this.getCRFref()),LABKEY.Filter.create('ParticipantId',id)];
  1228. let that=this;
  1229. let action=function(data){that.afterStudyData(data);};
  1230. this.selectRows('study',queryName,filters,action,this.getContainer('data'));
  1231. }
  1232. crfVisit.afterStudyData=
  1233. function(data){
  1234. let fName='[afterStudyData]: ';
  1235. let config=this.config;
  1236. let queryObj=config.upload.queries[config.upload.queryId];
  1237. queryObj.studyData=data;
  1238. let msg=fName+"["+queryObj.queryName+"/study]: "+data.rows.length+" entries";
  1239. this.print(msg);
  1240. let listRows=queryObj.listData.rows;
  1241. //skip uploading an empty set
  1242. if (listRows.length==0){
  1243. this.printErr("List "+queryObj.queryName+" empty.");
  1244. queryObj.queryStatus="DONE";
  1245. config.upload.queryId+=1;
  1246. //back to watchdog
  1247. this.copyToDataset();
  1248. return;
  1249. }
  1250. let studyRows=queryObj.studyData.rows;
  1251. for (let i=0;i<studyRows.length;i++){
  1252. let entry=studyRows[i];
  1253. //
  1254. if (! (i<listRows.length) ) continue;
  1255. let entryList=listRows[i];
  1256. //keeps study only variables (ParticipantId, SequenceNum)
  1257. for (let f in entryList) {
  1258. entry[f]=entryList[f];
  1259. this.print(fName+"Copying ["+f+"]: "+entry[f]+"/"+entryList[f]);
  1260. }
  1261. }
  1262. this.print(fName+' copying completed');
  1263. if (studyRows.length>0) {
  1264. let that=this;
  1265. let action=function(data){that.afterStudyUpload(data);};
  1266. this.modifyRows('update','study',queryObj.queryName,studyRows,action,this.getContainer('data'));
  1267. this.print(fName+'updateRows sent');
  1268. }
  1269. else{
  1270. let data=new Object();
  1271. data.rows=new Array();
  1272. this.afterStudyUpload(data);
  1273. }
  1274. }
  1275. crfVisit.afterStudyUpload=
  1276. function(data){
  1277. let fName='[afterStudyUpload] ';
  1278. let config=this.config;
  1279. let that=this;
  1280. this.print(fName);
  1281. //let participantField=config.participantField;
  1282. let participantField=config.formConfig.studyData["SubjectColumnName"];
  1283. this.print(fName+' participantField: '+participantField);
  1284. let queryObj=config.upload.queries[config.upload.queryId];
  1285. let queryName=queryObj.queryName;
  1286. this.printErr("Updated "+data.rows.length+" rows to "+queryName);
  1287. let studyRows=queryObj.studyData.rows;
  1288. let listRows=queryObj.listData.rows;
  1289. let rows=new Array();
  1290. //also updating existing rows, if they exist
  1291. for (let i=studyRows.length;i<listRows.length;i++){
  1292. let entry=listRows[i];
  1293. //make sure you have the participantField right
  1294. //
  1295. entry[participantField]=config.upload.participantId;
  1296. entry.crfRef=this.getCRFref();
  1297. entry.SequenceNum=this.getCRFref();
  1298. entry.SequenceNum=entry.SequenceNum % 1000000000;
  1299. if (listRows.length>1){
  1300. entry.SequenceNum+=i/100;
  1301. }
  1302. this.print( "Adding sequence number "+entry.SequenceNum);
  1303. rows.push(entry);
  1304. }
  1305. if (rows.length>0){
  1306. let action=function(data){that.afterListUpload(data);};
  1307. this.insertRows('study',queryName,rows,action,this.getContainer('data'));
  1308. }
  1309. else{
  1310. let data=new Object();
  1311. data.rows=rows;
  1312. this.afterListUpload(data);
  1313. }
  1314. }
  1315. crfVisit.afterListUpload=
  1316. function(data){
  1317. let config=this.config;
  1318. let queryObj=config.upload.queries[config.upload.queryId];
  1319. let queryName=queryObj.queryName;
  1320. this.printErr("Inserted "+data.rows.length+" rows to "+queryName);
  1321. queryObj.queryStatus="DONE";
  1322. config.upload.queryId+=1;
  1323. this.copyToDataset();
  1324. }
  1325. //*************************update for further review *************************
  1326. crfVisit.onUpdateForReview=
  1327. function(){
  1328. let config=this.config;
  1329. let targetStatus=config.formConfig.targetStatus['onUpdateForReview'];
  1330. let targetRecipient=config.formConfig.targetRecipient['onUpdateForReview'];
  1331. let action=new Object();
  1332. action.name='onUpdateForReview';
  1333. let that=this;
  1334. let redirect=function(){that.redirect();};
  1335. action.cb=function(data){that.sendEmail(data,targetRecipient,redirect,'Form updated for review');};
  1336. this.updateFlag(targetStatus,action);
  1337. }
  1338. crfVisit.updateFlag=
  1339. function(flag,action){
  1340. let fName='[updateFlag 1]';
  1341. let config=this.config;
  1342. let entry=config.formConfig.crfEntry;
  1343. entry.FormStatus=flag;
  1344. let uId=config.formConfig.currentUser.UserId;
  1345. entry[config.formConfig.operator]=uId;
  1346. this.print(fName+': Form: '+entry.Form);
  1347. this.print(fName+": set form status to "+entry.FormStatus);
  1348. let that=this;
  1349. let cb=function(data){that.completeWithFlag(data,action);};
  1350. this.modifyRows('update','lists','crfEntry',[entry],cb,this.getContainer('data'));
  1351. }
  1352. crfVisit.completeWithFlag=
  1353. function(data,action){
  1354. let fName='[completeWithFlag]';
  1355. this.print(fName+': nrows '+data.rows.length);
  1356. let fentry=data.rows[0];
  1357. this.print(fName+': form status '+fentry.FormStatus);
  1358. this.print(fName+': form '+fentry.Form);
  1359. let crfStatus=this.createCrfStatus(fentry);
  1360. let config=this.config;
  1361. crfStatus.operator=config.formConfig.operator;
  1362. crfStatus.action=action.name;
  1363. let that=this;
  1364. let cb=function(){that.doNothing();};
  1365. if (action.cb) cb=action.cb;
  1366. this.insertRows('lists','crfStatus',[crfStatus],cb,this.getContainer('data'));
  1367. }
  1368. //************************************************ submit *******************************************
  1369. crfVisit.onSubmit=
  1370. function(){
  1371. //update list storage and change status
  1372. this.hideErr();
  1373. this.clearErr();
  1374. this.printErr("onSubmit");
  1375. let that=this;
  1376. let action=function(){that.verifyData();};
  1377. this.setData(action);
  1378. }
  1379. crfVisit.verifyData=
  1380. function(){
  1381. let fName='[verifyData]';
  1382. let config=this.config;
  1383. let qList=this.getQueryList();
  1384. let that=this;
  1385. let doNothing=function(data){that.doNothing();};
  1386. for (q in qList){
  1387. let qData=this.getQuerySnapshot(q);
  1388. if (q=="reviewComments") continue;
  1389. //copy snapshot to history
  1390. if (qData.rows.length==0){
  1391. this.print(fName+' no rows for '+q);
  1392. }
  1393. else
  1394. this.insertRows('lists',q+'History',qData.rows,doNothing,this.getContainer('data'));
  1395. //if it doesn't have additionalData, it is a sub query
  1396. if (!(q in config.formConfig.additionalData)){
  1397. continue;
  1398. }
  1399. if (qData.rows.length<1){
  1400. this.printErr('Missing entry for query '+q);
  1401. return false;
  1402. }
  1403. }
  1404. //this is necessary only for Generated to Generation completed step
  1405. let actionSettings=config.formConfig.actionSettings['onSubmit'];
  1406. if (variableList.hasVariable(actionSettings,"updateRegistration")){
  1407. this.updateRegistration();
  1408. }
  1409. let targetStatus=config.formConfig.targetStatus['onSubmit'];
  1410. let targetRecipient=config.formConfig.targetRecipient['onSubmit'];
  1411. this.print(fName+' targetStatus: '+targetStatus);
  1412. let finalStep=function(){that.redirect();};
  1413. if (variableList.hasVariable(actionSettings,"finalStep")){
  1414. //set to doNothing to remain on submit window
  1415. if (actionSettings.finalStep=="doNothing"){
  1416. finalStep=doNothing;
  1417. }
  1418. }
  1419. let action=new Object();
  1420. action.name='onSubmit';
  1421. action.cb=function(data){that.sendEmail(data,targetRecipient,finalStep,'Form sumbitted');};
  1422. this.updateFlag(targetStatus,action);
  1423. }
  1424. crfVisit.getEmail=
  1425. function(recipientCode){
  1426. this.print('getEmail w/'+recipientCode);
  1427. let config=this.config;
  1428. let recipients=new Array();
  1429. let typeTo=LABKEY.Message.recipientType.to;
  1430. let create=LABKEY.Message.createRecipient;
  1431. let currentUser=config.formConfig.currentUser;
  1432. let formCreator=config.formConfig.formCreator;
  1433. let currentSite=config.formConfig.currentSite;
  1434. let userRows=config.formConfig.userRows;
  1435. let parentUser=undefined;
  1436. if ("parentCrfData" in config.formConfig){
  1437. let parentCrf=config.formConfig.parentCrfData;
  1438. parentUser=this.getUser(parentCrf.rows[0].UserId,'parentUser');
  1439. }
  1440. let recipientCategories=recipientCode.split(',');
  1441. for (let i=0;i<recipientCategories.length;i++){
  1442. let recipient=recipientCategories[i];
  1443. this.print('Checking '+recipient);
  1444. if (recipient=='crfEditor'){
  1445. this.print('Adding :'+formCreator.Email);
  1446. recipients.push(create(typeTo,formCreator.Email));
  1447. if (parentUser==undefined) continue;
  1448. this.print('Adding :'+parentUser.Email);
  1449. recipients.push(create(typeTo,parentUser.Email));
  1450. continue;
  1451. }
  1452. //Monitor or Sponsor
  1453. let fList=recipient+'s';
  1454. let fRows=config.formConfig[fList];
  1455. for (let i=0;i<fRows.length;i++){
  1456. this.print('Checking '+fRows[i].User+'/'+fRows[i].Site);
  1457. if (fRows[i].Site!=currentSite.siteNumber) continue;
  1458. for (let j=0;j<userRows.length;j++){
  1459. if (userRows[j].UserId!=fRows[i].User) continue;
  1460. this.print('Adding :'+userRows[j].Email);
  1461. recipients.push(create(typeTo,userRows[j].Email));
  1462. break;
  1463. }
  1464. }
  1465. }
  1466. return recipients;
  1467. }
  1468. crfVisit.sendEmail=
  1469. function(data,recipient='crfEditor',cb=null,subj='Form submitted'){
  1470. this.print('sendEmail; recipient: '+recipient);
  1471. let config=this.config;
  1472. let that=this;
  1473. if (!cb)
  1474. cb=function(){that.redirect();};
  1475. let st=config.formConfig.settings;
  1476. let cvar='sendEmail';
  1477. if (cvar in st){
  1478. this.print(cvar+' set to '+st[cvar]);
  1479. if (st[cvar]=='FALSE'){
  1480. this.print('Skipping sending emails');
  1481. cb();
  1482. return;
  1483. }
  1484. }
  1485. if (recipient==null){
  1486. this.print('Skipping sending emails w/ no recipients');
  1487. cb();
  1488. return;
  1489. }
  1490. this.print('send email '+data.rows.length);
  1491. let crf=data.rows[0]['entryId'];
  1492. let formId=data.rows[0]['Form'];
  1493. let link=LABKEY.ActionURL.getBaseURL();
  1494. link+=LABKEY.ActionURL.getContainer();
  1495. link+='/crf_tecant-visit.view?';
  1496. link+='entryId='+crf;
  1497. link+='&formId='+formId;
  1498. link+='&role='+recipient;
  1499. //debug
  1500. let recipients=this.getEmail(recipient);
  1501. //from crfManagers list
  1502. let typeHtml=LABKEY.Message.msgType.html;
  1503. let typePlain=LABKEY.Message.msgType.plain;
  1504. let msg1=LABKEY.Message.createMsgContent(typePlain,link);
  1505. //let cb=doNothing;
  1506. //let cb=redirect;
  1507. LABKEY.Message.sendMessage({
  1508. msgFrom:'labkey@fmf.uni-lj.si',
  1509. msgSubject:subj,
  1510. msgRecipients:recipients,
  1511. msgContent:[msg1],
  1512. success: cb
  1513. });
  1514. }
  1515. crfVisit.hideErr=
  1516. function(){
  1517. let el=this.getElement("errorDiv");
  1518. el.style.display="none";
  1519. }
  1520. crfVisit.clearErr=
  1521. function(){
  1522. let el=this.getElement("errorTxt");
  1523. el.value="";
  1524. }
  1525. crfVisit.showErr=
  1526. function(){
  1527. let el=this.getElement("errorDiv");
  1528. el.style.display="block";
  1529. }
  1530. crfVisit.printErr=
  1531. function(msg){
  1532. this.showErr();
  1533. el=this.getElement("errorTxt");
  1534. el.style.color="red";
  1535. el.value+="\n"+msg;
  1536. }
  1537. //**************************************************
  1538. //
  1539. crfVisit.onRemoveCRF=
  1540. function(){
  1541. let fName='[onRemoveCRF]';
  1542. let config=this.config;
  1543. config.inputListsIterator=0;
  1544. this.print(fName+' starting loop');
  1545. //let rd=function(data){redirect();};
  1546. //let cb=function(){cvInsertRows('lists','crfStatus',[crfStatus],rd,getContainer('data'));};
  1547. let that=this;
  1548. let action=function(){that.redirect();};
  1549. let cb=function(){that.removeCrfEntries(action);};
  1550. this.removeCRFLoop(cb);
  1551. }
  1552. crfVisit.removeCRFLoop=
  1553. function(cb){
  1554. let fName='[removeCRFLoop()]';
  1555. let config=this.config;
  1556. let that=this;
  1557. let i=config.inputListsIterator;
  1558. let iMax=config.formConfig.inputLists.rows.length;
  1559. //in fact, we are adding two additional passages of the loop, one for
  1560. //crfEntry, the second for the same query, but using parentCrf as the
  1561. //selection variable
  1562. //let iTotal=iMax+1;
  1563. //let iTotal=iMax+1;
  1564. //
  1565. let actionSettings=config.formConfig.actionSettings['onRemoveCRF'];
  1566. let queryNameDeleteWithParentCrf='NONE';
  1567. if (variableList.hasVariable(actionSettings,'removeWithParentCrf')){
  1568. queryNameDeleteWithParentCrf=actionSettings['removeWithParentCrf'];
  1569. }
  1570. this.print(fName+" ["+i+"/"+iMax+"]");
  1571. if (!(i<iMax)){
  1572. cb();
  1573. return;
  1574. }
  1575. //in all but crfEntry, variable is called crfRef
  1576. let queryName=config.formConfig.inputLists.rows[i].queryName;
  1577. let idVar="crfRef";
  1578. let idValue=config.formConfig.crfEntry['entryId'];
  1579. //delete also crfEntries where parentCrf is set to crf that we are deleting
  1580. if (queryNameDeleteWithParentCrf==queryName){
  1581. idValue=config.formConfig.crfEntry['parentCrf'];
  1582. }
  1583. this.print(fName+" ["+i+"/"+iMax+"] "+queryName+":"+idVar+'/'+idValue);
  1584. let filters=[LABKEY.Filter.create(idVar,idValue)];
  1585. let action=function(data){that.removeListCRF(data,cb);};
  1586. let failure=function(errorInfo){that.skipListCRF(errorInfo,cb);};
  1587. this.selectRows('lists',queryName,filters,action,this.getContainer('data'),failure);
  1588. //selectRows.failure=skipListCRF;
  1589. }
  1590. crfVisit.removeListCRF=
  1591. function(data,cb){
  1592. let fName="[removeListCRF]";
  1593. let config=this.config;
  1594. let that=this;
  1595. this.print(fName+" "+data.queryName+": "+data.rows.length);
  1596. config.inputListsIterator+=1;
  1597. if (data.rows.length==0){
  1598. this.removeCRFLoop(cb);
  1599. return;
  1600. }
  1601. let action=function(data){that.removeCRFLoop(cb)};
  1602. this.deleteRows(data.schemaName,data.queryName,data.rows,action,this.getContainer('data'));
  1603. }
  1604. crfVisit.skipListCRF=
  1605. function(errorInfo,cb){
  1606. let fName='[skipListCRF]';
  1607. this.print(fName+" error in removeCRF: "+errorInfo.exception);
  1608. let config=this.config;
  1609. config.inputListsIterator+=1;
  1610. this.removeCRFLoop(cb);
  1611. }
  1612. crfVisit.removeCrfEntries=
  1613. function(cb){
  1614. let queryName="crfEntry";
  1615. let idVar="entryId";
  1616. let crfRef=this.getCRFref();
  1617. let that=this;
  1618. let filters=[LABKEY.Filter.create('entryId',crfRef)];
  1619. let action=function(data){that.deleteAndUpdateCrfStatus(data,null);}
  1620. this.selectRows('lists',queryName,filters,action,this.getContainer('CRF'));
  1621. let action1=function(data){that.deleteAndUpdateCrfStatus(data,cb);}
  1622. let filters1=[LABKEY.Filter.create('parentCrf',crfRef)];
  1623. this.selectRows('lists',queryName,filters1,action1,this.getContainer('CRF'));
  1624. }
  1625. crfVisit.deleteAndUpdateCrfStatus=
  1626. function(data,cb){
  1627. let fName='[deleteAndUpdateCrfStatus]';
  1628. let config=this.config;
  1629. let that=this;
  1630. let rows=data.rows;
  1631. let stack=new Array();
  1632. stack.push(cb);
  1633. for (let i=0;i<rows.length;i++){
  1634. //generate crfStatus entry out of crfEntry
  1635. let crfStatus=this.createCrfStatus(rows[i]);
  1636. crfStatus.action='onRemoveCRF';
  1637. crfStatus.FormStatus=config.formConfig.targetStatus[crfStatus.action];
  1638. this.print(fName+' status '+crfStatus.FormStatus);
  1639. crfStatus.operator=config.formConfig.operator;
  1640. let k=stack.length-1;
  1641. let containerPath=this.getContainer('CRF');
  1642. stack.push(function(){that.insertRows('lists','crfStatus',[crfStatus],stack[k],containerPath);});
  1643. let k1=k+1;
  1644. stack.push(function(){that.deleteRows('lists','crfEntry',[rows[i]],stack[k1],containerPath);});
  1645. }
  1646. //execute the whole stack
  1647. let m=stack.length-1;
  1648. stack[m]();
  1649. }
  1650. crfVisit.redirect=
  1651. function(){
  1652. let debug=false;
  1653. let formUrl="begin";
  1654. let params=new Object();
  1655. params.name=formUrl;
  1656. params.pageId="CRF";
  1657. //points to crf container
  1658. let containerPath=this.getContainer('CRF');
  1659. // This changes the page after building the URL.
  1660. //Note that the wiki page destination name is set in params.
  1661. var homeURL = LABKEY.ActionURL.buildURL(
  1662. "project", formUrl , containerPath, params);
  1663. this.print("Redirecting to "+homeURL);
  1664. if (debug) return;
  1665. window.location = homeURL;
  1666. }
  1667. //master section, entry point from html files
  1668. crfVisit.generateMasterForm=
  1669. function(){
  1670. let that=this;
  1671. let action=function(){that.setFormConfig();}
  1672. this.init(action);
  1673. }
  1674. //helper function to set basic parameters on web page
  1675. //(fields defined in html file)
  1676. crfVisit.populateBasicData=
  1677. function(){
  1678. let staticData=new Object();
  1679. let titles=new Object();
  1680. let config=this.config;
  1681. staticData['version']=config.formConfig.softwareVersion;
  1682. titles['version']='Software version';
  1683. let varRows=config.formConfig['crfStaticVariables'].rows;
  1684. for (let i=0;i<varRows.length;i++){
  1685. let vName=varRows[i].staticVariable;
  1686. let val=config.formConfig.crfEntry[vName];
  1687. if (val==undefined) continue;
  1688. staticData[vName]=val;
  1689. titles[vName]=varRows[i].Title;
  1690. }
  1691. staticData['investigatorName']=config.formConfig.user['DisplayName'];
  1692. titles['investigatorName']='Investigator';
  1693. staticData['email']=config.formConfig.user['Email'];
  1694. titles['email']='Email';
  1695. staticData['siteName']=config.formConfig.currentSite['siteName'];
  1696. titles['siteName']='Site';
  1697. staticData['sitePhone']=config.formConfig.currentSite['sitePhone'];
  1698. titles['sitePhone']='Telephone(site)';
  1699. for (f in staticData){
  1700. this.addStaticData(f,titles[f],staticData[f]);
  1701. }
  1702. }
  1703. crfVisit.addStaticData=
  1704. function(f,title,value){
  1705. let el=this.getElement(f);
  1706. //populate only
  1707. if (el!=undefined){
  1708. el.innerText=value;
  1709. return;
  1710. }
  1711. //add row to table if element cannot be found
  1712. let table=this.getElement('staticTable');
  1713. let row=table.insertRow();
  1714. let cell=row.insertCell();
  1715. cell.innerText=title;
  1716. let cell1=row.insertCell();
  1717. cell1.id=f;
  1718. cell1.style.fontWeight='bold';
  1719. //populate
  1720. cell1.innerText=value;
  1721. }
  1722. //come here after the layout is read from labkey page
  1723. //
  1724. crfVisit.generateErrorMsg=
  1725. function(msg){
  1726. let config=this.config;
  1727. let txt=config.document.createElement('p');
  1728. txt.innerText=msg;
  1729. this.getElement(config.masterForm).appendChild(txt);
  1730. this.generateButton("submitDiv",'Exit','Exit','redirect');
  1731. }
  1732. crfVisit.getUser=
  1733. function(id,field){
  1734. let config=this.config;
  1735. if (field in config.formConfig) return config.formConfig[field];
  1736. let uRows=config.formConfig.userRows;
  1737. for (let i=0;i<uRows.length;i++){
  1738. let userId=uRows[i].UserId;
  1739. if (userId!=id) continue;
  1740. config.formConfig[field]=uRows[i];
  1741. return config.formConfig[field];
  1742. }
  1743. return null;
  1744. }
  1745. crfVisit.afterConfig=
  1746. function(){
  1747. let fName='[afterConfig]';
  1748. let config=this.config;
  1749. this.print(fName);
  1750. this.populateBasicData();
  1751. //check if user has permission on the form
  1752. let currentUser=this.getUser(LABKEY.Security.currentUser.id,'currentUser');
  1753. let currentSite=config.formConfig.currentSite;
  1754. let formCreator=this.getUser(config.formConfig.crfEntry.UserId,'formCreator');
  1755. let formCreatorId=formCreator.UserId;
  1756. //let formSite=config.formConfig.crfEntry.Site;
  1757. let fList=config.formConfig.operator+'s';
  1758. let fRows=config.formConfig[fList];
  1759. //let currentSiteId=-1;
  1760. let operatorSites=new Array();
  1761. for (let i=0;i<fRows.length;i++){
  1762. if (fRows[i].User!=currentUser.UserId) continue;
  1763. operatorSites.push(fRows[i].Site);
  1764. }
  1765. //depending on operator mode, we should decide what is right
  1766. let operator=config.formConfig.operator;
  1767. if (operator=='crfEditor'){
  1768. //editor can only edit its own forms
  1769. if (currentUser.UserId!=formCreatorId){
  1770. if ("allowFormReassignment" in config.formConfig.settings){
  1771. if (!operatorSites.includes(currentSite.siteNumber)){
  1772. let msg='User '+currentUser.DisplayName;
  1773. msg+=' has no permission for site '+currentSite.siteName;
  1774. this.generateErrorMsg(msg);
  1775. return;
  1776. }
  1777. let that=this;
  1778. let action=new Object();
  1779. action.name="formReassignement";
  1780. action.cb=function(){that.doNothing();}
  1781. config.formConfig.crfEntry['UserId']=currentUser.UserId;
  1782. let status=config.formConfig.crfEntry['FormStatus'];
  1783. this.updateFlag(status,action);
  1784. }
  1785. else{
  1786. let msg='User '+currentUser.DisplayName;
  1787. msg+=' has no permission on this form';
  1788. this.generateErrorMsg(msg);
  1789. return;
  1790. }
  1791. }
  1792. }
  1793. if (operator=='crfMonitor' || operator=='crfSponsor'){
  1794. //monitor can look at forms based on his site
  1795. //find monitor line
  1796. this.print('operator Site: '+operatorSites.length);
  1797. if (operatorSites.length==0){
  1798. let msg='User '+currentUser.DisplayName;
  1799. msg+=' is not a '+operator;
  1800. this.generateErrorMsg(msg);
  1801. return;
  1802. }
  1803. let selectedSite=-1;
  1804. let siteCandidates="[";
  1805. for (let i=0;i<operatorSites.length;i++){
  1806. if (i>0) siteCandidates+=", ";
  1807. siteCandidates+=operatorSites[i];
  1808. if (operatorSites[i]!=currentSite.siteNumber) continue;
  1809. selectedSite=currentSite.siteNumber;
  1810. break;
  1811. }
  1812. siteCandidates+="]";
  1813. if (selectedSite==-1){
  1814. let msg='User '+currentUser.DisplayName;
  1815. msg+=' is not a '+operator+' for site ';
  1816. msg+=currentSite.siteName+'('+currentSite.siteNumber+')';
  1817. msg+='/'+siteCandidates;
  1818. this.generateErrorMsg(msg);
  1819. return;
  1820. }
  1821. }
  1822. this.print('User '+currentUser.DisplayName+'/'+
  1823. config.formConfig.currentSite['siteName']+
  1824. ' acting as '+config.formConfig.operator);
  1825. let rows=config.formConfig.crfButtons.rows;
  1826. config.formConfig.targetStatus=new Array();
  1827. config.formConfig.targetRecipient=new Array();
  1828. config.formConfig.actionSettings=new Array();
  1829. for (let i=0; i<rows.length; i++){
  1830. let action=rows[i].action;//String
  1831. let tstatus=rows[i].targetFormStatus;
  1832. let trecip=rows[i].targetRecipient;
  1833. config.formConfig.targetStatus[action]=tstatus;
  1834. config.formConfig.targetRecipient[action]=trecip;
  1835. //allow for settings to be promoted with each action (and potentially parsed and acted upon)
  1836. config.formConfig.actionSettings[action]=undefined;
  1837. let aSet=rows[i].actionSettings;
  1838. if (aSet){
  1839. config.formConfig.actionSettings[action]=variableList.parseVariables(aSet);
  1840. variableList.printVariables(this,config.formConfig.actionSettings[action]);
  1841. }
  1842. }
  1843. let formStatus=config.formConfig.formStatus;
  1844. //let functionArray=new Array();
  1845. this.print("Generating buttons for formStatus \""+ formStatus+"\"");
  1846. let allButtonRows=config.formConfig.crfButtons.rows;
  1847. let buttonRows=new Array();
  1848. //specifying role=X in actionSettings will limit button to that role
  1849. for (let i=0;i<allButtonRows.length;i++){
  1850. let action=allButtonRows[i]['action'];
  1851. //filter on actionSettings
  1852. let as=config.formConfig.actionSettings[action];
  1853. if (variableList.hasVariable(as,'role')){
  1854. this.print('Role['+config.formConfig.operator+'/'+as['role']+'] limited for action '+action);
  1855. //mismatch skips addition of button to buttonRows
  1856. if (config.formConfig.operator!=as['role']) continue;
  1857. }
  1858. buttonRows.push(allButtonRows[i]);
  1859. }
  1860. for (let i=0;i<buttonRows.length;i++){
  1861. let bt=buttonRows[i];
  1862. //if (typeof window[bt.action]==="function"){
  1863. this.generateButton("submitDiv",bt.caption,bt.label,bt.action,null);
  1864. //}
  1865. //else{
  1866. // this.print('No match for function :'+bt.action+
  1867. // ' obj: '+window[bt.action]);
  1868. //}
  1869. }
  1870. this.print('Here');
  1871. //here we should get data. For now, just initialize objects that will hold data
  1872. let that=this;
  1873. let action=function(){that.afterDataLayout();};
  1874. this.setDataLayout(action);//callback is afterDataLayout
  1875. }
  1876. crfVisit.afterDataLayout=
  1877. function(){
  1878. let that=this;
  1879. let action=function(){that.afterData();};
  1880. //let action=function(){that.doNothing();};
  1881. this.setData(action);//callback is afterData
  1882. }
  1883. crfVisit.updateRegistration=
  1884. function(){
  1885. let fName="[updateRegistration]";
  1886. let config=this.config;
  1887. this.print(fName);
  1888. let pM=this.getIdManager();
  1889. let idFieldName=participantIdManager.getCrfEntryFieldName(pM,"STUDY");
  1890. //have to reload query data
  1891. let regQueryPars=variableList.parseVariables(config.formConfig.settings['registrationQuery']);
  1892. let regQuery=regQueryPars['query'];
  1893. let fQuery=this.getQuerySnapshot(regQuery);
  1894. if (fQuery.rows.length==0) {
  1895. this.print(fName+" registration is empty");
  1896. return; //registration is empty
  1897. }
  1898. let regEntry=fQuery.rows[0];
  1899. for (x in regEntry){
  1900. this.print(fName+" ["+x+"] "+regEntry[x]);
  1901. }
  1902. let studyId=fQuery.rows[0][idFieldName];
  1903. if (!studyId) {
  1904. this.print(fName+" study id not set ("+idFieldName+'/'+studyId+")");
  1905. return; //study id not set
  1906. }
  1907. //set
  1908. participantIdManager.setParticipantIdToCrfEntry(pM,studyId,"STUDY");
  1909. //this will only update crfEntry in memory, but not on LabKey,
  1910. //we are counting on updateFlag to follow updateRegistration
  1911. //update parentCRF as well, here we schedule update of data entry as well
  1912. if ("parentCrfData" in config.formConfig){
  1913. let parentCrfEntry=config.formConfig.parentCrfData.rows[0];
  1914. parentCrfEntry[idFieldName]=studyId;
  1915. let that=this;
  1916. let action={name:"updateRegistration",cb:function(){that.doNothing();}};
  1917. let cb=function(data){that.completeWithFlag(data,action);};
  1918. this.modifyRows('update','lists','crfEntry',[parentCrfEntry],cb,this.getContainer('CRF'));
  1919. }
  1920. }
  1921. crfVisit.afterData=
  1922. function(){
  1923. let fName='afterData';
  1924. let config=this.config;
  1925. //operatorBasedAccessMode
  1926. let accessMode=config.formConfig.operator+'Mode';
  1927. let rowsSetup=config.formConfig.formSetupRows;
  1928. let idMode=config.formConfig.form['idMode'];
  1929. //set default value if no value is in the list (read value is null)
  1930. if (!idMode) idMode="STUDY:EDIT";
  1931. this.print(fName+': idMode '+idMode);
  1932. //add print to config so participantManager can use it
  1933. let pM=this.getIdManager();
  1934. //extend object
  1935. let that=this;
  1936. let action=new Object();
  1937. action.name='updateCrfEntry';
  1938. action.cb=function(){that.doNothing();};
  1939. pM.updateCrfEntry=function(){that.updateFlag(config.formConfig.crfEntry['FormStatus'],action);};
  1940. let idModeArray=idMode.split(':');
  1941. pM.mode="STUDY";
  1942. if (idModeArray.includes("LOCAL")) {
  1943. pM.mode="LOCAL";
  1944. //OK, but check if CRF or registration indicate that study id is already set
  1945. participantIdManager.verifyCrfStudyId(pM);
  1946. //study id should already be set by updateRegistration
  1947. //verifyRegistration(pM);
  1948. }
  1949. if (idModeArray.includes("READONLY")){
  1950. pM.readOnly="TRUE";
  1951. }
  1952. let pId=participantIdManager.getParticipantIdFromCrfEntry(pM);
  1953. if (!pId){
  1954. participantIdManager.setEditMode(pM);
  1955. }
  1956. else{
  1957. let label=pId;
  1958. if (pM.mode=="STUDY"){
  1959. let loc=participantIdManager.getParticipantIdFromCrfEntry(pM,'LOCAL');
  1960. label=pId+':'+loc;
  1961. pM.readOnly="true";
  1962. }
  1963. participantIdManager.setLabelMode(pM,label);
  1964. //in STUDY mode also change LOCAL ID from crfEntry
  1965. }
  1966. for (let i=0;i<rowsSetup.length;i++){
  1967. let entry=rowsSetup[i];
  1968. let queryName=config.formConfig.queryMap[entry['queryName']];
  1969. this.print(fName+" ["+queryName+"]: showFlag: "+entry["showFlag"]);
  1970. this.print(fName+" ["+queryName+"]: accessMode: "+entry[accessMode]);
  1971. const nData=this.getQuerySnapshot(queryName).rows.length;
  1972. this.print(fName+" ["+queryName+"]: nData: "+nData);
  1973. //skip sections
  1974. //also from fields
  1975. if (entry[accessMode]=="NONE") continue;
  1976. //skip readonly empty records
  1977. //if (entry[accessMode]=="READ" && nData==0) continue;
  1978. //let additionalData=new Object();
  1979. //setAdditionalData(additionalData,entry);
  1980. //section fits one dataset/list
  1981. this.generateSection(entry);
  1982. //generateSection(queryName,entry["title"],entry[accessMode],
  1983. // additionalData);
  1984. }
  1985. }
  1986. crfVisit.findSetupRow=
  1987. function(queryName,formId){
  1988. let config=this.config;
  1989. let rowsSetup=config.formConfig.formSetupRows;
  1990. for (let i=0;i<rowsSetup.length;i++){
  1991. let e=rowsSetup[i];
  1992. let queryName1=config.formConfig.queryMap[e['queryName']];
  1993. if (e.formName!=formId) continue;
  1994. if (queryName1!=queryName) continue;
  1995. return e;
  1996. }
  1997. return null;
  1998. }
  1999. crfVisit.populateSection=
  2000. function(queryName){
  2001. let fName='[populateSection/'+queryName+']';
  2002. let config=this.config;
  2003. this.print(fName);
  2004. //old setting
  2005. let formId=config.formId;
  2006. //new setting
  2007. formId=config.formConfig.formId;
  2008. let entry=this.findSetupRow(queryName,formId);
  2009. //ignore names without associated entry in formSetup
  2010. if (entry==undefined){
  2011. this.print(fName+': no matching FormSetup entry found');
  2012. return;
  2013. }
  2014. //populate comes after generate, we should be pretty safe in taking
  2015. //already generated additionalData
  2016. if (!(queryName in config.formConfig.additionalData)){
  2017. this.print(fName+': no additionalData generated for '+queryName);
  2018. return;
  2019. }
  2020. let additionalData=config.formConfig.additionalData[queryName];
  2021. this.print(fName+': using additionalData '+additionalData);
  2022. if ("isReview" in additionalData){
  2023. let action=function(){crfReviewSection.CB();};
  2024. crfReviewSection.generateSection(queryName,queryName,action);
  2025. return;
  2026. }
  2027. let accessMode=config.formConfig.operator+'Mode';
  2028. let aM=entry[accessMode];
  2029. this.print(fName+': accessMode '+aM);
  2030. if (aM!='GENERATE'){
  2031. let writeMode=entry[accessMode]=='EDIT';
  2032. this.print(fName+': mode='+writeMode);
  2033. this.populateTable(queryName,writeMode);
  2034. return;
  2035. }
  2036. //deal with generate
  2037. //
  2038. //already available -> shift to READ mode
  2039. let divTable=queryName+'Table';
  2040. let divObj=this.getElement(divTable);
  2041. let divRev=this.getElement(queryName+'Review');
  2042. let divRLi=this.getElement(queryName+'ReviewList');
  2043. let divGBu=this.getElement(queryName+'GenerateButton');
  2044. this.print('div GBU: '+divGBu);
  2045. divObj.style.display="block";
  2046. divRev.style.display="block";
  2047. divRLi.style.display="block";
  2048. if (divGBu!=undefined) divGBu.style.display="none";
  2049. let nData=this.getQuerySnapshot(queryName).rows.length;
  2050. this.print('['+queryName+']: nrows '+nData);
  2051. if (nData>0){
  2052. this.populateTable(queryName,0);
  2053. return;
  2054. }
  2055. //hide table
  2056. divObj.style.display="none";
  2057. divRev.style.display="none";
  2058. divRLi.style.display="none";
  2059. if (divGBu!=undefined) divGBu.style.display="block";
  2060. //add buttons?
  2061. //is button already generated?
  2062. //populateTable(entry);
  2063. }
  2064. //******* generateQuery infrastructure *********************
  2065. crfVisit.onGenerateQuery=
  2066. function(queryName){
  2067. let fName='[onGenerateQuery]';
  2068. this.print(fName+' '+queryName);
  2069. //
  2070. let config=this.config;
  2071. let cfgRows=config.formConfig.generateConfigData.rows;
  2072. // //queryName to queryId?
  2073. let queryId=config.formConfig.fields[queryName].queryId;
  2074. let cfgRow=undefined;
  2075. for (let i=0;i<cfgRows.length;i++){
  2076. if (cfgRows[i].queryId!=queryId) continue;
  2077. cfgRow=cfgRows[i];
  2078. break;
  2079. }
  2080. if (cfgRow==undefined){
  2081. this.print('generateConfig for queryName['+queryId+']='+queryName+' not found');
  2082. return;
  2083. }
  2084. //add config to the list
  2085. if (!("generateConfig" in config.formConfig)){
  2086. config.formConfig.generateConfig=new Object();
  2087. }
  2088. config.formConfig.generateConfig[queryName]=cfgRow;
  2089. if (!("generateForm" in config.formConfig)){
  2090. config.formConfig.generateForm=new Object();
  2091. }
  2092. //
  2093. let formRows=config.formConfig.formRows;
  2094. let formId=cfgRow.formId;
  2095. for (let i=0;i<formRows.length;i++){
  2096. if (formRows[i].Key==formId) {
  2097. config.formConfig.generateForm[queryName]=formRows[i];
  2098. break;
  2099. }
  2100. }
  2101. //this.print('XcfgRow '+config.formConfig.generateForm[queryName]);
  2102. //
  2103. // //check if all required datasets were at least saved
  2104. this.checkGenerationFields(queryName);
  2105. }
  2106. crfVisit.checkGenerationFields=
  2107. function(queryName){
  2108. let fName='[checkGenerationFields]';
  2109. let config=this.config;
  2110. let genForm=config.formConfig.generateForm[queryName];
  2111. let genCfg=config.formConfig.generateConfig[queryName];
  2112. let mailRecipient=genCfg.emailRecipient;
  2113. //list of queries that are part of Registration form
  2114. this.print(fName);
  2115. this.print(fName+' setRecipient: '+mailRecipient);
  2116. let formId=genForm.Key;
  2117. this.print(fName+" Checking form w/id "+formId);
  2118. let selectGenerationRows=this.selectFormSetupRows(formId);
  2119. //registration rows
  2120. for (let i=0;i<selectGenerationRows.length;i++){
  2121. let row=selectGenerationRows[i];
  2122. let queryId=row.queryName;
  2123. let fQueryName=config.formConfig.queryMap[queryId];
  2124. if (fQueryName==queryName) continue;
  2125. let fQuery=this.getQuerySnapshot(fQueryName);
  2126. this.print('Checking '+fQueryName+' nrows: '+fQuery.rows.length);
  2127. if (fQuery.rows.length==0){
  2128. this.generateError(queryName,fQueryName);
  2129. return;
  2130. }
  2131. }
  2132. this.generateMessage(queryName,'Vailidation OK');
  2133. this.print('callback: set recipient: '+mailRecipient);
  2134. let that=this;
  2135. let cb=function(){that.prepareForm(queryName,formId,mailRecipient);};
  2136. this.generateListEntry(formId,queryName,cb);
  2137. }
  2138. crfVisit.prepareForm=
  2139. function(queryName,formId,mailRecipient){
  2140. let fName="[prepareForm]";
  2141. this.print(fName+' recipient '+mailRecipient);
  2142. //look for existing registration entry
  2143. let that=this;
  2144. let action=function(data){that.generateForm(data,queryName,mailRecipient);};
  2145. let formFilter=LABKEY.Filter.create('Form',formId);
  2146. let parentCrfFilter=LABKEY.Filter.create('parentCrf',this.getCRFref());
  2147. let filters=[formFilter,parentCrfFilter];
  2148. this.selectRows('lists','crfEntry',filters,action,this.getContainer('data'));
  2149. }
  2150. crfVisit.generateError=
  2151. function(queryName,fQueryName){
  2152. let elName=queryName+'GenerateButton'+'_reportField';
  2153. let el=this.getElement(elName);
  2154. el.innerText='Error: '+fQueryName+' was not set';
  2155. el.style.color='red';
  2156. }
  2157. crfVisit.generateMessage=
  2158. function(queryName,msg){
  2159. let elName=queryName+'GenerateButton'+'_reportField';
  2160. let el=this.getElement(elName);
  2161. el.innerText=msg;
  2162. el.style.color='green';
  2163. }
  2164. crfVisit.generateForm=
  2165. function(data,queryName,mailRecipient){
  2166. let fName='[generateForm]';
  2167. this.print(fName+' recipient: '+mailRecipient);
  2168. //
  2169. const nData=data.rows.length;
  2170. this.print(fName+' Registration: '+nData+' rows');
  2171. let config=this.config;
  2172. let formRow=config.formConfig.generateForm[queryName];
  2173. let formCfg=config.formConfig.generateConfig[queryName];
  2174. //we have to generate masterQuery with parentCrf and crfRef
  2175. //and crfEntry with new entryId and parentCrf equal to crfRef
  2176. if (nData>0) {
  2177. this.generateMessage(queryName,'Registration already generated.');
  2178. return;
  2179. }
  2180. let formId=formRow.Key;
  2181. let formName=formRow.formName;
  2182. let crfBase=config.formConfig.crfEntry;
  2183. let crfEntry=new Object();
  2184. //add new reference
  2185. crfEntry.entryId=Date.now();
  2186. crfEntry.parentCrf=this.getCRFref();
  2187. crfEntry["Date"]=new Date();
  2188. crfEntry["View"]="[VIEW]";
  2189. crfEntry.formStatus=1;//In progress
  2190. //checks for both field presence (if not in query, undefined) and field value (if not set, null)
  2191. this.print(fName+' setup status: '+formCfg.formStatus);
  2192. if (formCfg.formStatus){
  2193. crfEntry.formStatus=formCfg.formStatus;
  2194. }
  2195. //get local Id
  2196. let pM=this.getIdManager();
  2197. crfEntry[participantIdManager.getCrfEntryFieldName(pM)]=participantIdManager.getParticipantIdFromCrfEntry(pM);
  2198. // //set other variables
  2199. //requires studyData as part of formConfig
  2200. // let studyData=config.formConfig.studyData;
  2201. this.print('Adding study: '+crfBase.EudraCTNumber);
  2202. crfEntry.EudraCTNumber=crfBase.EudraCTNumber;
  2203. crfEntry.StudyCoordinator=crfBase.StudyCoordinator;
  2204. crfEntry.StudySponsor=crfBase.StudySponsor;
  2205. crfEntry.RegulatoryNumber=crfBase.RegulatoryNumber;
  2206. //
  2207. // //find sponsor for site
  2208. let site=crfBase.Site;
  2209. let crfSponsors=config.formConfig.crfSponsors;
  2210. let users=config.formConfig.userRows;
  2211. for (let i=0;i<crfSponsors.length;i++){
  2212. //this.print('Checking for site '+crfSponsors[i].Site);
  2213. if (crfSponsors[i].Site!=site) continue;
  2214. config.formConfig.sponsorId=crfSponsors[i].User;
  2215. //this.print('Setting id '+config.formConfig.sponsorId);
  2216. //finds first
  2217. break;
  2218. }
  2219. for (let j=0;j<users.length;j++){
  2220. if (config.formConfig.sponsorId!=users[j].UserId) continue;
  2221. config.formConfig.sponsor=users[j];
  2222. //finds first (should be unique)
  2223. break;
  2224. }
  2225. this.print('Selecting '+config.formConfig.sponsor.DisplayName+' as sponsor');
  2226. //different user than the original form...
  2227. //should be set to the study sponsor
  2228. crfEntry.UserId=config.formConfig.sponsor.UserId;
  2229. crfEntry.Site=site;
  2230. // //set formId to one found through registration search
  2231. crfEntry.Form=formId;
  2232. ////
  2233. let crfStatus=this.createCrfStatus(crfEntry);
  2234. crfStatus.operator=config.formConfig.operator;
  2235. crfStatus.action='generateForm';
  2236. let that=this;
  2237. let action=function(){that.doNothing();};
  2238. let cb=function(data){that.sendEmail(data,mailRecipient,action,formName+' generated');}
  2239. let containerPath=this.getContainer('data');
  2240. let pass=function(data){that.insertRows('lists','crfStatus',[crfStatus],cb,containerPath);};
  2241. this.insertRows('lists','crfEntry',[crfEntry],pass,this.getContainer('data'));
  2242. }
  2243. crfVisit.generateListEntry=
  2244. function(formId,queryName,cb){
  2245. //check if registration was already generated
  2246. let config=this.config;
  2247. let formRows=config.formConfig.formRows;
  2248. let qForm=undefined;
  2249. for (let i=0;i<formRows.length;i++){
  2250. if (formRows[i].Key!=formId) continue;
  2251. qForm=formRows[i];
  2252. }
  2253. let nData=this.getQuerySnapshot(queryName).rows.length;
  2254. if (nData>0) return;
  2255. //create new list entry
  2256. let pM=this.getIdManager();
  2257. let e2=new Object();
  2258. e2.crfRef=this.getCRFref();
  2259. e2.registrationStatus=0;
  2260. e2.submissionDate=new Date();
  2261. e2[participantIdManager.getCrfEntryFieldName(pM)]=participantIdManager.getParticipantIdFromCrfEntry(pM);
  2262. this.print('set values');
  2263. this.insertRows('lists',queryName,[e2],cb,this.getContainer('data'));
  2264. }
  2265. // ******************** end form generator (Registration) ********************
  2266. //jump to populate table/generate review, etc defined at the begining of the file
  2267. //entry point from generateMasterForm
  2268. crfVisit.setFormConfig=
  2269. function(){
  2270. let fName="[setFormConfig]";
  2271. let config=this.config;
  2272. //add object to store form related data
  2273. config.formConfig=new Object();
  2274. config.formConfig.softwareVersion='T.15.68';
  2275. this.print(fName+" generateMasterForm");
  2276. //set containers for data and configuration
  2277. //TODO: set this from a query
  2278. //
  2279. this.setContainer('data',LABKEY.ActionURL.getContainer());
  2280. this.setContainer('config',LABKEY.ActionURL.getContainer());
  2281. this.setContainer('CRF',LABKEY.ActionURL.getContainer());
  2282. //this is local data
  2283. let that=this;
  2284. let action=function(data){that.afterSettings(data);};
  2285. this.selectRows('lists','crfSettings',[],action,this.getContainer('CRF'));
  2286. //store form related data to this object
  2287. }
  2288. crfVisit.afterSettings=
  2289. function(data){
  2290. let fName='[afterSettings]';
  2291. let config=this.config;
  2292. config.formConfig.settings=variableList.convertToDictionary(data.rows);
  2293. let st=config.formConfig.settings;
  2294. this.print('afterSettings');
  2295. for (let k in st){
  2296. this.print(fName+'\t'+k+'='+st[k]);
  2297. }
  2298. //if ('dataContainer' in st){
  2299. // setContainer('data',st['dataContainer']);
  2300. //}
  2301. let vname='configContainer';
  2302. if (vname in st){
  2303. this.setContainer('config',st[vname]);
  2304. }
  2305. this.print('Config: '+this.getContainer('config'));
  2306. this.print('Data: '+this.getContainer('data'));
  2307. //use first-> we must first establish link to the rigth crf entry
  2308. let filters=[LABKEY.Filter.create('entryId',this.getCRFrefFirst())];
  2309. let that=this;
  2310. let action=function(data){that.afterCRFEntry(data);};
  2311. this.selectRows('lists','crfEntry',filters,action,this.getContainer('data'));
  2312. }
  2313. crfVisit.afterCRFEntry=
  2314. function(data){
  2315. let config=this.config;
  2316. let fName='[afterCRFEntry]';
  2317. config.formConfig.crfEntry=data.rows[0];
  2318. this.print("Setting crfEntry (x) to "+config.formConfig.crfEntry["entryId"]);
  2319. //for empty records or those with parentCrf not set, parentCrf comes up as null
  2320. //nevertheless, with two equal signs, check against undefined also works
  2321. this.print('parentCrf set to '+config.formConfig.crfEntry.parentCrf);
  2322. this.collectData();
  2323. }
  2324. crfVisit.collectData=
  2325. function(){
  2326. let config=this.config;
  2327. let targetObject=config.formConfig;
  2328. let queryArray=new Array();
  2329. //k
  2330. //site
  2331. queryArray.push(runQuery.makeQuery(targetObject,'config','site','siteData',[]));
  2332. //users
  2333. queryArray.push(runQuery.makeQuery(targetObject,'CRF','users','userData',[]));
  2334. queryArray[queryArray.length-1].schemaName='core';
  2335. //crfEditors
  2336. queryArray.push(runQuery.makeQuery(targetObject,'config','crfEditors','crfEditorsData',[]));
  2337. //crfMonitors
  2338. queryArray.push(runQuery.makeQuery(targetObject,'config','crfMonitors','crfMonitorsData',[]));
  2339. //crfSponsors
  2340. queryArray.push(runQuery.makeQuery(targetObject,'config','crfSponsors','crfSponsorsData',[]));
  2341. //crfManagers
  2342. queryArray.push(runQuery.makeQuery(targetObject,'config','crfManagers','crfManagersData',[]));
  2343. //study static data
  2344. queryArray.push(
  2345. runQuery.makeQuery(targetObject,'data','crfStaticVariables','crfStaticVariables',[]));
  2346. queryArray.push(runQuery.makeQuery(targetObject,'data','specialFields','specialFieldsQuery',[]));
  2347. //study
  2348. queryArray.push(runQuery.makeQuery(targetObject,'data','Study','studyDataAll1',[]));
  2349. let e=queryArray[queryArray.length-1];
  2350. //overload schema name
  2351. e.schemaName='study';
  2352. //make sure variables not part of default view are loaded
  2353. //here we should already have read crfStaticVariables table
  2354. e.columns="SubjectColumnName,EudraCTNumber,StudySponsor";
  2355. e.columns+=",StudyCoordinator,RegulatoryNumber";
  2356. //formStatus
  2357. let varLabel='sourceFormStatus';
  2358. let formStatus=config.formConfig.crfEntry['FormStatus'];
  2359. let formFilter=LABKEY.Filter.create('Key',formStatus);
  2360. queryArray.push(
  2361. runQuery.makeQuery(targetObject,'config','FormStatus','formStatusData',[formFilter]));
  2362. //crfButtons
  2363. let statusFilter=LABKEY.Filter.create(varLabel,formStatus);
  2364. queryArray.push(
  2365. runQuery.makeQuery(targetObject,'config','crfButtons','crfButtons',[statusFilter]));
  2366. //Forms
  2367. queryArray.push(runQuery.makeQuery(targetObject,'config','Forms','formData',[]));
  2368. //FormSetup
  2369. queryArray.push(runQuery.makeQuery(targetObject,'config','FormSetup','formSetup',[]));
  2370. //generateConfig
  2371. queryArray.push(
  2372. runQuery.makeQuery(targetObject,'config','generateConfig','generateConfigData',[]));
  2373. //inputLists
  2374. queryArray.push(
  2375. runQuery.makeQuery(targetObject,'config','inputLists','inputLists',[]));
  2376. //parentCrf
  2377. let parentCrf=config.formConfig.crfEntry['parentCrf'];
  2378. if (parentCrf!=undefined){
  2379. let crfFilter=LABKEY.Filter.create('entryId',parentCrf);
  2380. queryArray.push(runQuery.makeQuery(targetObject,'data','crfEntry','parentCrfData',[crfFilter]));
  2381. }
  2382. //crfEntries
  2383. queryArray.push(
  2384. runQuery.makeQuery(targetObject,'data','crfEntry','crfEntries',[]));
  2385. this.print('running getDataFromQueries');
  2386. let that=this;
  2387. //let action=function(data){that.doNothing();};
  2388. let action=function(){that.addStudyData();};
  2389. runQuery.getDataFromQueries(this,queryArray,action);
  2390. }
  2391. crfVisit.addStudyData=
  2392. function(){
  2393. let fName='addStudyData';
  2394. let config=this.config;
  2395. //convert specialFields to array
  2396. let q=config.formConfig["specialFieldsQuery"].rows;
  2397. config.formConfig.specialFields=variableList.convertToAssociatedArray(q,"fieldUID");
  2398. this.print(fName);
  2399. let queryArray=new Array();
  2400. let targetObject=config.formConfig;
  2401. //study
  2402. queryArray.push(runQuery.makeQuery(targetObject,'data','Study','studyDataAll',[]));
  2403. //queryArray.push(runQuery.makeQuery('data','Study','studyDataAll',[]));
  2404. let e=queryArray[queryArray.length-1];
  2405. //overload schema name
  2406. e.schemaName='study';
  2407. //make sure variables not part of default view are loaded
  2408. //here we should already have read crfStaticVariables table
  2409. let staticVarRows=config.formConfig['crfStaticVariables'].rows;
  2410. let columnModel=""
  2411. for (let i=0;i<staticVarRows.length;i++){
  2412. if (i>0) columnModel+=',';
  2413. columnModel+=staticVarRows[i]['staticVariable'];
  2414. }
  2415. e.columns=columnModel;
  2416. //also collect ids already in study
  2417. //registrationQuery should be a dataset
  2418. //since monitors can review late, it might be profitable to use lists
  2419. //rather than study
  2420. let regQueryPars=variableList.parseVariables(config.formConfig.settings['registrationQuery']);
  2421. let regQuery=regQueryPars['query'];
  2422. let regSchema='study';
  2423. if ('schema' in regQueryPars){
  2424. regSchema=regQueryPars['schema'];
  2425. }
  2426. queryArray.push(runQuery.makeQuery(targetObject,'data',regQuery,'registrationData',[]));
  2427. queryArray[queryArray.length-1].schemaName=regSchema;
  2428. let that=this;
  2429. let action=function(){that.fcontinue();};
  2430. runQuery.getDataFromQueries(this,queryArray,action);
  2431. }
  2432. crfVisit.fcontinue=
  2433. function(){
  2434. //debug
  2435. let fName='[fcontinue]';
  2436. let config=this.config;
  2437. let varRows=config.formConfig['crfStaticVariables'].rows;
  2438. let studyVars=config.formConfig['studyDataAll'].rows[0];
  2439. for (let i=0;i<varRows.length;i++){
  2440. let vName=varRows[i].staticVariable;
  2441. this.print(fName+' '+vName+': '+studyVars[vName]);
  2442. }
  2443. //parse site
  2444. config.formConfig.siteRows=config.formConfig.siteData.rows;
  2445. let sRows=config.formConfig.siteRows;
  2446. for (let i=0;i<sRows.length;i++){
  2447. let siteId=sRows[i].siteNumber;
  2448. this.print('site '+siteId);
  2449. if (siteId==config.formConfig.crfEntry.Site){
  2450. config.formConfig.currentSite=sRows[i];
  2451. break;
  2452. }
  2453. }
  2454. //config.formConfig.site=data.rows[0];
  2455. this.print("Setting site name to "+config.formConfig.currentSite.siteName);
  2456. //study
  2457. config.formConfig.studyData=config.formConfig.studyDataAll.rows[0];
  2458. this.print("XSetting participantField to "+
  2459. config.formConfig.studyData["SubjectColumnName"]);
  2460. config.formConfig.crfEditors=config.formConfig.crfEditorsData.rows;
  2461. config.formConfig.crfMonitors=config.formConfig.crfMonitorsData.rows;
  2462. config.formConfig.crfSponsors=config.formConfig.crfSponsorsData.rows;
  2463. config.formConfig.crfManagers=config.formConfig.crfManagersData.rows;
  2464. config.formConfig.userRows=config.formConfig.userData.rows;
  2465. let uRows=config.formConfig.userRows;
  2466. for (let i=0;i<uRows.length;i++){
  2467. let userId=uRows[i].UserId;
  2468. if (userId==config.formConfig.crfEntry.UserId){
  2469. config.formConfig.user=uRows[i];
  2470. break;
  2471. }
  2472. }
  2473. //config.formConfig.user=data.rows[0];
  2474. this.print("Setting user to "+config.formConfig.user["DisplayName"]);
  2475. let fsRows=config.formConfig.formStatusData.rows;
  2476. config.formConfig.formStatus=fsRows[0].formStatus;
  2477. config.formConfig.operator=config.role;
  2478. //config.formConfig.operator=fsRows[0].operator;
  2479. this.print('Setting operator to: '+config.formConfig.operator);
  2480. config.formConfig.formRows=config.formConfig.formData.rows;
  2481. //point formId to point to form set in crfEntry
  2482. config.formConfig.formId=config.formConfig.crfEntry['Form'];
  2483. //old setting, set from URL in visit.html
  2484. let formId=config.formId;
  2485. //new setting, set from crfEntry
  2486. formId=config.formConfig.formId;
  2487. let formRows=config.formConfig.formRows;
  2488. //filter out the current form
  2489. for (let i=0;i<formRows.length;i++){
  2490. if (formRows[i].Key==formId){
  2491. config.formConfig.form=formRows[i];
  2492. break;
  2493. }
  2494. }
  2495. config.formConfig.formSetupRows=this.selectFormSetupRows(formId);
  2496. this.print("Number of datasets for form ["+formId+"]: "+
  2497. config.formConfig.formSetupRows.length);
  2498. let fields=config.formConfig.formSetup.metaData.fields;
  2499. //get the lookup for queryName column
  2500. let formQueryName='queryName';
  2501. let field="NONE";
  2502. for (f in fields){
  2503. if (fields[f]['name']!=formQueryName) continue;
  2504. field=fields[f];
  2505. break;
  2506. }
  2507. let lookup=field.lookup;
  2508. this.print("Getting dataset names from "+lookup.queryName);
  2509. //inputLists should be in configuration container
  2510. let that=this;
  2511. let action=function(data){that.afterFormDatasets(data);};
  2512. //let action=function(data){that.doNothing();};
  2513. this.selectRows(lookup.schemaName,lookup.queryName,[],action,this.getContainer('config'));
  2514. }
  2515. crfVisit.afterFormDatasets=
  2516. function(data){
  2517. let fName='[afterFormDatasets]';
  2518. this.print(fName+' nrows '+data.rows.length);
  2519. let config=this.config;
  2520. config.formConfig.formDatasets=data;//inputLists
  2521. config.formConfig.fields=new Object();
  2522. config.formConfig.queryMap=new Object();
  2523. config.formConfig.additionalData=new Object();
  2524. let rows=config.formConfig.formSetupRows;
  2525. //should skip report only rows
  2526. for (let i=0;i<rows.length;i++){
  2527. let entry=rows[i];
  2528. let reviewField=(entry['showFlag']=='REVIEW');
  2529. //is the operator set yet?
  2530. let accessMode=config.formConfig.operator+'Mode';
  2531. let skipField=(entry[accessMode]=="NONE");
  2532. let queryId=entry['queryName'];
  2533. let lookupRows=config.formConfig.formDatasets.rows;
  2534. this.print('QueryID['+i+']='+queryId);
  2535. let dentry;
  2536. for (let j=0;j<lookupRows.length;j++){
  2537. if (queryId!=lookupRows[j]['Key']) continue;
  2538. dentry=lookupRows[j];
  2539. break;
  2540. }
  2541. let qName=dentry['queryName'];
  2542. //update list of dataset formConfig is observing (fields/queryMap)
  2543. while (1){
  2544. //review contains no data
  2545. if (reviewField) break;
  2546. if (skipField) break;
  2547. //already in fields
  2548. if (qName in config.formConfig.fields) break;
  2549. config.formConfig.fields[qName]=new Object();
  2550. break;
  2551. }
  2552. while(1){
  2553. //already done
  2554. if (queryId in config.formConfig.queryMap) break;
  2555. config.formConfig.queryMap[queryId]=qName;
  2556. break;
  2557. }
  2558. if (reviewField) continue;
  2559. if (skipField) continue;
  2560. //only do this for real lists
  2561. let field=config.formConfig.fields[qName];
  2562. field.title=entry['title'];
  2563. field.queryId=queryId;
  2564. }
  2565. this.print("List of datasets in form : ");
  2566. for (f in config.formConfig.fields){
  2567. let field=config.formConfig.fields[f];
  2568. this.print("\t"+f+" ID: "+field.queryId+' title '+field.title);
  2569. }
  2570. this.afterConfig();
  2571. }
  2572. //>>>>>>>>>>>>>>>>>new>>>>>>>>>>>>
  2573. crfVisit.setDataLayout=
  2574. function(cb){
  2575. let fName='[setDataLayout]';
  2576. let config=this.config;
  2577. this.print(fName);
  2578. let rowsSetup=config.formConfig.formSetupRows;
  2579. let queryArray=new Array();
  2580. let dS=this.getLayoutObject();//reference only
  2581. let qList=this.getQueryList();
  2582. let qMap=config.formConfig.queryMap;
  2583. //config.formConfig.lookup=new Object();
  2584. for (let i=0;i<rowsSetup.length;i++){
  2585. let entry=rowsSetup[i];
  2586. //skip review rows
  2587. if (entry['showFlag']=='REVIEW')
  2588. continue;
  2589. let queryId=entry['queryName'];
  2590. let q=qMap[queryId];
  2591. queryArray.push(runQuery.makeQuery(dS,'data',q,q,[]));
  2592. qList[q]=0;
  2593. this.print(fName+' adding '+q);
  2594. if (entry['showQuery']!="NONE"){
  2595. let sq=entry['showQuery'];
  2596. queryArray.push(runQuery.makeQuery(dS,'data',sq,sq,[]));
  2597. qList[sq]=0;
  2598. this.print(fName+' adding '+sq);
  2599. }
  2600. }
  2601. //always add reviews
  2602. let q='reviewComments';
  2603. queryArray.push(runQuery.makeQuery(dS,'data',q,q,[]));
  2604. qList[q]=0;
  2605. let that=this;
  2606. let action=function(){that.processLayout(cb);};
  2607. runQuery.getDataFromQueries(this,queryArray,action);
  2608. }
  2609. //this happens after the for loop, so all dataQueries objects are set
  2610. crfVisit.processLayout=
  2611. function(cb){
  2612. let fName='[processLayout]';
  2613. let qList=this.getQueryList();
  2614. //for layouts
  2615. let queryArray=new Array();
  2616. let targetObject=this.getLookupObject();
  2617. let lookupSet=new Object();
  2618. for (let q in qList){
  2619. let qobject=this.getQueryLayout(q);
  2620. this.print(fName+" inspecting layout for "+q+" "+qobject);
  2621. qobject.fields=qobject.metaData.fields;
  2622. qobject.title=this.findTitle(q);
  2623. //check for lookups
  2624. for (let f in qobject.fields){
  2625. //anything else is simple but lookup
  2626. let field=qobject.fields[f];
  2627. if (!("lookup" in field)) continue;
  2628. let lookup=field.lookup;
  2629. let qObject=this.getLookup(lookup.queryName);
  2630. if (qObject) continue;
  2631. //add to list
  2632. let qName=lookup.queryName;
  2633. let qCode=qName+':'+lookup.keyColumn+':'+lookup.displayColumn;
  2634. let e=runQuery.makeQuery(targetObject,'data',qName,qCode,[]);
  2635. //adjust minor settings
  2636. if (lookup.containerPath) e.containerPath=lookup.containerPath;
  2637. e.schemaName=lookup.schemaName;
  2638. e.columns=lookup.keyColumn+','+lookup.displayColumn;
  2639. lookupSet[qCode]=e;
  2640. this.print(fName+' inserting '+qCode);
  2641. }
  2642. }
  2643. for (let x in lookupSet){
  2644. queryArray.push(lookupSet[x]);
  2645. this.print(fName+' adding '+x);
  2646. for (let v in lookupSet[x]){
  2647. this.print(fName+' value ['+v+'] '+lookupSet[x][v]);
  2648. }
  2649. }
  2650. //this.print(fName+' print '+targetObject.print);
  2651. let that=this;
  2652. let action=function(){that.processLookup(cb);};
  2653. this.print(fName+' getDataFromQueries');
  2654. runQuery.getDataFromQueries(this,queryArray,action);
  2655. this.print(fName+' getDataFromQueries done');
  2656. }
  2657. crfVisit.processLookup=
  2658. function(cb){
  2659. let fName="[processLookup]";
  2660. let obj=this.getLookupObject();
  2661. for (let q in obj){
  2662. this.print(fName+" "+q);
  2663. let a=q.split(':');
  2664. if (a.length<3) continue;
  2665. let lookupName=a[0];
  2666. let key=a[1];
  2667. let val=a[2];
  2668. obj[lookupName]=new Object();
  2669. this.print(fName+' adding ['+lookupName+'] '+key+'/'+val);
  2670. let lObject=obj[lookupName];
  2671. lObject.LUT=new Array();//key to value
  2672. lObject.ValToKey=new Array();//value to key
  2673. lObject.keyColumn=key
  2674. lObject.displayColumn=val;
  2675. let qRows=obj[q].rows;
  2676. for (let i=0;i<qRows.length;i++){
  2677. let r=qRows[i];
  2678. this.print(fName+' LUT ['+r[key]+'] '+r[val]);
  2679. lObject.LUT[r[key]]=r[val];
  2680. lObject.ValToKey[r[val]]=r[key];
  2681. }
  2682. }
  2683. cb();
  2684. }
  2685. crfVisit.setData=
  2686. function(cb){
  2687. fName='[setData]';
  2688. let crfMatch=this.getCRFref();
  2689. let config=this.config;
  2690. let parentCrf=config.formConfig.crfEntry['parentCrf'];
  2691. if (parentCrf!=undefined) crfMatch=parentCrf;
  2692. this.print(fName+' form crf ['+this.getCRFref()+'] matching for crfRef='+crfMatch);
  2693. let queryArray=new Array();
  2694. let targetObject=this.getSnapshotObject();
  2695. //collect data and execute callback cb for queries in cb.queryList
  2696. let qList=this.getQueryList();
  2697. for (q in qList){
  2698. let filters=[LABKEY.Filter.create("crfRef",crfMatch)];
  2699. queryArray.push(runQuery.makeQuery(targetObject,'data',q,q,filters));
  2700. }
  2701. runQuery.getDataFromQueries(this,queryArray,cb);
  2702. }
  2703. crfVisit.uploadFile=
  2704. function(inputElement,context){
  2705. //context should have ID and dirName attributes;
  2706. //path will be dirName/ID/fieldName_ID.suf
  2707. //where suf is identical to localPath content picked from
  2708. //inputElement
  2709. this.print('uploadFile: '+inputElement.value+'/');
  2710. if (inputElement.type=="text") return;
  2711. this.print('uploadFile: '+inputElement.files+'/');
  2712. this.print('uploadFile: '+inputElement.files.length+'/');
  2713. if (inputElement.files.length>0){
  2714. let file=inputElement.files[0];
  2715. this.print('uploadFile: '+inputElement.value+'/'+file.size);
  2716. webdav.uploadFile(file,context);
  2717. }
  2718. }
  2719. crfVisit.printForm=
  2720. function(){
  2721. crfPrint.printForm();
  2722. }