formPortal.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  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"],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. return false;
  180. }
  181. this.print(fName+' candidate '+entry.entryId);
  182. //TODO: smart filter on user (now we get to see all)
  183. //
  184. //for editors
  185. if ("filterUser" in settings && filter.role=='crfEditor' && entry.UserId!=filter.userId){
  186. this.print(fName+' skipping identity mismatch: '+entry.UserId+'/'+filter.userId);
  187. return false;
  188. }
  189. //for others
  190. let matchingSite=-1;
  191. let potentialSiteNumbers="[";
  192. for (let k=0;k<filter.sites.length;k++){
  193. if (k>0) potentialSiteNumbers+=',';
  194. potentialSiteNumbers+=filter.sites[k].siteNumber;
  195. //skip mismatching sites
  196. if (entry.Site!=filter.sites[k].siteNumber) continue;
  197. matchingSite=filter.sites[k].siteNumber;
  198. break;
  199. }
  200. potentialSiteNumbers+=']';
  201. if (matchingSite==-1){
  202. this.print(fName+' skipping wrong site: '+entry.Site+'/'+potentialSiteNumbers);
  203. return false;
  204. }
  205. return true;
  206. }
  207. formPortal.fcontinue=
  208. function(){
  209. let fName='[fcontinue]';
  210. let config=this.config;
  211. let formConfig=config.formConfig;
  212. this.print(fName+" number of study data entries: "+formConfig.studyData.rows.length);
  213. this.print(fName+" participantId: "+formConfig.studyData.rows[0].SubjectColumnName);
  214. let dataForms=formConfig.dataForms.rows;
  215. formConfig.table=config.document.createElement("table");
  216. config.document.getElementById(config.div).appendChild(formConfig.table);
  217. let accessModeColumn=this.getMode()+'Status';
  218. this.print(fName+' accessModeColumn '+accessModeColumn);
  219. //cutting down on number of fields
  220. //let creatorModeColumn=getMode()+'Creator';
  221. //switch from status based to form based access
  222. this.print(fName+" forms: "+dataForms.length);
  223. this.print(fName+" entries: "+formConfig.crfEntries.rows.length);
  224. let fEntries=formConfig.crfEntries.rows;
  225. let users=formConfig.users.rows;
  226. let currentUserId=LABKEY.Security.currentUser.id;
  227. let currentUser=undefined;
  228. for (let i=0;i<users.length;i++){
  229. if (users[i].UserId!=currentUserId) continue;
  230. currentUser=users[i];
  231. }
  232. //determine the role filter
  233. let fList=config.role+'s';
  234. //check for users that fit the role,
  235. //fRows lists all users for role
  236. let fRows=config.formConfig[fList].rows;
  237. this.print(fName+' candidates: '+fRows.length)
  238. //current user must be in the list
  239. let currentUserRoles=new Array();
  240. //the same user can act for multiple sites
  241. for (let i=0;i<fRows.length;i++){
  242. if (fRows[i].User!=currentUser.UserId) continue;
  243. currentUserRoles.push(fRows[i]);
  244. }
  245. //cludge for public sites where all users can act as anything
  246. let sts=config.formConfig.settings;
  247. let vName='allowAllForSite';
  248. if (vName in sts){
  249. let tempUserRole=new Object();
  250. tempUserRole.User=currentUser.UserId;
  251. tempUserRole.Site=parseInt(sts[vName]);
  252. currentUserRoles.push(tempUserRole);
  253. }
  254. //currentUser was not matched in fRows
  255. if (currentUserRoles.length==0){
  256. this.printMessage('User '+currentUser.DisplayName+" can't act as "+config.role);
  257. return;
  258. }
  259. //currentUser should be also attached to the site of the document
  260. let currentSites=new Array();
  261. let siteRows=config.formConfig.siteData.rows;
  262. for (let i=0;i<siteRows.length;i++){
  263. for (let j=0;j<currentUserRoles.length;j++){
  264. if (siteRows[i].siteNumber!=currentUserRoles[j].Site) continue;
  265. currentSites.push(siteRows[i]);
  266. }
  267. }
  268. config.formConfig.currentSites=currentSites;
  269. let msg='User '+currentUser.DisplayName+' acting as '+config.role+' for (';
  270. for (let i=0;i<currentSites.length;i++){
  271. if (i>0) msg+=', ';
  272. msg+=currentSites[i].siteName;
  273. }
  274. msg+=')';
  275. this.printMessage(msg);
  276. let filter=new Object();
  277. filter.role=config.role;
  278. filter.userId=currentUser.UserId;
  279. filter.sites=currentSites;
  280. //browse through forms
  281. for (let i=0;i<dataForms.length;i++){
  282. //dataForms is Forms
  283. let qForm=dataForms[i];
  284. let formKey=qForm.Key;
  285. filter.form=qForm.Key;
  286. //add row for each form
  287. let row=formConfig.table.insertRow(i);
  288. let formName=qForm.formName;
  289. this.print(fName+" ["+i+"/"+formKey+']: '+formName);
  290. //column counter
  291. let k=0;
  292. //get the target status
  293. let formStatus=qForm[accessModeColumn];
  294. filter.formStatus=qForm[accessModeColumn];
  295. this.print(fName+' target formStatus '+formStatus);
  296. for (let j=0;j<fEntries.length;j++){
  297. let entry=fEntries[j];
  298. if (!this.filterEntry(entry,filter,config.formConfig.settings))
  299. continue;
  300. //insert form
  301. //
  302. let fbox=config.document.createElement("div");
  303. fbox.classList.add("box","gold");
  304. let fp=config.document.createElement("p");
  305. let id=entry.entryId;
  306. fp.innerHTML=id;
  307. //it would be great if this were patientId if available
  308. //fp.classList.add("large","center");
  309. fp.classList.add("center");
  310. fbox.appendChild(fp);
  311. let fp1=config.document.createElement("p");
  312. let user="NONE";
  313. for (let ii=0;ii<users.length;ii++){
  314. if (users[ii].UserId!=entry.UserId)
  315. continue;
  316. user=users[ii].DisplayName;
  317. break;
  318. }
  319. fp1.innerHTML=user;
  320. fp1.classList.add("center");
  321. fbox.appendChild(fp1);
  322. let fp2=config.document.createElement("p");
  323. fp2.innerHTML=formName;
  324. fp2.classList.add("center");
  325. fbox.appendChild(fp2);
  326. let fp3=config.document.createElement("p");
  327. fp3.id="pid"+id;
  328. let pid=entry['participantStudyId'];
  329. let loc=entry['participantLocalId'];
  330. let label='';
  331. if (pid) label+=pid+' ';
  332. if (loc) label+='(Local: '+loc+')';
  333. if (label.length==0) label="NONE";
  334. fp3.innerHTML=label;
  335. fp3.classList.add("center");
  336. fbox.appendChild(fp3);
  337. let cell=row.insertCell(k);
  338. cell.classList.add("stretch");
  339. cell.id="box"+entry.crfRef;
  340. let button=config.document.createElement("button");
  341. button.appendChild(fbox);
  342. let that=this;
  343. button.onclick=function(){that.openForm(entry)};
  344. cell.appendChild(button);
  345. k++;
  346. }
  347. this.print(fName+' finished checking existing forms');
  348. //only those that are allowed to create forms
  349. //print('Status: '+qForm[creatorModeColumn]);
  350. let creator=qForm['creator'];
  351. if (!creator) continue;
  352. if (creator!=this.getMode()) continue;
  353. //if (qForm[creatorModeColumn]!='TRUE') continue;
  354. let fbox=config.document.createElement("div");
  355. fbox.classList.add("box","red");
  356. let fp=config.document.createElement("p");
  357. fp.innerHTML="Create new";
  358. fbox.appendChild(fp);
  359. let fp2=config.document.createElement("p");
  360. fp2.innerHTML=formName;
  361. fp2.classList.add("center");
  362. fbox.appendChild(fp2);
  363. let cell=row.insertCell(k);
  364. cell.classList.add("stretch");
  365. let button=config.document.createElement("button");
  366. button.appendChild(fbox);
  367. let that=this;
  368. button.onclick=function(){that.createForm(formKey)};
  369. cell.appendChild(button);
  370. }
  371. if (config.role=='crfManager')
  372. //need formGenerator.js
  373. formGenerator.addFormGenerator(this);
  374. }
  375. formPortal.openForm=
  376. function(crfEntry){
  377. let fName="[openForm]";
  378. let config=this.config;
  379. let formConfig=config.formConfig;
  380. let crfRef=crfEntry.entryId;
  381. this.print(fName+" clicked for "+crfRef);
  382. let formId=crfEntry.Form;
  383. for (let i=0;i<formConfig.dataForms.rows.length;i++){
  384. if (formConfig.dataForms.rows[i].Key!=formId) continue;
  385. this.print(fName+" setting form "+formConfig.dataForms.rows[i].formName);
  386. formEntry=formConfig.dataForms.rows[i];
  387. break;
  388. }
  389. if (formEntry==undefined) return;
  390. //select between review and view
  391. //let formUrl=formEntry["formUrl"];
  392. //if ("reviewMode" in config) formUrl=formEntry["reviewFormUrl"];
  393. //print("Setting url "+formUrl);
  394. //direct all to the same html
  395. let formUrl="visit";
  396. reviewMode="EDIT";
  397. if ("reviewMode" in config) reviewMode=config.reviewMode;
  398. let params = {
  399. "name": formUrl,
  400. // The destination wiki page. The name of this parameter is not arbitrary.
  401. "entryId": crfRef,
  402. "formId":formId,
  403. "role" : config.role
  404. };
  405. //"formSetupQuery":formEntry["setupQuery"],
  406. let containerPath= LABKEY.ActionURL.getContainer();
  407. // This changes the page after building the URL.
  408. //Note that the wiki page destination name is set in params.
  409. var wikiURL = LABKEY.ActionURL.buildURL("crf_tecant", formUrl , containerPath, params);
  410. this.print(fName+" redirecting to "+wikiURL);
  411. window.location = wikiURL;
  412. }
  413. formPortal.createForm=
  414. function(formId){
  415. let fName="[createForm]";
  416. let config=this.config;
  417. let formConfig=config.formConfig;
  418. this.print(fName+" create form w/id "+formId);
  419. let crfEntry=new Object();
  420. crfEntry.entryId=Date.now();
  421. crfEntry["Date"]=new Date();
  422. crfEntry["View"]="[VIEW]";
  423. crfEntry.formStatus=1;//In progress
  424. //set other variables
  425. //requires studyData as part of formConfig
  426. let studyData=formConfig.studyData.rows[0];
  427. let varRows=formConfig['crfStaticVariables'].rows;
  428. for (let i=0;i<varRows.length;i++){
  429. let varName=varRows[i].staticVariable;
  430. crfEntry[varName]=studyData[varName];
  431. }
  432. crfEntry.UserId=LABKEY.Security.currentUser.id;
  433. crfEntry.Site=config.formConfig.currentSites[0].siteNumber;
  434. this.print(fName+" setting site to id="+crfEntry.Site);
  435. //from argument list
  436. crfEntry.Form=formId;
  437. let crfStatus=new Object();
  438. crfStatus.entryId=crfEntry.entryId;
  439. crfStatus.submissionDate=new Date();
  440. crfStatus.FormStatus=crfEntry.formStatus;
  441. crfStatus.User=crfEntry.UserId;
  442. crfStatus.Form=crfEntry.Form;
  443. crfStatus.operator=config.role;
  444. crfStatus.action='createForm';
  445. let that=this;
  446. let cb=function(data){that.openForm(crfEntry);};
  447. let containerPath=this.getContainer('data');
  448. let pass=function(data){formGenerator.insertRow('lists','crfStatus',crfStatus,cb,containerPath);};
  449. formGenerator.insertRow('lists','crfEntry',crfEntry,pass,this.getContainer('data'));
  450. }