participantIdManager.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. //all functions are based off of participantManager (print, config, etc.)
  2. function addSelectOptions(){
  3. let pM=this;
  4. if (pM.mode=="LOCAL") return;
  5. let input=pM.getInputElement();
  6. let config=pM.config;
  7. let fName='addParticipantSelectOptions';
  8. pM.print(fName+' input '+input);
  9. let opt=config.document.createElement("option");
  10. opt.value=-1;
  11. opt.text="<Select>";
  12. input.options[input.options.length]=opt;
  13. //here the lookup is being populated (registrationData)
  14. let demoRows=config.formConfig['registrationData'].rows;
  15. pM.print(fName+" demoRows: "+demoRows.length);
  16. for (let i=0;i<demoRows.length;i++){
  17. let opt2=config.document.createElement("option");
  18. opt2.value=i+1;
  19. let id=demoRows[i][pM.getCrfEntryFieldName()];
  20. let loc=demoRows[i][pM.getCrfEntryFieldName('LOCAL')];
  21. opt2.text=id+' (Local: '+loc+')';
  22. input.options[input.options.length]=opt2;
  23. pM.print(fName+' '+pM.participantField+' '+demoRows[i][pM.participantField]);
  24. }
  25. input.selectedIndex=0;
  26. }
  27. function updateElements(){
  28. let pM=this;
  29. let fName='[updateElements]';
  30. //reset all values (some might be different depending on the call timing)
  31. //selector is with study
  32. pM.cellSelector=config.document.getElementById(pM.cellSelectorId);
  33. pM.inputSelector=config.document.getElementById(pM.inputSelectorId);
  34. pM.textStudy=config.document.getElementById(pM.textStudyId);
  35. pM.print(fName+' selector '+pM.inputSelector+' id '+pM.inputSelectorId);
  36. //value is with local
  37. pM.cellValue=config.document.getElementById(pM.cellValueId);
  38. pM.inputValue=config.document.getElementById(pM.inputValueId);
  39. pM.textLocal=config.document.getElementById(pM.textLocalId);
  40. //pM.inputManageLocal=config.document.getElementById(pM.inputManageLocalId);
  41. //pM.inputManageStudy=config.document.getElementById(pM.inputManageStudyId);
  42. }
  43. function generateEntryField(){
  44. let pM=this;
  45. let fName='[generateParticipantEntryField]:';
  46. pM.print(fName);
  47. //this is HTML designator of area on page
  48. let config=pM.config;
  49. let formName=config.masterForm;
  50. pM.tb=config.document.createElement('table');
  51. let tb=pM.tb;
  52. tb.className='t2';
  53. let row=tb.insertRow();
  54. //label for local ID
  55. let cell=config.document.createElement('th');
  56. row.appendChild(cell);
  57. cell.setAttribute("colspan","1");
  58. cell.style.fontSize="20px";
  59. cell.style.textAlign="left";
  60. //Use study coding for participant field
  61. cell.innerText='Local ID';
  62. //cell.innerText=pM.participantField;
  63. //value
  64. let cellValue=row.insertCell();
  65. cellValue.id=pM.cellValueId;
  66. pM.cellManageLocal=row.insertCell();
  67. //second row for study id
  68. let rowStudy=tb.insertRow();
  69. //label for study ID
  70. let cellStudy=config.document.createElement('th');
  71. rowStudy.appendChild(cellStudy);
  72. cellStudy.setAttribute("colspan","1");
  73. cellStudy.style.fontSize="20px";
  74. cellStudy.style.textAlign="left";
  75. //Use study coding for participant field
  76. cellStudy.innerText='Study ID';
  77. //selector for study id
  78. let cellSelector=rowStudy.insertCell();
  79. cellSelector.id=pM.cellSelectorId;
  80. //manage
  81. pM.cellManageStudy=rowStudy.insertCell();
  82. config.document.getElementById(formName).appendChild(tb);
  83. pM.print(fName+' done');
  84. }
  85. function getMode(mode="NONE"){
  86. let pM=this;
  87. if (mode=="NONE") return pM.mode;
  88. return mode;
  89. }
  90. //reslovers which operate depending on mode
  91. function getInputId(mode="NONE"){
  92. let pM=this;
  93. let fName='[getInputId]';
  94. pM.print(fName);
  95. if (pM.getMode(mode)=="LOCAL") return pM.inputValueId;
  96. return pM.inputSelectorId;
  97. }
  98. function getInputCell(mode="NONE"){
  99. let pM=this;
  100. let fName='[getInputCell]';
  101. pM.print(fName+' mode '+mode+' getMode '+pM.getMode(mode));
  102. if (pM.getMode(mode)=="LOCAL") return pM.cellValue;
  103. return pM.cellSelector;
  104. }
  105. function getInputElement(mode="NONE"){
  106. let pM=this;
  107. let fName='[getInputElement]';
  108. pM.print(fName);
  109. let elementType=pM.getInputElementType(mode);
  110. let id=pM.getInputId(mode);
  111. let cell=pM.getInputCell(mode);
  112. let el=pM.config.document.getElementById(id);
  113. pM.print(fName+' mode '+pM.getMode(mode)+' type '+elementType+' id '+id+' cell '+cell+' el '+el);
  114. if (el) return el;
  115. el=pM.config.document.createElement(elementType);
  116. print(fName+' input '+el);
  117. el.id=id;
  118. cell.replaceChildren(el);
  119. pM.addSelectOptions();
  120. return el;
  121. }
  122. function getInputElementType(mode="NONE"){
  123. let pM=this;
  124. let fName='[getInputElementType]';
  125. pM.print(fName);
  126. if (pM.getMode(mode)=="LOCAL") return "input";
  127. return "select";
  128. }
  129. function getTextFieldId(mode="NONE"){
  130. let pM=this;
  131. let fName='[getTextFieldId]';
  132. pM.print(fName);
  133. if (pM.getMode(mode)=="LOCAL") return pM.textLocalId;
  134. return pM.textStudyId;
  135. }
  136. function getTextElement(mode="NONE"){
  137. let pM=this;
  138. let fName='[getTextElement]';
  139. pM.print(fName+' mode '+mode);
  140. let id=pM.getTextFieldId(mode);
  141. pM.print(fName+' id '+id);
  142. let el=pM.config.document.getElementById(id);
  143. pM.print(fName+' el '+el);
  144. if (el) return el;
  145. el=config.document.createElement("p");
  146. el.id=id;
  147. let cell=pM.getInputCell(mode);
  148. //let oldEl=pM.getInputElement(mode);
  149. cell.replaceChildren(el);
  150. return el;
  151. }
  152. //get the button, create if not there yet
  153. function getInputManage(mode="NONE"){
  154. let pM=this;
  155. let fName='[getInputManage]';
  156. //pM.print(fName);
  157. let config=pM.config;
  158. //this prevents from having two inputs; it is either local or global from the outset
  159. if ("inputManage" in pM) return pM.inputManage;
  160. pM.inputManage=config.document.createElement("input");
  161. let inputManage=pM.inputManage;
  162. inputManage.type="button";
  163. inputManage.onclick=function(){pM.manageId();};
  164. //inputManageLocal.id=pM.inputManageLocalId;
  165. let cell=pM.cellManageStudy;
  166. if (pM.getMode(mode)=="LOCAL") cell=pM.cellManageLocal;
  167. //pM.print(fName+' inputManage '+pM.inputManage+' cell '+cell+' mode '+pM.mode);
  168. cell.appendChild(inputManage);
  169. return inputManage;
  170. }
  171. //callback that splits to edit or set/label mode
  172. function manageId(){
  173. let pM=this;
  174. let fName='[manageId]';
  175. pM.print(fName);
  176. //this can happen after object was created, so make sure current
  177. //elements are used
  178. pM.updateElements();
  179. let x=pM.getInputManage();
  180. if (x.value=="Set"){
  181. pM.setId();
  182. return;
  183. }
  184. if (x.value=="Edit"){
  185. pM.editId();
  186. return;
  187. }
  188. }
  189. //set mode
  190. function setId(){
  191. let pM=this;
  192. let fName='[setId]';
  193. pM.print(fName);
  194. let el=pM.getInputElement();
  195. pM.print(fName+" value: "+el.value);
  196. let pId=el.value;
  197. let label=pId;
  198. if (pM.mode!="LOCAL"){
  199. if (el.value<0) return;
  200. let opt=el.options[el.selectedIndex];
  201. label=opt.text;
  202. pId=label.replace(/\(.*\)/,'');
  203. label=label.replace(/ \(Local: /,':');
  204. label=label.replace(/\)/,'');
  205. }
  206. pM.setParticipantIdToCrfEntry(pId);//no argument (should come from mode)
  207. pM.print(fName+" new value "+pId);
  208. pM.setLabelMode(label);
  209. pM.updateCrfEntry();
  210. }
  211. function setLabelMode(pId){
  212. let fName='[setLabelMode1]';
  213. let pM=this;
  214. let config=pM.config;
  215. pM.print(fName+' id '+pId);
  216. ids=pId.split(':');
  217. let textValue=pM.getTextElement();
  218. pM.print(fName+' textElement '+textValue);
  219. textValue.innerText=ids[0];
  220. if (pM.mode=="STUDY"){
  221. let loc=ids[1];
  222. //pM.getParticipantIdFromCrfEntry('LOCAL');
  223. pM.print(fName+' setting local id '+loc);
  224. let tValLocal=pM.getTextElement('LOCAL');
  225. tValLocal.innerText=loc;
  226. pM.setParticipantIdToCrfEntry(loc,'LOCAL');
  227. }
  228. let x=pM.getInputManage();//getInputManage
  229. if ("readOnly" in pM){
  230. x.style.display="none";
  231. }
  232. x.value="Edit";
  233. }
  234. //edit mode
  235. function editId(){
  236. let pM=this;
  237. pM.setEditMode();
  238. }
  239. function setEditMode(){
  240. let pM=this;
  241. let config=pM.config;
  242. let fName='[setEditMode1]';
  243. pM.print(fName+' pM '+pM+' mode '+pM.mode);
  244. //input
  245. let el=pM.getInputElement();
  246. let x=pM.getInputManage();
  247. x.value="Set";
  248. }
  249. //manage interaction to storage/CRF and study/LabKey
  250. function getParticipantField(config){
  251. return config.formConfig['studyDataAll'].rows[0]['SubjectColumnName'];
  252. }
  253. function getCrfEntryFieldName(mode="NONE"){
  254. let pM=this;
  255. let variable="Study";
  256. if (mode=="NONE") mode=pM.mode;
  257. if (mode=="LOCAL") variable="Local";
  258. return 'participant'+variable+'Id';
  259. }
  260. function setParticipantIdToCrfEntry(pId,mode="NONE"){
  261. let pM=this;
  262. let config=pM.config;
  263. config.formConfig.crfEntry[pM.getCrfEntryFieldName(mode)]=pId;
  264. }
  265. function getParticipantIdFromCrfEntry(mode="NONE"){
  266. let pM=this;
  267. let config=pM.config;
  268. return config.formConfig.crfEntry[pM.getCrfEntryFieldName(mode)];
  269. }
  270. //main interface. Use this to generate object and to refer to it later on
  271. function getParticipantManagerObject(config){
  272. let fName='[getParticipantManagerObject]';
  273. config.print(fName);
  274. if ("participantManager" in config) {
  275. let pM=config.participantManager;
  276. pM.updateElements();
  277. return pM;
  278. }
  279. let pM=new Object();
  280. //circular reference to traverse pM up and down
  281. config.participantManager=pM;
  282. pM.config=config;
  283. //config should have a print routine
  284. pM.print=config.print;
  285. //this never change
  286. pM.participantField=getParticipantField(config);
  287. pM.cellSelectorId=pM.participantField+"_cellSelect";
  288. pM.inputSelectorId=pM.participantField+"_Select";
  289. pM.textStudyId=pM.participantField+"_textStudy";
  290. pM.cellValueId=pM.participantField+"_cellValue";
  291. pM.inputValueId=pM.participantField+"_Value";
  292. pM.textLocalId=pM.participantField+"_textLocal";
  293. pM.inputManageLocalId=pM.participantField+"_ManageLocal";
  294. pM.inputManageStudyId=pM.participantField+"_ManageStudy";
  295. pM.mode="LOCAL";//or "STUDY"
  296. //add methods
  297. pM.getMode=getMode;
  298. //global methods that are not subject to mode modifier
  299. pM.updateElements=updateElements;
  300. pM.addSelectOptions=addSelectOptions;
  301. pM.generateEntryField=generateEntryField;
  302. //getters subject to mode
  303. pM.getInputId=getInputId;
  304. pM.getInputCell=getInputCell;
  305. pM.getInputElement=getInputElement;
  306. pM.getInputElementType=getInputElementType;
  307. pM.getTextFieldId=getTextFieldId;
  308. pM.getTextElement=getTextElement;
  309. pM.getInputManage=getInputManage;
  310. //callback
  311. pM.manageId=manageId;
  312. //set/label mode
  313. pM.setId=setId;
  314. pM.setLabelMode=setLabelMode;
  315. //edit mode
  316. pM.editId=editId;
  317. pM.setEditMode=setEditMode;
  318. //interact with storage/CRF and study/LabKey
  319. pM.setParticipantIdToCrfEntry=setParticipantIdToCrfEntry;
  320. pM.getParticipantIdFromCrfEntry=getParticipantIdFromCrfEntry;
  321. pM.getCrfEntryFieldName=getCrfEntryFieldName;
  322. //init
  323. pM.generateEntryField();
  324. pM.updateElements();
  325. return pM;
  326. }