participantIdManager.js 11 KB

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