generateRegistration.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. function selectRows(cb){
  2. this.config.print(this.fName+": selectRows");
  3. let xRows=new Object();
  4. xRows.schemaName=this.schemaName;
  5. xRows.queryName=this.queryName;
  6. xRows.success=function(data){this.generateId(data);};
  7. xRows.failure=function(errorInfo){this.fail(errorInfo);};
  8. LABKEY.Query.selectRows(xRows);
  9. this.config.print(this.fName+": selectRows completed");
  10. }
  11. function insertRows(rows){
  12. this.config.print(this.fName+": insertRows");
  13. let iRows=new Object();
  14. iRows.schemaName=this.schemaName;
  15. iRows.queryName=this.queryName;
  16. iRows.rows=rows;
  17. iRows.success=doNothing;
  18. LABKEY.Query.insertRows(iRows);
  19. }
  20. function zeroPad(val,strLength=3){
  21. let strK=val.toString();
  22. return strK.padStart(strLength,'0');
  23. }
  24. function findFirstAvailableKey(rows){
  25. let k=-1;
  26. for (let i=0;i<rows.length;i++){
  27. if (rows[i]['Key']>k){
  28. k=rows[i]['Key'];
  29. }
  30. }
  31. this.config.print(this.fName+': Key candidate: '+(k+1));
  32. return k+1;
  33. }
  34. function generateObjectAtKey(k){
  35. let regCode=this.codeBase+this.zeroPad(k);
  36. this.config.print(this.fName+": regCode "+regCode);
  37. let row=new Object();
  38. row['Key']=k;
  39. row[this.codeField]=regCode;
  40. return row;
  41. }
  42. function getCode(row){
  43. return row[this.codeField];
  44. }
  45. function updateField(text){
  46. let el=this.config.document.getElementById(this.elementId);
  47. el.value=text;
  48. }
  49. function generateId(data){
  50. this.config.print(this.fName+": generateId "+data.rows.length);
  51. //let k=this.findFirstAvailableKey(data.rows);
  52. //let row=this.generateObjectAtKey(k);
  53. //this.updateField(this.getCode(row));
  54. //let rows=new Array();
  55. //rows.push(row);
  56. //this.insertRows(rows);
  57. }
  58. function doNothing(data){
  59. }
  60. function fail(errorInfo){
  61. this.config.print(this.fName+": error "+errorInfo.exception);
  62. }
  63. function execute(){
  64. this.config.print(this.fName+": execute");
  65. this.selectRows(function(data){this.generateId(data);});
  66. }
  67. function inspect(){
  68. this.config.print(this.fName);
  69. this.config.print("query: "+this.schemaName+'/'+this.queryName);
  70. this.config.print("codeBase "+this.codeBase+" codeField "+this.codeField);
  71. this.config.print("version 24");
  72. }
  73. //generic function for all functors
  74. //config is there by default
  75. //
  76. //pars is semicolon delimeted list of parName=value pairs;
  77. //required:
  78. //codeBase - prepend ids with this set of letters
  79. //schemaName - schema of queryName
  80. //queryName - query that keeps assigned ids
  81. //codeField - id field in queryName
  82. //
  83. //outputId is the field that gets updated with the button result
  84. //
  85. //object is initialized from a list in LabKey
  86. //
  87. function getGenerationObject(config,qPar,outputId){
  88. let gObj=new Object();
  89. gObj.config=config;
  90. gObj.insertRows=insertRows;
  91. gObj.selectRows=selectRows;
  92. gObj.zeroPad=zeroPad;
  93. gObj.findFirstAvailableKey=findFirstAvailableKey;
  94. gObj.generateObjectAtKey=generateObjectAtKey;
  95. gObj.getCode=getCode;
  96. gObj.updateField=updateField;
  97. gObj.generateId=generateId;
  98. gObj.codeBase=qPar["codeBase"];
  99. gObj.schemaName=qPar["schemaName"];
  100. gObj.queryName=qPar["queryName"];
  101. gObj.codeField=qPar["codeField"];
  102. gObj.elementId=outputId;
  103. gObj.execute=execute;
  104. gObj.inspect=inspect;
  105. gObj.fName="[generateRegistration]";
  106. gObj.fail=fail;
  107. //should set codeBase and elementId after initialization
  108. return gObj;
  109. }