tango-app-ui-analyse-trax 3.9.3 → 3.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (470) hide show
  1. package/esm2022/lib/components/action-centre/action-centre.component.mjs +288 -0
  2. package/esm2022/lib/components/activity-log/activity-log.component.mjs +150 -0
  3. package/esm2022/lib/components/activity-log-v2/activity-log-v2.component.mjs +502 -0
  4. package/esm2022/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.mjs +114 -0
  5. package/esm2022/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.mjs +24 -0
  6. package/esm2022/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.mjs +126 -0
  7. package/esm2022/lib/components/add-checklist/add-checklist.component.mjs +2352 -0
  8. package/esm2022/lib/components/add-checklist/checklist-popup/checklist-popup.component.mjs +612 -0
  9. package/esm2022/lib/components/add-checklist/counter/counter.component.mjs +138 -0
  10. package/esm2022/lib/components/add-multitask/add-multitask.component.mjs +604 -0
  11. package/esm2022/lib/components/add-multitask/ascending-validator.mjs +11 -0
  12. package/esm2022/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.mjs +297 -0
  13. package/esm2022/lib/components/add-multitask/create-task.data.mjs +372 -0
  14. package/esm2022/lib/components/add-multitask/create-task.interface.mjs +2 -0
  15. package/esm2022/lib/components/add-multitask/unique-string-validator.mjs +10 -0
  16. package/esm2022/lib/components/add-multitask/whitespace-validator.mjs +10 -0
  17. package/esm2022/lib/components/add-task/add-task.component.mjs +561 -0
  18. package/esm2022/lib/components/add-task/ascending-validator.mjs +11 -0
  19. package/esm2022/lib/components/add-task/create-task.data.mjs +372 -0
  20. package/esm2022/lib/components/add-task/create-task.interface.mjs +2 -0
  21. package/esm2022/lib/components/add-task/unique-string-validator.mjs +10 -0
  22. package/esm2022/lib/components/add-task/whitespace-validator.mjs +10 -0
  23. package/esm2022/lib/components/approval-popup/approval-popup.component.mjs +30 -0
  24. package/esm2022/lib/components/checklist/checklist.component.mjs +327 -0
  25. package/esm2022/lib/components/checklist-configure/assign/assign.component.mjs +912 -0
  26. package/esm2022/lib/components/checklist-configure/checklist-configure.component.mjs +4164 -0
  27. package/esm2022/lib/components/checklistlayout/checklistlayout.component.mjs +44 -0
  28. package/esm2022/lib/components/chip-dropdown/chip-dropdown.component.mjs +120 -0
  29. package/esm2022/lib/components/create-task/create-task.component.mjs +585 -0
  30. package/esm2022/lib/components/create-task/create-task.data.mjs +372 -0
  31. package/esm2022/lib/components/create-task/create-task.interface.mjs +2 -0
  32. package/esm2022/lib/components/create-task/validators/ascending-validator.mjs +11 -0
  33. package/esm2022/lib/components/create-task/validators/unique-string-validator.mjs +10 -0
  34. package/esm2022/lib/components/create-task/validators/whitespace-validator.mjs +10 -0
  35. package/esm2022/lib/components/custom-select/custom-select.component.mjs +240 -0
  36. package/esm2022/lib/components/dashboard/dashboard.component.mjs +532 -0
  37. package/esm2022/lib/components/dashboard-info/dashboard-info.component.mjs +741 -0
  38. package/esm2022/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.mjs +155 -0
  39. package/esm2022/lib/components/dashboard-layout/dashboard-layout.component.mjs +12 -0
  40. package/esm2022/lib/components/disabled-select/disabled-select.component.mjs +158 -0
  41. package/esm2022/lib/components/export-gallery/export-gallery.component.mjs +266 -0
  42. package/esm2022/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.mjs +105 -0
  43. package/esm2022/lib/components/eye-test-audit/custom-select/custom-select.component.mjs +240 -0
  44. package/esm2022/lib/components/eye-test-audit/eye-test/eye-test.component.mjs +1733 -0
  45. package/esm2022/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.mjs +24 -0
  46. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.mjs +34 -0
  47. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.mjs +27 -0
  48. package/esm2022/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.mjs +71 -0
  49. package/esm2022/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.mjs +823 -0
  50. package/esm2022/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.mjs +412 -0
  51. package/esm2022/lib/components/eye-test-audit/group-select/group-select.component.mjs +157 -0
  52. package/esm2022/lib/components/eye-test-audit/reactive-select/reactive-select.component.mjs +105 -0
  53. package/esm2022/lib/components/eye-test-audit/select-drop/select-drop.component.mjs +162 -0
  54. package/esm2022/lib/components/eye-test-audit/services/eye-test-audit.service.mjs +166 -0
  55. package/esm2022/lib/components/flag-layout/flag-layout.component.mjs +12 -0
  56. package/esm2022/lib/components/flags/flags.component.mjs +263 -0
  57. package/esm2022/lib/components/flags/flags.interface.mjs +2 -0
  58. package/esm2022/lib/components/flags-info/flags-info.component.mjs +452 -0
  59. package/esm2022/lib/components/flags-info/flags-info.interface.mjs +2 -0
  60. package/esm2022/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.mjs +71 -0
  61. package/esm2022/lib/components/flags-new/flags-new.component.mjs +335 -0
  62. package/esm2022/lib/components/flags-new/flags-new.interface.mjs +2 -0
  63. package/esm2022/lib/components/gallery/gallery.component.mjs +3402 -0
  64. package/esm2022/lib/components/group-select/group-select.component.mjs +155 -0
  65. package/esm2022/lib/components/image-popup/image-popup.component.mjs +25 -0
  66. package/esm2022/lib/components/lib/custom-select/custom-select.component.mjs +158 -0
  67. package/esm2022/lib/components/manage-task/manage-task.component.mjs +264 -0
  68. package/esm2022/lib/components/managechecklist/managechecklist.component.mjs +186 -0
  69. package/esm2022/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.mjs +229 -0
  70. package/esm2022/lib/components/multi-date-datepicker/multi-date-datepicker.component.mjs +124 -0
  71. package/esm2022/lib/components/orders/orders.component.mjs +171 -0
  72. package/esm2022/lib/components/pagination/pagination.component.mjs +62 -0
  73. package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +108 -0
  74. package/esm2022/lib/components/reports/date-picker/date-picker.component.mjs +60 -0
  75. package/esm2022/lib/components/reports/reports.component.mjs +300 -0
  76. package/esm2022/lib/components/reports/reports.interface.mjs +2 -0
  77. package/esm2022/lib/components/tango-analyse-trax/tango-analyse-trax.component.mjs +32 -0
  78. package/esm2022/lib/components/task/task.component.mjs +341 -0
  79. package/esm2022/lib/components/task-configure/task-configure.component.mjs +1532 -0
  80. package/esm2022/lib/components/task-configure/task-configure.interface.mjs +2 -0
  81. package/esm2022/lib/components/task-info/task-info.component.mjs +375 -0
  82. package/esm2022/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.mjs +208 -0
  83. package/esm2022/lib/components/task-layout/task-layout.component.mjs +12 -0
  84. package/esm2022/lib/components/task-logs/task-logs.component.mjs +104 -0
  85. package/esm2022/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.mjs +107 -0
  86. package/esm2022/lib/components/trax-store/trax-store.component.mjs +179 -0
  87. package/esm2022/lib/components/traxpopup/traxpopup.component.mjs +70 -0
  88. package/esm2022/lib/services/trax.service.mjs +559 -0
  89. package/esm2022/lib/tango-analyse-trax-routing.module.mjs +153 -0
  90. package/esm2022/lib/tango-analyse-trax.module.mjs +221 -0
  91. package/esm2022/public-api.mjs +6 -0
  92. package/esm2022/tango-app-ui-analyse-trax.mjs +5 -0
  93. package/fesm2022/tango-app-ui-analyse-trax.mjs +28899 -0
  94. package/fesm2022/tango-app-ui-analyse-trax.mjs.map +1 -0
  95. package/index.d.ts +5 -0
  96. package/lib/components/action-centre/action-centre.component.d.ts +68 -0
  97. package/lib/components/activity-log/activity-log.component.d.ts +39 -0
  98. package/lib/components/activity-log-v2/activity-log-v2.component.d.ts +78 -0
  99. package/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.d.ts +24 -0
  100. package/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.d.ts +9 -0
  101. package/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.d.ts +34 -0
  102. package/lib/components/add-checklist/add-checklist.component.d.ts +121 -0
  103. package/lib/components/add-checklist/checklist-popup/checklist-popup.component.d.ts +45 -0
  104. package/lib/components/add-checklist/counter/counter.component.d.ts +29 -0
  105. package/lib/components/add-multitask/add-multitask.component.d.ts +102 -0
  106. package/lib/components/add-multitask/ascending-validator.d.ts +2 -0
  107. package/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.d.ts +45 -0
  108. package/lib/components/add-multitask/create-task.data.d.ts +293 -0
  109. package/lib/components/add-multitask/create-task.interface.d.ts +159 -0
  110. package/lib/components/add-multitask/unique-string-validator.d.ts +2 -0
  111. package/lib/components/add-multitask/whitespace-validator.d.ts +2 -0
  112. package/lib/components/add-task/add-task.component.d.ts +89 -0
  113. package/lib/components/add-task/ascending-validator.d.ts +2 -0
  114. package/lib/components/add-task/create-task.data.d.ts +293 -0
  115. package/lib/components/add-task/create-task.interface.d.ts +161 -0
  116. package/lib/components/add-task/unique-string-validator.d.ts +2 -0
  117. package/lib/components/add-task/whitespace-validator.d.ts +2 -0
  118. package/lib/components/approval-popup/approval-popup.component.d.ts +14 -0
  119. package/lib/components/checklist/checklist.component.d.ts +40 -0
  120. package/lib/components/checklist-configure/assign/assign.component.d.ts +105 -0
  121. package/lib/components/checklist-configure/checklist-configure.component.d.ts +325 -0
  122. package/lib/components/checklistlayout/checklistlayout.component.d.ts +15 -0
  123. package/lib/components/chip-dropdown/chip-dropdown.component.d.ts +28 -0
  124. package/lib/components/create-task/create-task.component.d.ts +76 -0
  125. package/lib/components/create-task/create-task.data.d.ts +293 -0
  126. package/lib/components/create-task/create-task.interface.d.ts +163 -0
  127. package/lib/components/create-task/validators/ascending-validator.d.ts +2 -0
  128. package/lib/components/create-task/validators/unique-string-validator.d.ts +2 -0
  129. package/lib/components/create-task/validators/whitespace-validator.d.ts +2 -0
  130. package/lib/components/custom-select/custom-select.component.d.ts +35 -0
  131. package/lib/components/dashboard/dashboard.component.d.ts +80 -0
  132. package/lib/components/dashboard-info/dashboard-info.component.d.ts +117 -0
  133. package/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.d.ts +41 -0
  134. package/lib/components/dashboard-layout/dashboard-layout.component.d.ts +5 -0
  135. package/lib/components/disabled-select/disabled-select.component.d.ts +34 -0
  136. package/lib/components/export-gallery/export-gallery.component.d.ts +44 -0
  137. package/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.d.ts +26 -0
  138. package/lib/components/eye-test-audit/custom-select/custom-select.component.d.ts +35 -0
  139. package/lib/components/eye-test-audit/eye-test/eye-test.component.d.ts +218 -0
  140. package/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.d.ts +12 -0
  141. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.d.ts +7 -0
  142. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.d.ts +11 -0
  143. package/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.d.ts +21 -0
  144. package/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.d.ts +129 -0
  145. package/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.d.ts +86 -0
  146. package/lib/components/eye-test-audit/group-select/group-select.component.d.ts +33 -0
  147. package/lib/components/eye-test-audit/reactive-select/reactive-select.component.d.ts +32 -0
  148. package/lib/components/eye-test-audit/select-drop/select-drop.component.d.ts +33 -0
  149. package/lib/components/eye-test-audit/services/eye-test-audit.service.d.ts +47 -0
  150. package/lib/components/flag-layout/flag-layout.component.d.ts +5 -0
  151. package/lib/components/flags/flags.component.d.ts +52 -0
  152. package/{src/lib/components/flags/flags.interface.ts → lib/components/flags/flags.interface.d.ts} +65 -73
  153. package/lib/components/flags-info/flags-info.component.d.ts +73 -0
  154. package/lib/components/flags-info/flags-info.interface.d.ts +431 -0
  155. package/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.d.ts +13 -0
  156. package/lib/components/flags-new/flags-new.component.d.ts +60 -0
  157. package/{src/lib/components/flags-new/flags-new.interface.ts → lib/components/flags-new/flags-new.interface.d.ts} +81 -90
  158. package/lib/components/gallery/gallery.component.d.ts +261 -0
  159. package/lib/components/group-select/group-select.component.d.ts +33 -0
  160. package/lib/components/image-popup/image-popup.component.d.ts +11 -0
  161. package/lib/components/lib/custom-select/custom-select.component.d.ts +33 -0
  162. package/lib/components/manage-task/manage-task.component.d.ts +47 -0
  163. package/lib/components/managechecklist/managechecklist.component.d.ts +33 -0
  164. package/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.d.ts +40 -0
  165. package/lib/components/multi-date-datepicker/multi-date-datepicker.component.d.ts +27 -0
  166. package/lib/components/orders/orders.component.d.ts +38 -0
  167. package/lib/components/pagination/pagination.component.d.ts +16 -0
  168. package/lib/components/reactive-select/reactive-select.component.d.ts +32 -0
  169. package/lib/components/reports/date-picker/date-picker.component.d.ts +23 -0
  170. package/lib/components/reports/reports.component.d.ts +55 -0
  171. package/{src/lib/components/reports/reports.interface.ts → lib/components/reports/reports.interface.d.ts} +46 -50
  172. package/lib/components/tango-analyse-trax/tango-analyse-trax.component.d.ts +14 -0
  173. package/lib/components/task/task.component.d.ts +70 -0
  174. package/lib/components/task-configure/task-configure.component.d.ts +142 -0
  175. package/lib/components/task-configure/task-configure.interface.d.ts +128 -0
  176. package/lib/components/task-info/task-info.component.d.ts +76 -0
  177. package/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.d.ts +61 -0
  178. package/lib/components/task-layout/task-layout.component.d.ts +5 -0
  179. package/lib/components/task-logs/task-logs.component.d.ts +27 -0
  180. package/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.d.ts +26 -0
  181. package/lib/components/trax-store/trax-store.component.d.ts +45 -0
  182. package/lib/components/traxpopup/traxpopup.component.d.ts +24 -0
  183. package/lib/services/trax.service.d.ts +175 -0
  184. package/lib/tango-analyse-trax-routing.module.d.ts +7 -0
  185. package/lib/tango-analyse-trax.module.d.ts +68 -0
  186. package/package.json +25 -12
  187. package/{src/public-api.ts → public-api.d.ts} +2 -6
  188. package/.eslintrc.json +0 -37
  189. package/ng-package.json +0 -7
  190. package/src/lib/components/action-centre/action-centre.component.html +0 -607
  191. package/src/lib/components/action-centre/action-centre.component.scss +0 -185
  192. package/src/lib/components/action-centre/action-centre.component.spec.ts +0 -23
  193. package/src/lib/components/action-centre/action-centre.component.ts +0 -279
  194. package/src/lib/components/activity-log/activity-log.component.html +0 -84
  195. package/src/lib/components/activity-log/activity-log.component.scss +0 -33
  196. package/src/lib/components/activity-log/activity-log.component.spec.ts +0 -23
  197. package/src/lib/components/activity-log/activity-log.component.ts +0 -137
  198. package/src/lib/components/activity-log-v2/activity-log-v2.component.html +0 -189
  199. package/src/lib/components/activity-log-v2/activity-log-v2.component.scss +0 -162
  200. package/src/lib/components/activity-log-v2/activity-log-v2.component.spec.ts +0 -23
  201. package/src/lib/components/activity-log-v2/activity-log-v2.component.ts +0 -517
  202. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.html +0 -19
  203. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.scss +0 -148
  204. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.spec.ts +0 -23
  205. package/src/lib/components/activity-log-v2/log-view-popup/date-range-picker/date-range-picker.component.ts +0 -141
  206. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.html +0 -42
  207. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.scss +0 -49
  208. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.spec.ts +0 -23
  209. package/src/lib/components/activity-log-v2/log-view-popup/store-user-dropdown/store-user-dropdown.component.ts +0 -22
  210. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.html +0 -724
  211. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.scss +0 -217
  212. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.spec.ts +0 -23
  213. package/src/lib/components/activity-log-v2/log-view-popup/view-action/view-action.component.ts +0 -122
  214. package/src/lib/components/add-checklist/add-checklist.component.html +0 -1459
  215. package/src/lib/components/add-checklist/add-checklist.component.scss +0 -1205
  216. package/src/lib/components/add-checklist/add-checklist.component.spec.ts +0 -23
  217. package/src/lib/components/add-checklist/add-checklist.component.ts +0 -2460
  218. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.html +0 -207
  219. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.scss +0 -213
  220. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.spec.ts +0 -23
  221. package/src/lib/components/add-checklist/checklist-popup/checklist-popup.component.ts +0 -621
  222. package/src/lib/components/add-checklist/counter/counter.component.html +0 -43
  223. package/src/lib/components/add-checklist/counter/counter.component.scss +0 -49
  224. package/src/lib/components/add-checklist/counter/counter.component.spec.ts +0 -23
  225. package/src/lib/components/add-checklist/counter/counter.component.ts +0 -123
  226. package/src/lib/components/add-multitask/add-multitask.component.html +0 -705
  227. package/src/lib/components/add-multitask/add-multitask.component.scss +0 -296
  228. package/src/lib/components/add-multitask/add-multitask.component.spec.ts +0 -23
  229. package/src/lib/components/add-multitask/add-multitask.component.ts +0 -611
  230. package/src/lib/components/add-multitask/ascending-validator.ts +0 -13
  231. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.html +0 -197
  232. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.scss +0 -31
  233. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.spec.ts +0 -23
  234. package/src/lib/components/add-multitask/bulkcreationmodel/bulkcreationmodel.component.ts +0 -285
  235. package/src/lib/components/add-multitask/create-task.data.ts +0 -374
  236. package/src/lib/components/add-multitask/create-task.interface.ts +0 -177
  237. package/src/lib/components/add-multitask/unique-string-validator.ts +0 -13
  238. package/src/lib/components/add-multitask/whitespace-validator.ts +0 -11
  239. package/src/lib/components/add-task/add-task.component.html +0 -654
  240. package/src/lib/components/add-task/add-task.component.scss +0 -536
  241. package/src/lib/components/add-task/add-task.component.spec.ts +0 -23
  242. package/src/lib/components/add-task/add-task.component.ts +0 -569
  243. package/src/lib/components/add-task/ascending-validator.ts +0 -13
  244. package/src/lib/components/add-task/create-task.data.ts +0 -374
  245. package/src/lib/components/add-task/create-task.interface.ts +0 -192
  246. package/src/lib/components/add-task/unique-string-validator.ts +0 -13
  247. package/src/lib/components/add-task/whitespace-validator.ts +0 -11
  248. package/src/lib/components/approval-popup/approval-popup.component.html +0 -25
  249. package/src/lib/components/approval-popup/approval-popup.component.scss +0 -3
  250. package/src/lib/components/approval-popup/approval-popup.component.spec.ts +0 -23
  251. package/src/lib/components/approval-popup/approval-popup.component.ts +0 -26
  252. package/src/lib/components/checklist/checklist.component.html +0 -330
  253. package/src/lib/components/checklist/checklist.component.scss +0 -112
  254. package/src/lib/components/checklist/checklist.component.spec.ts +0 -23
  255. package/src/lib/components/checklist/checklist.component.ts +0 -344
  256. package/src/lib/components/checklist-configure/assign/assign.component.html +0 -665
  257. package/src/lib/components/checklist-configure/assign/assign.component.scss +0 -219
  258. package/src/lib/components/checklist-configure/assign/assign.component.spec.ts +0 -23
  259. package/src/lib/components/checklist-configure/assign/assign.component.ts +0 -932
  260. package/src/lib/components/checklist-configure/checklist-configure.component.html +0 -4340
  261. package/src/lib/components/checklist-configure/checklist-configure.component.scss +0 -2338
  262. package/src/lib/components/checklist-configure/checklist-configure.component.spec.ts +0 -23
  263. package/src/lib/components/checklist-configure/checklist-configure.component.ts +0 -4659
  264. package/src/lib/components/checklistlayout/checklistlayout.component.html +0 -30
  265. package/src/lib/components/checklistlayout/checklistlayout.component.scss +0 -15
  266. package/src/lib/components/checklistlayout/checklistlayout.component.spec.ts +0 -23
  267. package/src/lib/components/checklistlayout/checklistlayout.component.ts +0 -47
  268. package/src/lib/components/chip-dropdown/chip-dropdown.component.html +0 -36
  269. package/src/lib/components/chip-dropdown/chip-dropdown.component.scss +0 -97
  270. package/src/lib/components/chip-dropdown/chip-dropdown.component.spec.ts +0 -23
  271. package/src/lib/components/chip-dropdown/chip-dropdown.component.ts +0 -125
  272. package/src/lib/components/create-task/create-task.component.html +0 -2003
  273. package/src/lib/components/create-task/create-task.component.scss +0 -272
  274. package/src/lib/components/create-task/create-task.component.spec.ts +0 -23
  275. package/src/lib/components/create-task/create-task.component.ts +0 -614
  276. package/src/lib/components/create-task/create-task.data.ts +0 -372
  277. package/src/lib/components/create-task/create-task.interface.ts +0 -182
  278. package/src/lib/components/create-task/validators/ascending-validator.ts +0 -13
  279. package/src/lib/components/create-task/validators/unique-string-validator.ts +0 -13
  280. package/src/lib/components/create-task/validators/whitespace-validator.ts +0 -11
  281. package/src/lib/components/custom-select/custom-select.component.html +0 -44
  282. package/src/lib/components/custom-select/custom-select.component.scss +0 -144
  283. package/src/lib/components/custom-select/custom-select.component.spec.ts +0 -23
  284. package/src/lib/components/custom-select/custom-select.component.ts +0 -265
  285. package/src/lib/components/dashboard/dashboard.component.html +0 -1076
  286. package/src/lib/components/dashboard/dashboard.component.scss +0 -237
  287. package/src/lib/components/dashboard/dashboard.component.spec.ts +0 -23
  288. package/src/lib/components/dashboard/dashboard.component.ts +0 -539
  289. package/src/lib/components/dashboard-info/dashboard-info.component.html +0 -1420
  290. package/src/lib/components/dashboard-info/dashboard-info.component.scss +0 -409
  291. package/src/lib/components/dashboard-info/dashboard-info.component.spec.ts +0 -23
  292. package/src/lib/components/dashboard-info/dashboard-info.component.ts +0 -772
  293. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.html +0 -110
  294. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.scss +0 -260
  295. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.spec.ts +0 -23
  296. package/src/lib/components/dashboard-info/monthlyperformance-datepicker/monthlyperformance-datepicker.component.ts +0 -143
  297. package/src/lib/components/dashboard-layout/dashboard-layout.component.html +0 -1
  298. package/src/lib/components/dashboard-layout/dashboard-layout.component.scss +0 -0
  299. package/src/lib/components/dashboard-layout/dashboard-layout.component.spec.ts +0 -23
  300. package/src/lib/components/dashboard-layout/dashboard-layout.component.ts +0 -10
  301. package/src/lib/components/disabled-select/disabled-select.component.html +0 -44
  302. package/src/lib/components/disabled-select/disabled-select.component.scss +0 -149
  303. package/src/lib/components/disabled-select/disabled-select.component.spec.ts +0 -23
  304. package/src/lib/components/disabled-select/disabled-select.component.ts +0 -146
  305. package/src/lib/components/export-gallery/export-gallery.component.html +0 -175
  306. package/src/lib/components/export-gallery/export-gallery.component.scss +0 -200
  307. package/src/lib/components/export-gallery/export-gallery.component.spec.ts +0 -23
  308. package/src/lib/components/export-gallery/export-gallery.component.ts +0 -263
  309. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.html +0 -36
  310. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.scss +0 -97
  311. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.spec.ts +0 -23
  312. package/src/lib/components/eye-test-audit/chip-dropdown/chip-dropdown.component.ts +0 -104
  313. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.html +0 -44
  314. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.scss +0 -144
  315. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.spec.ts +0 -23
  316. package/src/lib/components/eye-test-audit/custom-select/custom-select.component.ts +0 -265
  317. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.html +0 -1804
  318. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.scss +0 -806
  319. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.spec.ts +0 -23
  320. package/src/lib/components/eye-test-audit/eye-test/eye-test.component.ts +0 -1890
  321. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.html +0 -25
  322. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.scss +0 -0
  323. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.spec.ts +0 -23
  324. package/src/lib/components/eye-test-audit/eye-test/send-alert/send-alert.component.ts +0 -20
  325. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit-routing.module.ts +0 -26
  326. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.html +0 -1
  327. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.scss +0 -0
  328. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.spec.ts +0 -23
  329. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.component.ts +0 -24
  330. package/src/lib/components/eye-test-audit/eye-test-audit/eye-test-audit.module.ts +0 -44
  331. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.html +0 -490
  332. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.scss +0 -721
  333. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.spec.ts +0 -23
  334. package/src/lib/components/eye-test-audit/eye-test-audit/settings-audit/settings-audit.component.ts +0 -1017
  335. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.html +0 -708
  336. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.scss +0 -247
  337. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.spec.ts +0 -23
  338. package/src/lib/components/eye-test-audit/eye-test-audit/start-audit/start-audit.component.ts +0 -446
  339. package/src/lib/components/eye-test-audit/group-select/group-select.component.html +0 -44
  340. package/src/lib/components/eye-test-audit/group-select/group-select.component.scss +0 -144
  341. package/src/lib/components/eye-test-audit/group-select/group-select.component.spec.ts +0 -23
  342. package/src/lib/components/eye-test-audit/group-select/group-select.component.ts +0 -147
  343. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.html +0 -18
  344. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.scss +0 -49
  345. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.spec.ts +0 -23
  346. package/src/lib/components/eye-test-audit/reactive-select/reactive-select.component.ts +0 -104
  347. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.html +0 -44
  348. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.scss +0 -144
  349. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.spec.ts +0 -23
  350. package/src/lib/components/eye-test-audit/select-drop/select-drop.component.ts +0 -152
  351. package/src/lib/components/eye-test-audit/services/eye-test-audit.service.spec.ts +0 -16
  352. package/src/lib/components/eye-test-audit/services/eye-test-audit.service.ts +0 -190
  353. package/src/lib/components/flag-layout/flag-layout.component.html +0 -1
  354. package/src/lib/components/flag-layout/flag-layout.component.scss +0 -0
  355. package/src/lib/components/flag-layout/flag-layout.component.spec.ts +0 -23
  356. package/src/lib/components/flag-layout/flag-layout.component.ts +0 -10
  357. package/src/lib/components/flags/flags.component.html +0 -473
  358. package/src/lib/components/flags/flags.component.scss +0 -86
  359. package/src/lib/components/flags/flags.component.spec.ts +0 -23
  360. package/src/lib/components/flags/flags.component.ts +0 -280
  361. package/src/lib/components/flags-info/flags-info.component.html +0 -6012
  362. package/src/lib/components/flags-info/flags-info.component.scss +0 -278
  363. package/src/lib/components/flags-info/flags-info.component.spec.ts +0 -23
  364. package/src/lib/components/flags-info/flags-info.component.ts +0 -490
  365. package/src/lib/components/flags-info/flags-info.interface.ts +0 -441
  366. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.html +0 -1
  367. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.scss +0 -4
  368. package/src/lib/components/flags-info/unattended-pie-chart/unattended-pie-chart.component.ts +0 -78
  369. package/src/lib/components/flags-new/flags-new.component.html +0 -904
  370. package/src/lib/components/flags-new/flags-new.component.scss +0 -121
  371. package/src/lib/components/flags-new/flags-new.component.spec.ts +0 -23
  372. package/src/lib/components/flags-new/flags-new.component.ts +0 -357
  373. package/src/lib/components/gallery/gallery.component.html +0 -3660
  374. package/src/lib/components/gallery/gallery.component.scss +0 -930
  375. package/src/lib/components/gallery/gallery.component.ts +0 -3527
  376. package/src/lib/components/group-select/group-select.component.html +0 -44
  377. package/src/lib/components/group-select/group-select.component.scss +0 -144
  378. package/src/lib/components/group-select/group-select.component.spec.ts +0 -23
  379. package/src/lib/components/group-select/group-select.component.ts +0 -145
  380. package/src/lib/components/image-popup/image-popup.component.html +0 -11
  381. package/src/lib/components/image-popup/image-popup.component.scss +0 -5
  382. package/src/lib/components/image-popup/image-popup.component.ts +0 -18
  383. package/src/lib/components/lib/custom-select/custom-select.component.html +0 -42
  384. package/src/lib/components/lib/custom-select/custom-select.component.scss +0 -131
  385. package/src/lib/components/lib/custom-select/custom-select.component.spec.ts +0 -23
  386. package/src/lib/components/lib/custom-select/custom-select.component.ts +0 -151
  387. package/src/lib/components/manage-task/manage-task.component.html +0 -265
  388. package/src/lib/components/manage-task/manage-task.component.scss +0 -69
  389. package/src/lib/components/manage-task/manage-task.component.spec.ts +0 -23
  390. package/src/lib/components/manage-task/manage-task.component.ts +0 -267
  391. package/src/lib/components/managechecklist/managechecklist.component.html +0 -176
  392. package/src/lib/components/managechecklist/managechecklist.component.scss +0 -43
  393. package/src/lib/components/managechecklist/managechecklist.component.spec.ts +0 -23
  394. package/src/lib/components/managechecklist/managechecklist.component.ts +0 -176
  395. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.html +0 -46
  396. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.scss +0 -181
  397. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.spec.ts +0 -23
  398. package/src/lib/components/multi-chip-dropdown/multi-chip-dropdown.component.ts +0 -221
  399. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.html +0 -36
  400. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.scss +0 -89
  401. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.spec.ts +0 -23
  402. package/src/lib/components/multi-date-datepicker/multi-date-datepicker.component.ts +0 -118
  403. package/src/lib/components/orders/orders.component.html +0 -203
  404. package/src/lib/components/orders/orders.component.scss +0 -180
  405. package/src/lib/components/orders/orders.component.spec.ts +0 -25
  406. package/src/lib/components/orders/orders.component.ts +0 -197
  407. package/src/lib/components/pagination/pagination.component.html +0 -28
  408. package/src/lib/components/pagination/pagination.component.scss +0 -6
  409. package/src/lib/components/pagination/pagination.component.spec.ts +0 -23
  410. package/src/lib/components/pagination/pagination.component.ts +0 -54
  411. package/src/lib/components/reactive-select/reactive-select.component.html +0 -18
  412. package/src/lib/components/reactive-select/reactive-select.component.scss +0 -48
  413. package/src/lib/components/reactive-select/reactive-select.component.spec.ts +0 -23
  414. package/src/lib/components/reactive-select/reactive-select.component.ts +0 -104
  415. package/src/lib/components/reports/date-picker/date-picker.component.html +0 -54
  416. package/src/lib/components/reports/date-picker/date-picker.component.scss +0 -156
  417. package/src/lib/components/reports/date-picker/date-picker.component.spec.ts +0 -23
  418. package/src/lib/components/reports/date-picker/date-picker.component.ts +0 -60
  419. package/src/lib/components/reports/reports.component.html +0 -225
  420. package/src/lib/components/reports/reports.component.scss +0 -69
  421. package/src/lib/components/reports/reports.component.spec.ts +0 -23
  422. package/src/lib/components/reports/reports.component.ts +0 -334
  423. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.html +0 -1
  424. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.scss +0 -15
  425. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.spec.ts +0 -23
  426. package/src/lib/components/tango-analyse-trax/tango-analyse-trax.component.ts +0 -31
  427. package/src/lib/components/task/task.component.html +0 -322
  428. package/src/lib/components/task/task.component.scss +0 -169
  429. package/src/lib/components/task/task.component.spec.ts +0 -23
  430. package/src/lib/components/task/task.component.ts +0 -340
  431. package/src/lib/components/task-configure/task-configure.component.html +0 -737
  432. package/src/lib/components/task-configure/task-configure.component.scss +0 -569
  433. package/src/lib/components/task-configure/task-configure.component.spec.ts +0 -23
  434. package/src/lib/components/task-configure/task-configure.component.ts +0 -1603
  435. package/src/lib/components/task-configure/task-configure.interface.ts +0 -138
  436. package/src/lib/components/task-info/task-info.component.html +0 -390
  437. package/src/lib/components/task-info/task-info.component.scss +0 -56
  438. package/src/lib/components/task-info/task-info.component.spec.ts +0 -23
  439. package/src/lib/components/task-info/task-info.component.ts +0 -400
  440. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.html +0 -141
  441. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.scss +0 -460
  442. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.spec.ts +0 -23
  443. package/src/lib/components/task-info/taskinfo-edit/taskinfo-edit.component.ts +0 -202
  444. package/src/lib/components/task-layout/task-layout.component.html +0 -1
  445. package/src/lib/components/task-layout/task-layout.component.scss +0 -0
  446. package/src/lib/components/task-layout/task-layout.component.spec.ts +0 -23
  447. package/src/lib/components/task-layout/task-layout.component.ts +0 -10
  448. package/src/lib/components/task-logs/task-logs.component.html +0 -97
  449. package/src/lib/components/task-logs/task-logs.component.scss +0 -301
  450. package/src/lib/components/task-logs/task-logs.component.spec.ts +0 -23
  451. package/src/lib/components/task-logs/task-logs.component.ts +0 -80
  452. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.html +0 -84
  453. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.scss +0 -229
  454. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.spec.ts +0 -23
  455. package/src/lib/components/trax-run-ai-popup/trax-run-ai-popup.component.ts +0 -111
  456. package/src/lib/components/trax-store/trax-store.component.html +0 -78
  457. package/src/lib/components/trax-store/trax-store.component.scss +0 -134
  458. package/src/lib/components/trax-store/trax-store.component.spec.ts +0 -23
  459. package/src/lib/components/trax-store/trax-store.component.ts +0 -172
  460. package/src/lib/components/traxpopup/traxpopup.component.html +0 -130
  461. package/src/lib/components/traxpopup/traxpopup.component.scss +0 -225
  462. package/src/lib/components/traxpopup/traxpopup.component.spec.ts +0 -23
  463. package/src/lib/components/traxpopup/traxpopup.component.ts +0 -71
  464. package/src/lib/services/trax.service.spec.ts +0 -16
  465. package/src/lib/services/trax.service.ts +0 -789
  466. package/src/lib/tango-analyse-trax-routing.module.ts +0 -151
  467. package/src/lib/tango-analyse-trax.module.ts +0 -140
  468. package/tsconfig.lib.json +0 -14
  469. package/tsconfig.lib.prod.json +0 -10
  470. package/tsconfig.spec.json +0 -14
@@ -0,0 +1,150 @@
1
+ import { Component } from '@angular/core';
2
+ import { Subject, debounceTime, takeUntil } from "rxjs";
3
+ import dayjs from 'dayjs';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "tango-app-ui-global";
6
+ import * as i2 from "../../services/trax.service";
7
+ import * as i3 from "@angular/router";
8
+ import * as i4 from "@angular/common";
9
+ import * as i5 from "tango-app-ui-shared";
10
+ export class ActivityLogComponent {
11
+ gs;
12
+ pageInfo;
13
+ TraxService;
14
+ changeDetector;
15
+ router;
16
+ destroy$ = new Subject();
17
+ headerData;
18
+ activityLogLoading = true;
19
+ activityLogNoData = false;
20
+ itemsPerPage = 10;
21
+ currentPage = 1;
22
+ totalItems = 0;
23
+ sortColumName = '';
24
+ sortBy = '';
25
+ sortDirection = '';
26
+ paginationSizes = [];
27
+ pageSize = 10;
28
+ activityLog = [];
29
+ dayjs = dayjs;
30
+ date;
31
+ userEmailes = [];
32
+ constructor(gs, pageInfo, TraxService, changeDetector, router) {
33
+ this.gs = gs;
34
+ this.pageInfo = pageInfo;
35
+ this.TraxService = TraxService;
36
+ this.changeDetector = changeDetector;
37
+ this.router = router;
38
+ this.userEmailes = JSON.parse(localStorage.getItem("usersEmail-info") || "[]");
39
+ }
40
+ ngOnDestroy() {
41
+ this.destroy$.next(true);
42
+ this.destroy$.complete();
43
+ }
44
+ ngOnInit() {
45
+ this.date = this.dayjs().format('YYYY-MM-DD');
46
+ this.gs.dataRangeValue
47
+ .pipe(takeUntil(this.destroy$), debounceTime(300))
48
+ .subscribe((data) => {
49
+ this.headerData = data;
50
+ this.getActivityLog();
51
+ });
52
+ }
53
+ getActivityLog() {
54
+ this.activityLogLoading = true;
55
+ this.activityLogNoData = true;
56
+ const requestData = {
57
+ // fromDate: this.headerData.date.startDate,
58
+ // toDate: this.headerData.date.endDate,
59
+ storeId: this.headerData.stores.filter((store) => store.checked).map((store) => store.storeId),
60
+ userEmailes: this.userEmailes,
61
+ clientId: this.headerData.client,
62
+ limit: this.itemsPerPage,
63
+ offset: this.currentPage,
64
+ };
65
+ this.TraxService.getActivityLog(requestData)
66
+ .pipe(takeUntil(this.destroy$))
67
+ .subscribe((response) => {
68
+ this.activityLogLoading = false;
69
+ if (response?.code === 200 && response?.status === "success") {
70
+ this.activityLog = response.data[0]?.activityLogData || [];
71
+ this.totalItems = response.data[0]?.count[0]?.total || 0;
72
+ this.setPaginationSizes();
73
+ this.activityLogLoading = false;
74
+ this.activityLogNoData = false;
75
+ }
76
+ else {
77
+ this.activityLog = [];
78
+ this.activityLogLoading = false;
79
+ this.activityLogNoData = true;
80
+ this.activityLog = [];
81
+ this.totalItems = 0;
82
+ this.changeDetector.detectChanges();
83
+ }
84
+ }, error => {
85
+ this.activityLog = [];
86
+ this.changeDetector.detectChanges();
87
+ });
88
+ }
89
+ onPageSizeChange(pageSize) {
90
+ this.currentPage = 1;
91
+ this.itemsPerPage = pageSize;
92
+ this.pageSize = pageSize;
93
+ this.changeDetector.detectChanges();
94
+ this.getActivityLog();
95
+ }
96
+ onPageChange(pageOffset) {
97
+ this.currentPage = pageOffset;
98
+ this.getActivityLog();
99
+ }
100
+ setPaginationSizes() {
101
+ if (this.totalItems > 10) {
102
+ this.paginationSizes = [10, 20, 30];
103
+ }
104
+ else {
105
+ this.paginationSizes = [this.totalItems];
106
+ this.pageSize = this.totalItems;
107
+ }
108
+ }
109
+ navigateToGallery(log) {
110
+ let formattedDate = dayjs(log.createdAt).format('YYYY-MM-DD');
111
+ let checklistType;
112
+ if (log.type === 'custom') {
113
+ checklistType = 'custom';
114
+ }
115
+ else if (['task', 'checklistTask', 'cctv'].includes(log.type)) {
116
+ checklistType = 'task';
117
+ }
118
+ else {
119
+ checklistType = log.type || '--';
120
+ }
121
+ let queryParams = {};
122
+ if (log.store_id && log.store_id != '') {
123
+ queryParams = {
124
+ ChecklistDate: formattedDate,
125
+ checklistType: checklistType,
126
+ storeId: log.store_id,
127
+ sourceCheckList_id: log.checklistId,
128
+ };
129
+ }
130
+ else {
131
+ queryParams = {
132
+ ChecklistDate: formattedDate,
133
+ checklistType: checklistType,
134
+ userEmail: log.userEmail,
135
+ sourceCheckList_id: log.checklistId,
136
+ };
137
+ }
138
+ if (log.redoStatus) {
139
+ queryParams.redoStatus = true;
140
+ }
141
+ this.router.navigate(['/manage/trax/gallery'], { queryParams });
142
+ }
143
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ActivityLogComponent, deps: [{ token: i1.GlobalStateService }, { token: i1.PageInfoService }, { token: i2.TraxService }, { token: i0.ChangeDetectorRef }, { token: i3.Router }], target: i0.ɵɵFactoryTarget.Component });
144
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ActivityLogComponent, selector: "lib-activity-log", ngImport: i0, template: "<div class=\"col-md-12\">\r\n <div *ngIf=\"!activityLogLoading && !activityLogNoData\" class=\"row cardscroll\">\r\n <div class=\"col-6\">\r\n <div class=\"timeline-label\">\r\n <div *ngFor=\"let log of activityLog; let i = index\" class=\"timeline-item mb-6\"\r\n [ngClass]=\"{'d-none': i % 2 !== 0}\">\r\n <div class=\"timeline-badge mx-1\">\r\n <span>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"13\" height=\"14\" viewBox=\"0 0 13 14\"\r\n fill=\"none\">\r\n <circle cx=\"6.5\" cy=\"7\" r=\"5\" [attr.stroke]=\"log.action === 'started' ? '#12B76A' : (log.action === 'submitted' || log.action === 'lapsed' ? '#F04438' : '#000000')\" stroke-width=\"3\" />\r\n </svg>\r\n </span>\r\n </div>\r\n <div class=\"logtextmain\">\r\n {{ log?.coverage === 'user' ? log?.userName : log?.storeName }}\r\n <span class=\"logtextsub mx-1\">{{ log.action | titlecase }}</span>\r\n <span class=\"logtextmain mx-1\">{{ log.checkListName || \"--\" }}</span>\r\n <span class=\"logtextsub mx-1\">at {{ log.createdAt | date: 'MMM dd, y' }}</span>\r\n </div>\r\n <div (click)=\"navigateToGallery(log)\" *ngIf=\"log.action === 'submitted'\" class=\"logview mx-2 cursor-pointer\">View</div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"timeline-label\">\r\n <div *ngFor=\"let log of activityLog; let i = index\" class=\"timeline-item mb-6\"\r\n [ngClass]=\"{'d-none': i % 2 === 0}\">\r\n <div class=\"timeline-badge mx-1\">\r\n <span>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"13\" height=\"14\" viewBox=\"0 0 13 14\"\r\n fill=\"none\">\r\n <circle cx=\"6.5\" cy=\"7\" r=\"5\" [attr.stroke]=\"log.action === 'started' ? '#12B76A' : (log.action === 'submitted' || log.action === 'lapsed' ? '#F04438' : '#000000')\" stroke-width=\"3\" />\r\n </svg>\r\n </span>\r\n </div>\r\n <div class=\"logtextmain\">\r\n {{ log?.coverage === 'user' ? log?.userName : log?.storeName }}\r\n <span class=\"logtextsub mx-1\">{{ log.action | titlecase }}</span>\r\n <span class=\"logtextmain mx-1\">{{ log.checkListName || \"--\" }}</span>\r\n <span class=\"logtextsub mx-1\">at {{ log.createdAt | date: 'MMM dd, y' }}</span>\r\n </div>\r\n <div (click)=\"navigateToGallery(log)\" *ngIf=\"log.action === 'submitted'\" class=\"logview mx-2 cursor-pointer\">View</div>\r\n </div>\r\n </div>\r\n </div> \r\n </div>\r\n <div *ngIf=\"!activityLogLoading && !activityLogNoData\">\r\n <lib-pagination class=\"text-start\" [itemsPerPage]=\"itemsPerPage\" [currentPage]=\"currentPage\"\r\n [totalItems]=\"totalItems\" [paginationSizes]=\"paginationSizes\" [pageSize]=\"pageSize\"\r\n (pageChange)=\"onPageChange($event)\"\r\n (pageSizeChange)=\"onPageSizeChange($event)\"></lib-pagination>\r\n </div>\r\n <ng-container *ngIf=\"activityLogLoading\">\r\n <div class=\"row loader d-flex justify-content-center align-items-center\">\r\n <div class=\"shimmer\">\r\n <div class=\"wrapper\">\r\n <div class=\"stroke animate title\"></div>\r\n <div class=\"stroke animate link\"></div>\r\n <div class=\"stroke animate description\"></div>\r\n </div>\r\n </div>\r\n <div class=\"shimmer\">\r\n <div class=\"wrapper\">\r\n <div class=\"stroke animate title\"></div>\r\n <div class=\"stroke animate link\"></div>\r\n <div class=\"stroke animate description\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngIf=\"activityLogNoData && !activityLogLoading\">\r\n <div class=\"row\">\r\n <div class=\"col-lg-12 my-6\">\r\n <div class=\"card-body d-flex justify-content-center align-items-center flex-column\">\r\n <img class=\"img-src\" src=\"./assets/tango/Icons/Nodata1.svg\" alt=\"\">\r\n <div class=\"nodatamaintext mt-3\">No data found</div>\r\n <div class=\"nodatasubtext\">There is no result for Performance Table\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n</div>", styles: [".timeline-label{position:unset}.logtextmain{color:var(--Black, #101828);font-size:14px;font-style:normal;font-weight:600;line-height:20px}.logtextsub{color:var(--Gray-400, #98A2B3);font-size:14px;font-style:normal;font-weight:400;line-height:20px}.logview{color:var(--Primary-700, #009BF3);font-size:14px;font-style:normal;font-weight:600;line-height:20px;text-decoration-line:underline;text-transform:capitalize}.cardscroll{overflow-y:scroll;max-height:275px}\n"], dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.PaginationComponent, selector: "lib-pagination", inputs: ["collection", "itemsPerPage", "currentPage", "totalItems", "directionLinks", "pageSize", "paginationSizes"], outputs: ["pageChange", "pageSizeChange"] }, { kind: "pipe", type: i4.TitleCasePipe, name: "titlecase" }, { kind: "pipe", type: i4.DatePipe, name: "date" }] });
145
+ }
146
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ActivityLogComponent, decorators: [{
147
+ type: Component,
148
+ args: [{ selector: 'lib-activity-log', template: "<div class=\"col-md-12\">\r\n <div *ngIf=\"!activityLogLoading && !activityLogNoData\" class=\"row cardscroll\">\r\n <div class=\"col-6\">\r\n <div class=\"timeline-label\">\r\n <div *ngFor=\"let log of activityLog; let i = index\" class=\"timeline-item mb-6\"\r\n [ngClass]=\"{'d-none': i % 2 !== 0}\">\r\n <div class=\"timeline-badge mx-1\">\r\n <span>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"13\" height=\"14\" viewBox=\"0 0 13 14\"\r\n fill=\"none\">\r\n <circle cx=\"6.5\" cy=\"7\" r=\"5\" [attr.stroke]=\"log.action === 'started' ? '#12B76A' : (log.action === 'submitted' || log.action === 'lapsed' ? '#F04438' : '#000000')\" stroke-width=\"3\" />\r\n </svg>\r\n </span>\r\n </div>\r\n <div class=\"logtextmain\">\r\n {{ log?.coverage === 'user' ? log?.userName : log?.storeName }}\r\n <span class=\"logtextsub mx-1\">{{ log.action | titlecase }}</span>\r\n <span class=\"logtextmain mx-1\">{{ log.checkListName || \"--\" }}</span>\r\n <span class=\"logtextsub mx-1\">at {{ log.createdAt | date: 'MMM dd, y' }}</span>\r\n </div>\r\n <div (click)=\"navigateToGallery(log)\" *ngIf=\"log.action === 'submitted'\" class=\"logview mx-2 cursor-pointer\">View</div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"timeline-label\">\r\n <div *ngFor=\"let log of activityLog; let i = index\" class=\"timeline-item mb-6\"\r\n [ngClass]=\"{'d-none': i % 2 === 0}\">\r\n <div class=\"timeline-badge mx-1\">\r\n <span>\r\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"13\" height=\"14\" viewBox=\"0 0 13 14\"\r\n fill=\"none\">\r\n <circle cx=\"6.5\" cy=\"7\" r=\"5\" [attr.stroke]=\"log.action === 'started' ? '#12B76A' : (log.action === 'submitted' || log.action === 'lapsed' ? '#F04438' : '#000000')\" stroke-width=\"3\" />\r\n </svg>\r\n </span>\r\n </div>\r\n <div class=\"logtextmain\">\r\n {{ log?.coverage === 'user' ? log?.userName : log?.storeName }}\r\n <span class=\"logtextsub mx-1\">{{ log.action | titlecase }}</span>\r\n <span class=\"logtextmain mx-1\">{{ log.checkListName || \"--\" }}</span>\r\n <span class=\"logtextsub mx-1\">at {{ log.createdAt | date: 'MMM dd, y' }}</span>\r\n </div>\r\n <div (click)=\"navigateToGallery(log)\" *ngIf=\"log.action === 'submitted'\" class=\"logview mx-2 cursor-pointer\">View</div>\r\n </div>\r\n </div>\r\n </div> \r\n </div>\r\n <div *ngIf=\"!activityLogLoading && !activityLogNoData\">\r\n <lib-pagination class=\"text-start\" [itemsPerPage]=\"itemsPerPage\" [currentPage]=\"currentPage\"\r\n [totalItems]=\"totalItems\" [paginationSizes]=\"paginationSizes\" [pageSize]=\"pageSize\"\r\n (pageChange)=\"onPageChange($event)\"\r\n (pageSizeChange)=\"onPageSizeChange($event)\"></lib-pagination>\r\n </div>\r\n <ng-container *ngIf=\"activityLogLoading\">\r\n <div class=\"row loader d-flex justify-content-center align-items-center\">\r\n <div class=\"shimmer\">\r\n <div class=\"wrapper\">\r\n <div class=\"stroke animate title\"></div>\r\n <div class=\"stroke animate link\"></div>\r\n <div class=\"stroke animate description\"></div>\r\n </div>\r\n </div>\r\n <div class=\"shimmer\">\r\n <div class=\"wrapper\">\r\n <div class=\"stroke animate title\"></div>\r\n <div class=\"stroke animate link\"></div>\r\n <div class=\"stroke animate description\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngIf=\"activityLogNoData && !activityLogLoading\">\r\n <div class=\"row\">\r\n <div class=\"col-lg-12 my-6\">\r\n <div class=\"card-body d-flex justify-content-center align-items-center flex-column\">\r\n <img class=\"img-src\" src=\"./assets/tango/Icons/Nodata1.svg\" alt=\"\">\r\n <div class=\"nodatamaintext mt-3\">No data found</div>\r\n <div class=\"nodatasubtext\">There is no result for Performance Table\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n</div>", styles: [".timeline-label{position:unset}.logtextmain{color:var(--Black, #101828);font-size:14px;font-style:normal;font-weight:600;line-height:20px}.logtextsub{color:var(--Gray-400, #98A2B3);font-size:14px;font-style:normal;font-weight:400;line-height:20px}.logview{color:var(--Primary-700, #009BF3);font-size:14px;font-style:normal;font-weight:600;line-height:20px;text-decoration-line:underline;text-transform:capitalize}.cardscroll{overflow-y:scroll;max-height:275px}\n"] }]
149
+ }], ctorParameters: () => [{ type: i1.GlobalStateService }, { type: i1.PageInfoService }, { type: i2.TraxService }, { type: i0.ChangeDetectorRef }, { type: i3.Router }] });
150
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aXZpdHktbG9nLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RhbmdvLWFuYWx5c2UtdHJheC9zcmMvbGliL2NvbXBvbmVudHMvYWN0aXZpdHktbG9nL2FjdGl2aXR5LWxvZy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90YW5nby1hbmFseXNlLXRyYXgvc3JjL2xpYi9jb21wb25lbnRzL2FjdGl2aXR5LWxvZy9hY3Rpdml0eS1sb2cuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFxQixTQUFTLEVBQXFCLE1BQU0sZUFBZSxDQUFDO0FBR2hGLE9BQU8sRUFBRSxPQUFPLEVBQUUsWUFBWSxFQUFFLFNBQVMsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUV4RCxPQUFPLEtBQUssTUFBTSxPQUFPLENBQUM7Ozs7Ozs7QUFNMUIsTUFBTSxPQUFPLG9CQUFvQjtJQWtCWjtJQUErQjtJQUFrQztJQUMxRTtJQUEyQztJQWxCN0MsUUFBUSxHQUFHLElBQUksT0FBTyxFQUFFLENBQUM7SUFDakMsVUFBVSxDQUFNO0lBQ2hCLGtCQUFrQixHQUFZLElBQUksQ0FBQztJQUNuQyxpQkFBaUIsR0FBWSxLQUFLLENBQUM7SUFDbkMsWUFBWSxHQUFHLEVBQUUsQ0FBQTtJQUNqQixXQUFXLEdBQUcsQ0FBQyxDQUFBO0lBQ2YsVUFBVSxHQUFHLENBQUMsQ0FBQTtJQUNkLGFBQWEsR0FBVyxFQUFFLENBQUM7SUFDM0IsTUFBTSxHQUFRLEVBQUUsQ0FBQztJQUNqQixhQUFhLEdBQVEsRUFBRSxDQUFDO0lBQ3hCLGVBQWUsR0FBUyxFQUFFLENBQUM7SUFDM0IsUUFBUSxHQUFHLEVBQUUsQ0FBQTtJQUNiLFdBQVcsR0FBVSxFQUFFLENBQUM7SUFDeEIsS0FBSyxHQUFHLEtBQUssQ0FBQztJQUNkLElBQUksQ0FBTTtJQUNWLFdBQVcsR0FB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b0I7NEZBQXBCLG9CQUFvQix3RENYakMsb2dLQW1GTTs7NEZEeEVPLG9CQUFvQjtrQkFMaEMsU0FBUzsrQkFDRSxrQkFBa0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3RvclJlZiwgQ29tcG9uZW50LCBPbkRlc3Ryb3ksIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBHbG9iYWxTdGF0ZVNlcnZpY2UsIFBhZ2VJbmZvU2VydmljZSB9IGZyb20gJ3RhbmdvLWFwcC11aS1nbG9iYWwnO1xyXG5pbXBvcnQgeyBUcmF4U2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL3RyYXguc2VydmljZSc7XHJcbmltcG9ydCB7IFN1YmplY3QsIGRlYm91bmNlVGltZSwgdGFrZVVudGlsIH0gZnJvbSBcInJ4anNcIjtcclxuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IGRheWpzIGZyb20gJ2RheWpzJztcclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdsaWItYWN0aXZpdHktbG9nJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vYWN0aXZpdHktbG9nLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybDogJy4vYWN0aXZpdHktbG9nLmNvbXBvbmVudC5zY3NzJ1xyXG59KVxyXG5leHBvcnQgY2xhc3MgQWN0aXZpdHlMb2dDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsT25EZXN0cm95IHtcclxuICBwcml2YXRlIGRlc3Ryb3kkID0gbmV3IFN1YmplY3QoKTtcclxuICBoZWFkZXJEYXRhOiBhbnk7XHJcbiAgYWN0aXZpdHlMb2dMb2FkaW5nOiBib29sZWFuID0gdHJ1ZTtcclxuICBhY3Rpdml0eUxvZ05vRGF0YTogYm9vbGVhbiA9IGZhbHNlO1xyXG4gIGl0ZW1zUGVyUGFnZSA9IDEwXHJcbiAgY3VycmVudFBhZ2UgPSAxXHJcbiAgdG90YWxJdGVtcyA9IDBcclxuICBzb3J0Q29sdW1OYW1lOiBzdHJpbmcgPSAnJztcclxuICBzb3J0Qnk6IGFueSA9ICcnO1xyXG4gIHNvcnREaXJlY3Rpb246IGFueSA9ICcnO1xyXG4gIHBhZ2luYXRpb25TaXplczphbnlbXSA9IFtdO1xyXG4gIHBhZ2VTaXplID0gMTBcclxuICBhY3Rpdml0eUxvZzogYW55W10gPSBbXTtcclxuICBkYXlqcyA9IGRheWpzO1xyXG4gIGRhdGU6IGFueTtcclxuICB1c2VyRW1haWxlczogYW55ID0gW107XHJcblxyXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBnczogR2xvYmFsU3RhdGVTZXJ2aWNlLHByaXZhdGUgcGFnZUluZm86IFBhZ2VJbmZvU2VydmljZSxwcml2YXRlIFRyYXhTZXJ2aWNlOiBUcmF4U2VydmljZSxcclxuICAgIHByaXZhdGUgY2hhbmdlRGV0ZWN0b3I6IENoYW5nZURldGVjdG9yUmVmLCBwcml2YXRlIHJvdXRlcjogUm91dGVyLFxyXG4gICkge1xyXG4gICAgdGhpcy51c2VyRW1haWxlcyA9IEpTT04ucGFyc2UobG9jYWxTdG9yYWdlLmdldEl0ZW0oXCJ1c2Vyc0VtYWlsLWluZm9cIikgfHwgXCJbXVwiIClcclxuICB9XHJcbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XHJcbiAgICB0aGlzLmRlc3Ryb3kkLm5leHQodHJ1ZSk7XHJcbiAgICB0aGlzLmRlc3Ryb3kkLmNvbXBsZXRlKCk7XHJcbiAgfVxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gICAgdGhpcy5kYXRlID0gdGhpcy5kYXlqcygpLmZvcm1hdCgnWVlZWS1NTS1ERCcpO1xyXG4gICAgdGhpcy5ncy5kYXRhUmFuZ2VWYWx1ZVxyXG4gICAgLnBpcGUodGFrZVVudGlsKHRoaXMuZGVzdHJveSQpLCBkZWJvdW5jZVRpbWUoMzAwKSlcclxuICAgIC5zdWJzY3JpYmUoKGRhdGE6IGFueSkgPT4ge1xyXG4gICAgICAgIHRoaXMuaGVhZGVyRGF0YSA9IGRhdGE7XHJcbiAgICAgICAgdGhpcy5nZXRBY3Rpdml0eUxvZygpXHJcbiAgICAgIH0pXHJcbn1cclxuXHJcbiAgZ2V0QWN0aXZpdHlMb2coKTogdm9pZCB7XHJcbiAgICB0aGlzLmFjdGl2aXR5TG9nTG9hZGluZyA9IHRydWU7XHJcbiAgICB0aGlzLmFjdGl2aXR5TG9nTm9EYXRhID0gdHJ1ZTtcclxuICAgIGNvbnN0IHJlcXVlc3REYXRhID0ge1xyXG4gICAgICAvLyBmcm9tRGF0ZTogdGhpcy5oZWFkZXJEYXRhLmRhdGUuc3RhcnREYXRlLFxyXG4gICAgICAvLyB0b0RhdGU6IHRoaXMuaGVhZGVyRGF0YS5kYXRlLmVuZERhdGUsXHJcbiAgICAgIHN0b3JlSWQ6IHRoaXMuaGVhZGVyRGF0YS5zdG9yZXMuZmlsdGVyKChzdG9yZTogYW55KSA9PiBzdG9yZS5jaGVja2VkKS5tYXAoKHN0b3JlOiBhbnkpID0+IHN0b3JlLnN0b3JlSWQpLFxyXG4gICAgICB1c2VyRW1haWxlczogdGhpcy51c2VyRW1haWxlcyxcclxuICAgICAgY2xpZW50SWQ6dGhpcy5oZWFkZXJEYXRhLmNsaWVudCxcclxuICAgICAgbGltaXQ6IHRoaXMuaXRlbXNQZXJQYWdlLFxyXG4gICAgICBvZmZzZXQ6IHRoaXMuY3VycmVudFBhZ2UsXHJcbiAgICB9O1xyXG5cclxuICAgIHRoaXMuVHJheFNlcnZpY2UuZ2V0QWN0aXZpdHlMb2cocmVxdWVzdERhdGEpXHJcbiAgICAgIC5waXBlKHRha2VVbnRpbCh0aGlzLmRlc3Ryb3kkKSlcclxuICAgICAgLnN1YnNjcmliZSgocmVzcG9uc2U6IGFueSkgPT4ge1xyXG4gICAgICAgIHRoaXMuYWN0aXZpdHlMb2dMb2FkaW5nID0gZmFsc2U7XHJcbiAgICAgICAgaWYgKHJlc3BvbnNlPy5jb2RlID09PSAyMDAgJiYgcmVzcG9uc2U/LnN0YXR1cyA9PT0gXCJzdWNjZXNzXCIpIHtcclxuICAgICAgICAgIHRoaXMuYWN0aXZpdHlMb2cgPSByZXNwb25zZS5kYXRhWzBdPy5hY3Rpdml0eUxvZ0RhdGEgfHwgW11cclxuICAgICAgICAgIHRoaXMudG90YWxJdGVtcyA9IHJlc3BvbnNlLmRhdGFbMF0/LmNvdW50WzBdPy50b3RhbCB8fCAwO1xyXG4gICAgICAgICAgdGhpcy5zZXRQYWdpbmF0aW9uU2l6ZXMoKVxyXG4gICAgICAgICAgdGhpcy5hY3Rpdml0eUxvZ0xvYWRpbmcgPSBmYWxzZTtcclxuICAgICAgICAgIHRoaXMuYWN0aXZpdHlMb2dOb0RhdGEgPSBmYWxzZTtcclxuICAgICAgICB9IGVsc2Uge1xyXG4gICAgICAgICAgdGhpcy5hY3Rpdml0eUxvZyA9IFtdO1xyXG4gICAgICAgICAgdGhpcy5hY3Rpdml0eUxvZ0xvYWRpbmcgPSBmYWxzZTtcclxuICAgICAgICAgIHRoaXMuYWN0aXZpdHlMb2dOb0RhdGEgPSB0cnVlO1xyXG4gICAgICAgICAgdGhpcy5hY3Rpdml0eUxvZyA9IFtdXHJcbiAgICAgICAgICB0aGlzLnRvdGFsSXRlbXMgPSAwXHJcbiAgICAgICAgICB0aGlzLmNoYW5nZURldGVjdG9yLmRldGVjdENoYW5nZXMoKVxyXG4gICAgICAgIH1cclxuICAgICAgfSwgZXJyb3IgPT4ge1xyXG4gICAgICAgIHRoaXMuYWN0aXZpdHlMb2cgPSBbXVxyXG4gICAgICAgIHRoaXMuY2hhbmdlRGV0ZWN0b3IuZGV0ZWN0Q2hhbmdlcygpXHJcbiAgICAgIH0pO1xyXG4gIH1cclxuICBvblBhZ2VTaXplQ2hhbmdlKHBhZ2VTaXplOiBhbnkpIHtcclxuICAgIHRoaXMuY3VycmVudFBhZ2UgPSAxO1xyXG4gICAgdGhpcy5pdGVtc1BlclBhZ2UgPSBwYWdlU2l6ZTtcclxuICAgIHRoaXMucGFnZVNpemUgPSBwYWdlU2l6ZTtcclxuICAgIHRoaXMuY2hhbmdlRGV0ZWN0b3IuZGV0ZWN0Q2hhbmdlcygpO1xyXG4gICAgdGhpcy5nZXRBY3Rpdml0eUxvZygpXHJcbiAgfVxyXG4gIG9uUGFnZUNoYW5nZShwYWdlT2Zmc2V0OiBhbnkpIHtcclxuICAgIHRoaXMuY3VycmVudFBhZ2UgPSBwYWdlT2Zmc2V0XHJcbiAgICB0aGlzLmdldEFjdGl2aXR5TG9nKClcclxuICB9XHJcbiAgc2V0UGFnaW5hdGlvblNpemVzKCkge1xyXG4gICAgaWYgKHRoaXMudG90YWxJdGVtcyA+IDEwKSB7XHJcbiAgICAgIHRoaXMucGFnaW5hdGlvblNpemVzID0gWzEwLCAyMCwgMzBdO1xyXG4gICAgfSBlbHNlIHtcclxuICAgICAgdGhpcy5wYWdpbmF0aW9uU2l6ZXMgPSBbdGhpcy50b3RhbEl0ZW1zXTtcclxuICAgICAgdGhpcy5wYWdlU2l6ZSA9IHRoaXMudG90YWxJdGVtcztcclxuICAgIH1cclxuICB9XHJcbiAgXHJcbiAgbmF2aWdhdGVUb0dhbGxlcnkobG9nOiBhbnkpOiB2b2lkIHtcclxuICAgIGxldCBmb3JtYXR0ZWREYXRlID0gZGF5anMobG9nLmNyZWF0ZWRBdCkuZm9ybWF0KCdZWVlZLU1NLUREJyk7XHJcbiAgICBsZXQgY2hlY2tsaXN0VHlwZTogc3RyaW5nO1xyXG4gICAgaWYgKGxvZy50eXBlID09PSAnY3VzdG9tJykge1xyXG4gICAgICBjaGVja2xpc3RUeXBlID0gJ2N1c3RvbSc7XHJcbiAgICB9IGVsc2UgaWYgKFsndGFzaycsICdjaGVja2xpc3RUYXNrJywgJ2NjdHYnXS5pbmNsdWRlcyhsb2cudHlwZSkpIHtcclxuICAgICAgY2hlY2tsaXN0VHlwZSA9ICd0YXNrJztcclxuICAgIH0gZWxzZSB7XHJcbiAgICAgIGNoZWNrbGlzdFR5cGUgPSBsb2cudHlwZSB8fCAnLS0nO1xyXG4gICAgfVxyXG4gICAgXHJcbiAgICBsZXQgcXVlcnlQYXJhbXM6YW55PSB7fVxyXG4gICAgaWYobG9nLnN0b3JlX2lkJiZsb2cuc3RvcmVfaWQhPScnKXtcclxuICAgICAgIHF1ZXJ5UGFyYW1zID0ge1xyXG4gICAgICAgIENoZWNrbGlzdERhdGU6IGZvcm1hdHRlZERhdGUsXHJcbiAgICAgICAgY2hlY2tsaXN0VHlwZTogY2hlY2tsaXN0VHlwZSxcclxuICAgICAgICBzdG9yZUlkOiBsb2cuc3RvcmVfaWQsXHJcbiAgICAgICAgc291cmNlQ2hlY2tMaXN0X2lkOiBsb2cuY2hlY2tsaXN0SWQsXHJcbiAgICAgIH07XHJcbiAgICB9ZWxzZXtcclxuICAgICAgIHF1ZXJ5UGFyYW1zID0ge1xyXG4gICAgICAgIENoZWNrbGlzdERhdGU6IGZvcm1hdHRlZERhdGUsXHJcbiAgICAgICAgY2hlY2tsaXN0VHlwZTogY2hlY2tsaXN0VHlwZSxcclxuICAgICAgICB1c2VyRW1haWw6IGxvZy51c2VyRW1haWwsXHJcbiAgICAgICAgc291cmNlQ2hlY2tMaXN0X2lkOiBsb2cuY2hlY2tsaXN0SWQsXHJcbiAgICAgIH07XHJcbiAgICB9XHJcbiAgICBpZiAobG9nLnJlZG9TdGF0dXMpIHtcclxuICAgICAgcXVlcnlQYXJhbXMucmVkb1N0YXR1cyA9IHRydWU7XHJcbiAgICB9XHJcbiAgICB0aGlzLnJvdXRlci5uYXZpZ2F0ZShbJy9tYW5hZ2UvdHJheC9nYWxsZXJ5J10sIHsgcXVlcnlQYXJhbXMgfSk7XHJcbiAgfSBcclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwiY29sLW1kLTEyXCI+XHJcbiAgICA8ZGl2ICpuZ0lmPVwiIWFjdGl2aXR5TG9nTG9hZGluZyAmJiAhYWN0aXZpdHlMb2dOb0RhdGFcIiBjbGFzcz1cInJvdyBjYXJkc2Nyb2xsXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNvbC02XCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0aW1lbGluZS1sYWJlbFwiPlxyXG4gICAgICAgICAgICAgICAgPGRpdiAqbmdGb3I9XCJsZXQgbG9nIG9mIGFjdGl2aXR5TG9nOyBsZXQgaSA9IGluZGV4XCIgY2xhc3M9XCJ0aW1lbGluZS1pdGVtIG1iLTZcIlxyXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnZC1ub25lJzogaSAlIDIgIT09IDB9XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRpbWVsaW5lLWJhZGdlIG14LTFcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3ZnIHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmdcIiB3aWR0aD1cIjEzXCIgaGVpZ2h0PVwiMTRcIiB2aWV3Qm94PVwiMCAwIDEzIDE0XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmaWxsPVwibm9uZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxjaXJjbGUgY3g9XCI2LjVcIiBjeT1cIjdcIiByPVwiNVwiIFthdHRyLnN0cm9rZV09XCJsb2cuYWN0aW9uID09PSAnc3RhcnRlZCcgPyAnIzEyQjc2QScgOiAobG9nLmFjdGlvbiA9PT0gJ3N1Ym1pdHRlZCcgfHwgbG9nLmFjdGlvbiA9PT0gJ2xhcHNlZCcgPyAnI0YwNDQzOCcgOiAnIzAwMDAwMCcpXCIgc3Ryb2tlLXdpZHRoPVwiM1wiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3N2Zz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJsb2d0ZXh0bWFpblwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICB7eyBsb2c/LmNvdmVyYWdlID09PSAndXNlcicgPyBsb2c/LnVzZXJOYW1lIDogbG9nPy5zdG9yZU5hbWUgfX1cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJsb2d0ZXh0c3ViIG14LTFcIj57eyBsb2cuYWN0aW9uIHwgdGl0bGVjYXNlIH19PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImxvZ3RleHRtYWluIG14LTFcIj57eyBsb2cuY2hlY2tMaXN0TmFtZSB8fCBcIi0tXCIgfX08L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwibG9ndGV4dHN1YiBteC0xXCI+YXQge3sgbG9nLmNyZWF0ZWRBdCB8IGRhdGU6ICdNTU0gZGQsIHknIH19PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgKGNsaWNrKT1cIm5hdmlnYXRlVG9HYWxsZXJ5KGxvZylcIiAqbmdJZj1cImxvZy5hY3Rpb24gPT09ICdzdWJtaXR0ZWQnXCIgY2xhc3M9XCJsb2d2aWV3IG14LTIgY3Vyc29yLXBvaW50ZXJcIj5WaWV3PC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImNvbC02XCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ0aW1lbGluZS1sYWJlbFwiPlxyXG4gICAgICAgICAgICAgICAgPGRpdiAqbmdGb3I9XCJsZXQgbG9nIG9mIGFjdGl2aXR5TG9nOyBsZXQgaSA9IGluZGV4XCIgY2xhc3M9XCJ0aW1lbGluZS1pdGVtIG1iLTZcIlxyXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnZC1ub25lJzogaSAlIDIgPT09IDB9XCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInRpbWVsaW5lLWJhZGdlIG14LTFcIj5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c3ZnIHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmdcIiB3aWR0aD1cIjEzXCIgaGVpZ2h0PVwiMTRcIiB2aWV3Qm94PVwiMCAwIDEzIDE0XCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmaWxsPVwibm9uZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxjaXJjbGUgY3g9XCI2LjVcIiBjeT1cIjdcIiByPVwiNVwiIFthdHRyLnN0cm9rZV09XCJsb2cuYWN0aW9uID09PSAnc3RhcnRlZCcgPyAnIzEyQjc2QScgOiAobG9nLmFjdGlvbiA9PT0gJ3N1Ym1pdHRlZCcgfHwgbG9nLmFjdGlvbiA9PT0gJ2xhcHNlZCcgPyAnI0YwNDQzOCcgOiAnIzAwMDAwMCcpXCIgc3Ryb2tlLXdpZHRoPVwiM1wiIC8+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3N2Zz5cclxuICAgICAgICAgICAgICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJsb2d0ZXh0bWFpblwiPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICB7eyBsb2c/LmNvdmVyYWdlID09PSAndXNlcicgPyBsb2c/LnVzZXJOYW1lIDogbG9nPy5zdG9yZU5hbWUgfX1cclxuICAgICAgICAgICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJsb2d0ZXh0c3ViIG14LTFcIj57eyBsb2cuYWN0aW9uIHwgdGl0bGVjYXNlIH19PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cImxvZ3RleHRtYWluIG14LTFcIj57eyBsb2cuY2hlY2tMaXN0TmFtZSB8fCBcIi0tXCIgfX08L3NwYW4+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwibG9ndGV4dHN1YiBteC0xXCI+YXQge3sgbG9nLmNyZWF0ZWRBdCB8IGRhdGU6ICdNTU0gZGQsIHknIH19PC9zcGFuPlxyXG4gICAgICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgICAgIDxkaXYgKGNsaWNrKT1cIm5hdmlnYXRlVG9HYWxsZXJ5KGxvZylcIiAqbmdJZj1cImxvZy5hY3Rpb24gPT09ICdzdWJtaXR0ZWQnXCIgY2xhc3M9XCJsb2d2aWV3IG14LTIgY3Vyc29yLXBvaW50ZXJcIj5WaWV3PC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+ICBcclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiAqbmdJZj1cIiFhY3Rpdml0eUxvZ0xvYWRpbmcgJiYgIWFjdGl2aXR5TG9nTm9EYXRhXCI+XHJcbiAgICAgICAgPGxpYi1wYWdpbmF0aW9uIGNsYXNzPVwidGV4dC1zdGFydFwiIFtpdGVtc1BlclBhZ2VdPVwiaXRlbXNQZXJQYWdlXCIgW2N1cnJlbnRQYWdlXT1cImN1cnJlbnRQYWdlXCJcclxuICAgICAgICAgICAgW3RvdGFsSXRlbXNdPVwidG90YWxJdGVtc1wiIFtwYWdpbmF0aW9uU2l6ZXNdPVwicGFnaW5hdGlvblNpemVzXCIgW3BhZ2VTaXplXT1cInBhZ2VTaXplXCJcclxuICAgICAgICAgICAgKHBhZ2VDaGFuZ2UpPVwib25QYWdlQ2hhbmdlKCRldmVudClcIlxyXG4gICAgICAgICAgICAocGFnZVNpemVDaGFuZ2UpPVwib25QYWdlU2l6ZUNoYW5nZSgkZXZlbnQpXCI+PC9saWItcGFnaW5hdGlvbj5cclxuICAgIDwvZGl2PlxyXG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImFjdGl2aXR5TG9nTG9hZGluZ1wiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJyb3cgbG9hZGVyICBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXJcIj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInNoaW1tZXJcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ3cmFwcGVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInN0cm9rZSBhbmltYXRlIHRpdGxlXCI+PC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInN0cm9rZSBhbmltYXRlIGxpbmtcIj48L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwic3Ryb2tlIGFuaW1hdGUgZGVzY3JpcHRpb25cIj48L2Rpdj5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInNoaW1tZXJcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJ3cmFwcGVyXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInN0cm9rZSBhbmltYXRlIHRpdGxlXCI+PC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cInN0cm9rZSBhbmltYXRlIGxpbmtcIj48L2Rpdj5cclxuICAgICAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwic3Ryb2tlIGFuaW1hdGUgZGVzY3JpcHRpb25cIj48L2Rpdj5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Rpdj5cclxuICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImFjdGl2aXR5TG9nTm9EYXRhICYmICFhY3Rpdml0eUxvZ0xvYWRpbmdcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwicm93XCI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJjb2wtbGctMTIgbXktNlwiPlxyXG4gICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImNhcmQtYm9keSBkLWZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXIgZmxleC1jb2x1bW5cIj5cclxuICAgICAgICAgICAgICAgICAgICA8aW1nIGNsYXNzPVwiaW1nLXNyY1wiIHNyYz1cIi4vYXNzZXRzL3RhbmdvL0ljb25zL05vZGF0YTEuc3ZnXCIgYWx0PVwiXCI+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm5vZGF0YW1haW50ZXh0IG10LTNcIj5ObyBkYXRhIGZvdW5kPC9kaXY+XHJcbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cIm5vZGF0YXN1YnRleHRcIj5UaGVyZSBpcyBubyByZXN1bHQgZm9yIFBlcmZvcm1hbmNlIFRhYmxlXHJcbiAgICAgICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L25nLWNvbnRhaW5lcj5cclxuPC9kaXY+Il19