formPortal.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596
  1. var formPortal={};
  2. //global config variable
  3. formPortal.config=new Object();
  4. formPortal.setDebug=
  5. function(debug=null){
  6. if (debug){
  7. this.print=function(msg){debug.print(msg);};
  8. this.clear=function(){debug.clear();}
  9. return;
  10. }
  11. //provide default functions if not debug object is available
  12. this.print=function(msg){console.log(msg);}
  13. this.clear=function(){;}
  14. }
  15. formPortal.setDebug();
  16. formPortal.getMode=
  17. function(){
  18. if ("role" in this.config){
  19. return this.config.role;
  20. }
  21. return "crfEditor";
  22. }
  23. formPortal.doNothing=
  24. function(){
  25. this.print('doNothing called');
  26. }
  27. //load runQuery.js
  28. formPortal.printMessage=
  29. function(msg){
  30. let txt=this.config.document.createElement("p");
  31. this.config.document.getElementById(this.config.div).appendChild(txt);
  32. txt.innerText=msg;
  33. }
  34. formPortal.userName=
  35. function(id){
  36. let formConfig=this.config.formConfig;
  37. for (let i=0;i<formConfig.users.rows.length;i++){
  38. if (formConfig.users.rows[i].UserId!=id)
  39. continue;
  40. return formConfig.users.rows[i].DisplayName;
  41. }
  42. return "NONE";
  43. }
  44. formPortal.setContainer=
  45. function(label,container){
  46. let config=this.config;
  47. if (!(config.formConfig.hasOwnProperty('container'))){
  48. config.formConfig.container=new Array();
  49. }
  50. config.formConfig.container[label]=container;
  51. }
  52. formPortal.getContainer=
  53. function(label){
  54. return this.config.formConfig.container[label];
  55. }
  56. formPortal.init=
  57. function(cb=null){
  58. let that=this;
  59. let action=function(){that.scriptsLoaded(cb);};
  60. LABKEY.Utils.requiresScript(["crfTecant/runQuery.js","crfTecant/formGenerator.js","crfTecant/variableList.js"],action);
  61. }
  62. formPortal.scriptsLoaded=
  63. function(cb=null){
  64. formGenerator.set(this);
  65. if (cb) cb();
  66. }
  67. formPortal.generateFormArray=
  68. function(){
  69. let that=this;
  70. let action=function(){that.fcontinue0();};
  71. this.init(action);
  72. }
  73. formPortal.fcontinue0=
  74. function(){
  75. this.print("generateFormArray "+this.getMode());
  76. let config=this.config;
  77. config.formConfig=new Object();
  78. config.formConfig.softwareVersion='T.2.01'; //report software version
  79. //report software version
  80. config.document.getElementById('version').innerText=config.formConfig.softwareVersion;
  81. this.setContainer('data',LABKEY.ActionURL.getContainer());
  82. this.setContainer('config',LABKEY.ActionURL.getContainer());
  83. this.setContainer('CRF',LABKEY.ActionURL.getContainer());
  84. let selectRows=new Object();
  85. //this is local data
  86. selectRows.containerPath=this.getContainer('CRF');
  87. selectRows.schemaName='lists';
  88. selectRows.queryName='crfSettings';
  89. //store form related data to this object
  90. let that=this;
  91. selectRows.success=function(data){that.afterSettings(data);};
  92. LABKEY.Query.selectRows(selectRows);
  93. }
  94. formPortal.afterSettings=
  95. function(data){
  96. let fName="[afterSettings]";
  97. let config=this.config;
  98. config.formConfig.settings=new Array();
  99. for (let i=0;i<data.rows.length;i++){
  100. let n=data.rows[i]['name'];
  101. let v=data.rows[i]['value'];
  102. config.formConfig.settings[n]=v;
  103. }
  104. let st=config.formConfig.settings;
  105. this.print(fName);
  106. for (let k in st){
  107. this.print(fName+'\t'+k+'='+st[k]);
  108. }
  109. //if ('dataContainer' in st){
  110. // setContainer('data',st['dataContainer']);
  111. //}
  112. let vname='configContainer';
  113. if (vname in st){
  114. this.setContainer('config',st[vname]);
  115. }
  116. this.print(fName+' config: '+this.getContainer('config'));
  117. this.print(fName+' data: '+this.getContainer('data'));
  118. //setup queryArray
  119. let queryArray=new Array();
  120. //targetObject
  121. let targetObject=config.formConfig;
  122. //static variables
  123. queryArray.push(runQuery.makeQuery(targetObject,'data','crfStaticVariables','crfStaticVariables',[]));
  124. //Forms
  125. queryArray.push(runQuery.makeQuery(targetObject,'config','Forms','dataForms',[]));
  126. //users
  127. queryArray.push(runQuery.makeQuery(targetObject,'data','users','users',[]));
  128. queryArray[queryArray.length-1].schemaName='core';
  129. //inputLists
  130. queryArray.push(runQuery.makeQuery(targetObject,'config','inputLists','inputLists',[]));
  131. //crfEditors
  132. queryArray.push(runQuery.makeQuery(targetObject,'config','crfEditors','crfEditors',[]));
  133. //crfMonitors
  134. queryArray.push(runQuery.makeQuery(targetObject,'config','crfMonitors','crfMonitors',[]));
  135. //crfSponsors
  136. queryArray.push(runQuery.makeQuery(targetObject,'config','crfSponsors','crfSponsors',[]));
  137. //crfManagers
  138. queryArray.push(runQuery.makeQuery(targetObject,'config','crfManagers','crfManagers',[]));
  139. //FormStatus
  140. queryArray.push(runQuery.makeQuery(targetObject,'config','FormStatus','formStatusg',[]));
  141. //site
  142. queryArray.push(runQuery.makeQuery(targetObject,'config','site','siteData',[]));
  143. //crfEntry
  144. queryArray.push(runQuery.makeQuery(targetObject,'data','crfEntry','crfEntries',[]));
  145. queryArray.push(
  146. runQuery.makeQuery(targetObject,'config','generateConfig','generateConfigData',[]));
  147. let that=this;
  148. let action=function(){that.addStudyData();};
  149. runQuery.getDataFromQueries(this,queryArray,action);
  150. //getDataFromQueries(queryArray,fcontinue);
  151. }
  152. formPortal.addStudyData=
  153. function(){
  154. let config=this.config;
  155. //setup queryArray
  156. let queryArray=new Array();
  157. let targetObject=config.formConfig;
  158. queryArray.push(runQuery.makeQuery(targetObject,'data','StudyProperties','studyData',[]));
  159. let e=queryArray[queryArray.length-1];
  160. e.schemaName='study';
  161. let columnModel="";
  162. let varRows=config.formConfig['crfStaticVariables'].rows;
  163. for (let i=0;i<varRows.length;i++){
  164. if (i>0) columnModel+=',';
  165. columnModel+=varRows[i]['staticVariable'];
  166. }
  167. e.columns=columnModel;
  168. let that=this;
  169. let action=function(){that.fcontinue();};
  170. runQuery.getDataFromQueries(this,queryArray,action);
  171. }
  172. formPortal.filterEntry=
  173. function(entry,filter,settings){
  174. let fName="[filterEntry]";
  175. if (entry.Form!=filter.form)
  176. return false;
  177. //only select forms where status matches the target status
  178. if (entry.FormStatus!=filter.formStatus){
  179. //check for additionalStates
  180. let addStates=filter.additionalVisibilityStates[filter.role];
  181. this.print(fName+' addState['+filter.role+'] '+addStates);
  182. if (!addStates) return false;
  183. if (entry.FormStatus!=addStates) return false;
  184. }
  185. this.print(fName+' candidate '+entry.entryId);
  186. //TODO: smart filter on user (now we get to see all)
  187. //
  188. //for editors
  189. if ("filterUser" in settings && filter.role=='crfEditor' && entry.UserId!=filter.userId){
  190. this.print(fName+' skipping identity mismatch: '+entry.UserId+'/'+filter.userId);
  191. return false;
  192. }
  193. //for others
  194. let matchingSite=-1;
  195. let potentialSiteNumbers="[";
  196. for (let k=0;k<filter.sites.length;k++){
  197. if (k>0) potentialSiteNumbers+=',';
  198. potentialSiteNumbers+=filter.sites[k].siteNumber;
  199. //skip mismatching sites
  200. if (entry.Site!=filter.sites[k].siteNumber) continue;
  201. matchingSite=filter.sites[k].siteNumber;
  202. break;
  203. }
  204. potentialSiteNumbers+=']';
  205. if (matchingSite==-1){
  206. this.print(fName+' skipping wrong site: '+entry.Site+'/'+potentialSiteNumbers);
  207. return false;
  208. }
  209. return true;
  210. }
  211. formPortal.fcontinue=
  212. function(){
  213. let fName='[fcontinue]';
  214. let config=this.config;
  215. let formConfig=config.formConfig;
  216. this.print(fName+" number of study data entries: "+formConfig.studyData.rows.length);
  217. this.print(fName+" participantId: "+formConfig.studyData.rows[0].SubjectColumnName);
  218. let dataForms=formConfig.dataForms.rows;
  219. formConfig.table=config.document.createElement("table");
  220. config.document.getElementById(config.div).appendChild(formConfig.table);
  221. let accessModeColumn=this.getMode()+'Status';
  222. this.print(fName+' accessModeColumn '+accessModeColumn);
  223. //cutting down on number of fields
  224. //let creatorModeColumn=getMode()+'Creator';
  225. //switch from status based to form based access
  226. this.print(fName+" forms: "+dataForms.length);
  227. this.print(fName+" entries: "+formConfig.crfEntries.rows.length);
  228. let fEntries=formConfig.crfEntries.rows;
  229. let users=formConfig.users.rows;
  230. let currentUserId=LABKEY.Security.currentUser.id;
  231. let currentUser=undefined;
  232. for (let i=0;i<users.length;i++){
  233. if (users[i].UserId!=currentUserId) continue;
  234. currentUser=users[i];
  235. }
  236. //determine the role filter
  237. let fList=config.role+'s';
  238. //check for users that fit the role,
  239. //fRows lists all users for role
  240. let fRows=config.formConfig[fList].rows;
  241. this.print(fName+' candidates: '+fRows.length)
  242. //current user must be in the list
  243. let currentUserRoles=new Array();
  244. //the same user can act for multiple sites
  245. for (let i=0;i<fRows.length;i++){
  246. if (fRows[i].User!=currentUser.UserId) continue;
  247. currentUserRoles.push(fRows[i]);
  248. }
  249. //cludge for public sites where all users can act as anything
  250. let sts=config.formConfig.settings;
  251. let vName='allowAllForSite';
  252. if (vName in sts){
  253. let tempUserRole=new Object();
  254. tempUserRole.User=currentUser.UserId;
  255. tempUserRole.Site=parseInt(sts[vName]);
  256. currentUserRoles.push(tempUserRole);
  257. }
  258. //currentUser was not matched in fRows
  259. if (currentUserRoles.length==0){
  260. this.printMessage('User '+currentUser.DisplayName+" can't act as "+config.role);
  261. return;
  262. }
  263. //currentUser should be also attached to the site of the document
  264. let currentSites=new Array();
  265. let siteRows=config.formConfig.siteData.rows;
  266. for (let i=0;i<siteRows.length;i++){
  267. for (let j=0;j<currentUserRoles.length;j++){
  268. if (siteRows[i].siteNumber!=currentUserRoles[j].Site) continue;
  269. currentSites.push(siteRows[i]);
  270. }
  271. }
  272. config.formConfig.currentSites=currentSites;
  273. let msg='User '+currentUser.DisplayName+' acting as '+config.role+' for (';
  274. for (let i=0;i<currentSites.length;i++){
  275. if (i>0) msg+=', ';
  276. msg+=currentSites[i].siteName;
  277. }
  278. msg+=')';
  279. this.printMessage(msg);
  280. let filter=new Object();
  281. filter.role=config.role;
  282. filter.userId=currentUser.UserId;
  283. filter.sites=currentSites;
  284. //make a formStatus map
  285. let formStatusMap=new Object();
  286. this.print(fName+' formStatusMap: '+config.formConfig.formStatusg.rows.length);
  287. for (let i=0;i<config.formConfig.formStatusg.rows.length;i++){
  288. let fs=config.formConfig.formStatusg.rows[i];
  289. let s=fs['Key'];
  290. formStatusMap[s]=fs;
  291. this.print(fName+' formStatusMap adding '+s);
  292. }
  293. this.print(fName+' formStatusMap '+Object.keys(formStatusMap).length+'/'+config.formConfig.formStatusg.rows.length);
  294. //browse through forms
  295. for (let i=0;i<dataForms.length;i++){
  296. //dataForms is Forms
  297. let qForm=dataForms[i];
  298. let formKey=qForm.Key;
  299. filter.form=qForm.Key;
  300. //add row for each form
  301. let row=formConfig.table.insertRow(i);
  302. let formName=qForm.formName;
  303. this.print(fName+" ["+i+"/"+formKey+']: '+formName);
  304. //column counter
  305. let k=0;
  306. //get the target status
  307. let formStatus=qForm[accessModeColumn];
  308. filter.formStatus=qForm[accessModeColumn];
  309. this.print(fName+' target formStatus '+formStatus);
  310. filter.additionalVisibilityStates=new Object();
  311. let as=qForm["additionalVisibilityStates"];
  312. if (as){
  313. filter.additionalVisibilityStates=variableList.parseVariables(as);
  314. }
  315. for (let j=0;j<fEntries.length;j++){
  316. let entry=fEntries[j];
  317. if (!this.filterEntry(entry,filter,config.formConfig.settings))
  318. continue;
  319. //insert form
  320. //
  321. let fbox=config.document.createElement("div");
  322. let color='gold';
  323. this.print(fName+' status '+entry.FormStatus+' obj '+formStatusMap[entry.FormStatus]);
  324. if (formStatusMap[entry.FormStatus]){
  325. let c=formStatusMap[entry.FormStatus]['color'];
  326. if (c) color=c;
  327. this.print(fName+' status '+entry.FormStatus+' color '+c);
  328. }
  329. fbox.classList.add("box",color);
  330. let fp=config.document.createElement("p");
  331. let id=entry.entryId;
  332. fp.innerHTML=id;
  333. //it would be great if this were patientId if available
  334. //fp.classList.add("large","center");
  335. fp.classList.add("center");
  336. fbox.appendChild(fp);
  337. let fp1=config.document.createElement("p");
  338. let user="NONE";
  339. for (let ii=0;ii<users.length;ii++){
  340. if (users[ii].UserId!=entry.UserId)
  341. continue;
  342. user=users[ii].DisplayName;
  343. break;
  344. }
  345. fp1.innerHTML=user;
  346. fp1.classList.add("center");
  347. fbox.appendChild(fp1);
  348. let fp2=config.document.createElement("p");
  349. fp2.innerHTML=formName;
  350. fp2.classList.add("center");
  351. fbox.appendChild(fp2);
  352. let fp3=config.document.createElement("p");
  353. fp3.id="pid"+id;
  354. let pid=entry['participantStudyId'];
  355. let loc=entry['participantLocalId'];
  356. let label='';
  357. if (pid) label+=pid+' ';
  358. if (loc) label+='(Local: '+loc+')';
  359. if (label.length==0) label="NONE";
  360. fp3.innerHTML=label;
  361. fp3.classList.add("center");
  362. fbox.appendChild(fp3);
  363. let cell=row.insertCell(k);
  364. cell.classList.add("stretch");
  365. cell.id="box"+entry.crfRef;
  366. let button=config.document.createElement("button");
  367. button.appendChild(fbox);
  368. let that=this;
  369. button.onclick=function(){that.openForm(entry)};
  370. cell.appendChild(button);
  371. k++;
  372. }
  373. this.print(fName+' finished checking existing forms');
  374. //only those that are allowed to create forms
  375. //print('Status: '+qForm[creatorModeColumn]);
  376. let creator=qForm['creator'];
  377. if (!creator) continue;
  378. if (creator!=this.getMode()) continue;
  379. //if (qForm[creatorModeColumn]!='TRUE') continue;
  380. let fbox=config.document.createElement("div");
  381. fbox.classList.add("box","red");
  382. let fp=config.document.createElement("p");
  383. fp.innerHTML="Create new";
  384. fbox.appendChild(fp);
  385. let fp2=config.document.createElement("p");
  386. fp2.innerHTML=formName;
  387. fp2.classList.add("center");
  388. fbox.appendChild(fp2);
  389. let cell=row.insertCell(k);
  390. cell.classList.add("stretch");
  391. let button=config.document.createElement("button");
  392. button.appendChild(fbox);
  393. let that=this;
  394. button.onclick=function(){that.createForm(formKey)};
  395. cell.appendChild(button);
  396. }
  397. if (config.role=='crfManager')
  398. this.print('Skipping form generator');
  399. //need formGenerator.js
  400. //formGenerator.addFormGenerator(this);
  401. }
  402. formPortal.openForm=
  403. function(crfEntry){
  404. let fName="[openForm]";
  405. let config=this.config;
  406. let formConfig=config.formConfig;
  407. let crfRef=crfEntry.entryId;
  408. this.print(fName+" clicked for "+crfRef);
  409. let formId=crfEntry.Form;
  410. for (let i=0;i<formConfig.dataForms.rows.length;i++){
  411. if (formConfig.dataForms.rows[i].Key!=formId) continue;
  412. this.print(fName+" setting form "+formConfig.dataForms.rows[i].formName);
  413. formEntry=formConfig.dataForms.rows[i];
  414. break;
  415. }
  416. if (formEntry==undefined) return;
  417. //select between review and view
  418. //let formUrl=formEntry["formUrl"];
  419. //if ("reviewMode" in config) formUrl=formEntry["reviewFormUrl"];
  420. //print("Setting url "+formUrl);
  421. //direct all to the same html
  422. let formUrl="visit";
  423. reviewMode="EDIT";
  424. if ("reviewMode" in config) reviewMode=config.reviewMode;
  425. let params = {
  426. "name": formUrl,
  427. // The destination wiki page. The name of this parameter is not arbitrary.
  428. "entryId": crfRef,
  429. "formId":formId,
  430. "role" : config.role
  431. };
  432. //"formSetupQuery":formEntry["setupQuery"],
  433. let containerPath= LABKEY.ActionURL.getContainer();
  434. // This changes the page after building the URL.
  435. //Note that the wiki page destination name is set in params.
  436. var wikiURL = LABKEY.ActionURL.buildURL("crf_tecant", formUrl , containerPath, params);
  437. this.print(fName+" redirecting to "+wikiURL);
  438. window.location = wikiURL;
  439. }
  440. formPortal.createForm=
  441. function(formId){
  442. let fName="[createForm]";
  443. let config=this.config;
  444. let formConfig=config.formConfig;
  445. let dataForms=formConfig.dataForms.rows;
  446. let qForm=null;
  447. for (let i=0;i<dataForms.length;i++){
  448. if (dataForms[i].Key==formId){
  449. qForm=dataForms[i];
  450. break;
  451. }
  452. }
  453. this.print(fName+" create form w/id "+formId);
  454. let crfEntry=new Object();
  455. crfEntry.entryId=Date.now();
  456. crfEntry["Date"]=new Date();
  457. crfEntry["View"]="[VIEW]";
  458. crfEntry.FormStatus=qForm["initialStatus"];//In progress
  459. this.print(fName+" setting status to "+crfEntry.FormStatus);
  460. //set other variables
  461. //requires studyData as part of formConfig
  462. let studyData=formConfig.studyData.rows[0];
  463. let varRows=formConfig['crfStaticVariables'].rows;
  464. for (let i=0;i<varRows.length;i++){
  465. let varName=varRows[i].staticVariable;
  466. crfEntry[varName]=studyData[varName];
  467. }
  468. crfEntry.UserId=LABKEY.Security.currentUser.id;
  469. crfEntry.Site=config.formConfig.currentSites[0].siteNumber;
  470. this.print(fName+" setting site to id="+crfEntry.Site);
  471. //from argument list
  472. crfEntry.Form=formId;
  473. let crfStatus=new Object();
  474. crfStatus.entryId=crfEntry.entryId;
  475. crfStatus.submissionDate=new Date();
  476. crfStatus.FormStatus=crfEntry.FormStatus;
  477. crfStatus.User=crfEntry.UserId;
  478. crfStatus.Form=crfEntry.Form;
  479. crfStatus.operator=config.role;
  480. crfStatus.action='createForm';
  481. let that=this;
  482. let cb=function(data){that.openForm(crfEntry);};
  483. //this is for debug
  484. //let cb=function(data){;};
  485. let containerPath=this.getContainer('data');
  486. let pass=function(data){formGenerator.insertRow('lists','crfStatus',crfStatus,cb,containerPath);};
  487. formGenerator.insertRow('lists','crfEntry',crfEntry,pass,this.getContainer('data'));
  488. }