@sumaris-net/ngx-components 2.6.4-alpha5 → 2.6.4-alpha6

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 (1179) hide show
  1. package/esm2020/public_api.mjs +313 -0
  2. package/esm2020/src/app/admin/admin-routing.module.mjs +41 -0
  3. package/esm2020/src/app/admin/admin.module.mjs +34 -0
  4. package/esm2020/src/app/admin/services/filter/person.filter.mjs +59 -0
  5. package/esm2020/src/app/admin/services/person.service.mjs +161 -0
  6. package/esm2020/src/app/admin/services/validator/person.validator.mjs +34 -0
  7. package/esm2020/src/app/admin/users/users.mjs +234 -0
  8. package/esm2020/src/app/admin/users/users.module.mjs +54 -0
  9. package/esm2020/src/app/core/about/about.modal.mjs +71 -0
  10. package/esm2020/src/app/core/about/about.module.mjs +34 -0
  11. package/esm2020/src/app/core/account/account.module.mjs +61 -0
  12. package/esm2020/src/app/core/account/account.page.mjs +316 -0
  13. package/esm2020/src/app/core/account/new-token.modal.mjs +115 -0
  14. package/esm2020/src/app/core/account/token.table.mjs +137 -0
  15. package/esm2020/src/app/core/auth/auth.form.mjs +131 -0
  16. package/esm2020/src/app/core/auth/auth.modal.mjs +72 -0
  17. package/esm2020/src/app/core/auth/auth.module.mjs +47 -0
  18. package/esm2020/src/app/core/core.module.mjs +184 -0
  19. package/esm2020/src/app/core/core.testing.module.mjs +86 -0
  20. package/esm2020/src/app/core/form/buttons/form-buttons-bar.component.mjs +71 -0
  21. package/esm2020/src/app/core/form/buttons/form-buttons-bar.module.mjs +35 -0
  22. package/esm2020/src/app/core/form/entity/editor.class.mjs +679 -0
  23. package/esm2020/src/app/core/form/entity/entity-editor-modal.class.mjs +421 -0
  24. package/esm2020/src/app/core/form/entity/entity-editor.class.mjs +687 -0
  25. package/esm2020/src/app/core/form/entity/entity-metadata.component.mjs +25 -0
  26. package/esm2020/src/app/core/form/entity/entity.module.mjs +38 -0
  27. package/esm2020/src/app/core/form/form.class.mjs +340 -0
  28. package/esm2020/src/app/core/form/form.module.mjs +66 -0
  29. package/esm2020/src/app/core/form/form.utils.mjs +473 -0
  30. package/esm2020/src/app/core/form/list/list.form.mjs +222 -0
  31. package/esm2020/src/app/core/form/list/list.module.mjs +35 -0
  32. package/esm2020/src/app/core/form/properties/properties.form.mjs +132 -0
  33. package/esm2020/src/app/core/form/properties/properties.module.mjs +43 -0
  34. package/esm2020/src/app/core/form/properties/properties.table.mjs +264 -0
  35. package/esm2020/src/app/core/form/properties/property.validator.mjs +23 -0
  36. package/esm2020/src/app/core/form/properties/testing/properties-form.test.mjs +90 -0
  37. package/esm2020/src/app/core/form/properties/testing/properties-form.testing.module.mjs +39 -0
  38. package/esm2020/src/app/core/form/text-popover/testing/text-popover.testing.mjs +70 -0
  39. package/esm2020/src/app/core/form/text-popover/testing/text-popover.testing.module.mjs +45 -0
  40. package/esm2020/src/app/core/form/text-popover/text-form.component.mjs +89 -0
  41. package/esm2020/src/app/core/form/text-popover/text-popover.component.mjs +146 -0
  42. package/esm2020/src/app/core/form/text-popover/text-popover.module.mjs +40 -0
  43. package/esm2020/src/app/core/graphql/graphql.module.mjs +22 -0
  44. package/esm2020/src/app/core/graphql/graphql.service.mjs +762 -0
  45. package/esm2020/src/app/core/graphql/graphql.utils.mjs +117 -0
  46. package/esm2020/src/app/core/home/home.mjs +257 -0
  47. package/esm2020/src/app/core/home/home.module.mjs +48 -0
  48. package/esm2020/src/app/core/icon/icon.component.mjs +41 -0
  49. package/esm2020/src/app/core/icon/icon.module.mjs +29 -0
  50. package/esm2020/src/app/core/install/install-upgrade-card.component.mjs +343 -0
  51. package/esm2020/src/app/core/install/install-upgrade-card.module.mjs +35 -0
  52. package/esm2020/src/app/core/menu/menu.component.mjs +329 -0
  53. package/esm2020/src/app/core/menu/menu.model.mjs +35 -0
  54. package/esm2020/src/app/core/menu/menu.module.mjs +44 -0
  55. package/esm2020/src/app/core/menu/menu.service.mjs +55 -0
  56. package/esm2020/src/app/core/offline/update-offline-mode-card.component.mjs +27 -0
  57. package/esm2020/src/app/core/offline/update-offline-mode-card.module.mjs +35 -0
  58. package/esm2020/src/app/core/peer/select-peer.modal.mjs +182 -0
  59. package/esm2020/src/app/core/peer/select-peer.module.mjs +42 -0
  60. package/esm2020/src/app/core/register/register-confirm.page.mjs +81 -0
  61. package/esm2020/src/app/core/register/register.form.mjs +181 -0
  62. package/esm2020/src/app/core/register/register.modal.mjs +52 -0
  63. package/esm2020/src/app/core/register/register.module.mjs +44 -0
  64. package/esm2020/src/app/core/services/account.service.mjs +1212 -0
  65. package/esm2020/src/app/core/services/auth-guard.service.mjs +71 -0
  66. package/esm2020/src/app/core/services/base-entity-service.class.mjs +444 -0
  67. package/esm2020/src/app/core/services/base-graphql-service.class.mjs +219 -0
  68. package/esm2020/src/app/core/services/base58.mjs +78 -0
  69. package/esm2020/src/app/core/services/config/core.config.mjs +175 -0
  70. package/esm2020/src/app/core/services/config.service.mjs +354 -0
  71. package/esm2020/src/app/core/services/crypto.service.mjs +114 -0
  72. package/esm2020/src/app/core/services/errors.mjs +50 -0
  73. package/esm2020/src/app/core/services/local-settings.service.mjs +449 -0
  74. package/esm2020/src/app/core/services/model/account.model.mjs +122 -0
  75. package/esm2020/src/app/core/services/model/config.model.mjs +92 -0
  76. package/esm2020/src/app/core/services/model/department.model.mjs +30 -0
  77. package/esm2020/src/app/core/services/model/entity.decorators.mjs +97 -0
  78. package/esm2020/src/app/core/services/model/entity.model.mjs +240 -0
  79. package/esm2020/src/app/core/services/model/filter.model.mjs +94 -0
  80. package/esm2020/src/app/core/services/model/history.model.mjs +2 -0
  81. package/esm2020/src/app/core/services/model/model.enum.mjs +11 -0
  82. package/esm2020/src/app/core/services/model/peer.model.mjs +68 -0
  83. package/esm2020/src/app/core/services/model/person.model.mjs +83 -0
  84. package/esm2020/src/app/core/services/model/referential.model.mjs +164 -0
  85. package/esm2020/src/app/core/services/model/settings.model.mjs +3 -0
  86. package/esm2020/src/app/core/services/model/token.model.mjs +48 -0
  87. package/esm2020/src/app/core/services/network.service.mjs +589 -0
  88. package/esm2020/src/app/core/services/network.types.mjs +20 -0
  89. package/esm2020/src/app/core/services/network.utils.mjs +15 -0
  90. package/esm2020/src/app/core/services/pipes/account.pipes.mjs +38 -0
  91. package/esm2020/src/app/core/services/pipes/department-to-string.pipe.mjs +23 -0
  92. package/esm2020/src/app/core/services/pipes/person-to-string.pipe.mjs +23 -0
  93. package/esm2020/src/app/core/services/pipes/usage-mode.pipes.mjs +37 -0
  94. package/esm2020/src/app/core/services/platform.service.mjs +525 -0
  95. package/esm2020/src/app/core/services/storage/entities-storage.service.mjs +428 -0
  96. package/esm2020/src/app/core/services/storage/entity-store.class.mjs +449 -0
  97. package/esm2020/src/app/core/services/testing/referential-filter.model.mjs +23 -0
  98. package/esm2020/src/app/core/services/testing/referential.validator.mjs +45 -0
  99. package/esm2020/src/app/core/services/validator/account.validator.mjs +56 -0
  100. package/esm2020/src/app/core/services/validator/base.validator.class.mjs +47 -0
  101. package/esm2020/src/app/core/services/validator/local-settings.validator.mjs +66 -0
  102. package/esm2020/src/app/core/services/validator/user-settings.validator.mjs +27 -0
  103. package/esm2020/src/app/core/services/validator/user-token.validator.mjs +52 -0
  104. package/esm2020/src/app/core/settings/settings.module.mjs +34 -0
  105. package/esm2020/src/app/core/settings/settings.page.mjs +312 -0
  106. package/esm2020/src/app/core/table/actions-column.component.mjs +102 -0
  107. package/esm2020/src/app/core/table/async-table.class.mjs +1697 -0
  108. package/esm2020/src/app/core/table/entities-async-table-datasource.class.mjs +384 -0
  109. package/esm2020/src/app/core/table/entities-table-datasource.class.mjs +399 -0
  110. package/esm2020/src/app/core/table/memory-table.class.mjs +53 -0
  111. package/esm2020/src/app/core/table/table-select-columns.component.mjs +43 -0
  112. package/esm2020/src/app/core/table/table.class.mjs +1728 -0
  113. package/esm2020/src/app/core/table/table.model.mjs +12 -0
  114. package/esm2020/src/app/core/table/table.module.mjs +40 -0
  115. package/esm2020/src/app/core/table/table.utils.mjs +30 -0
  116. package/esm2020/src/app/core/table/testing/table-validator.service.mjs +27 -0
  117. package/esm2020/src/app/core/table/testing/table.testing.mjs +280 -0
  118. package/esm2020/src/app/core/table/testing/table.testing.module.mjs +38 -0
  119. package/esm2020/src/app/shared/alerts.mjs +239 -0
  120. package/esm2020/src/app/shared/audio/audio.mjs +248 -0
  121. package/esm2020/src/app/shared/audio/audio.testing.mjs +31 -0
  122. package/esm2020/src/app/shared/audio/audio.testing.module.mjs +45 -0
  123. package/esm2020/src/app/shared/capacitor/keyboard.mjs +40 -0
  124. package/esm2020/src/app/shared/capacitor/plugins.mjs +9 -0
  125. package/esm2020/src/app/shared/constants.mjs +10 -0
  126. package/esm2020/src/app/shared/dates.mjs +147 -0
  127. package/esm2020/src/app/shared/debug/debug-service.class.mjs +3 -0
  128. package/esm2020/src/app/shared/debug/debug.component.mjs +39 -0
  129. package/esm2020/src/app/shared/debug/debug.module.mjs +44 -0
  130. package/esm2020/src/app/shared/directives/autofocus.directive.mjs +92 -0
  131. package/esm2020/src/app/shared/directives/autotitle.directive.mjs +30 -0
  132. package/esm2020/src/app/shared/directives/directives.module.mjs +43 -0
  133. package/esm2020/src/app/shared/directives/drag-and-drop.directive.mjs +53 -0
  134. package/esm2020/src/app/shared/directives/ng-var.directive.mjs +31 -0
  135. package/esm2020/src/app/shared/directives/resizable/resizable.component.mjs +59 -0
  136. package/esm2020/src/app/shared/directives/resizable/resizable.directive.mjs +40 -0
  137. package/esm2020/src/app/shared/directives/resizable/resizable.module.mjs +17 -0
  138. package/esm2020/src/app/shared/events.mjs +64 -0
  139. package/esm2020/src/app/shared/file/csv.utils.mjs +74 -0
  140. package/esm2020/src/app/shared/file/file.service.mjs +117 -0
  141. package/esm2020/src/app/shared/file/file.utils.mjs +113 -0
  142. package/esm2020/src/app/shared/file/images.utils.mjs +161 -0
  143. package/esm2020/src/app/shared/file/json.utils.mjs +51 -0
  144. package/esm2020/src/app/shared/file/uri.utils.mjs +23 -0
  145. package/esm2020/src/app/shared/focusable.mjs +6 -0
  146. package/esm2020/src/app/shared/form/field.component.mjs +307 -0
  147. package/esm2020/src/app/shared/form/field.model.mjs +25 -0
  148. package/esm2020/src/app/shared/form/loading-spinner.mjs +36 -0
  149. package/esm2020/src/app/shared/forms.mjs +391 -0
  150. package/esm2020/src/app/shared/functions.mjs +477 -0
  151. package/esm2020/src/app/shared/geolocation/geolocation.utils.mjs +80 -0
  152. package/esm2020/src/app/shared/gesture/gesture-config.mjs +49 -0
  153. package/esm2020/src/app/shared/gesture/hammer.utils.mjs +2 -0
  154. package/esm2020/src/app/shared/graph/colors.utils.mjs +64 -0
  155. package/esm2020/src/app/shared/graph/graph-colors.mjs +212 -0
  156. package/esm2020/src/app/shared/guard/component-dirty.guard.mjs +57 -0
  157. package/esm2020/src/app/shared/help/help.modal.mjs +53 -0
  158. package/esm2020/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +23 -0
  159. package/esm2020/src/app/shared/hotkeys/hotkeys.service.mjs +84 -0
  160. package/esm2020/src/app/shared/hotkeys/shared-hotkeys.module.mjs +42 -0
  161. package/esm2020/src/app/shared/http/http.utils.mjs +52 -0
  162. package/esm2020/src/app/shared/image/gallery/image-gallery.component.mjs +365 -0
  163. package/esm2020/src/app/shared/image/gallery/image-gallery.module.mjs +59 -0
  164. package/esm2020/src/app/shared/image/gallery/testing/gallegry.model.testing.mjs +27 -0
  165. package/esm2020/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +90 -0
  166. package/esm2020/src/app/shared/image/gallery/testing/gallery.testing.mjs +39 -0
  167. package/esm2020/src/app/shared/image/gallery/testing/gallery.testing.module.mjs +56 -0
  168. package/esm2020/src/app/shared/image/image.model.mjs +2 -0
  169. package/esm2020/src/app/shared/image/image.module.mjs +29 -0
  170. package/esm2020/src/app/shared/image/image.service.mjs +98 -0
  171. package/esm2020/src/app/shared/inputs.mjs +231 -0
  172. package/esm2020/src/app/shared/interceptors/progess.interceptor.mjs +27 -0
  173. package/esm2020/src/app/shared/logging/log-level.model.mjs +48 -0
  174. package/esm2020/src/app/shared/logging/logger.model.mjs +47 -0
  175. package/esm2020/src/app/shared/logging/logging-service.class.mjs +121 -0
  176. package/esm2020/src/app/shared/logging/logging-service.config.mjs +2 -0
  177. package/esm2020/src/app/shared/logging/logging-service.module.mjs +30 -0
  178. package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +47 -0
  179. package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.mjs +916 -0
  180. package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +78 -0
  181. package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.utils.mjs +19 -0
  182. package/esm2020/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +209 -0
  183. package/esm2020/src/app/shared/material/badge/badge.directive.mjs +194 -0
  184. package/esm2020/src/app/shared/material/badge/badge.module.mjs +32 -0
  185. package/esm2020/src/app/shared/material/badge/badge.test.mjs +41 -0
  186. package/esm2020/src/app/shared/material/boolean/boolean.module.mjs +68 -0
  187. package/esm2020/src/app/shared/material/boolean/material.boolean.mjs +253 -0
  188. package/esm2020/src/app/shared/material/chips/chips.module.mjs +76 -0
  189. package/esm2020/src/app/shared/material/chips/material.chips.mjs +697 -0
  190. package/esm2020/src/app/shared/material/chips/testing/chips.test.mjs +143 -0
  191. package/esm2020/src/app/shared/material/datetime/datetime.module.mjs +91 -0
  192. package/esm2020/src/app/shared/material/datetime/material.date.mjs +376 -0
  193. package/esm2020/src/app/shared/material/datetime/material.dateshort.mjs +385 -0
  194. package/esm2020/src/app/shared/material/datetime/material.datetime.mjs +499 -0
  195. package/esm2020/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +108 -0
  196. package/esm2020/src/app/shared/material/datetime/testing/mat-date.test.mjs +110 -0
  197. package/esm2020/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +103 -0
  198. package/esm2020/src/app/shared/material/duration/duration.module.mjs +67 -0
  199. package/esm2020/src/app/shared/material/duration/duration.utils.mjs +36 -0
  200. package/esm2020/src/app/shared/material/duration/material.duration.mjs +257 -0
  201. package/esm2020/src/app/shared/material/latlong/latlong.utils.mjs +266 -0
  202. package/esm2020/src/app/shared/material/latlong/material.latlong.mjs +381 -0
  203. package/esm2020/src/app/shared/material/latlong/material.latlong.module.mjs +67 -0
  204. package/esm2020/src/app/shared/material/latlong/testing/latlong.test.mjs +102 -0
  205. package/esm2020/src/app/shared/material/material.animations.mjs +104 -0
  206. package/esm2020/src/app/shared/material/material.module.mjs +224 -0
  207. package/esm2020/src/app/shared/material/material.testing.module.mjs +168 -0
  208. package/esm2020/src/app/shared/material/numpad/numpad.append-to-input.directive.mjs +98 -0
  209. package/esm2020/src/app/shared/material/numpad/numpad.component.mjs +80 -0
  210. package/esm2020/src/app/shared/material/numpad/numpad.container.mjs +190 -0
  211. package/esm2020/src/app/shared/material/numpad/numpad.content.mjs +17 -0
  212. package/esm2020/src/app/shared/material/numpad/numpad.directive.mjs +162 -0
  213. package/esm2020/src/app/shared/material/numpad/numpad.dom-service.mjs +37 -0
  214. package/esm2020/src/app/shared/material/numpad/numpad.model.mjs +15 -0
  215. package/esm2020/src/app/shared/material/numpad/numpad.module.mjs +60 -0
  216. package/esm2020/src/app/shared/material/numpad/testing/numpad.test.mjs +46 -0
  217. package/esm2020/src/app/shared/material/paginator/material.paginator-i18n.mjs +46 -0
  218. package/esm2020/src/app/shared/material/stepper/material.stepper-i18n.mjs +22 -0
  219. package/esm2020/src/app/shared/material/swipe/material.swipe.mjs +344 -0
  220. package/esm2020/src/app/shared/material/swipe/swipe.module.mjs +52 -0
  221. package/esm2020/src/app/shared/material/swipe/testing/swipe.test.mjs +64 -0
  222. package/esm2020/src/app/shared/modules.mjs +11 -0
  223. package/esm2020/src/app/shared/observables.mjs +103 -0
  224. package/esm2020/src/app/shared/pipes/arrays.pipe.mjs +141 -0
  225. package/esm2020/src/app/shared/pipes/colors.pipe.mjs +23 -0
  226. package/esm2020/src/app/shared/pipes/date-diff-duration.pipe.mjs +48 -0
  227. package/esm2020/src/app/shared/pipes/date-format.pipe.mjs +66 -0
  228. package/esm2020/src/app/shared/pipes/date-from-now.pipe.mjs +27 -0
  229. package/esm2020/src/app/shared/pipes/duration.pipe.mjs +34 -0
  230. package/esm2020/src/app/shared/pipes/file-size.pipe.mjs +62 -0
  231. package/esm2020/src/app/shared/pipes/form.pipes.mjs +187 -0
  232. package/esm2020/src/app/shared/pipes/highlight.pipe.mjs +48 -0
  233. package/esm2020/src/app/shared/pipes/latlong-format.pipe.mjs +46 -0
  234. package/esm2020/src/app/shared/pipes/maps.pipe.mjs +63 -0
  235. package/esm2020/src/app/shared/pipes/math.pipes.mjs +59 -0
  236. package/esm2020/src/app/shared/pipes/ng-init.pipe.mjs +21 -0
  237. package/esm2020/src/app/shared/pipes/number-format.pipe.mjs +30 -0
  238. package/esm2020/src/app/shared/pipes/pipes.module.mjs +239 -0
  239. package/esm2020/src/app/shared/pipes/property.pipes.mjs +93 -0
  240. package/esm2020/src/app/shared/pipes/string.pipes.mjs +121 -0
  241. package/esm2020/src/app/shared/pipes/translate-context.pipe.mjs +43 -0
  242. package/esm2020/src/app/shared/pipes/types.pipes.mjs +45 -0
  243. package/esm2020/src/app/shared/platforms.mjs +43 -0
  244. package/esm2020/src/app/shared/services/entity-service.class.mjs +7 -0
  245. package/esm2020/src/app/shared/services/job.utils.mjs +92 -0
  246. package/esm2020/src/app/shared/services/memory-entity-service.class.mjs +337 -0
  247. package/esm2020/src/app/shared/services/progress-bar.service.mjs +33 -0
  248. package/esm2020/src/app/shared/services/startable-observable-service.class.mjs +119 -0
  249. package/esm2020/src/app/shared/services/startable-service.class.mjs +110 -0
  250. package/esm2020/src/app/shared/services/translate-context.service.mjs +105 -0
  251. package/esm2020/src/app/shared/services/validator-service.class.mjs +2 -0
  252. package/esm2020/src/app/shared/services.mjs +62 -0
  253. package/esm2020/src/app/shared/shared-routing.module.mjs +70 -0
  254. package/esm2020/src/app/shared/shared.module.mjs +208 -0
  255. package/esm2020/src/app/shared/shared.testing.module.mjs +84 -0
  256. package/esm2020/src/app/shared/storage/storage-explorer.component.mjs +268 -0
  257. package/esm2020/src/app/shared/storage/storage-explorer.module.mjs +60 -0
  258. package/esm2020/src/app/shared/storage/storage.service.mjs +132 -0
  259. package/esm2020/src/app/shared/storage/storage.utils.mjs +13 -0
  260. package/esm2020/src/app/shared/testing/observable.test.mjs +95 -0
  261. package/esm2020/src/app/shared/testing/tests.page.mjs +33 -0
  262. package/esm2020/src/app/shared/toast/toast.testing.mjs +51 -0
  263. package/esm2020/src/app/shared/toast/toast.testing.module.mjs +45 -0
  264. package/esm2020/src/app/shared/toast/toasts.mjs +144 -0
  265. package/esm2020/src/app/shared/toolbar/modal-toolbar.mjs +58 -0
  266. package/esm2020/src/app/shared/toolbar/toolbar.mjs +251 -0
  267. package/esm2020/src/app/shared/toolbar/toolbar.module.mjs +53 -0
  268. package/esm2020/src/app/shared/types.mjs +2 -0
  269. package/esm2020/src/app/shared/upload-file/testing/upload-file.testing.mjs +57 -0
  270. package/esm2020/src/app/shared/upload-file/testing/upload-file.testing.module.mjs +45 -0
  271. package/esm2020/src/app/shared/upload-file/upload-file-popover.component.mjs +97 -0
  272. package/esm2020/src/app/shared/upload-file/upload-file.component.mjs +204 -0
  273. package/esm2020/src/app/shared/upload-file/upload-file.model.mjs +20 -0
  274. package/esm2020/src/app/shared/validator/form-error-adapter.class.mjs +104 -0
  275. package/esm2020/src/app/shared/validator/validators.mjs +573 -0
  276. package/esm2020/src/app/shared/version/versions.mjs +81 -0
  277. package/esm2020/src/app/social/job/job.module.mjs +42 -0
  278. package/esm2020/src/app/social/job/progression/job-progression.component.mjs +20 -0
  279. package/esm2020/src/app/social/job/progression/job-progression.icon.mjs +216 -0
  280. package/esm2020/src/app/social/job/progression/job-progression.list.mjs +43 -0
  281. package/esm2020/src/app/social/job/progression/job-progression.model.mjs +23 -0
  282. package/esm2020/src/app/social/job/progression/job-progression.service.mjs +71 -0
  283. package/esm2020/src/app/social/job/testing/job-progression.testing.mjs +52 -0
  284. package/esm2020/src/app/social/job/testing/job-progression.testing.service.mjs +55 -0
  285. package/esm2020/src/app/social/job/testing/job.testing.module.mjs +35 -0
  286. package/esm2020/src/app/social/message/message.form.mjs +81 -0
  287. package/esm2020/src/app/social/message/message.modal.mjs +93 -0
  288. package/esm2020/src/app/social/message/message.model.mjs +65 -0
  289. package/esm2020/src/app/social/message/message.module.mjs +35 -0
  290. package/esm2020/src/app/social/message/message.service.mjs +84 -0
  291. package/esm2020/src/app/social/social.errors.mjs +10 -0
  292. package/esm2020/src/app/social/social.module.mjs +47 -0
  293. package/esm2020/src/app/social/social.testing.module.mjs +51 -0
  294. package/esm2020/src/app/social/user-event/notification/user-event-notification.icon.mjs +114 -0
  295. package/esm2020/src/app/social/user-event/notification/user-event-notification.list.mjs +246 -0
  296. package/esm2020/src/app/social/user-event/testing/user-event.testing.mjs +227 -0
  297. package/esm2020/src/app/social/user-event/testing/user-event.testing.model.mjs +112 -0
  298. package/esm2020/src/app/social/user-event/testing/user-event.testing.module.mjs +35 -0
  299. package/esm2020/src/app/social/user-event/testing/user-event.testing.service.mjs +111 -0
  300. package/esm2020/src/app/social/user-event/user-event.model.mjs +2 -0
  301. package/esm2020/src/app/social/user-event/user-event.module.mjs +39 -0
  302. package/esm2020/src/app/social/user-event/user-event.service.mjs +487 -0
  303. package/esm2020/src/environments/environment.class.mjs +5 -0
  304. package/esm2020/src/environments/environment.mjs +94 -0
  305. package/esm2020/sumaris-net.ngx-components.mjs +5 -0
  306. package/fesm2015/sumaris-net.ngx-components.mjs +38842 -0
  307. package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -0
  308. package/fesm2020/sumaris-net.ngx-components.mjs +37941 -0
  309. package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -0
  310. package/index.d.ts +5 -0
  311. package/package.json +23 -137
  312. package/public_api.d.ts +286 -0
  313. package/src/app/admin/admin-routing.module.d.ts +9 -0
  314. package/src/app/admin/admin.module.d.ts +10 -0
  315. package/src/app/admin/services/filter/person.filter.d.ts +21 -0
  316. package/src/app/admin/services/person.service.d.ts +44 -0
  317. package/src/app/admin/services/validator/person.validator.d.ts +14 -0
  318. package/src/app/admin/users/users.d.ts +44 -0
  319. package/src/app/admin/users/users.module.d.ts +13 -0
  320. package/src/app/core/about/about.modal.d.ts +32 -0
  321. package/src/app/core/about/about.module.d.ts +10 -0
  322. package/src/app/core/account/account.module.d.ts +15 -0
  323. package/src/app/core/account/account.page.d.ts +68 -0
  324. package/src/app/core/account/new-token.modal.d.ts +41 -0
  325. package/src/app/core/account/token.table.d.ts +25 -0
  326. package/src/app/core/auth/auth.form.d.ts +36 -0
  327. package/src/app/core/auth/auth.modal.d.ts +24 -0
  328. package/src/app/core/auth/auth.module.d.ts +11 -0
  329. package/src/app/core/core.module.d.ts +31 -0
  330. package/src/app/core/core.testing.module.d.ts +14 -0
  331. package/src/app/core/form/buttons/form-buttons-bar.component.d.ts +26 -0
  332. package/src/app/core/form/buttons/form-buttons-bar.module.d.ts +9 -0
  333. package/src/app/core/form/entity/editor.class.d.ts +243 -0
  334. package/src/app/core/form/entity/entity-editor-modal.class.d.ts +128 -0
  335. package/src/app/core/form/entity/entity-editor.class.d.ts +205 -0
  336. package/src/app/core/form/entity/entity-metadata.component.d.ts +13 -0
  337. package/src/app/core/form/entity/entity.module.d.ts +10 -0
  338. package/src/app/core/form/form.class.d.ts +155 -0
  339. package/src/app/core/form/form.module.d.ts +13 -0
  340. package/src/app/core/form/form.utils.d.ts +336 -0
  341. package/src/app/core/form/list/list.form.d.ts +81 -0
  342. package/src/app/core/form/list/list.module.d.ts +9 -0
  343. package/src/app/core/form/properties/properties.form.d.ts +44 -0
  344. package/src/app/core/form/properties/properties.module.d.ts +11 -0
  345. package/src/app/core/form/properties/properties.table.d.ts +78 -0
  346. package/src/app/core/form/properties/property.validator.d.ts +13 -0
  347. package/src/app/core/form/properties/testing/properties-form.test.d.ts +19 -0
  348. package/src/app/core/form/properties/testing/properties-form.testing.module.d.ts +12 -0
  349. package/src/app/core/form/text-popover/testing/text-popover.testing.d.ts +14 -0
  350. package/src/app/core/form/text-popover/testing/text-popover.testing.module.d.ts +11 -0
  351. package/src/app/core/form/text-popover/text-form.component.d.ts +32 -0
  352. package/src/app/core/form/text-popover/text-popover.component.d.ts +70 -0
  353. package/src/app/core/form/text-popover/text-popover.module.d.ts +10 -0
  354. package/src/app/core/graphql/graphql.module.d.ts +8 -0
  355. package/src/app/core/graphql/graphql.service.d.ts +148 -0
  356. package/src/app/core/graphql/graphql.utils.d.ts +42 -0
  357. package/src/app/core/home/home.d.ts +74 -0
  358. package/src/app/core/home/home.module.d.ts +12 -0
  359. package/src/app/core/icon/icon.component.d.ts +13 -0
  360. package/src/app/core/icon/icon.module.d.ts +9 -0
  361. package/src/app/core/install/install-upgrade-card.component.d.ts +63 -0
  362. package/src/app/core/install/install-upgrade-card.module.d.ts +9 -0
  363. package/src/app/core/menu/menu.component.d.ts +62 -0
  364. package/src/app/core/menu/menu.model.d.ts +28 -0
  365. package/src/app/core/menu/menu.module.d.ts +10 -0
  366. package/src/app/core/menu/menu.service.d.ts +21 -0
  367. package/src/app/core/offline/update-offline-mode-card.component.d.ts +11 -0
  368. package/src/app/core/offline/update-offline-mode-card.module.d.ts +9 -0
  369. package/src/app/core/peer/select-peer.modal.d.ts +53 -0
  370. package/src/app/core/peer/select-peer.module.d.ts +11 -0
  371. package/src/app/core/register/register-confirm.page.d.ts +24 -0
  372. package/src/app/core/register/register.form.d.ts +48 -0
  373. package/src/app/core/register/register.modal.d.ts +14 -0
  374. package/src/app/core/register/register.module.d.ts +12 -0
  375. package/src/app/core/services/account.service.d.ts +191 -0
  376. package/src/app/core/services/auth-guard.service.d.ts +17 -0
  377. package/src/app/core/services/base-entity-service.class.d.ts +104 -0
  378. package/src/app/core/services/base-graphql-service.class.d.ts +77 -0
  379. package/src/app/core/services/base58.d.ts +7 -0
  380. package/src/app/core/services/config/core.config.d.ts +29 -0
  381. package/src/app/core/services/config.service.d.ts +60 -0
  382. package/src/app/core/services/crypto.service.d.ts +44 -0
  383. package/src/app/core/services/errors.d.ts +51 -0
  384. package/src/app/core/services/local-settings.service.d.ts +90 -0
  385. package/src/app/core/services/model/account.model.d.ts +35 -0
  386. package/src/app/core/services/model/config.model.d.ts +36 -0
  387. package/src/app/core/services/model/department.model.d.ts +11 -0
  388. package/src/app/core/services/model/entity.decorators.d.ts +17 -0
  389. package/src/app/core/services/model/entity.model.d.ts +89 -0
  390. package/src/app/core/services/model/filter.model.d.ts +43 -0
  391. package/src/app/core/services/model/history.model.d.ts +20 -0
  392. package/src/app/core/services/model/model.enum.d.ts +7 -0
  393. package/src/app/core/services/model/peer.model.d.ts +29 -0
  394. package/src/app/core/services/model/person.model.d.ts +31 -0
  395. package/src/app/core/services/model/referential.model.d.ts +77 -0
  396. package/src/app/core/services/model/settings.model.d.ts +26 -0
  397. package/src/app/core/services/model/token.model.d.ts +21 -0
  398. package/src/app/core/services/network.service.d.ts +149 -0
  399. package/src/app/core/services/network.types.d.ts +5 -0
  400. package/src/app/core/services/network.utils.d.ts +31 -0
  401. package/src/app/core/services/pipes/account.pipes.d.ts +15 -0
  402. package/src/app/core/services/pipes/department-to-string.pipe.d.ts +9 -0
  403. package/src/app/core/services/pipes/person-to-string.pipe.d.ts +9 -0
  404. package/src/app/core/services/pipes/usage-mode.pipes.d.ts +15 -0
  405. package/src/app/core/services/platform.service.d.ts +96 -0
  406. package/src/app/core/services/storage/entities-storage.service.d.ts +108 -0
  407. package/src/app/core/services/storage/entity-store.class.d.ts +113 -0
  408. package/src/app/core/services/testing/referential-filter.model.d.ts +9 -0
  409. package/src/app/core/services/testing/referential.validator.d.ts +22 -0
  410. package/src/app/core/services/validator/account.validator.d.ts +17 -0
  411. package/src/app/core/services/validator/base.validator.class.d.ts +21 -0
  412. package/src/app/core/services/validator/local-settings.validator.d.ts +18 -0
  413. package/src/app/core/services/validator/user-settings.validator.d.ts +10 -0
  414. package/src/app/core/services/validator/user-token.validator.d.ts +13 -0
  415. package/src/app/core/settings/settings.module.d.ts +10 -0
  416. package/src/app/core/settings/settings.page.d.ts +68 -0
  417. package/src/app/core/table/actions-column.component.d.ts +48 -0
  418. package/src/app/core/table/async-table.class.d.ts +383 -0
  419. package/src/app/core/table/entities-async-table-datasource.class.d.ts +80 -0
  420. package/src/app/core/table/entities-table-datasource.class.d.ts +94 -0
  421. package/src/app/core/table/memory-table.class.d.ts +25 -0
  422. package/src/app/core/table/table-select-columns.component.d.ts +22 -0
  423. package/src/app/core/table/table.class.d.ts +386 -0
  424. package/src/app/core/table/table.model.d.ts +26 -0
  425. package/src/app/core/table/table.module.d.ts +10 -0
  426. package/src/app/core/table/table.utils.d.ts +11 -0
  427. package/src/app/core/table/testing/table-validator.service.d.ts +17 -0
  428. package/src/app/core/table/testing/table.testing.d.ts +53 -0
  429. package/src/app/core/table/testing/table.testing.module.d.ts +11 -0
  430. package/src/app/shared/alerts.d.ts +53 -0
  431. package/src/app/shared/audio/audio.d.ts +44 -0
  432. package/src/app/shared/audio/audio.testing.d.ts +13 -0
  433. package/src/app/shared/audio/audio.testing.module.d.ts +11 -0
  434. package/src/app/shared/capacitor/keyboard.d.ts +16 -0
  435. package/src/app/shared/capacitor/plugins.d.ts +7 -0
  436. package/src/app/shared/constants.d.ts +7 -0
  437. package/src/app/shared/dates.d.ts +39 -0
  438. package/src/app/shared/debug/debug-service.class.d.ts +5 -0
  439. package/src/app/shared/debug/debug.component.d.ts +13 -0
  440. package/src/app/shared/debug/debug.module.d.ts +12 -0
  441. package/src/app/shared/directives/autofocus.directive.d.ts +19 -0
  442. package/src/app/shared/directives/autotitle.directive.d.ts +10 -0
  443. package/src/app/shared/directives/directives.module.d.ts +12 -0
  444. package/src/app/shared/directives/drag-and-drop.directive.d.ts +17 -0
  445. package/src/app/shared/directives/ng-var.directive.d.ts +12 -0
  446. package/src/app/shared/directives/resizable/resizable.component.d.ts +21 -0
  447. package/src/app/shared/directives/resizable/resizable.directive.d.ts +12 -0
  448. package/src/app/shared/directives/resizable/resizable.module.d.ts +8 -0
  449. package/src/app/shared/events.d.ts +27 -0
  450. package/src/app/shared/file/csv.utils.d.ts +19 -0
  451. package/src/app/shared/file/file.service.d.ts +23 -0
  452. package/src/app/shared/file/file.utils.d.ts +20 -0
  453. package/src/app/shared/file/images.utils.d.ts +19 -0
  454. package/src/app/shared/file/json.utils.d.ts +16 -0
  455. package/src/app/shared/file/uri.utils.d.ts +7 -0
  456. package/src/app/shared/focusable.d.ts +4 -0
  457. package/src/app/shared/form/field.component.d.ts +71 -0
  458. package/src/app/shared/form/field.model.d.ts +37 -0
  459. package/src/app/shared/form/loading-spinner.d.ts +8 -0
  460. package/src/app/shared/forms.d.ts +89 -0
  461. package/src/app/shared/functions.d.ts +132 -0
  462. package/src/app/shared/geolocation/geolocation.utils.d.ts +19 -0
  463. package/src/app/shared/gesture/gesture-config.d.ts +15 -0
  464. package/src/app/shared/gesture/hammer.utils.d.ts +16 -0
  465. package/src/app/shared/graph/colors.utils.d.ts +17 -0
  466. package/src/app/shared/graph/graph-colors.d.ts +63 -0
  467. package/src/app/shared/guard/component-dirty.guard.d.ts +19 -0
  468. package/src/app/shared/help/help.modal.d.ts +33 -0
  469. package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.d.ts +10 -0
  470. package/src/app/shared/hotkeys/hotkeys.service.d.ts +28 -0
  471. package/src/app/shared/hotkeys/shared-hotkeys.module.d.ts +11 -0
  472. package/src/app/shared/http/http.utils.d.ts +27 -0
  473. package/src/app/shared/image/gallery/image-gallery.component.d.ts +98 -0
  474. package/src/app/shared/image/gallery/image-gallery.module.d.ts +14 -0
  475. package/src/app/shared/image/gallery/testing/gallegry.model.testing.d.ts +12 -0
  476. package/src/app/shared/image/gallery/testing/gallery.service.testing.d.ts +33 -0
  477. package/src/app/shared/image/gallery/testing/gallery.testing.d.ts +16 -0
  478. package/src/app/shared/image/gallery/testing/gallery.testing.module.d.ts +12 -0
  479. package/src/app/shared/image/image.model.d.ts +5 -0
  480. package/src/app/shared/image/image.module.d.ts +8 -0
  481. package/src/app/shared/image/image.service.d.ts +32 -0
  482. package/src/app/shared/inputs.d.ts +32 -0
  483. package/src/app/shared/interceptors/progess.interceptor.d.ts +8 -0
  484. package/src/app/shared/logging/log-level.model.d.ts +38 -0
  485. package/src/app/shared/logging/logger.model.d.ts +68 -0
  486. package/src/app/shared/logging/logging-service.class.d.ts +39 -0
  487. package/src/app/shared/logging/logging-service.config.d.ts +25 -0
  488. package/src/app/shared/logging/logging-service.module.d.ts +9 -0
  489. package/src/app/shared/material/autocomplete/material.autocomplete.config.d.ts +36 -0
  490. package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +138 -0
  491. package/src/app/shared/material/autocomplete/material.autocomplete.module.d.ts +21 -0
  492. package/src/app/shared/material/autocomplete/material.autocomplete.utils.d.ts +4 -0
  493. package/src/app/shared/material/autocomplete/testing/autocomplete.test.d.ts +45 -0
  494. package/src/app/shared/material/badge/badge.directive.d.ts +37 -0
  495. package/src/app/shared/material/badge/badge.module.d.ts +10 -0
  496. package/src/app/shared/material/badge/badge.test.d.ts +21 -0
  497. package/src/app/shared/material/boolean/boolean.module.d.ts +19 -0
  498. package/src/app/shared/material/boolean/material.boolean.d.ts +66 -0
  499. package/src/app/shared/material/chips/chips.module.d.ts +21 -0
  500. package/src/app/shared/material/chips/material.chips.d.ts +126 -0
  501. package/src/app/shared/material/chips/testing/chips.test.d.ts +31 -0
  502. package/src/app/shared/material/datetime/datetime.module.d.ts +24 -0
  503. package/src/app/shared/material/datetime/material.date.d.ts +74 -0
  504. package/src/app/shared/material/datetime/material.dateshort.d.ts +75 -0
  505. package/src/app/shared/material/datetime/material.datetime.d.ts +100 -0
  506. package/src/app/shared/material/datetime/testing/mat-date-time.test.d.ts +31 -0
  507. package/src/app/shared/material/datetime/testing/mat-date.test.d.ts +30 -0
  508. package/src/app/shared/material/datetime/testing/mat-dateshort.test.d.ts +29 -0
  509. package/src/app/shared/material/duration/duration.module.d.ts +18 -0
  510. package/src/app/shared/material/duration/duration.utils.d.ts +3 -0
  511. package/src/app/shared/material/duration/material.duration.d.ts +57 -0
  512. package/src/app/shared/material/latlong/latlong.utils.d.ts +13 -0
  513. package/src/app/shared/material/latlong/material.latlong.d.ts +65 -0
  514. package/src/app/shared/material/latlong/material.latlong.module.d.ts +19 -0
  515. package/src/app/shared/material/latlong/testing/latlong.test.d.ts +21 -0
  516. package/src/app/shared/material/material.animations.d.ts +4 -0
  517. package/src/app/shared/material/material.module.d.ts +45 -0
  518. package/src/app/shared/material/material.testing.module.d.ts +25 -0
  519. package/src/app/shared/material/numpad/numpad.append-to-input.directive.d.ts +22 -0
  520. package/src/app/shared/material/numpad/numpad.component.d.ts +26 -0
  521. package/src/app/shared/material/numpad/numpad.container.d.ts +40 -0
  522. package/src/app/shared/material/numpad/numpad.content.d.ts +7 -0
  523. package/src/app/shared/material/numpad/numpad.directive.d.ts +35 -0
  524. package/src/app/shared/material/numpad/numpad.dom-service.d.ts +16 -0
  525. package/src/app/shared/material/numpad/numpad.model.d.ts +30 -0
  526. package/src/app/shared/material/numpad/numpad.module.d.ts +16 -0
  527. package/src/app/shared/material/numpad/testing/numpad.test.d.ts +13 -0
  528. package/src/app/shared/material/paginator/material.paginator-i18n.d.ts +15 -0
  529. package/src/app/shared/material/stepper/material.stepper-i18n.d.ts +10 -0
  530. package/src/app/shared/material/swipe/material.swipe.d.ts +89 -0
  531. package/src/app/shared/material/swipe/swipe.module.d.ts +15 -0
  532. package/src/app/shared/material/swipe/testing/swipe.test.d.ts +22 -0
  533. package/src/app/shared/modules.d.ts +8 -0
  534. package/src/app/shared/observables.d.ts +29 -0
  535. package/src/app/shared/pipes/arrays.pipe.d.ts +54 -0
  536. package/src/app/shared/pipes/colors.pipe.d.ts +9 -0
  537. package/src/app/shared/pipes/date-diff-duration.pipe.d.ts +23 -0
  538. package/src/app/shared/pipes/date-format.pipe.d.ts +34 -0
  539. package/src/app/shared/pipes/date-from-now.pipe.d.ts +12 -0
  540. package/src/app/shared/pipes/duration.pipe.d.ts +13 -0
  541. package/src/app/shared/pipes/file-size.pipe.d.ts +30 -0
  542. package/src/app/shared/pipes/form.pipes.d.ts +59 -0
  543. package/src/app/shared/pipes/highlight.pipe.d.ts +11 -0
  544. package/src/app/shared/pipes/latlong-format.pipe.d.ts +20 -0
  545. package/src/app/shared/pipes/maps.pipe.d.ts +22 -0
  546. package/src/app/shared/pipes/math.pipes.d.ts +20 -0
  547. package/src/app/shared/pipes/ng-init.pipe.d.ts +8 -0
  548. package/src/app/shared/pipes/number-format.pipe.d.ts +10 -0
  549. package/src/app/shared/pipes/pipes.module.d.ts +27 -0
  550. package/src/app/shared/pipes/property.pipes.d.ts +26 -0
  551. package/src/app/shared/pipes/string.pipes.d.ts +47 -0
  552. package/src/app/shared/pipes/translate-context.pipe.d.ts +17 -0
  553. package/src/app/shared/pipes/types.pipes.d.ts +18 -0
  554. package/src/app/shared/platforms.d.ts +8 -0
  555. package/src/app/shared/services/entity-service.class.d.ts +73 -0
  556. package/src/app/shared/services/job.utils.d.ts +20 -0
  557. package/src/app/shared/services/memory-entity-service.class.d.ts +71 -0
  558. package/src/app/shared/services/progress-bar.service.d.ts +20 -0
  559. package/src/app/shared/services/startable-observable-service.class.d.ts +33 -0
  560. package/src/app/shared/services/startable-service.class.d.ts +34 -0
  561. package/src/app/shared/services/translate-context.service.d.ts +29 -0
  562. package/src/app/shared/services/validator-service.class.d.ts +10 -0
  563. package/src/app/shared/services.d.ts +9 -0
  564. package/src/app/shared/shared-routing.module.d.ts +22 -0
  565. package/src/app/shared/shared.module.d.ts +31 -0
  566. package/src/app/shared/shared.testing.module.d.ts +17 -0
  567. package/src/app/shared/storage/storage-explorer.component.d.ts +58 -0
  568. package/src/app/shared/storage/storage-explorer.module.d.ts +16 -0
  569. package/src/app/shared/storage/storage.service.d.ts +23 -0
  570. package/src/app/shared/storage/storage.utils.d.ts +19 -0
  571. package/src/app/shared/testing/observable.test.d.ts +25 -0
  572. package/src/app/shared/testing/tests.page.d.ts +20 -0
  573. package/src/app/shared/toast/toast.testing.d.ts +15 -0
  574. package/src/app/shared/toast/toast.testing.module.d.ts +11 -0
  575. package/src/app/shared/toast/toasts.d.ts +17 -0
  576. package/src/app/shared/toolbar/modal-toolbar.d.ts +21 -0
  577. package/src/app/shared/toolbar/toolbar.d.ts +63 -0
  578. package/src/app/shared/toolbar/toolbar.module.d.ts +15 -0
  579. package/src/app/shared/types.d.ts +26 -0
  580. package/src/app/shared/upload-file/testing/upload-file.testing.d.ts +20 -0
  581. package/src/app/shared/upload-file/testing/upload-file.testing.module.d.ts +11 -0
  582. package/src/app/shared/upload-file/upload-file-popover.component.d.ts +39 -0
  583. package/src/app/shared/upload-file/upload-file.component.d.ts +48 -0
  584. package/src/app/shared/upload-file/upload-file.model.d.ts +30 -0
  585. package/src/app/shared/validator/form-error-adapter.class.d.ts +27 -0
  586. package/src/app/shared/validator/validators.d.ts +115 -0
  587. package/src/app/shared/version/versions.d.ts +26 -0
  588. package/src/app/social/job/job.module.d.ts +12 -0
  589. package/src/app/social/job/progression/job-progression.component.d.ts +9 -0
  590. package/src/app/social/job/progression/job-progression.icon.d.ts +49 -0
  591. package/src/app/social/job/progression/job-progression.list.d.ts +21 -0
  592. package/src/app/social/job/progression/job-progression.model.d.ts +11 -0
  593. package/src/app/social/job/progression/job-progression.service.d.ts +34 -0
  594. package/src/app/social/job/testing/job-progression.testing.d.ts +17 -0
  595. package/src/app/social/job/testing/job-progression.testing.service.d.ts +17 -0
  596. package/src/app/social/job/testing/job.testing.module.d.ts +11 -0
  597. package/src/app/social/message/message.form.d.ts +30 -0
  598. package/src/app/social/message/message.modal.d.ts +39 -0
  599. package/src/app/social/message/message.model.d.ts +31 -0
  600. package/src/app/social/message/message.module.d.ts +11 -0
  601. package/src/app/social/message/message.service.d.ts +27 -0
  602. package/src/app/social/social.errors.d.ts +9 -0
  603. package/src/app/social/social.module.d.ts +20 -0
  604. package/src/app/social/social.testing.module.d.ts +13 -0
  605. package/src/app/social/user-event/notification/user-event-notification.icon.d.ts +31 -0
  606. package/src/app/social/user-event/notification/user-event-notification.list.d.ts +71 -0
  607. package/src/app/social/user-event/testing/user-event.testing.d.ts +34 -0
  608. package/src/app/social/user-event/testing/user-event.testing.model.d.ts +44 -0
  609. package/src/app/social/user-event/testing/user-event.testing.module.d.ts +11 -0
  610. package/src/app/social/user-event/testing/user-event.testing.service.d.ts +41 -0
  611. package/src/app/social/user-event/user-event.model.d.ts +45 -0
  612. package/src/app/social/user-event/user-event.module.d.ts +12 -0
  613. package/src/app/social/user-event/user-event.service.d.ts +124 -0
  614. package/src/environments/environment.class.d.ts +57 -0
  615. package/src/environments/environment.d.ts +3 -0
  616. package/.editorconfig +0 -24
  617. package/.eslintrc.json +0 -74
  618. package/.gitattribute +0 -1
  619. package/.github/CONTRIBUTING.md +0 -10
  620. package/.github/ISSUE_TEMPLATE.md +0 -6
  621. package/.github/PULL_REQUEST_TEMPLATE.md +0 -10
  622. package/.github/github_disclaimer.md +0 -14
  623. package/.gitlab-ci.yml +0 -46
  624. package/.graphqlconfig +0 -15
  625. package/angular.json +0 -230
  626. package/capacitor.config.json +0 -9
  627. package/ionic.config.json +0 -7
  628. package/karma.conf.js +0 -32
  629. package/ng-package.json +0 -19
  630. package/ngcc.config.js +0 -14
  631. package/public_api.ts +0 -343
  632. package/resources/android/build/tools/android-accept-licenses.sh +0 -14
  633. package/resources/android/icon/drawable-hdpi-icon.png +0 -0
  634. package/resources/android/icon/drawable-ldpi-icon.png +0 -0
  635. package/resources/android/icon/drawable-mdpi-icon.png +0 -0
  636. package/resources/android/icon/drawable-xhdpi-icon.png +0 -0
  637. package/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
  638. package/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
  639. package/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
  640. package/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
  641. package/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
  642. package/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
  643. package/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
  644. package/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
  645. package/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
  646. package/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
  647. package/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
  648. package/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
  649. package/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
  650. package/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
  651. package/resources/android/splash/drawable-xxxhdpi-screen.png +0 -0
  652. package/resources/icon/TODO.md +0 -11
  653. package/resources/icon.png +0 -0
  654. package/resources/icon.png.md5 +0 -1
  655. package/resources/icon.xcf +0 -0
  656. package/resources/ios/icon/icon-1024.png +0 -0
  657. package/resources/ios/icon/icon-108@2x.png +0 -0
  658. package/resources/ios/icon/icon-20.png +0 -0
  659. package/resources/ios/icon/icon-20@2x.png +0 -0
  660. package/resources/ios/icon/icon-20@3x.png +0 -0
  661. package/resources/ios/icon/icon-24@2x.png +0 -0
  662. package/resources/ios/icon/icon-27.5@2x.png +0 -0
  663. package/resources/ios/icon/icon-29.png +0 -0
  664. package/resources/ios/icon/icon-29@2x.png +0 -0
  665. package/resources/ios/icon/icon-29@3x.png +0 -0
  666. package/resources/ios/icon/icon-40.png +0 -0
  667. package/resources/ios/icon/icon-40@2x.png +0 -0
  668. package/resources/ios/icon/icon-40@3x.png +0 -0
  669. package/resources/ios/icon/icon-44@2x.png +0 -0
  670. package/resources/ios/icon/icon-50.png +0 -0
  671. package/resources/ios/icon/icon-50@2x.png +0 -0
  672. package/resources/ios/icon/icon-60.png +0 -0
  673. package/resources/ios/icon/icon-60@2x.png +0 -0
  674. package/resources/ios/icon/icon-60@3x.png +0 -0
  675. package/resources/ios/icon/icon-72.png +0 -0
  676. package/resources/ios/icon/icon-72@2x.png +0 -0
  677. package/resources/ios/icon/icon-76.png +0 -0
  678. package/resources/ios/icon/icon-76@2x.png +0 -0
  679. package/resources/ios/icon/icon-83.5@2x.png +0 -0
  680. package/resources/ios/icon/icon-86@2x.png +0 -0
  681. package/resources/ios/icon/icon-98@2x.png +0 -0
  682. package/resources/ios/icon/icon-small.png +0 -0
  683. package/resources/ios/icon/icon-small@2x.png +0 -0
  684. package/resources/ios/icon/icon-small@3x.png +0 -0
  685. package/resources/ios/icon/icon.png +0 -0
  686. package/resources/ios/icon/icon@2x.png +0 -0
  687. package/resources/ios/splash/Default-1792h~iphone.png +0 -0
  688. package/resources/ios/splash/Default-2436h.png +0 -0
  689. package/resources/ios/splash/Default-2688h~iphone.png +0 -0
  690. package/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
  691. package/resources/ios/splash/Default-667h.png +0 -0
  692. package/resources/ios/splash/Default-736h.png +0 -0
  693. package/resources/ios/splash/Default-Landscape-1792h~iphone.png +0 -0
  694. package/resources/ios/splash/Default-Landscape-2436h.png +0 -0
  695. package/resources/ios/splash/Default-Landscape-2688h~iphone.png +0 -0
  696. package/resources/ios/splash/Default-Landscape-736h.png +0 -0
  697. package/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
  698. package/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
  699. package/resources/ios/splash/Default-Landscape~ipad.png +0 -0
  700. package/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
  701. package/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
  702. package/resources/ios/splash/Default-Portrait~ipad.png +0 -0
  703. package/resources/ios/splash/Default@2x~iphone.png +0 -0
  704. package/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
  705. package/resources/ios/splash/Default~iphone.png +0 -0
  706. package/resources/splash.png +0 -0
  707. package/resources/splash.png.md5 +0 -1
  708. package/scripts/build-android.sh +0 -18
  709. package/scripts/build-i18n.js +0 -24
  710. package/scripts/docker-start.sh +0 -6
  711. package/scripts/emulate-android.sh +0 -17
  712. package/scripts/env-android.sh +0 -83
  713. package/scripts/env-clean.sh +0 -23
  714. package/scripts/env-global.sh +0 -156
  715. package/scripts/install-android-sdk-tools.sh +0 -73
  716. package/scripts/ionic-update.sh +0 -24
  717. package/scripts/node/playground.ts +0 -9
  718. package/scripts/node/resources.js +0 -90
  719. package/scripts/release.sh +0 -149
  720. package/scripts/run-android.sh +0 -59
  721. package/scripts/test.sh +0 -19
  722. package/src/app/admin/admin-routing.module.ts +0 -30
  723. package/src/app/admin/admin.module.ts +0 -23
  724. package/src/app/admin/services/filter/person.filter.ts +0 -77
  725. package/src/app/admin/services/person.service.ts +0 -212
  726. package/src/app/admin/services/validator/person.validator.ts +0 -37
  727. package/src/app/admin/users/users.html +0 -427
  728. package/src/app/admin/users/users.module.ts +0 -34
  729. package/src/app/admin/users/users.scss +0 -59
  730. package/src/app/admin/users/users.ts +0 -257
  731. package/src/app/app-routing.module.ts +0 -126
  732. package/src/app/app.component.html +0 -12
  733. package/src/app/app.component.scss +0 -4
  734. package/src/app/app.component.ts +0 -205
  735. package/src/app/app.module.ts +0 -326
  736. package/src/app/core/about/about.modal.html +0 -140
  737. package/src/app/core/about/about.modal.scss +0 -23
  738. package/src/app/core/about/about.modal.ts +0 -71
  739. package/src/app/core/about/about.module.ts +0 -24
  740. package/src/app/core/account/account.module.ts +0 -38
  741. package/src/app/core/account/account.page.html +0 -241
  742. package/src/app/core/account/account.page.scss +0 -21
  743. package/src/app/core/account/account.page.ts +0 -366
  744. package/src/app/core/account/new-token.modal.html +0 -120
  745. package/src/app/core/account/new-token.modal.ts +0 -138
  746. package/src/app/core/account/token.table.html +0 -177
  747. package/src/app/core/account/token.table.scss +0 -7
  748. package/src/app/core/account/token.table.ts +0 -141
  749. package/src/app/core/auth/auth.form.html +0 -77
  750. package/src/app/core/auth/auth.form.scss +0 -1
  751. package/src/app/core/auth/auth.form.ts +0 -145
  752. package/src/app/core/auth/auth.modal.html +0 -57
  753. package/src/app/core/auth/auth.modal.scss +0 -1
  754. package/src/app/core/auth/auth.modal.ts +0 -80
  755. package/src/app/core/auth/auth.module.ts +0 -33
  756. package/src/app/core/core.module.ts +0 -100
  757. package/src/app/core/core.testing.module.ts +0 -64
  758. package/src/app/core/form/buttons/form-buttons-bar.component.html +0 -59
  759. package/src/app/core/form/buttons/form-buttons-bar.component.scss +0 -14
  760. package/src/app/core/form/buttons/form-buttons-bar.component.ts +0 -70
  761. package/src/app/core/form/buttons/form-buttons-bar.module.ts +0 -24
  762. package/src/app/core/form/entity/editor.class.ts +0 -803
  763. package/src/app/core/form/entity/entity-editor-modal.class.ts +0 -537
  764. package/src/app/core/form/entity/entity-editor.class.ts +0 -885
  765. package/src/app/core/form/entity/entity-metadata.component.html +0 -53
  766. package/src/app/core/form/entity/entity-metadata.component.scss +0 -28
  767. package/src/app/core/form/entity/entity-metadata.component.ts +0 -19
  768. package/src/app/core/form/entity/entity.module.ts +0 -25
  769. package/src/app/core/form/form.class.ts +0 -401
  770. package/src/app/core/form/form.module.ts +0 -37
  771. package/src/app/core/form/form.utils.ts +0 -639
  772. package/src/app/core/form/list/list.form.html +0 -67
  773. package/src/app/core/form/list/list.form.scss +0 -40
  774. package/src/app/core/form/list/list.form.ts +0 -278
  775. package/src/app/core/form/list/list.module.ts +0 -25
  776. package/src/app/core/form/properties/properties.form.html +0 -129
  777. package/src/app/core/form/properties/properties.form.ts +0 -147
  778. package/src/app/core/form/properties/properties.module.ts +0 -30
  779. package/src/app/core/form/properties/properties.table.html +0 -219
  780. package/src/app/core/form/properties/properties.table.scss +0 -0
  781. package/src/app/core/form/properties/properties.table.ts +0 -291
  782. package/src/app/core/form/properties/property.validator.ts +0 -22
  783. package/src/app/core/form/properties/testing/properties-form.test.html +0 -21
  784. package/src/app/core/form/properties/testing/properties-form.test.ts +0 -102
  785. package/src/app/core/form/properties/testing/properties-form.testing.module.ts +0 -25
  786. package/src/app/core/form/text-popover/testing/text-popover.testing.html +0 -45
  787. package/src/app/core/form/text-popover/testing/text-popover.testing.module.ts +0 -32
  788. package/src/app/core/form/text-popover/testing/text-popover.testing.ts +0 -77
  789. package/src/app/core/form/text-popover/text-form.component.html +0 -44
  790. package/src/app/core/form/text-popover/text-form.component.scss +0 -8
  791. package/src/app/core/form/text-popover/text-form.component.ts +0 -65
  792. package/src/app/core/form/text-popover/text-popover.component.html +0 -86
  793. package/src/app/core/form/text-popover/text-popover.component.scss +0 -7
  794. package/src/app/core/form/text-popover/text-popover.component.ts +0 -165
  795. package/src/app/core/form/text-popover/text-popover.module.ts +0 -27
  796. package/src/app/core/graphql/graphql.module.ts +0 -17
  797. package/src/app/core/graphql/graphql.service.ts +0 -969
  798. package/src/app/core/graphql/graphql.utils.ts +0 -167
  799. package/src/app/core/home/home.html +0 -211
  800. package/src/app/core/home/home.module.ts +0 -32
  801. package/src/app/core/home/home.scss +0 -242
  802. package/src/app/core/home/home.ts +0 -298
  803. package/src/app/core/icon/icon.component.html +0 -15
  804. package/src/app/core/icon/icon.component.ts +0 -23
  805. package/src/app/core/icon/icon.module.ts +0 -22
  806. package/src/app/core/install/install-upgrade-card.component.html +0 -144
  807. package/src/app/core/install/install-upgrade-card.component.scss +0 -4
  808. package/src/app/core/install/install-upgrade-card.component.ts +0 -412
  809. package/src/app/core/install/install-upgrade-card.module.ts +0 -23
  810. package/src/app/core/menu/menu.component.html +0 -135
  811. package/src/app/core/menu/menu.component.scss +0 -225
  812. package/src/app/core/menu/menu.component.ts +0 -352
  813. package/src/app/core/menu/menu.model.ts +0 -64
  814. package/src/app/core/menu/menu.module.ts +0 -27
  815. package/src/app/core/menu/menu.service.ts +0 -62
  816. package/src/app/core/offline/update-offline-mode-card.component.html +0 -45
  817. package/src/app/core/offline/update-offline-mode-card.component.scss +0 -4
  818. package/src/app/core/offline/update-offline-mode-card.component.ts +0 -28
  819. package/src/app/core/offline/update-offline-mode-card.module.ts +0 -24
  820. package/src/app/core/peer/select-peer.modal.html +0 -123
  821. package/src/app/core/peer/select-peer.modal.scss +0 -20
  822. package/src/app/core/peer/select-peer.modal.ts +0 -197
  823. package/src/app/core/peer/select-peer.module.ts +0 -28
  824. package/src/app/core/register/register-confirm.page.html +0 -55
  825. package/src/app/core/register/register-confirm.page.scss +0 -121
  826. package/src/app/core/register/register-confirm.page.ts +0 -94
  827. package/src/app/core/register/register.form.html +0 -125
  828. package/src/app/core/register/register.form.scss +0 -10
  829. package/src/app/core/register/register.form.ts +0 -213
  830. package/src/app/core/register/register.modal.html +0 -70
  831. package/src/app/core/register/register.modal.ts +0 -52
  832. package/src/app/core/register/register.module.ts +0 -31
  833. package/src/app/core/services/account.service.ts +0 -1431
  834. package/src/app/core/services/auth-guard.service.ts +0 -70
  835. package/src/app/core/services/base-entity-service.class.ts +0 -598
  836. package/src/app/core/services/base-graphql-service.class.ts +0 -298
  837. package/src/app/core/services/base58.ts +0 -83
  838. package/src/app/core/services/config/account.config.ts +0 -35
  839. package/src/app/core/services/config/core.config.ts +0 -180
  840. package/src/app/core/services/config.service.ts +0 -414
  841. package/src/app/core/services/crypto.service.ts +0 -126
  842. package/src/app/core/services/errors.ts +0 -67
  843. package/src/app/core/services/local-settings.service.spec.ts +0 -32
  844. package/src/app/core/services/local-settings.service.ts +0 -548
  845. package/src/app/core/services/model/account.model.ts +0 -141
  846. package/src/app/core/services/model/config.model.ts +0 -122
  847. package/src/app/core/services/model/department.model.ts +0 -34
  848. package/src/app/core/services/model/entity.decorators.ts +0 -112
  849. package/src/app/core/services/model/entity.model.ts +0 -326
  850. package/src/app/core/services/model/filter.model.ts +0 -139
  851. package/src/app/core/services/model/history.model.ts +0 -25
  852. package/src/app/core/services/model/model.enum.ts +0 -11
  853. package/src/app/core/services/model/peer.model.ts +0 -86
  854. package/src/app/core/services/model/person.model.ts +0 -112
  855. package/src/app/core/services/model/referential.model.ts +0 -244
  856. package/src/app/core/services/model/settings.model.ts +0 -32
  857. package/src/app/core/services/model/token.model.ts +0 -54
  858. package/src/app/core/services/network.service.spec.ts +0 -49
  859. package/src/app/core/services/network.service.ts +0 -729
  860. package/src/app/core/services/network.types.ts +0 -26
  861. package/src/app/core/services/network.utils.ts +0 -57
  862. package/src/app/core/services/pipes/account.pipes.ts +0 -25
  863. package/src/app/core/services/pipes/department-to-string.pipe.ts +0 -15
  864. package/src/app/core/services/pipes/person-to-string.pipe.ts +0 -15
  865. package/src/app/core/services/pipes/usage-mode.pipes.ts +0 -26
  866. package/src/app/core/services/platform.service.spec.ts +0 -56
  867. package/src/app/core/services/platform.service.ts +0 -605
  868. package/src/app/core/services/storage/entities-storage.service.ts +0 -542
  869. package/src/app/core/services/storage/entity-store.class.ts +0 -598
  870. package/src/app/core/services/testing/referential-filter.model.ts +0 -28
  871. package/src/app/core/services/testing/referential.validator.ts +0 -57
  872. package/src/app/core/services/validator/account.validator.ts +0 -58
  873. package/src/app/core/services/validator/base.validator.class.ts +0 -54
  874. package/src/app/core/services/validator/local-settings.validator.ts +0 -72
  875. package/src/app/core/services/validator/user-settings.validator.ts +0 -25
  876. package/src/app/core/services/validator/user-token.validator.ts +0 -55
  877. package/src/app/core/settings/settings.module.ts +0 -24
  878. package/src/app/core/settings/settings.page.html +0 -264
  879. package/src/app/core/settings/settings.page.ts +0 -365
  880. package/src/app/core/table/actions-column.component.html +0 -91
  881. package/src/app/core/table/actions-column.component.ts +0 -70
  882. package/src/app/core/table/async-table.class.ts +0 -1934
  883. package/src/app/core/table/entities-async-table-datasource.class.ts +0 -482
  884. package/src/app/core/table/entities-table-datasource.class.ts +0 -496
  885. package/src/app/core/table/memory-table.class.ts +0 -65
  886. package/src/app/core/table/table-select-columns.component.html +0 -58
  887. package/src/app/core/table/table-select-columns.component.ts +0 -50
  888. package/src/app/core/table/table.class.ts +0 -1973
  889. package/src/app/core/table/table.model.ts +0 -35
  890. package/src/app/core/table/table.module.ts +0 -26
  891. package/src/app/core/table/table.utils.ts +0 -38
  892. package/src/app/core/table/testing/multi-table.testing.ts +0 -261
  893. package/src/app/core/table/testing/table-validator.service.ts +0 -25
  894. package/src/app/core/table/testing/table.testing.html +0 -396
  895. package/src/app/core/table/testing/table.testing.module.ts +0 -25
  896. package/src/app/core/table/testing/table.testing.scss +0 -23
  897. package/src/app/core/table/testing/table.testing.ts +0 -292
  898. package/src/app/shared/alerts.ts +0 -292
  899. package/src/app/shared/audio/audio.testing.html +0 -33
  900. package/src/app/shared/audio/audio.testing.module.ts +0 -32
  901. package/src/app/shared/audio/audio.testing.ts +0 -31
  902. package/src/app/shared/audio/audio.ts +0 -278
  903. package/src/app/shared/base64.utils.ts +0 -66
  904. package/src/app/shared/capacitor/keyboard.ts +0 -40
  905. package/src/app/shared/capacitor/plugins.ts +0 -12
  906. package/src/app/shared/constants.ts +0 -12
  907. package/src/app/shared/dates.ts +0 -163
  908. package/src/app/shared/debug/debug-service.class.ts +0 -8
  909. package/src/app/shared/debug/debug.component.html +0 -13
  910. package/src/app/shared/debug/debug.component.scss +0 -24
  911. package/src/app/shared/debug/debug.component.spec.ts +0 -25
  912. package/src/app/shared/debug/debug.component.ts +0 -27
  913. package/src/app/shared/debug/debug.module.ts +0 -28
  914. package/src/app/shared/directives/autofocus.directive.ts +0 -109
  915. package/src/app/shared/directives/autotitle.directive.ts +0 -24
  916. package/src/app/shared/directives/directives.module.ts +0 -29
  917. package/src/app/shared/directives/drag-and-drop.directive.ts +0 -47
  918. package/src/app/shared/directives/ng-var.directive.ts +0 -32
  919. package/src/app/shared/directives/resizable/resizable.component.ts +0 -47
  920. package/src/app/shared/directives/resizable/resizable.directive.ts +0 -43
  921. package/src/app/shared/directives/resizable/resizable.module.ts +0 -9
  922. package/src/app/shared/directives/resizable/resizable.style.scss +0 -44
  923. package/src/app/shared/directives/resizable/resizable.template.html +0 -6
  924. package/src/app/shared/events.ts +0 -96
  925. package/src/app/shared/file/csv.utils.ts +0 -94
  926. package/src/app/shared/file/file.service.ts +0 -132
  927. package/src/app/shared/file/file.utils.ts +0 -138
  928. package/src/app/shared/file/images.utils.ts +0 -198
  929. package/src/app/shared/file/json.utils.ts +0 -73
  930. package/src/app/shared/file/uri.utils.ts +0 -25
  931. package/src/app/shared/focusable.ts +0 -10
  932. package/src/app/shared/form/field.component.html +0 -261
  933. package/src/app/shared/form/field.component.scss +0 -7
  934. package/src/app/shared/form/field.component.ts +0 -318
  935. package/src/app/shared/form/field.model.ts +0 -64
  936. package/src/app/shared/form/loading-spinner.ts +0 -16
  937. package/src/app/shared/forms.ts +0 -458
  938. package/src/app/shared/functions.ts +0 -492
  939. package/src/app/shared/geolocation/geolocation.utils.ts +0 -101
  940. package/src/app/shared/gesture/gesture-config.ts +0 -45
  941. package/src/app/shared/gesture/hammer.utils.ts +0 -14
  942. package/src/app/shared/graph/colors.utils.ts +0 -74
  943. package/src/app/shared/graph/graph-colors.ts +0 -295
  944. package/src/app/shared/guard/component-dirty.guard.ts +0 -70
  945. package/src/app/shared/help/help.modal.html +0 -42
  946. package/src/app/shared/help/help.modal.ts +0 -61
  947. package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.html +0 -11
  948. package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.scss +0 -39
  949. package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.ts +0 -16
  950. package/src/app/shared/hotkeys/hotkeys.service.ts +0 -89
  951. package/src/app/shared/hotkeys/shared-hotkeys.module.ts +0 -27
  952. package/src/app/shared/http/http.utils.ts +0 -89
  953. package/src/app/shared/image/gallery/image-gallery.component.html +0 -231
  954. package/src/app/shared/image/gallery/image-gallery.component.scss +0 -196
  955. package/src/app/shared/image/gallery/image-gallery.component.ts +0 -389
  956. package/src/app/shared/image/gallery/image-gallery.module.ts +0 -34
  957. package/src/app/shared/image/gallery/testing/gallegry.model.testing.ts +0 -27
  958. package/src/app/shared/image/gallery/testing/gallery.service.testing.ts +0 -102
  959. package/src/app/shared/image/gallery/testing/gallery.testing.html +0 -15
  960. package/src/app/shared/image/gallery/testing/gallery.testing.module.ts +0 -39
  961. package/src/app/shared/image/gallery/testing/gallery.testing.ts +0 -38
  962. package/src/app/shared/image/image.model.ts +0 -6
  963. package/src/app/shared/image/image.module.ts +0 -16
  964. package/src/app/shared/image/image.service.ts +0 -94
  965. package/src/app/shared/image/image.testing.module.ts +0 -23
  966. package/src/app/shared/inputs.ts +0 -282
  967. package/src/app/shared/interceptors/progess.interceptor.ts +0 -25
  968. package/src/app/shared/logging/log-level.model.ts +0 -53
  969. package/src/app/shared/logging/logger.model.ts +0 -120
  970. package/src/app/shared/logging/logging-service.class.ts +0 -134
  971. package/src/app/shared/logging/logging-service.config.ts +0 -29
  972. package/src/app/shared/logging/logging-service.module.ts +0 -22
  973. package/src/app/shared/material/autocomplete/material.autocomplete.config.ts +0 -83
  974. package/src/app/shared/material/autocomplete/material.autocomplete.html +0 -262
  975. package/src/app/shared/material/autocomplete/material.autocomplete.module.ts +0 -45
  976. package/src/app/shared/material/autocomplete/material.autocomplete.scss +0 -21
  977. package/src/app/shared/material/autocomplete/material.autocomplete.ts +0 -1022
  978. package/src/app/shared/material/autocomplete/material.autocomplete.utils.ts +0 -20
  979. package/src/app/shared/material/autocomplete/testing/autocomplete.test.html +0 -876
  980. package/src/app/shared/material/autocomplete/testing/autocomplete.test.spec.ts +0 -38
  981. package/src/app/shared/material/autocomplete/testing/autocomplete.test.ts +0 -247
  982. package/src/app/shared/material/badge/badge.directive.ts +0 -164
  983. package/src/app/shared/material/badge/badge.module.ts +0 -22
  984. package/src/app/shared/material/badge/badge.test.html +0 -261
  985. package/src/app/shared/material/badge/badge.test.ts +0 -36
  986. package/src/app/shared/material/boolean/boolean.module.ts +0 -40
  987. package/src/app/shared/material/boolean/material.boolean.html +0 -155
  988. package/src/app/shared/material/boolean/material.boolean.scss +0 -34
  989. package/src/app/shared/material/boolean/material.boolean.ts +0 -239
  990. package/src/app/shared/material/chips/chips.module.ts +0 -44
  991. package/src/app/shared/material/chips/material.chips.html +0 -146
  992. package/src/app/shared/material/chips/material.chips.scss +0 -65
  993. package/src/app/shared/material/chips/material.chips.ts +0 -768
  994. package/src/app/shared/material/chips/testing/chips.test.html +0 -137
  995. package/src/app/shared/material/chips/testing/chips.test.ts +0 -175
  996. package/src/app/shared/material/datetime/datetime.module.ts +0 -52
  997. package/src/app/shared/material/datetime/material.date.html +0 -132
  998. package/src/app/shared/material/datetime/material.date.scss +0 -17
  999. package/src/app/shared/material/datetime/material.date.ts +0 -408
  1000. package/src/app/shared/material/datetime/material.dateshort.html +0 -134
  1001. package/src/app/shared/material/datetime/material.dateshort.scss +0 -23
  1002. package/src/app/shared/material/datetime/material.dateshort.ts +0 -422
  1003. package/src/app/shared/material/datetime/material.datetime.html +0 -224
  1004. package/src/app/shared/material/datetime/material.datetime.scss +0 -90
  1005. package/src/app/shared/material/datetime/material.datetime.ts +0 -575
  1006. package/src/app/shared/material/datetime/testing/mat-date-time.test.html +0 -354
  1007. package/src/app/shared/material/datetime/testing/mat-date-time.test.ts +0 -134
  1008. package/src/app/shared/material/datetime/testing/mat-date.test.html +0 -418
  1009. package/src/app/shared/material/datetime/testing/mat-date.test.ts +0 -135
  1010. package/src/app/shared/material/datetime/testing/mat-dateshort.test.html +0 -370
  1011. package/src/app/shared/material/datetime/testing/mat-dateshort.test.ts +0 -127
  1012. package/src/app/shared/material/duration/duration.module.ts +0 -39
  1013. package/src/app/shared/material/duration/duration.utils.ts +0 -41
  1014. package/src/app/shared/material/duration/material.duration.html +0 -44
  1015. package/src/app/shared/material/duration/material.duration.scss +0 -28
  1016. package/src/app/shared/material/duration/material.duration.ts +0 -294
  1017. package/src/app/shared/material/latlong/latlong.utils.ts +0 -300
  1018. package/src/app/shared/material/latlong/material.latlong.html +0 -127
  1019. package/src/app/shared/material/latlong/material.latlong.module.ts +0 -40
  1020. package/src/app/shared/material/latlong/material.latlong.scss +0 -48
  1021. package/src/app/shared/material/latlong/material.latlong.ts +0 -421
  1022. package/src/app/shared/material/latlong/testing/latlong.test.html +0 -341
  1023. package/src/app/shared/material/latlong/testing/latlong.test.ts +0 -121
  1024. package/src/app/shared/material/material.animations.ts +0 -129
  1025. package/src/app/shared/material/material.module.ts +0 -94
  1026. package/src/app/shared/material/material.testing.module.ts +0 -135
  1027. package/src/app/shared/material/memory/memory.utils.ts +0 -54
  1028. package/src/app/shared/material/numpad/numpad.animation.ts +0 -1
  1029. package/src/app/shared/material/numpad/numpad.append-to-input.directive.ts +0 -109
  1030. package/src/app/shared/material/numpad/numpad.component.ts +0 -78
  1031. package/src/app/shared/material/numpad/numpad.container.html +0 -32
  1032. package/src/app/shared/material/numpad/numpad.container.scss +0 -50
  1033. package/src/app/shared/material/numpad/numpad.container.ts +0 -176
  1034. package/src/app/shared/material/numpad/numpad.content.html +0 -13
  1035. package/src/app/shared/material/numpad/numpad.content.ts +0 -10
  1036. package/src/app/shared/material/numpad/numpad.directive.ts +0 -173
  1037. package/src/app/shared/material/numpad/numpad.dom-service.ts +0 -46
  1038. package/src/app/shared/material/numpad/numpad.model.ts +0 -55
  1039. package/src/app/shared/material/numpad/numpad.module.ts +0 -38
  1040. package/src/app/shared/material/numpad/testing/numpad.test.html +0 -146
  1041. package/src/app/shared/material/numpad/testing/numpad.test.ts +0 -55
  1042. package/src/app/shared/material/paginator/material.paginator-i18n.ts +0 -49
  1043. package/src/app/shared/material/stepper/material.stepper-i18n.ts +0 -18
  1044. package/src/app/shared/material/swipe/material.swipe.html +0 -63
  1045. package/src/app/shared/material/swipe/material.swipe.scss +0 -39
  1046. package/src/app/shared/material/swipe/material.swipe.ts +0 -350
  1047. package/src/app/shared/material/swipe/swipe.module.ts +0 -33
  1048. package/src/app/shared/material/swipe/testing/swipe.test.html +0 -128
  1049. package/src/app/shared/material/swipe/testing/swipe.test.ts +0 -81
  1050. package/src/app/shared/modules.ts +0 -11
  1051. package/src/app/shared/observables.ts +0 -132
  1052. package/src/app/shared/pipes/arrays.pipe.ts +0 -111
  1053. package/src/app/shared/pipes/colors.pipe.ts +0 -19
  1054. package/src/app/shared/pipes/date-diff-duration.pipe.ts +0 -48
  1055. package/src/app/shared/pipes/date-format.pipe.ts +0 -78
  1056. package/src/app/shared/pipes/date-from-now.pipe.ts +0 -20
  1057. package/src/app/shared/pipes/duration.pipe.spec.ts +0 -51
  1058. package/src/app/shared/pipes/duration.pipe.ts +0 -34
  1059. package/src/app/shared/pipes/file-size.pipe.ts +0 -58
  1060. package/src/app/shared/pipes/form.pipes.ts +0 -204
  1061. package/src/app/shared/pipes/highlight.pipe.ts +0 -37
  1062. package/src/app/shared/pipes/latlong-format.pipe.ts +0 -30
  1063. package/src/app/shared/pipes/maps.pipe.ts +0 -39
  1064. package/src/app/shared/pipes/math.pipes.ts +0 -39
  1065. package/src/app/shared/pipes/ng-init.pipe.ts +0 -14
  1066. package/src/app/shared/pipes/number-format.pipe.ts +0 -21
  1067. package/src/app/shared/pipes/pipes.module.ts +0 -134
  1068. package/src/app/shared/pipes/property.pipes.ts +0 -87
  1069. package/src/app/shared/pipes/string.pipes.ts +0 -85
  1070. package/src/app/shared/pipes/translate-context.pipe.ts +0 -33
  1071. package/src/app/shared/pipes/types.pipes.ts +0 -31
  1072. package/src/app/shared/platforms.ts +0 -58
  1073. package/src/app/shared/services/entity-service.class.ts +0 -127
  1074. package/src/app/shared/services/job.utils.ts +0 -121
  1075. package/src/app/shared/services/memory-entity-service.class.ts +0 -447
  1076. package/src/app/shared/services/progress-bar.service.ts +0 -42
  1077. package/src/app/shared/services/startable-observable-service.class.ts +0 -137
  1078. package/src/app/shared/services/startable-service.class.ts +0 -131
  1079. package/src/app/shared/services/storage.utils.ts +0 -47
  1080. package/src/app/shared/services/translate-context.service.ts +0 -116
  1081. package/src/app/shared/services/validator-service.class.ts +0 -14
  1082. package/src/app/shared/services.ts +0 -91
  1083. package/src/app/shared/shared-routing.module.ts +0 -66
  1084. package/src/app/shared/shared.module.spec.ts +0 -13
  1085. package/src/app/shared/shared.module.ts +0 -146
  1086. package/src/app/shared/shared.testing.module.ts +0 -50
  1087. package/src/app/shared/storage/storage-explorer.component.html +0 -175
  1088. package/src/app/shared/storage/storage-explorer.component.scss +0 -39
  1089. package/src/app/shared/storage/storage-explorer.component.spec.ts +0 -24
  1090. package/src/app/shared/storage/storage-explorer.component.ts +0 -292
  1091. package/src/app/shared/storage/storage-explorer.module.ts +0 -44
  1092. package/src/app/shared/storage/storage.service.ts +0 -133
  1093. package/src/app/shared/storage/storage.utils.ts +0 -25
  1094. package/src/app/shared/testing/observable.test.html +0 -53
  1095. package/src/app/shared/testing/observable.test.scss +0 -3
  1096. package/src/app/shared/testing/observable.test.ts +0 -117
  1097. package/src/app/shared/testing/tests.page.html +0 -30
  1098. package/src/app/shared/testing/tests.page.ts +0 -34
  1099. package/src/app/shared/toast/toast.testing.html +0 -42
  1100. package/src/app/shared/toast/toast.testing.module.ts +0 -32
  1101. package/src/app/shared/toast/toast.testing.ts +0 -58
  1102. package/src/app/shared/toast/toasts.ts +0 -183
  1103. package/src/app/shared/toolbar/modal-toolbar.html +0 -32
  1104. package/src/app/shared/toolbar/modal-toolbar.scss +0 -0
  1105. package/src/app/shared/toolbar/modal-toolbar.ts +0 -63
  1106. package/src/app/shared/toolbar/toolbar.html +0 -71
  1107. package/src/app/shared/toolbar/toolbar.module.ts +0 -35
  1108. package/src/app/shared/toolbar/toolbar.scss +0 -0
  1109. package/src/app/shared/toolbar/toolbar.ts +0 -254
  1110. package/src/app/shared/types.ts +0 -31
  1111. package/src/app/shared/upload-file/testing/upload-file.testing.html +0 -25
  1112. package/src/app/shared/upload-file/testing/upload-file.testing.module.ts +0 -32
  1113. package/src/app/shared/upload-file/testing/upload-file.testing.ts +0 -68
  1114. package/src/app/shared/upload-file/upload-file-popover.component.html +0 -43
  1115. package/src/app/shared/upload-file/upload-file-popover.component.scss +0 -6
  1116. package/src/app/shared/upload-file/upload-file-popover.component.ts +0 -115
  1117. package/src/app/shared/upload-file/upload-file.component.html +0 -46
  1118. package/src/app/shared/upload-file/upload-file.component.scss +0 -130
  1119. package/src/app/shared/upload-file/upload-file.component.ts +0 -218
  1120. package/src/app/shared/upload-file/upload-file.model.ts +0 -41
  1121. package/src/app/shared/validator/form-error-adapter.class.ts +0 -123
  1122. package/src/app/shared/validator/validators.ts +0 -639
  1123. package/src/app/shared/version/versions.ts +0 -91
  1124. package/src/app/social/job/job.module.ts +0 -26
  1125. package/src/app/social/job/progression/job-progression.component.html +0 -22
  1126. package/src/app/social/job/progression/job-progression.component.scss +0 -15
  1127. package/src/app/social/job/progression/job-progression.component.ts +0 -17
  1128. package/src/app/social/job/progression/job-progression.icon.html +0 -28
  1129. package/src/app/social/job/progression/job-progression.icon.scss +0 -5
  1130. package/src/app/social/job/progression/job-progression.icon.ts +0 -238
  1131. package/src/app/social/job/progression/job-progression.list.html +0 -21
  1132. package/src/app/social/job/progression/job-progression.list.scss +0 -17
  1133. package/src/app/social/job/progression/job-progression.list.ts +0 -49
  1134. package/src/app/social/job/progression/job-progression.model.ts +0 -28
  1135. package/src/app/social/job/progression/job-progression.service.ts +0 -86
  1136. package/src/app/social/job/testing/job-progression.testing.html +0 -20
  1137. package/src/app/social/job/testing/job-progression.testing.service.ts +0 -60
  1138. package/src/app/social/job/testing/job-progression.testing.ts +0 -51
  1139. package/src/app/social/job/testing/job.testing.module.ts +0 -22
  1140. package/src/app/social/message/message.form.html +0 -60
  1141. package/src/app/social/message/message.form.scss +0 -6
  1142. package/src/app/social/message/message.form.ts +0 -79
  1143. package/src/app/social/message/message.modal.html +0 -65
  1144. package/src/app/social/message/message.modal.ts +0 -118
  1145. package/src/app/social/message/message.model.ts +0 -81
  1146. package/src/app/social/message/message.module.ts +0 -22
  1147. package/src/app/social/message/message.service.ts +0 -88
  1148. package/src/app/social/social.errors.ts +0 -11
  1149. package/src/app/social/social.module.ts +0 -36
  1150. package/src/app/social/social.testing.module.ts +0 -40
  1151. package/src/app/social/user-event/notification/user-event-notification.icon.html +0 -16
  1152. package/src/app/social/user-event/notification/user-event-notification.icon.ts +0 -108
  1153. package/src/app/social/user-event/notification/user-event-notification.list.html +0 -135
  1154. package/src/app/social/user-event/notification/user-event-notification.list.scss +0 -73
  1155. package/src/app/social/user-event/notification/user-event-notification.list.ts +0 -287
  1156. package/src/app/social/user-event/testing/user-event.testing.html +0 -27
  1157. package/src/app/social/user-event/testing/user-event.testing.model.ts +0 -146
  1158. package/src/app/social/user-event/testing/user-event.testing.module.ts +0 -22
  1159. package/src/app/social/user-event/testing/user-event.testing.service.ts +0 -141
  1160. package/src/app/social/user-event/testing/user-event.testing.ts +0 -253
  1161. package/src/app/social/user-event/user-event.model.ts +0 -73
  1162. package/src/app/social/user-event/user-event.module.ts +0 -25
  1163. package/src/app/social/user-event/user-event.service.ts +0 -679
  1164. package/src/browserslist +0 -9
  1165. package/src/environments/environment.class.ts +0 -83
  1166. package/src/environments/environment.prod.ts +0 -47
  1167. package/src/environments/environment.test.ts +0 -90
  1168. package/src/environments/environment.ts +0 -108
  1169. package/src/favicon.ico +0 -0
  1170. package/src/global.scss +0 -27
  1171. package/src/index.html +0 -80
  1172. package/src/main.ts +0 -17
  1173. package/src/polyfills.ts +0 -68
  1174. package/src/schema.graphql +0 -3112
  1175. package/src/service-worker.js +0 -31
  1176. package/src/zone-flags.ts +0 -31
  1177. package/tsconfig.app.json +0 -15
  1178. package/tsconfig.json +0 -47
  1179. package/tsconfig.spec.json +0 -19
@@ -1,1431 +0,0 @@
1
- import {Inject, Injectable, InjectionToken, Optional} from '@angular/core';
2
- import {CryptoService, Keypair} from './crypto.service';
3
- import {Department} from './model/department.model';
4
- import {Account, UserSettings} from './model/account.model';
5
- import {Person, PersonUtils, UserProfileLabel} from './model/person.model';
6
- import {LocalSettings, UsageMode} from './model/settings.model';
7
- import {BehaviorSubject, from, Observable, Subject, Subscription} from 'rxjs';
8
- import {FetchPolicy, gql} from '@apollo/client/core';
9
- import {Storage} from '@ionic/storage-angular';
10
-
11
- import {isEmptyArray, isNil, sleep, toNumber} from '../../shared/functions';
12
- import {BaseGraphqlService} from './base-graphql-service.class';
13
- import {ErrorCodes, ServerErrorCodes} from './errors';
14
- import {GraphqlService} from '../graphql/graphql.service';
15
- import {LocalSettingsService} from './local-settings.service';
16
- import {FormFieldDefinition, FormFieldDefinitionMap} from '../../shared/form/field.model';
17
- import {NetworkService} from './network.service';
18
- import {AuthTokenType} from './network.types';
19
- import {FileService} from '../../shared/file/file.service';
20
- import {MINIFY_ENTITY_FOR_POD, Referential, ReferentialUtils} from './model/referential.model';
21
- import {StatusIds} from './model/model.enum';
22
- import {Base58} from './base58';
23
- import {ENVIRONMENT} from '../../../environments/environment.class';
24
- import {fromDateISOString} from '../../shared/dates';
25
- import {firstNotNilPromise} from '../../shared/observables';
26
- import {debounceTime, filter, map, switchMap} from 'rxjs/operators';
27
- import {BaseEntityGraphqlMutations, BaseEntityGraphqlSubscriptions} from './base-entity-service.class';
28
- import {Moment} from 'moment';
29
- import {ShowToastOptions, Toasts} from '../../shared/toast/toasts';
30
- import {OverlayEventDetail} from '@ionic/core';
31
- import {ToastController} from '@ionic/angular';
32
- import {TranslateService} from '@ngx-translate/core';
33
- import {TokenScope, UserToken} from './model/token.model';
34
-
35
-
36
- export declare interface AccountDetails {
37
- loaded: boolean;
38
- keypair: Keypair;
39
- authToken: string;
40
- authBasic?: string;
41
- pubkey: string;
42
- person: Person;
43
- department: Department;
44
- mainProfile: string;
45
- }
46
- export interface AuthData {
47
- username: string;
48
- password: string;
49
- offline?: boolean;
50
- }
51
- export interface RegisterData extends AuthData {
52
- account: Account;
53
- }
54
-
55
- const TOKEN_STORAGE_KEY = 'token';
56
- const PUBKEY_STORAGE_KEY = 'pubkey';
57
- const SECKEY_STORAGE_KEY = 'seckey';
58
- const ACCOUNT_STORAGE_KEY = 'account';
59
-
60
- const DEFAULT_AVATAR_IMAGE = 'assets/img/person.png';
61
-
62
- export interface UserSettingsOptions {
63
- options: FormFieldDefinitionMap;
64
- }
65
- export const APP_USER_SETTINGS_OPTIONS = new InjectionToken<UserSettingsOptions>('UserSettingsOptions');
66
- export const APP_USER_TOKEN_SCOPES = new InjectionToken<TokenScope[]>('UserTokenScopes');
67
-
68
-
69
- /* ------------------------------------
70
- * GraphQL queries
71
- * ------------------------------------*/
72
- const Fragments = {
73
- account: gql`
74
- fragment AccountFragment on AccountVO {
75
- id
76
- firstName
77
- lastName
78
- email
79
- pubkey
80
- # username
81
- # usernameExtranet
82
- avatar
83
- statusId
84
- updateDate
85
- creationDate
86
- profiles
87
- settings {
88
- ...UserSettingsFragment
89
- }
90
- tokens {
91
- ...UserTokenFragment
92
- }
93
- department {
94
- id
95
- label
96
- name
97
- __typename
98
- }
99
- __typename
100
- }`,
101
-
102
- settings: gql`fragment UserSettingsFragment on UserSettingsVO {
103
- id
104
- locale
105
- latLongFormat
106
- content
107
- nonce
108
- updateDate
109
- __typename
110
- }`,
111
-
112
- token: gql`fragment UserTokenFragment on UserTokenVO {
113
- id
114
- pubkey
115
- token
116
- name
117
- flags
118
- expirationDate
119
- lastUsedDate
120
- creationDate
121
- updateDate
122
- __typename
123
- }`
124
- };
125
-
126
- // Load account query
127
- const LoadQuery: any = gql`
128
- query Account {
129
- data: account {
130
- ...AccountFragment
131
- }
132
- }
133
- ${Fragments.account}
134
- ${Fragments.settings}
135
- ${Fragments.token}
136
- `;
137
-
138
- // Check email query
139
- const IsEmailExistsQuery: any = gql`
140
- query IsEmailExists($email: String, $hash: String){
141
- isEmailExists(email: $email, hash: $hash)
142
- }
143
- `;
144
- export declare interface IsEmailExistsVariables {
145
- email: string;
146
- hash: string;
147
- }
148
-
149
- // Save (create or update) account mutation
150
- const AccountMutations: Partial<BaseEntityGraphqlMutations> & { create: any; saveSettings: any } = {
151
- save: gql` mutation SaveAccount($data:AccountVOInput){
152
- data: saveAccount(account: $data){
153
- ...AccountFragment
154
- }
155
- }
156
- ${Fragments.account}
157
- ${Fragments.token}
158
- ${Fragments.settings}
159
- `,
160
-
161
- create: gql`mutation CreateAccount($data:AccountVOInput){
162
- data: createAccount(account: $data){
163
- ...AccountFragment
164
- }
165
- }
166
- ${Fragments.account}
167
- ${Fragments.settings}
168
- ${Fragments.token}
169
- `,
170
-
171
- saveSettings: gql`mutation SaveSettings($data:UserSettingsVOInput){
172
- data: saveSettings(settings: $data){
173
- ...UserSettingsFragment
174
- }
175
- }
176
- ${Fragments.settings}`
177
- };
178
-
179
- // Sent confirmation email
180
- const SendConfirmEmailMutation: any = gql`
181
- mutation sendAccountConfirmationEmail($email:String, $locale:String){
182
- sendAccountConfirmationEmail(email: $email, locale: $locale)
183
- }
184
- `;
185
-
186
- // Confirm account email
187
- const ConfirmEmailMutation: any = gql`
188
- mutation confirmAccountEmail($email:String, $code:String){
189
- confirmAccountEmail(email: $email, code: $code)
190
- }
191
- `;
192
-
193
- // Authentication query
194
- const AuthQuery: any = gql`
195
- query Auth($token: String){
196
- authenticate(token: $token)
197
- }
198
- `;
199
-
200
- // New auth challenge query
201
- const AuthChallengeQuery: any = gql`
202
- query AuthChallenge{
203
- authChallenge{
204
- challenge
205
- pubkey
206
- signature
207
- }
208
- }
209
- `;
210
-
211
- interface IAuthChallenge {
212
- pubkey: string;
213
- challenge: string;
214
- signature: string;
215
- }
216
-
217
- const AccountSubscriptions: BaseEntityGraphqlSubscriptions = {
218
- listenChanges: gql`subscription updateAccount($interval: Int){
219
- data: updateAccount(interval: $interval) {
220
- id
221
- updateDate
222
- }
223
- }`
224
- };
225
-
226
- export interface AccountWatchOptions {
227
- intervalInSeconds?: number;
228
- }
229
-
230
- @Injectable({providedIn: 'root', deps: [ ENVIRONMENT ]})
231
- export class AccountService extends BaseGraphqlService<Account, any, number, Account> {
232
-
233
- onLogin = new Subject<Account>();
234
- onLogout = new Subject<void>();
235
- onChange = new Subject<Account>();
236
- onAuthTokenChange = new BehaviorSubject<string | undefined>(undefined);
237
- onAuthBasicChange = new BehaviorSubject<string | undefined>(undefined);
238
-
239
- private _listenChangesSubscription: Subscription = null;
240
- private readonly _enableListenChanges: boolean;
241
- private readonly _listenIntervalInSeconds: number;
242
- private _cache: AccountDetails = {
243
- loaded: false,
244
- keypair: null,
245
- authToken: null,
246
- authBasic: null,
247
- pubkey: null,
248
- mainProfile: null,
249
- person: null,
250
- department: null
251
- };
252
- private readonly _optionDefs: FormFieldDefinition[];
253
- private _$additionalFields = new BehaviorSubject<FormFieldDefinition[]>([]);
254
- private _tokenType$ = new BehaviorSubject<AuthTokenType>(undefined);
255
-
256
- get account(): Account {
257
- return this._cache.loaded ? this._data : undefined;
258
- }
259
-
260
- get person(): Person {
261
- if (this._cache.loaded && !this._cache.person) {
262
- this._cache.person = this._cache.loaded ? this._data.asPerson() : undefined;
263
- }
264
- return this._cache.person;
265
- }
266
-
267
- get department(): Department {
268
- if (this._cache.loaded && !this._cache.department) {
269
- this._cache.department = this._cache.loaded ? this._data.asPerson().department : undefined;
270
- }
271
- return this._cache.department;
272
- }
273
-
274
- get tokenType(): AuthTokenType {
275
- return this._tokenType$.value;
276
- }
277
-
278
- set tokenType(value: AuthTokenType) {
279
- if (this._tokenType$.value !== value) {
280
- console.info('[account] Using authentication token type: ' + value);
281
- this._tokenType$.next(value);
282
- // Reset values
283
- this._cache.authToken = undefined;
284
- this.onAuthTokenChange.next(undefined);
285
- this._cache.authBasic = undefined;
286
- this.onAuthBasicChange.next(undefined);
287
- }
288
- }
289
-
290
- constructor(
291
- protected network: NetworkService,
292
- protected graphql: GraphqlService,
293
- protected settings: LocalSettingsService,
294
- protected storage: Storage,
295
- protected file: FileService,
296
- @Optional() private translate: TranslateService,
297
- @Optional() private toastController: ToastController,
298
- @Inject(ENVIRONMENT) protected environment,
299
- @Optional() @Inject(APP_USER_SETTINGS_OPTIONS) options: UserSettingsOptions
300
- ) {
301
- super(graphql, environment);
302
- this._enableListenChanges = (!environment.account || environment.account.enableListenChanges !== false); // True by default
303
- this._listenIntervalInSeconds = toNumber(environment.account && environment.account.listenIntervalInSeconds, 0); // no timer by default
304
-
305
- this._debug = !environment.production;
306
- if (this._debug) console.debug('[account-service] Creating service');
307
- this._optionDefs = Object.values(options?.options || {});
308
-
309
- this.resetData();
310
-
311
- // Send auth token to the graphql layer, when changed
312
- this.onAuthTokenChange.subscribe((token) => this.graphql.setAuthToken(token));
313
- this.onAuthBasicChange.subscribe((basic) => this.graphql.setAuthBasic(basic));
314
-
315
- // Force network to wait account service, after getting connection to the peer
316
- this.network.on('beforeTryOnlineFinish', async (online) => {
317
- // If online, wait a full restart, because it can force offline mode
318
- if (online && (!this.started || this.isLogin())) {
319
- console.debug('[account] Force networkService.tryOnline() to wait, that graphql and account service is restarted...');
320
- await sleep(500); // wait graphql service to be restarted
321
- if (!this.started) await this.ready();
322
- }
323
- });
324
- }
325
-
326
-
327
- async ngOnStart(): Promise<Account> {
328
-
329
- await Promise.all([
330
- this.settings.ready(),
331
- // Wait token type to be set
332
- firstNotNilPromise(this._tokenType$)
333
- ]);
334
-
335
- // Listen graphql start (or restart)
336
- this.registerSubscription(
337
- this.graphql.stopSubject.subscribe(() => {
338
- if (this.started && this.isLogin()) {
339
- console.debug('[account] Restarting, to retry to authenticate...');
340
- this.restart();
341
- }
342
- })
343
- );
344
-
345
- await this.restoreLocally();
346
- await this.listenSettings();
347
-
348
- return this._data;
349
- }
350
-
351
- protected async ngOnStop(): Promise<void> {
352
- const hadAuthToken = this._cache.authToken && true;
353
- const hadAuthBasic = this._cache.authBasic && true;
354
- const hadAuth = hadAuthToken || hadAuthBasic;
355
- this.resetData();
356
- if (hadAuth) {
357
- this.onLogout.next();
358
- this.onChange.next(undefined);
359
- if (hadAuthToken) this.onAuthTokenChange.next(undefined);
360
- if (hadAuthBasic) this.onAuthBasicChange.next(undefined);
361
- }
362
- }
363
-
364
- isLogin(): boolean {
365
- return !!(this._cache.pubkey && this._cache.loaded);
366
- }
367
-
368
- isAuth(): boolean {
369
- return !!(this._cache.pubkey && this._cache.keypair && this._cache.keypair.secretKey);
370
- }
371
-
372
- hasMinProfile(userProfile: UserProfileLabel): boolean {
373
- // should be login, and status ENABLE or TEMPORARY
374
- if (!this._data || !this._data.pubkey ||
375
- (this._data.statusId !== StatusIds.ENABLE && this._data.statusId !== StatusIds.TEMPORARY)) {
376
- return false;
377
- }
378
- return PersonUtils.hasUpperOrEqualsProfile(this._data.profiles, userProfile);
379
- }
380
-
381
- hasExactProfile(label: UserProfileLabel): boolean {
382
- // should be login, and status ENABLE or TEMPORARY
383
- if (!this._data || !this._data.pubkey ||
384
- (this._data.statusId !== StatusIds.ENABLE && this._data.statusId !== StatusIds.TEMPORARY))
385
- return false;
386
- return this._data.profiles.some(profile => profile === label);
387
- }
388
-
389
- hasProfileAndIsEnable(userProfile: UserProfileLabel): boolean {
390
- // should be login, and status ENABLE
391
- if (!this._data || !this._data.pubkey || this._data.statusId !== StatusIds.ENABLE) return false;
392
- return PersonUtils.hasUpperOrEqualsProfile(this._data.profiles, userProfile);
393
- }
394
-
395
- isAdmin(): boolean {
396
- return this.hasProfileAndIsEnable('ADMIN');
397
- }
398
-
399
- isSupervisor(): boolean {
400
- return this.hasProfileAndIsEnable('SUPERVISOR');
401
- }
402
-
403
- isUser(): boolean {
404
- return this.hasProfileAndIsEnable('USER');
405
- }
406
-
407
- /**
408
- * @deprecated
409
- * @param mode
410
- */
411
- isUsageMode(mode: UsageMode): boolean {
412
- return this.settings.isUsageMode(mode);
413
- }
414
-
415
- isOnlyGuest(): boolean {
416
- // Should be login, and status ENABLE or TEMPORARY
417
- if (!this._data || !this._data.pubkey ||
418
- (this._data.statusId !== StatusIds.ENABLE && this._data.statusId !== StatusIds.TEMPORARY))
419
- return false;
420
- // Profile less then user
421
- return !PersonUtils.hasUpperOrEqualsProfile(this._data.profiles, 'USER');
422
- }
423
-
424
- /**
425
- *
426
- * @param recorderDepartment
427
- * @deprecated use ProgramRefService.canUserWriteDataForDepartment() instead
428
- */
429
- canUserWriteDataForDepartment(recorderDepartment: Referential | any): boolean {
430
- if (ReferentialUtils.isEmpty(recorderDepartment)) {
431
- return this.isAdmin();
432
- }
433
-
434
- // Should be login, and status ENABLE
435
- if (!this._data || !this._data.pubkey || this._data.statusId !== StatusIds.ENABLE) return false;
436
-
437
- if (!this._data.department || !this._data.department.id) {
438
- console.warn('User account has no department ! Unable to check write right against recorderDepartment');
439
- return false;
440
- }
441
-
442
- // Same recorder department: OK, user can write
443
- if (this._data.department.id === recorderDepartment.id) return true;
444
-
445
- // Else, check if supervisor (or more)
446
- return PersonUtils.hasUpperOrEqualsProfile(this._data.profiles, 'SUPERVISOR');
447
- }
448
-
449
- async register(data: RegisterData): Promise<Account> {
450
- if (this.isLogin()) {
451
- throw new Error('User already login. Please logout before register.');
452
- }
453
- if (!data.username || !data.password) throw new Error('Missing required username or password');
454
-
455
- if (this._debug) console.debug('[account] Register new user account...', data.account);
456
- this._cache.loaded = false;
457
- const now = Date.now();
458
-
459
- try {
460
- const keypair = await CryptoService.scryptKeypair(data.username, data.password);
461
- data.account.pubkey = Base58.encode(keypair.publicKey);
462
-
463
- // Default values
464
- data.account.settings = data.account.settings || new UserSettings();
465
- data.account.settings.locale = this.settings.locale;
466
- data.account.settings.latLongFormat = this.settings.latLongFormat;
467
- data.account.settings.content = data.account.settings.content || {};
468
- data.account.department.id = data.account.department.id || this.environment.defaultDepartmentId;
469
-
470
- this._cache.keypair = keypair;
471
- const account = await this.saveRemotely(data.account, keypair);
472
-
473
- // Default values
474
- account.avatar = account.avatar || (this.environment.baseUrl + DEFAULT_AVATAR_IMAGE);
475
- this._cache.mainProfile = PersonUtils.getMainProfile(account.profiles);
476
-
477
- this._data = account;
478
- this._cache.pubkey = account.pubkey;
479
-
480
- // Try to auth on pod
481
- await this.authenticate(data);
482
-
483
- this._cache.loaded = true;
484
-
485
- await this.saveLocally();
486
-
487
- console.debug(`[account] Account successfully registered in ${Date.now() - now}ms`);
488
-
489
- // Emit events
490
- this.onLogin.next(this._data);
491
- this.onChange.next(this._data);
492
-
493
- // Listen remote changes
494
- if (this._enableListenChanges) this.startListenRemoteChanges();
495
-
496
- return this._data;
497
- }
498
- catch (error) {
499
- console.error(error && error.message || error);
500
- this.resetData();
501
- throw error;
502
- }
503
- }
504
-
505
- async authenticate(data?: AuthData) {
506
- // Wait the auth token, then continue
507
- const tokenType = await firstNotNilPromise(this._tokenType$);
508
-
509
- // Basic auth
510
- if (tokenType === 'basic' || tokenType === 'basic-and-token') {
511
-
512
- // Generate the authBasic, if used
513
- if (!this._cache.authBasic) {
514
- // Skip if token already provided
515
- if (!(this._cache.authToken && tokenType === 'basic-and-token')) {
516
- if (!data || !data.username || !data.password) throw new Error('Missing username and password');
517
- this._cache.authBasic = CryptoService.encodeBase64(`${data.username}:${data.password}`);
518
- }
519
- }
520
- this.onAuthBasicChange.next(this._cache.authBasic);
521
- }
522
-
523
- // Generate the authToken, if used
524
- if (tokenType === 'token' || tokenType === 'basic-and-token') {
525
- try {
526
- this._cache.authToken = await this.authenticateAndGetToken(this._cache.authToken);
527
- } catch (error) {
528
- // Never authenticate, or not ready for offline mode => exit
529
- console.error(error);
530
- this.resetData();
531
- throw error;
532
- }
533
- }
534
-
535
- // Forget authBasic, to switch to authToken
536
- if (tokenType === 'basic-and-token') {
537
- this._cache.authBasic = undefined;
538
- this.onAuthBasicChange.next(undefined);
539
- }
540
- }
541
-
542
- async login(data: AuthData): Promise<Account> {
543
- if (!data || !data.username || !data.password) throw new Error('Missing required username or password');
544
-
545
- console.debug('[account] Login...');
546
-
547
- let keypair;
548
- try {
549
- keypair = await CryptoService.scryptKeypair(data.username, data.password);
550
- } catch (error) {
551
- console.error(error);
552
- this.resetData();
553
- throw { code: ErrorCodes.UNKNOWN_ERROR, message: 'ERROR.SCRYPT_ERROR' };
554
- }
555
-
556
- // Store pubkey+keypair
557
- this._cache.pubkey = Base58.encode(keypair.publicKey);
558
- this._cache.keypair = keypair;
559
-
560
- // Try to load previous token
561
- let previousToken: string = await this.storage.get(TOKEN_STORAGE_KEY);
562
- previousToken = previousToken && previousToken.startsWith(this._cache.pubkey) && previousToken || null;
563
-
564
- // Offline mode
565
- const offline = this.settings.hasOfflineFeature() && (this.network.offline || data.offline === true);
566
- if (offline) {
567
- this._cache.authToken = previousToken;
568
-
569
- // Make sure network if set as offline
570
- this.network.setForceOffline(true, {showToast: false});
571
- console.info(`[account] Login [OK] {pubkey: ${this._cache.pubkey.substr(0, 8)}}, {offline: true}`);
572
- }
573
-
574
- // Online mode: try to auth on pod
575
- else {
576
-
577
- try {
578
- await this.authenticate(data);
579
- } catch (error) {
580
- // Never authenticate, or not ready for offline mode => exit
581
- console.error(error);
582
- this.resetData();
583
- throw error;
584
- }
585
- }
586
-
587
- // Load account data
588
- try {
589
- await this.loadData({offline, fetchPolicy: 'network-only'});
590
- }
591
- catch (err) {
592
- // If account not found, check if email is valid
593
- if (err && +(err.code) === ErrorCodes.LOAD_ACCOUNT_ERROR) {
594
-
595
- // Check email exists
596
- if (data.username.indexOf('@') !== -1) {
597
- let isEmailExists;
598
- try {
599
- isEmailExists = await this.isEmailExists(data.username);
600
- } catch (otherError) {
601
- throw err; // resend the first error
602
- }
603
-
604
- // Email not exists (no account)
605
- if (!isEmailExists) {
606
- throw { code: ErrorCodes.UNKNOWN_ACCOUNT_EMAIL, message: 'ERROR.UNKNOWN_ACCOUNT_EMAIL' };
607
- }
608
- }
609
-
610
- // Email exists, so error = 'bad password'
611
- throw { code: ErrorCodes.BAD_PASSWORD, message: 'ERROR.BAD_PASSWORD' };
612
- }
613
-
614
- throw err; // resend the first error
615
- }
616
-
617
- try {
618
- // Store to local storage
619
- await this.saveLocally();
620
- }
621
- catch (error) {
622
- console.error(error);
623
- this.resetData();
624
- throw error;
625
- }
626
-
627
- // Emit event to observers
628
- this.onLogin.next(this._data);
629
- this.onChange.next(this._data);
630
-
631
- if (this._enableListenChanges) this.startListenRemoteChanges();
632
-
633
- return this._data;
634
- }
635
-
636
- async reload(opts?: {showToast?: boolean}): Promise<Account> {
637
- if (!this._cache.pubkey) throw new Error('User not logged');
638
- if (this.network.offline) throw new Error('Cannot check account in offline mode');
639
-
640
- const now = Date.now();
641
- console.debug(`[account] Reloading account...`);
642
- const wasLogin = this.isLogin();
643
-
644
- try {
645
-
646
- await this.loadData();
647
- await this.saveLocally();
648
-
649
- console.debug(`[account] Reloading account [OK] in ${Date.now() - now}ms`);
650
-
651
- // Emit login event to subscribers
652
- this.onLogin.next(this._data);
653
- this.onChange.next(this._data);
654
-
655
- // Display toast (without await, because not need to wait toast close event)
656
- if (!opts || opts.showToast !== false) {
657
- this.showToast({message: 'ACCOUNT.INFO.RELOADED', type: 'info'});
658
- }
659
-
660
- return this._data;
661
- }
662
- catch (error) {
663
- // Cannot reload but was login: force to logout
664
- if (wasLogin && !this.isLogin()) {
665
- console.error(`[account] Reloading account failed. Will force logout...`, error);
666
- await this.logout();
667
- }
668
- else {
669
- throw error;
670
- }
671
- }
672
- }
673
-
674
- /**
675
- * Create or update an user account, to the remote storage
676
- *
677
- * @param account
678
- */
679
- async save(account: Account): Promise<Account> {
680
- if (!this._cache.pubkey) return Promise.reject('User not logged');
681
- if (this._cache.pubkey !== account.pubkey) return Promise.reject('Not user account');
682
-
683
- account = await this.saveRemotely(account, this._cache.keypair);
684
-
685
- // Set defaults
686
- account.avatar = account.avatar || (this.environment.baseUrl + DEFAULT_AVATAR_IMAGE);
687
- this._cache.mainProfile = PersonUtils.getMainProfile(account.profiles);
688
-
689
- this._data = account;
690
- this._cache.loaded = true;
691
-
692
- // Save locally (in storage)
693
- await this.saveLocally();
694
-
695
- // Send event
696
- this.onLogin.next(this._data);
697
- this.onChange.next(this._data);
698
-
699
- return this._data;
700
- }
701
-
702
- async logout(): Promise<void> {
703
-
704
- const hadAuthToken = this._cache.authToken && true;
705
- const hadAuthBasic = this._cache.authBasic && true;
706
- const pubkey = this._cache && this._cache.pubkey;
707
-
708
- this.resetData();
709
-
710
- if (!this.settings.hasOfflineFeature()) {
711
-
712
- // Remove all data from the local storage
713
- await Promise.all([
714
- this.storage.remove(PUBKEY_STORAGE_KEY),
715
- this.storage.remove(TOKEN_STORAGE_KEY),
716
- this.storage.remove(ACCOUNT_STORAGE_KEY),
717
- pubkey && this.storage.remove(ACCOUNT_STORAGE_KEY + '#' + pubkey) || Promise.resolve(),
718
- this.storage.remove(SECKEY_STORAGE_KEY)
719
- ]);
720
- }
721
-
722
- // Offline features enable: need to keep some data
723
- else {
724
- // Always remove only secret key
725
- // But keep:
726
- // - account by pubkey
727
- // - auth token
728
- await Promise.all([
729
- this.storage.remove(PUBKEY_STORAGE_KEY),
730
- this.storage.remove(ACCOUNT_STORAGE_KEY),
731
- this.storage.remove(SECKEY_STORAGE_KEY)
732
- ]);
733
- }
734
-
735
- // Clean page history, in local settings
736
- await this.settings.clearPageHistory();
737
-
738
- // Notify observers
739
- this.onLogout.next();
740
- if (hadAuthToken) this.onAuthTokenChange.next(undefined);
741
- if (hadAuthBasic) this.onAuthBasicChange.next(undefined);
742
- this.onChange.next(undefined);
743
- }
744
-
745
- /**
746
- * Load a account
747
- *
748
- * @param opts
749
- */
750
- async load(opts?: {
751
- offline?: boolean;
752
- fetchPolicy?: FetchPolicy;
753
- }): Promise<Account | undefined> {
754
-
755
- const now = this._debug && Date.now();
756
- if (this._debug) console.debug(`[account] Loading account...`);
757
- let json: any;
758
-
759
- // Load locally
760
- const offline = this.network.offline
761
- && (!opts || (opts.fetchPolicy !== 'network-only' && opts.fetchPolicy !== 'no-cache'))
762
- || (opts && opts.offline === true);
763
- if (offline) {
764
- json = await this.storage.get(ACCOUNT_STORAGE_KEY);
765
- json = json && (typeof json === 'string') && JSON.parse(json) || json;
766
- json = json && this._cache.pubkey && (json.pubkey === this._cache.pubkey) && json || null;
767
- if (!json && this._cache.pubkey) {
768
- json = await this.storage.get(ACCOUNT_STORAGE_KEY + '#' + this._cache.pubkey);
769
- json = json && (typeof json === 'string') && JSON.parse(json) || json;
770
- }
771
- }
772
-
773
- // Load remotely
774
- else {
775
- const {data} = await this.graphql.query<{ data: any }>({
776
- query: LoadQuery,
777
- error: { code: ErrorCodes.LOAD_ACCOUNT_ERROR, message: 'ERROR.LOAD_ACCOUNT_ERROR' },
778
- fetchPolicy: opts && opts.fetchPolicy || 'no-cache' || undefined
779
- });
780
- json = data;
781
- }
782
-
783
- if (json) {
784
- const account = Account.fromObject(json);
785
- if (this._debug) console.debug(`[account] Account loaded in ${Date.now() - now}ms`, account);
786
- return account;
787
- }
788
- else {
789
- console.warn(`[account] Account not found !`);
790
- return undefined;
791
- }
792
- }
793
-
794
- async generateToken(flags: number): Promise<string | undefined> {
795
-
796
- const now = this._debug && Date.now();
797
- if (this._debug) console.debug(`[account] Generate token...`);
798
-
799
- const authChallenge = await this.getAuthChallenge();
800
- // Add Flags to challenge
801
- const challenge = `${authChallenge.challenge}:${flags}`;
802
- const signature = await CryptoService.sign(challenge, this._cache.keypair);
803
- const newToken = `${this._cache.pubkey}:${challenge}|${signature}`;
804
-
805
- if (newToken) {
806
- if (this._debug) console.debug(`[account] Token generated in ${Date.now() - now}ms`);
807
- } else {
808
- console.warn(`[account] Token generation failed !`);
809
- }
810
-
811
- return newToken;
812
- }
813
-
814
- /**
815
- * Check if email is available for new account registration.
816
- * Throw an error if not available
817
- *
818
- * @param email
819
- */
820
- async checkEmailAvailable(email: string): Promise<void> {
821
- const isEmailExists = await this.isEmailExists(email);
822
- if (isEmailExists) {
823
- throw { code: ErrorCodes.EMAIL_ALREADY_REGISTERED, message: 'ERROR.EMAIL_ALREADY_REGISTERED' };
824
- }
825
- }
826
-
827
- /**
828
- * Check if email is exists in server.
829
- *
830
- * @param email
831
- */
832
- async isEmailExists(email: string): Promise<boolean> {
833
-
834
- if (this._debug) console.debug('[account] Checking if {' + email + '} exists...');
835
-
836
- const data = await this.graphql.query<{ isEmailExists: boolean }, IsEmailExistsVariables>({
837
- query: IsEmailExistsQuery,
838
- variables: {
839
- email,
840
- hash: undefined
841
- }
842
- });
843
-
844
- if (this._debug) console.debug('[account] Email exist: ' + (data && data.isEmailExists));
845
-
846
- return data && data.isEmailExists;
847
- }
848
-
849
- async sendConfirmationEmail(email: string, locale?: string): Promise<boolean> {
850
-
851
- locale = locale || this.settings.locale;
852
- console.debug('[account] Sending confirmation email to {' + email + '} with locale {' + locale + '}...');
853
-
854
- return await this.graphql.mutate<boolean>({
855
- mutation: SendConfirmEmailMutation,
856
- variables: {
857
- email,
858
- locale
859
- },
860
- error: {
861
- code: ErrorCodes.SENT_CONFIRMATION_EMAIL_FAILED,
862
- message: 'ERROR.SENT_ACCOUNT_CONFIRMATION_EMAIL_FAILED'
863
- }
864
- });
865
- }
866
-
867
- async confirmEmail(email: string, code: string): Promise<boolean> {
868
-
869
- console.debug('[account] Sending confirm request for email {' + email + '} with code {' + code + '}...');
870
-
871
- const res = await this.graphql.mutate<{ confirmAccountEmail: boolean }>({
872
- mutation: ConfirmEmailMutation,
873
- variables: {
874
- email,
875
- code
876
- },
877
- error: {
878
- code: ErrorCodes.CONFIRM_EMAIL_FAILED,
879
- message: 'ERROR.CONFIRM_ACCOUNT_EMAIL_FAILED'
880
- }
881
- });
882
- return res && res.confirmAccountEmail;
883
- }
884
-
885
- listenChanges(opts?: AccountWatchOptions): Subscription {
886
- if (this._enableListenChanges) return new Subscription(); // Already started: skip
887
-
888
- return this.startListenRemoteChanges(opts);
889
- }
890
-
891
- get additionalFields(): FormFieldDefinition[] {
892
- return this._$additionalFields.getValue();
893
- }
894
-
895
- get $additionalFields(): Observable<FormFieldDefinition[]> {
896
- return this._$additionalFields.asObservable();
897
- }
898
-
899
- getAdditionalField(key: string): FormFieldDefinition | undefined {
900
- return this._$additionalFields.getValue().find(f => f.key === key);
901
- }
902
-
903
- registerAdditionalField(field: FormFieldDefinition) {
904
- const values = this._$additionalFields.getValue();
905
- if (!!values.find(f => f.key === field.key)) {
906
- throw new Error(`Additional account field {key: ${field.key}} already define.`);
907
- }
908
- if (this._debug) console.debug(`[account] Found additional account's field {key: ${field.key}}`);
909
- this._$additionalFields.next(values.concat(field));
910
- }
911
-
912
- get optionDefs(): FormFieldDefinition[] {
913
- return this._optionDefs;
914
- }
915
-
916
- registerOption(def: FormFieldDefinition) {
917
- if (this._optionDefs.findIndex(f => f.key === def.key) !== -1) {
918
- throw new Error(`Additional option {${def.key}} already define.`);
919
- }
920
- if (this._debug) console.debug(`[account] Adding additional option {${def.key}}`, def);
921
- this._optionDefs.push(def);
922
- }
923
-
924
- registerOptions(defs: FormFieldDefinition[]) {
925
- (defs || []).forEach(def => this.registerOption(def));
926
- }
927
-
928
-
929
- /* -- protected method -- */
930
-
931
- protected resetData() {
932
- this.stopListenRemoteChanges();
933
- this._cache.loaded = false;
934
- this._cache.keypair = null;
935
- this._cache.authToken = null;
936
- this._cache.authBasic = null;
937
- this._cache.pubkey = null;
938
- this._cache.mainProfile = null;
939
- this._cache.person = null;
940
- this._cache.department = null;
941
- this._data = new Account();
942
- }
943
-
944
- protected async loadData(opts?: {
945
- offline?: boolean;
946
- fetchPolicy?: FetchPolicy;
947
- }): Promise<Account> {
948
- if (!this._cache.pubkey) throw new Error('User not logged');
949
-
950
- this._cache.loaded = false;
951
-
952
- try {
953
- const account = (await this.load(opts)) || new Account();
954
-
955
- // Set defaults
956
- account.avatar = account.avatar || (this.environment.baseUrl + DEFAULT_AVATAR_IMAGE);
957
- account.settings = account.settings || new UserSettings();
958
- account.settings.locale = account.settings.locale || this.settings.locale;
959
- account.settings.latLongFormat = account.settings.latLongFormat || this.settings.latLongFormat || 'DDMM';
960
- account.settings.content = account.settings.content || {};
961
-
962
- // Read main profile
963
- this._cache.mainProfile = PersonUtils.getMainProfile(account.profiles);
964
-
965
- // Update, instead of replace it
966
- if (this._data) {
967
- this._data.fromObject(account);
968
- }
969
- else {
970
- this._data = account;
971
- }
972
- this._cache.loaded = true;
973
-
974
- // Apply settings, found in remote account
975
- if (account.settings) {
976
- const settings = {
977
- ...this.settings.settings,
978
- ...account.settings.asLocalSettings()
979
- };
980
- await this.settings.apply(settings);
981
- }
982
-
983
- return this._data;
984
- }
985
- catch (error) {
986
- this.resetData();
987
- if (error.code && error.message) throw error;
988
-
989
- console.error(error);
990
- throw {
991
- code: ErrorCodes.LOAD_ACCOUNT_ERROR,
992
- message: 'ERROR.LOAD_ACCOUNT_ERROR'
993
- };
994
- }
995
- }
996
-
997
- protected async listenSettings(): Promise<void>{
998
- // When settings changed: save it remotely
999
- this.registerSubscription(
1000
- this.settings.onChange
1001
- .pipe(
1002
- debounceTime(1000),
1003
- filter(() => this.isLogin() && this.network.online)
1004
- )
1005
- .subscribe(settings => this.saveLocalSettingsRemotely(settings)));
1006
- }
1007
-
1008
- protected async restoreLocally(): Promise<Account | undefined> {
1009
-
1010
- // Restore from storage
1011
- const values = await Promise.all([
1012
- this.storage.get(PUBKEY_STORAGE_KEY),
1013
- this.storage.get(TOKEN_STORAGE_KEY),
1014
- this.storage.get(SECKEY_STORAGE_KEY)
1015
- ]);
1016
- let pubkey = values[0];
1017
- let token = values[1];
1018
- const seckey = values[2];
1019
-
1020
- // DEV only - auth by token
1021
- if (!this.environment.production && this.environment.defaultAuthValues?.token) {
1022
- token = token || this.environment.defaultAuthValues.token;
1023
- pubkey = pubkey || token?.split(':', 2)[0];
1024
- }
1025
-
1026
- // Quit if no pubkey (not logged)
1027
- if (!pubkey) return;
1028
-
1029
- // Quit if could not auth on pod
1030
- const canRemoteAuth = token || seckey || false;
1031
- if (!canRemoteAuth) return;
1032
-
1033
- if (this._debug) console.debug(`[account] Account restoration...`);
1034
-
1035
- this._cache.authToken = token;
1036
- this._cache.pubkey = pubkey;
1037
- this._cache.keypair = seckey && {
1038
- publicKey: Base58.decode(pubkey),
1039
- secretKey: Base58.decode(seckey)
1040
- } || null;
1041
-
1042
- // Online mode: try to connect to pod
1043
- if (this.network.online) {
1044
- try {
1045
- await this.authenticate();
1046
- if (!this._cache.authToken && !this._cache.authBasic) throw new Error('Authentication failed');
1047
- }
1048
- catch (error) {
1049
- // Offline feature are enable: continue in offline mode
1050
- if (this.settings.hasOfflineFeature()) {
1051
- console.warn('[account] Unable to authenticate on pod: forcing offline mode');
1052
- this.network.setForceOffline(true, {showToast: false});
1053
- // Continue
1054
- }
1055
- // No offline features enable (=offline mode not allowed)
1056
- else {
1057
- console.error(error);
1058
- this.logout();
1059
- return;
1060
- }
1061
-
1062
- }
1063
- }
1064
-
1065
- // Get the account, from pubkey
1066
- let jsonAccount = await this.storage.get(`${ACCOUNT_STORAGE_KEY}#${pubkey}`);
1067
- if (!jsonAccount) {
1068
- // Try using the old storage key
1069
- const accountStr = await this.storage.get(ACCOUNT_STORAGE_KEY);
1070
- jsonAccount = accountStr && ((typeof accountStr === 'string') && JSON.parse(jsonAccount) || accountStr);
1071
- }
1072
-
1073
- // Invalid account: do not use it
1074
- if (!jsonAccount || jsonAccount.pubkey !== pubkey) {
1075
-
1076
- // DEV only: create a fake account with given username
1077
- if (!this.environment.production && this.environment.defaultAuthValues.username) {
1078
- const username = this.environment.defaultAuthValues.username;
1079
- jsonAccount = {pubkey, username, firstName: username, lastName: username};
1080
- }
1081
- else {
1082
- return;
1083
- }
1084
- }
1085
-
1086
- // Transform to entity
1087
- const account = Account.fromObject(jsonAccount);
1088
-
1089
- // Update data
1090
- this._data = account;
1091
- this._cache.mainProfile = PersonUtils.getMainProfile(account.profiles);
1092
- this._cache.loaded = true;
1093
-
1094
- // Emit event
1095
- this.onLogin.next(this._data);
1096
- this.onChange.next(this._data);
1097
-
1098
- if (this._enableListenChanges) this.startListenRemoteChanges();
1099
-
1100
- if (this._debug) console.debug(`[account] Account restoration [OK] {pubkey: ${pubkey.substr(0, 8)}}, {profile: ${this._cache.mainProfile}}`);
1101
-
1102
- return account;
1103
- }
1104
-
1105
- /**
1106
- * Save account into the local storage
1107
- */
1108
- protected async saveLocally(): Promise<void> {
1109
- if (!this._cache.pubkey) throw new Error('User not logged');
1110
-
1111
- if (this._debug) console.debug(`[account] Saving account {${this._cache.pubkey.substring(0, 6)}} in local storage...`);
1112
-
1113
- // Convert account to json
1114
- const json = this._data.asObject({keepTypename: true});
1115
- const seckey = this._cache.keypair && this._cache.keypair.secretKey && Base58.encode(this._cache.keypair.secretKey) || null;
1116
-
1117
- // Convert avatar URL to dataUrl (e.g. 'data:image/png:<base64 content>')
1118
- const hasAvatarUrl = json.avatar && !json.avatar.endsWith(DEFAULT_AVATAR_IMAGE) &&
1119
- (json.avatar.startsWith('http://') || (json.avatar.startsWith('https://')));
1120
- if (hasAvatarUrl && this.network.online) {
1121
- await this.file.getImage(json.avatar, {
1122
- thumbnail: true,
1123
- outputType: 'dataUrl'
1124
- })
1125
- .then(dataUrl => {
1126
- if (dataUrl && this._debug) console.debug('[account] Image fetched: ', dataUrl.substring(0, 50));
1127
-
1128
- // TODO: make sure to display Base64 image in the menu top header
1129
- //jsonAccount.avatar = dataUrl;
1130
- })
1131
- .catch(err => {
1132
- console.error(`[account] Error while fetching image: ${json.avatar}: ${err}`);
1133
- });
1134
- }
1135
-
1136
- try {
1137
- await Promise.all([
1138
- this.storage.set(PUBKEY_STORAGE_KEY, this._cache.pubkey),
1139
- this.storage.set(TOKEN_STORAGE_KEY, this._cache.authToken),
1140
- this.storage.set(`${ACCOUNT_STORAGE_KEY}#${this._cache.pubkey}`, json),
1141
- // Secret key (optional)
1142
- seckey && this.storage.set(SECKEY_STORAGE_KEY, seckey) || this.storage.remove(SECKEY_STORAGE_KEY),
1143
- // Remove old storage key
1144
- this.storage.remove(ACCOUNT_STORAGE_KEY)
1145
- ]);
1146
-
1147
- if (this._debug) console.debug('[account] Account saved in local storage');
1148
- }
1149
- catch(err) {
1150
- console.error('[account] Error while saving account locally: ' + (err && err.message || err), err);
1151
- }
1152
- }
1153
-
1154
- async saveLocalSettingsRemotely(source: LocalSettings){
1155
- if (!source || !this.isLogin() || source.accountInheritance === false) return; // Skip
1156
- const account = this.account;
1157
-
1158
- // Merge local settings into account's settings
1159
- const settings = UserSettings.fromObject(account.settings) || new UserSettings();
1160
- const changed = settings.merge(source, ['locale', 'latLongFormat', 'properties']);
1161
-
1162
- if (!changed) return; // Skip if unchanged
1163
-
1164
- // Save remotely
1165
- this.account.settings = settings;
1166
- await this.saveSettingsRemotely(settings);
1167
- }
1168
-
1169
- /**
1170
- * Create or update an user account
1171
- *
1172
- * @param account
1173
- * @param keyPair
1174
- */
1175
- protected async saveRemotely(account: Account, keyPair?: Keypair): Promise<Account> {
1176
- account.pubkey = account.pubkey || (keyPair && Base58.encode(keyPair.publicKey));
1177
- if (!account.pubkey) throw new Error('Missing account pubkey');
1178
-
1179
- const now = this._debug && Date.now();
1180
- if (this._debug) console.debug(`[account] Saving account remotely...`);
1181
-
1182
- const isNew = isNil(account.id);
1183
-
1184
- // If this is an update: get existing account's updateDate, to avoid 'version error' when saving
1185
- if (!isNew) {
1186
- const existingAccount = await this.load({ fetchPolicy: 'network-only' });
1187
- if (!existingAccount || !existingAccount.updateDate) {
1188
- throw { code: ErrorCodes.ACCOUNT_NOT_EXISTS, message: 'ERROR.ACCOUNT_NOT_EXISTS' };
1189
- }
1190
- this.copyIdAndUpdateDate(existingAccount, account);
1191
- }
1192
-
1193
- // Merging settings
1194
- account.settings.content['pages'] = this.settings.settings.pages;
1195
- account.settings.content['pageHistory'] = this.settings.settings.pageHistory;
1196
-
1197
- // Convert to json
1198
- const json = account.asObject(MINIFY_ENTITY_FOR_POD);
1199
-
1200
- // User not allow to change his profiles
1201
- delete json.profiles;
1202
-
1203
- // Execute mutation
1204
- const { data } = await this.graphql.mutate<{ data: Account }>({
1205
- mutation: isNew ? AccountMutations.create : AccountMutations.save,
1206
- variables: { data: json },
1207
- error: {
1208
- code: ErrorCodes.SAVE_ACCOUNT_ERROR,
1209
- message: 'ERROR.SAVE_ACCOUNT_ERROR'
1210
- }
1211
- });
1212
-
1213
- // Copy update properties
1214
- this.copyIdAndUpdateDate(data, account);
1215
-
1216
- if (this._debug) console.debug(`[account] Account remotely saved in ${Date.now() - now}ms`);
1217
-
1218
- return account;
1219
- }
1220
-
1221
- /**
1222
- * Create or update user settings
1223
- *
1224
- * @param settings
1225
- */
1226
- protected async saveSettingsRemotely(settings: UserSettings) {
1227
-
1228
- const now = this._debug && Date.now();
1229
- if (this._debug) console.debug(`[account] Saving settings remotely...`);
1230
-
1231
- const json = settings.asObject(MINIFY_ENTITY_FOR_POD);
1232
-
1233
- // Execute mutation
1234
- const { data } = await this.graphql.mutate<{ data: UserSettings }>({
1235
- mutation: AccountMutations.saveSettings,
1236
- variables: { data: json },
1237
- error: {
1238
- code: ErrorCodes.SAVE_SETTINGS_ERROR,
1239
- message: 'ERROR.SAVE_SETTINGS_ERROR'
1240
- }
1241
- });
1242
-
1243
- // Copy update properties
1244
- this.copyIdAndUpdateDateSettings(data, settings);
1245
-
1246
- if (this._debug) console.debug(`[account] Settings remotely saved in ${Date.now() - now}ms`);
1247
-
1248
- // Save into account
1249
- if (this.account) this.account.settings = settings;
1250
- }
1251
-
1252
- protected async authenticateAndGetToken(token?: string, counter?: number): Promise<string> {
1253
- if (!this._cache.pubkey) throw new Error('User not logged');
1254
-
1255
- if (!counter) console.info('[account] Authentication on pod...');
1256
-
1257
- if (counter > 4) {
1258
- if (this._debug) console.debug(`[account] Failed to authentication on pod (after ${counter} attempts)`);
1259
- throw { code: ErrorCodes.AUTH_SERVER_ERROR, message: 'ERROR.AUTH_SERVER_ERROR' };
1260
- }
1261
-
1262
- // Check if valid
1263
- if (token) {
1264
- const data = await this.graphql.query<{ authenticate: boolean }, { token: string }>({
1265
- query: AuthQuery,
1266
- variables: {
1267
- token
1268
- },
1269
- error: {
1270
- code: ErrorCodes.UNAUTHORIZED,
1271
- message: 'ERROR.UNAUTHORIZED'
1272
- },
1273
- fetchPolicy: 'no-cache'
1274
- });
1275
-
1276
- // Token is accepted by the server
1277
- if (data && data.authenticate) {
1278
- // Store the token
1279
- this.onAuthTokenChange.next(token);
1280
-
1281
- console.info(`[account] Authentication on pod [OK] {pubkey: '${this._cache.pubkey.substr(0, 8)}'}`);
1282
- return token; // return the token
1283
- }
1284
-
1285
- // Continue (will retry with another challenge)
1286
- }
1287
-
1288
- // Generate a new token
1289
- const authChallenge = await this.getAuthChallenge();
1290
- // TODO: check server pubkey as a valid certificate
1291
-
1292
- // Do the challenge
1293
- const signature = await CryptoService.sign(authChallenge.challenge, this._cache.keypair);
1294
- const newToken = `${this._cache.pubkey}:${authChallenge.challenge}|${signature}`;
1295
-
1296
- // iterate with the new token
1297
- return await this.authenticateAndGetToken(newToken, (counter || 1) + 1 /* increment */);
1298
- }
1299
-
1300
- protected async getAuthChallenge(): Promise<IAuthChallenge> {
1301
- const challengeError = {
1302
- code: ErrorCodes.AUTH_CHALLENGE_ERROR,
1303
- message: 'ERROR.AUTH_CHALLENGE_ERROR'
1304
- };
1305
- const { authChallenge} = await this.graphql.query<{
1306
- authChallenge: IAuthChallenge;
1307
- }>({
1308
- query: AuthChallengeQuery,
1309
- variables: {},
1310
- error: challengeError,
1311
- fetchPolicy: 'network-only'
1312
- });
1313
-
1314
- // Check challenge
1315
- if (!authChallenge) throw challengeError; // Should never occur
1316
-
1317
- // Check server signature
1318
- const signatureOK = await CryptoService.verify(
1319
- authChallenge.challenge,
1320
- authChallenge.signature,
1321
- authChallenge.pubkey
1322
- );
1323
- if (!signatureOK) {
1324
- console.warn('FIXME: Bad peer signature on auth challenge !', authChallenge);
1325
- }
1326
- return authChallenge;
1327
- }
1328
-
1329
- protected startListenRemoteChanges(opts?: AccountWatchOptions): Subscription {
1330
- if (this._listenChangesSubscription) this.stopListenRemoteChanges(); // Stop previous subscription
1331
- if (this.network.offline) return new Subscription(); // Offline: skip
1332
-
1333
- this._listenChangesSubscription = this.watchChanges(opts)
1334
- .subscribe({
1335
- next: (data) => {
1336
- console.debug(`[account] Remote update detected at ${data.updateDate}`);
1337
- this.reload();
1338
- },
1339
- error: (err) => {
1340
- if (err && +err.code === ServerErrorCodes.NOT_FOUND) {
1341
- console.info('[account] [WS] Account not exists anymore: force user to logout...', err);
1342
- this.logout();
1343
- } else if (err && +err.code === ServerErrorCodes.UNAUTHORIZED) {
1344
- console.info('[account] [WS] Account not authorized: force user to logout...', err);
1345
- this.logout();
1346
- } else {
1347
- console.warn('[account] [WS] Received error:', err);
1348
- }
1349
- }
1350
- });
1351
- this._listenChangesSubscription.add(() => {
1352
- console.debug(`[account] Stop watching remote changes`);
1353
- this._listenChangesSubscription = null;
1354
- });
1355
- return this._listenChangesSubscription;
1356
- }
1357
-
1358
- protected stopListenRemoteChanges() {
1359
- this._listenChangesSubscription?.unsubscribe();
1360
- }
1361
-
1362
- protected watchChanges(opts?: AccountWatchOptions): Observable<Account> {
1363
-
1364
- if (!this.started) {
1365
- // Wait service ready, then loop
1366
- return from(this.ready())
1367
- .pipe(switchMap(() => this.watchChanges(opts)));
1368
- }
1369
-
1370
- if (!this._cache.pubkey) throw new Error('Not logged in');
1371
- if (this.network.offline) throw new Error('Cannot watch account changes: network is offline.');
1372
-
1373
- const variables = {
1374
- interval: toNumber(opts && opts.intervalInSeconds, this._listenIntervalInSeconds)
1375
- };
1376
-
1377
- console.debug(`[account] Watching remote changes, every ${variables.interval}s`);
1378
-
1379
- return this.graphql.subscribe<{data: any}>({
1380
- query: AccountSubscriptions.listenChanges,
1381
- variables,
1382
- error: {
1383
- code: ErrorCodes.SUBSCRIBE_ACCOUNT_ERROR,
1384
- message: 'ERROR.ACCOUNT.SUBSCRIBE_ERROR'
1385
- }
1386
- }).pipe(
1387
- map(({data}) => data),
1388
- // Keep only if newer
1389
- filter(data => {
1390
- const currentUpdateDate: Moment = fromDateISOString(this._data?.updateDate);
1391
- const remoteUpdateDate: Moment = fromDateISOString(data?.updateDate);
1392
- return (remoteUpdateDate && (!currentUpdateDate || !remoteUpdateDate.isSame(currentUpdateDate, 'millisecond')));
1393
- })
1394
- );
1395
- }
1396
-
1397
- protected copyIdAndUpdateDate(source: Account | undefined, target: Account) {
1398
- if (!source) return;
1399
-
1400
- target.id = source.id || target.id;
1401
- target.updateDate = source.updateDate || target.updateDate;
1402
-
1403
- this.copyIdAndUpdateDateSettings(source.settings, target.settings);
1404
- this.copyIdAndUpdateDateToken(source.tokens, target.tokens);
1405
- }
1406
-
1407
- protected copyIdAndUpdateDateSettings(source: UserSettings | undefined, target: UserSettings) {
1408
- if (!source) return;
1409
-
1410
- target.id = source.id || target.id;
1411
- target.updateDate = source.updateDate || target.updateDate;
1412
- }
1413
-
1414
- protected copyIdAndUpdateDateToken(sources: UserToken[] | undefined, targets: UserToken[]) {
1415
- if (isEmptyArray(sources)) return;
1416
-
1417
- sources.forEach(source => {
1418
- const target = targets.find(value => value.id === source.id || value.name === source.name);
1419
- if (target) {
1420
- target.id = source.id || target.id;
1421
- target.creationDate = source.creationDate || target.creationDate;
1422
- target.updateDate = source.updateDate || target.updateDate;
1423
- target.token = undefined;
1424
- }
1425
- });
1426
- }
1427
-
1428
- protected showToast<T = any>(opts: ShowToastOptions): Promise<OverlayEventDetail<T>> {
1429
- return Toasts.show(this.toastController, this.translate, opts);
1430
- }
1431
- }