@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.
- package/esm2020/public_api.mjs +313 -0
- package/esm2020/src/app/admin/admin-routing.module.mjs +41 -0
- package/esm2020/src/app/admin/admin.module.mjs +34 -0
- package/esm2020/src/app/admin/services/filter/person.filter.mjs +59 -0
- package/esm2020/src/app/admin/services/person.service.mjs +161 -0
- package/esm2020/src/app/admin/services/validator/person.validator.mjs +34 -0
- package/esm2020/src/app/admin/users/users.mjs +234 -0
- package/esm2020/src/app/admin/users/users.module.mjs +54 -0
- package/esm2020/src/app/core/about/about.modal.mjs +71 -0
- package/esm2020/src/app/core/about/about.module.mjs +34 -0
- package/esm2020/src/app/core/account/account.module.mjs +61 -0
- package/esm2020/src/app/core/account/account.page.mjs +316 -0
- package/esm2020/src/app/core/account/new-token.modal.mjs +115 -0
- package/esm2020/src/app/core/account/token.table.mjs +137 -0
- package/esm2020/src/app/core/auth/auth.form.mjs +131 -0
- package/esm2020/src/app/core/auth/auth.modal.mjs +72 -0
- package/esm2020/src/app/core/auth/auth.module.mjs +47 -0
- package/esm2020/src/app/core/core.module.mjs +184 -0
- package/esm2020/src/app/core/core.testing.module.mjs +86 -0
- package/esm2020/src/app/core/form/buttons/form-buttons-bar.component.mjs +71 -0
- package/esm2020/src/app/core/form/buttons/form-buttons-bar.module.mjs +35 -0
- package/esm2020/src/app/core/form/entity/editor.class.mjs +679 -0
- package/esm2020/src/app/core/form/entity/entity-editor-modal.class.mjs +421 -0
- package/esm2020/src/app/core/form/entity/entity-editor.class.mjs +687 -0
- package/esm2020/src/app/core/form/entity/entity-metadata.component.mjs +25 -0
- package/esm2020/src/app/core/form/entity/entity.module.mjs +38 -0
- package/esm2020/src/app/core/form/form.class.mjs +340 -0
- package/esm2020/src/app/core/form/form.module.mjs +66 -0
- package/esm2020/src/app/core/form/form.utils.mjs +473 -0
- package/esm2020/src/app/core/form/list/list.form.mjs +222 -0
- package/esm2020/src/app/core/form/list/list.module.mjs +35 -0
- package/esm2020/src/app/core/form/properties/properties.form.mjs +132 -0
- package/esm2020/src/app/core/form/properties/properties.module.mjs +43 -0
- package/esm2020/src/app/core/form/properties/properties.table.mjs +264 -0
- package/esm2020/src/app/core/form/properties/property.validator.mjs +23 -0
- package/esm2020/src/app/core/form/properties/testing/properties-form.test.mjs +90 -0
- package/esm2020/src/app/core/form/properties/testing/properties-form.testing.module.mjs +39 -0
- package/esm2020/src/app/core/form/text-popover/testing/text-popover.testing.mjs +70 -0
- package/esm2020/src/app/core/form/text-popover/testing/text-popover.testing.module.mjs +45 -0
- package/esm2020/src/app/core/form/text-popover/text-form.component.mjs +89 -0
- package/esm2020/src/app/core/form/text-popover/text-popover.component.mjs +146 -0
- package/esm2020/src/app/core/form/text-popover/text-popover.module.mjs +40 -0
- package/esm2020/src/app/core/graphql/graphql.module.mjs +22 -0
- package/esm2020/src/app/core/graphql/graphql.service.mjs +762 -0
- package/esm2020/src/app/core/graphql/graphql.utils.mjs +117 -0
- package/esm2020/src/app/core/home/home.mjs +257 -0
- package/esm2020/src/app/core/home/home.module.mjs +48 -0
- package/esm2020/src/app/core/icon/icon.component.mjs +41 -0
- package/esm2020/src/app/core/icon/icon.module.mjs +29 -0
- package/esm2020/src/app/core/install/install-upgrade-card.component.mjs +343 -0
- package/esm2020/src/app/core/install/install-upgrade-card.module.mjs +35 -0
- package/esm2020/src/app/core/menu/menu.component.mjs +329 -0
- package/esm2020/src/app/core/menu/menu.model.mjs +35 -0
- package/esm2020/src/app/core/menu/menu.module.mjs +44 -0
- package/esm2020/src/app/core/menu/menu.service.mjs +55 -0
- package/esm2020/src/app/core/offline/update-offline-mode-card.component.mjs +27 -0
- package/esm2020/src/app/core/offline/update-offline-mode-card.module.mjs +35 -0
- package/esm2020/src/app/core/peer/select-peer.modal.mjs +182 -0
- package/esm2020/src/app/core/peer/select-peer.module.mjs +42 -0
- package/esm2020/src/app/core/register/register-confirm.page.mjs +81 -0
- package/esm2020/src/app/core/register/register.form.mjs +181 -0
- package/esm2020/src/app/core/register/register.modal.mjs +52 -0
- package/esm2020/src/app/core/register/register.module.mjs +44 -0
- package/esm2020/src/app/core/services/account.service.mjs +1212 -0
- package/esm2020/src/app/core/services/auth-guard.service.mjs +71 -0
- package/esm2020/src/app/core/services/base-entity-service.class.mjs +444 -0
- package/esm2020/src/app/core/services/base-graphql-service.class.mjs +219 -0
- package/esm2020/src/app/core/services/base58.mjs +78 -0
- package/esm2020/src/app/core/services/config/core.config.mjs +175 -0
- package/esm2020/src/app/core/services/config.service.mjs +354 -0
- package/esm2020/src/app/core/services/crypto.service.mjs +114 -0
- package/esm2020/src/app/core/services/errors.mjs +50 -0
- package/esm2020/src/app/core/services/local-settings.service.mjs +449 -0
- package/esm2020/src/app/core/services/model/account.model.mjs +122 -0
- package/esm2020/src/app/core/services/model/config.model.mjs +92 -0
- package/esm2020/src/app/core/services/model/department.model.mjs +30 -0
- package/esm2020/src/app/core/services/model/entity.decorators.mjs +97 -0
- package/esm2020/src/app/core/services/model/entity.model.mjs +240 -0
- package/esm2020/src/app/core/services/model/filter.model.mjs +94 -0
- package/esm2020/src/app/core/services/model/history.model.mjs +2 -0
- package/esm2020/src/app/core/services/model/model.enum.mjs +11 -0
- package/esm2020/src/app/core/services/model/peer.model.mjs +68 -0
- package/esm2020/src/app/core/services/model/person.model.mjs +83 -0
- package/esm2020/src/app/core/services/model/referential.model.mjs +164 -0
- package/esm2020/src/app/core/services/model/settings.model.mjs +3 -0
- package/esm2020/src/app/core/services/model/token.model.mjs +48 -0
- package/esm2020/src/app/core/services/network.service.mjs +589 -0
- package/esm2020/src/app/core/services/network.types.mjs +20 -0
- package/esm2020/src/app/core/services/network.utils.mjs +15 -0
- package/esm2020/src/app/core/services/pipes/account.pipes.mjs +38 -0
- package/esm2020/src/app/core/services/pipes/department-to-string.pipe.mjs +23 -0
- package/esm2020/src/app/core/services/pipes/person-to-string.pipe.mjs +23 -0
- package/esm2020/src/app/core/services/pipes/usage-mode.pipes.mjs +37 -0
- package/esm2020/src/app/core/services/platform.service.mjs +525 -0
- package/esm2020/src/app/core/services/storage/entities-storage.service.mjs +428 -0
- package/esm2020/src/app/core/services/storage/entity-store.class.mjs +449 -0
- package/esm2020/src/app/core/services/testing/referential-filter.model.mjs +23 -0
- package/esm2020/src/app/core/services/testing/referential.validator.mjs +45 -0
- package/esm2020/src/app/core/services/validator/account.validator.mjs +56 -0
- package/esm2020/src/app/core/services/validator/base.validator.class.mjs +47 -0
- package/esm2020/src/app/core/services/validator/local-settings.validator.mjs +66 -0
- package/esm2020/src/app/core/services/validator/user-settings.validator.mjs +27 -0
- package/esm2020/src/app/core/services/validator/user-token.validator.mjs +52 -0
- package/esm2020/src/app/core/settings/settings.module.mjs +34 -0
- package/esm2020/src/app/core/settings/settings.page.mjs +312 -0
- package/esm2020/src/app/core/table/actions-column.component.mjs +102 -0
- package/esm2020/src/app/core/table/async-table.class.mjs +1697 -0
- package/esm2020/src/app/core/table/entities-async-table-datasource.class.mjs +384 -0
- package/esm2020/src/app/core/table/entities-table-datasource.class.mjs +399 -0
- package/esm2020/src/app/core/table/memory-table.class.mjs +53 -0
- package/esm2020/src/app/core/table/table-select-columns.component.mjs +43 -0
- package/esm2020/src/app/core/table/table.class.mjs +1728 -0
- package/esm2020/src/app/core/table/table.model.mjs +12 -0
- package/esm2020/src/app/core/table/table.module.mjs +40 -0
- package/esm2020/src/app/core/table/table.utils.mjs +30 -0
- package/esm2020/src/app/core/table/testing/table-validator.service.mjs +27 -0
- package/esm2020/src/app/core/table/testing/table.testing.mjs +280 -0
- package/esm2020/src/app/core/table/testing/table.testing.module.mjs +38 -0
- package/esm2020/src/app/shared/alerts.mjs +239 -0
- package/esm2020/src/app/shared/audio/audio.mjs +248 -0
- package/esm2020/src/app/shared/audio/audio.testing.mjs +31 -0
- package/esm2020/src/app/shared/audio/audio.testing.module.mjs +45 -0
- package/esm2020/src/app/shared/capacitor/keyboard.mjs +40 -0
- package/esm2020/src/app/shared/capacitor/plugins.mjs +9 -0
- package/esm2020/src/app/shared/constants.mjs +10 -0
- package/esm2020/src/app/shared/dates.mjs +147 -0
- package/esm2020/src/app/shared/debug/debug-service.class.mjs +3 -0
- package/esm2020/src/app/shared/debug/debug.component.mjs +39 -0
- package/esm2020/src/app/shared/debug/debug.module.mjs +44 -0
- package/esm2020/src/app/shared/directives/autofocus.directive.mjs +92 -0
- package/esm2020/src/app/shared/directives/autotitle.directive.mjs +30 -0
- package/esm2020/src/app/shared/directives/directives.module.mjs +43 -0
- package/esm2020/src/app/shared/directives/drag-and-drop.directive.mjs +53 -0
- package/esm2020/src/app/shared/directives/ng-var.directive.mjs +31 -0
- package/esm2020/src/app/shared/directives/resizable/resizable.component.mjs +59 -0
- package/esm2020/src/app/shared/directives/resizable/resizable.directive.mjs +40 -0
- package/esm2020/src/app/shared/directives/resizable/resizable.module.mjs +17 -0
- package/esm2020/src/app/shared/events.mjs +64 -0
- package/esm2020/src/app/shared/file/csv.utils.mjs +74 -0
- package/esm2020/src/app/shared/file/file.service.mjs +117 -0
- package/esm2020/src/app/shared/file/file.utils.mjs +113 -0
- package/esm2020/src/app/shared/file/images.utils.mjs +161 -0
- package/esm2020/src/app/shared/file/json.utils.mjs +51 -0
- package/esm2020/src/app/shared/file/uri.utils.mjs +23 -0
- package/esm2020/src/app/shared/focusable.mjs +6 -0
- package/esm2020/src/app/shared/form/field.component.mjs +307 -0
- package/esm2020/src/app/shared/form/field.model.mjs +25 -0
- package/esm2020/src/app/shared/form/loading-spinner.mjs +36 -0
- package/esm2020/src/app/shared/forms.mjs +391 -0
- package/esm2020/src/app/shared/functions.mjs +477 -0
- package/esm2020/src/app/shared/geolocation/geolocation.utils.mjs +80 -0
- package/esm2020/src/app/shared/gesture/gesture-config.mjs +49 -0
- package/esm2020/src/app/shared/gesture/hammer.utils.mjs +2 -0
- package/esm2020/src/app/shared/graph/colors.utils.mjs +64 -0
- package/esm2020/src/app/shared/graph/graph-colors.mjs +212 -0
- package/esm2020/src/app/shared/guard/component-dirty.guard.mjs +57 -0
- package/esm2020/src/app/shared/help/help.modal.mjs +53 -0
- package/esm2020/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.mjs +23 -0
- package/esm2020/src/app/shared/hotkeys/hotkeys.service.mjs +84 -0
- package/esm2020/src/app/shared/hotkeys/shared-hotkeys.module.mjs +42 -0
- package/esm2020/src/app/shared/http/http.utils.mjs +52 -0
- package/esm2020/src/app/shared/image/gallery/image-gallery.component.mjs +365 -0
- package/esm2020/src/app/shared/image/gallery/image-gallery.module.mjs +59 -0
- package/esm2020/src/app/shared/image/gallery/testing/gallegry.model.testing.mjs +27 -0
- package/esm2020/src/app/shared/image/gallery/testing/gallery.service.testing.mjs +90 -0
- package/esm2020/src/app/shared/image/gallery/testing/gallery.testing.mjs +39 -0
- package/esm2020/src/app/shared/image/gallery/testing/gallery.testing.module.mjs +56 -0
- package/esm2020/src/app/shared/image/image.model.mjs +2 -0
- package/esm2020/src/app/shared/image/image.module.mjs +29 -0
- package/esm2020/src/app/shared/image/image.service.mjs +98 -0
- package/esm2020/src/app/shared/inputs.mjs +231 -0
- package/esm2020/src/app/shared/interceptors/progess.interceptor.mjs +27 -0
- package/esm2020/src/app/shared/logging/log-level.model.mjs +48 -0
- package/esm2020/src/app/shared/logging/logger.model.mjs +47 -0
- package/esm2020/src/app/shared/logging/logging-service.class.mjs +121 -0
- package/esm2020/src/app/shared/logging/logging-service.config.mjs +2 -0
- package/esm2020/src/app/shared/logging/logging-service.module.mjs +30 -0
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.config.mjs +47 -0
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.mjs +916 -0
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.module.mjs +78 -0
- package/esm2020/src/app/shared/material/autocomplete/material.autocomplete.utils.mjs +19 -0
- package/esm2020/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +209 -0
- package/esm2020/src/app/shared/material/badge/badge.directive.mjs +194 -0
- package/esm2020/src/app/shared/material/badge/badge.module.mjs +32 -0
- package/esm2020/src/app/shared/material/badge/badge.test.mjs +41 -0
- package/esm2020/src/app/shared/material/boolean/boolean.module.mjs +68 -0
- package/esm2020/src/app/shared/material/boolean/material.boolean.mjs +253 -0
- package/esm2020/src/app/shared/material/chips/chips.module.mjs +76 -0
- package/esm2020/src/app/shared/material/chips/material.chips.mjs +697 -0
- package/esm2020/src/app/shared/material/chips/testing/chips.test.mjs +143 -0
- package/esm2020/src/app/shared/material/datetime/datetime.module.mjs +91 -0
- package/esm2020/src/app/shared/material/datetime/material.date.mjs +376 -0
- package/esm2020/src/app/shared/material/datetime/material.dateshort.mjs +385 -0
- package/esm2020/src/app/shared/material/datetime/material.datetime.mjs +499 -0
- package/esm2020/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +108 -0
- package/esm2020/src/app/shared/material/datetime/testing/mat-date.test.mjs +110 -0
- package/esm2020/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +103 -0
- package/esm2020/src/app/shared/material/duration/duration.module.mjs +67 -0
- package/esm2020/src/app/shared/material/duration/duration.utils.mjs +36 -0
- package/esm2020/src/app/shared/material/duration/material.duration.mjs +257 -0
- package/esm2020/src/app/shared/material/latlong/latlong.utils.mjs +266 -0
- package/esm2020/src/app/shared/material/latlong/material.latlong.mjs +381 -0
- package/esm2020/src/app/shared/material/latlong/material.latlong.module.mjs +67 -0
- package/esm2020/src/app/shared/material/latlong/testing/latlong.test.mjs +102 -0
- package/esm2020/src/app/shared/material/material.animations.mjs +104 -0
- package/esm2020/src/app/shared/material/material.module.mjs +224 -0
- package/esm2020/src/app/shared/material/material.testing.module.mjs +168 -0
- package/esm2020/src/app/shared/material/numpad/numpad.append-to-input.directive.mjs +98 -0
- package/esm2020/src/app/shared/material/numpad/numpad.component.mjs +80 -0
- package/esm2020/src/app/shared/material/numpad/numpad.container.mjs +190 -0
- package/esm2020/src/app/shared/material/numpad/numpad.content.mjs +17 -0
- package/esm2020/src/app/shared/material/numpad/numpad.directive.mjs +162 -0
- package/esm2020/src/app/shared/material/numpad/numpad.dom-service.mjs +37 -0
- package/esm2020/src/app/shared/material/numpad/numpad.model.mjs +15 -0
- package/esm2020/src/app/shared/material/numpad/numpad.module.mjs +60 -0
- package/esm2020/src/app/shared/material/numpad/testing/numpad.test.mjs +46 -0
- package/esm2020/src/app/shared/material/paginator/material.paginator-i18n.mjs +46 -0
- package/esm2020/src/app/shared/material/stepper/material.stepper-i18n.mjs +22 -0
- package/esm2020/src/app/shared/material/swipe/material.swipe.mjs +344 -0
- package/esm2020/src/app/shared/material/swipe/swipe.module.mjs +52 -0
- package/esm2020/src/app/shared/material/swipe/testing/swipe.test.mjs +64 -0
- package/esm2020/src/app/shared/modules.mjs +11 -0
- package/esm2020/src/app/shared/observables.mjs +103 -0
- package/esm2020/src/app/shared/pipes/arrays.pipe.mjs +141 -0
- package/esm2020/src/app/shared/pipes/colors.pipe.mjs +23 -0
- package/esm2020/src/app/shared/pipes/date-diff-duration.pipe.mjs +48 -0
- package/esm2020/src/app/shared/pipes/date-format.pipe.mjs +66 -0
- package/esm2020/src/app/shared/pipes/date-from-now.pipe.mjs +27 -0
- package/esm2020/src/app/shared/pipes/duration.pipe.mjs +34 -0
- package/esm2020/src/app/shared/pipes/file-size.pipe.mjs +62 -0
- package/esm2020/src/app/shared/pipes/form.pipes.mjs +187 -0
- package/esm2020/src/app/shared/pipes/highlight.pipe.mjs +48 -0
- package/esm2020/src/app/shared/pipes/latlong-format.pipe.mjs +46 -0
- package/esm2020/src/app/shared/pipes/maps.pipe.mjs +63 -0
- package/esm2020/src/app/shared/pipes/math.pipes.mjs +59 -0
- package/esm2020/src/app/shared/pipes/ng-init.pipe.mjs +21 -0
- package/esm2020/src/app/shared/pipes/number-format.pipe.mjs +30 -0
- package/esm2020/src/app/shared/pipes/pipes.module.mjs +239 -0
- package/esm2020/src/app/shared/pipes/property.pipes.mjs +93 -0
- package/esm2020/src/app/shared/pipes/string.pipes.mjs +121 -0
- package/esm2020/src/app/shared/pipes/translate-context.pipe.mjs +43 -0
- package/esm2020/src/app/shared/pipes/types.pipes.mjs +45 -0
- package/esm2020/src/app/shared/platforms.mjs +43 -0
- package/esm2020/src/app/shared/services/entity-service.class.mjs +7 -0
- package/esm2020/src/app/shared/services/job.utils.mjs +92 -0
- package/esm2020/src/app/shared/services/memory-entity-service.class.mjs +337 -0
- package/esm2020/src/app/shared/services/progress-bar.service.mjs +33 -0
- package/esm2020/src/app/shared/services/startable-observable-service.class.mjs +119 -0
- package/esm2020/src/app/shared/services/startable-service.class.mjs +110 -0
- package/esm2020/src/app/shared/services/translate-context.service.mjs +105 -0
- package/esm2020/src/app/shared/services/validator-service.class.mjs +2 -0
- package/esm2020/src/app/shared/services.mjs +62 -0
- package/esm2020/src/app/shared/shared-routing.module.mjs +70 -0
- package/esm2020/src/app/shared/shared.module.mjs +208 -0
- package/esm2020/src/app/shared/shared.testing.module.mjs +84 -0
- package/esm2020/src/app/shared/storage/storage-explorer.component.mjs +268 -0
- package/esm2020/src/app/shared/storage/storage-explorer.module.mjs +60 -0
- package/esm2020/src/app/shared/storage/storage.service.mjs +132 -0
- package/esm2020/src/app/shared/storage/storage.utils.mjs +13 -0
- package/esm2020/src/app/shared/testing/observable.test.mjs +95 -0
- package/esm2020/src/app/shared/testing/tests.page.mjs +33 -0
- package/esm2020/src/app/shared/toast/toast.testing.mjs +51 -0
- package/esm2020/src/app/shared/toast/toast.testing.module.mjs +45 -0
- package/esm2020/src/app/shared/toast/toasts.mjs +144 -0
- package/esm2020/src/app/shared/toolbar/modal-toolbar.mjs +58 -0
- package/esm2020/src/app/shared/toolbar/toolbar.mjs +251 -0
- package/esm2020/src/app/shared/toolbar/toolbar.module.mjs +53 -0
- package/esm2020/src/app/shared/types.mjs +2 -0
- package/esm2020/src/app/shared/upload-file/testing/upload-file.testing.mjs +57 -0
- package/esm2020/src/app/shared/upload-file/testing/upload-file.testing.module.mjs +45 -0
- package/esm2020/src/app/shared/upload-file/upload-file-popover.component.mjs +97 -0
- package/esm2020/src/app/shared/upload-file/upload-file.component.mjs +204 -0
- package/esm2020/src/app/shared/upload-file/upload-file.model.mjs +20 -0
- package/esm2020/src/app/shared/validator/form-error-adapter.class.mjs +104 -0
- package/esm2020/src/app/shared/validator/validators.mjs +573 -0
- package/esm2020/src/app/shared/version/versions.mjs +81 -0
- package/esm2020/src/app/social/job/job.module.mjs +42 -0
- package/esm2020/src/app/social/job/progression/job-progression.component.mjs +20 -0
- package/esm2020/src/app/social/job/progression/job-progression.icon.mjs +216 -0
- package/esm2020/src/app/social/job/progression/job-progression.list.mjs +43 -0
- package/esm2020/src/app/social/job/progression/job-progression.model.mjs +23 -0
- package/esm2020/src/app/social/job/progression/job-progression.service.mjs +71 -0
- package/esm2020/src/app/social/job/testing/job-progression.testing.mjs +52 -0
- package/esm2020/src/app/social/job/testing/job-progression.testing.service.mjs +55 -0
- package/esm2020/src/app/social/job/testing/job.testing.module.mjs +35 -0
- package/esm2020/src/app/social/message/message.form.mjs +81 -0
- package/esm2020/src/app/social/message/message.modal.mjs +93 -0
- package/esm2020/src/app/social/message/message.model.mjs +65 -0
- package/esm2020/src/app/social/message/message.module.mjs +35 -0
- package/esm2020/src/app/social/message/message.service.mjs +84 -0
- package/esm2020/src/app/social/social.errors.mjs +10 -0
- package/esm2020/src/app/social/social.module.mjs +47 -0
- package/esm2020/src/app/social/social.testing.module.mjs +51 -0
- package/esm2020/src/app/social/user-event/notification/user-event-notification.icon.mjs +114 -0
- package/esm2020/src/app/social/user-event/notification/user-event-notification.list.mjs +246 -0
- package/esm2020/src/app/social/user-event/testing/user-event.testing.mjs +227 -0
- package/esm2020/src/app/social/user-event/testing/user-event.testing.model.mjs +112 -0
- package/esm2020/src/app/social/user-event/testing/user-event.testing.module.mjs +35 -0
- package/esm2020/src/app/social/user-event/testing/user-event.testing.service.mjs +111 -0
- package/esm2020/src/app/social/user-event/user-event.model.mjs +2 -0
- package/esm2020/src/app/social/user-event/user-event.module.mjs +39 -0
- package/esm2020/src/app/social/user-event/user-event.service.mjs +487 -0
- package/esm2020/src/environments/environment.class.mjs +5 -0
- package/esm2020/src/environments/environment.mjs +94 -0
- package/esm2020/sumaris-net.ngx-components.mjs +5 -0
- package/fesm2015/sumaris-net.ngx-components.mjs +38842 -0
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -0
- package/fesm2020/sumaris-net.ngx-components.mjs +37941 -0
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/package.json +23 -137
- package/public_api.d.ts +286 -0
- package/src/app/admin/admin-routing.module.d.ts +9 -0
- package/src/app/admin/admin.module.d.ts +10 -0
- package/src/app/admin/services/filter/person.filter.d.ts +21 -0
- package/src/app/admin/services/person.service.d.ts +44 -0
- package/src/app/admin/services/validator/person.validator.d.ts +14 -0
- package/src/app/admin/users/users.d.ts +44 -0
- package/src/app/admin/users/users.module.d.ts +13 -0
- package/src/app/core/about/about.modal.d.ts +32 -0
- package/src/app/core/about/about.module.d.ts +10 -0
- package/src/app/core/account/account.module.d.ts +15 -0
- package/src/app/core/account/account.page.d.ts +68 -0
- package/src/app/core/account/new-token.modal.d.ts +41 -0
- package/src/app/core/account/token.table.d.ts +25 -0
- package/src/app/core/auth/auth.form.d.ts +36 -0
- package/src/app/core/auth/auth.modal.d.ts +24 -0
- package/src/app/core/auth/auth.module.d.ts +11 -0
- package/src/app/core/core.module.d.ts +31 -0
- package/src/app/core/core.testing.module.d.ts +14 -0
- package/src/app/core/form/buttons/form-buttons-bar.component.d.ts +26 -0
- package/src/app/core/form/buttons/form-buttons-bar.module.d.ts +9 -0
- package/src/app/core/form/entity/editor.class.d.ts +243 -0
- package/src/app/core/form/entity/entity-editor-modal.class.d.ts +128 -0
- package/src/app/core/form/entity/entity-editor.class.d.ts +205 -0
- package/src/app/core/form/entity/entity-metadata.component.d.ts +13 -0
- package/src/app/core/form/entity/entity.module.d.ts +10 -0
- package/src/app/core/form/form.class.d.ts +155 -0
- package/src/app/core/form/form.module.d.ts +13 -0
- package/src/app/core/form/form.utils.d.ts +336 -0
- package/src/app/core/form/list/list.form.d.ts +81 -0
- package/src/app/core/form/list/list.module.d.ts +9 -0
- package/src/app/core/form/properties/properties.form.d.ts +44 -0
- package/src/app/core/form/properties/properties.module.d.ts +11 -0
- package/src/app/core/form/properties/properties.table.d.ts +78 -0
- package/src/app/core/form/properties/property.validator.d.ts +13 -0
- package/src/app/core/form/properties/testing/properties-form.test.d.ts +19 -0
- package/src/app/core/form/properties/testing/properties-form.testing.module.d.ts +12 -0
- package/src/app/core/form/text-popover/testing/text-popover.testing.d.ts +14 -0
- package/src/app/core/form/text-popover/testing/text-popover.testing.module.d.ts +11 -0
- package/src/app/core/form/text-popover/text-form.component.d.ts +32 -0
- package/src/app/core/form/text-popover/text-popover.component.d.ts +70 -0
- package/src/app/core/form/text-popover/text-popover.module.d.ts +10 -0
- package/src/app/core/graphql/graphql.module.d.ts +8 -0
- package/src/app/core/graphql/graphql.service.d.ts +148 -0
- package/src/app/core/graphql/graphql.utils.d.ts +42 -0
- package/src/app/core/home/home.d.ts +74 -0
- package/src/app/core/home/home.module.d.ts +12 -0
- package/src/app/core/icon/icon.component.d.ts +13 -0
- package/src/app/core/icon/icon.module.d.ts +9 -0
- package/src/app/core/install/install-upgrade-card.component.d.ts +63 -0
- package/src/app/core/install/install-upgrade-card.module.d.ts +9 -0
- package/src/app/core/menu/menu.component.d.ts +62 -0
- package/src/app/core/menu/menu.model.d.ts +28 -0
- package/src/app/core/menu/menu.module.d.ts +10 -0
- package/src/app/core/menu/menu.service.d.ts +21 -0
- package/src/app/core/offline/update-offline-mode-card.component.d.ts +11 -0
- package/src/app/core/offline/update-offline-mode-card.module.d.ts +9 -0
- package/src/app/core/peer/select-peer.modal.d.ts +53 -0
- package/src/app/core/peer/select-peer.module.d.ts +11 -0
- package/src/app/core/register/register-confirm.page.d.ts +24 -0
- package/src/app/core/register/register.form.d.ts +48 -0
- package/src/app/core/register/register.modal.d.ts +14 -0
- package/src/app/core/register/register.module.d.ts +12 -0
- package/src/app/core/services/account.service.d.ts +191 -0
- package/src/app/core/services/auth-guard.service.d.ts +17 -0
- package/src/app/core/services/base-entity-service.class.d.ts +104 -0
- package/src/app/core/services/base-graphql-service.class.d.ts +77 -0
- package/src/app/core/services/base58.d.ts +7 -0
- package/src/app/core/services/config/core.config.d.ts +29 -0
- package/src/app/core/services/config.service.d.ts +60 -0
- package/src/app/core/services/crypto.service.d.ts +44 -0
- package/src/app/core/services/errors.d.ts +51 -0
- package/src/app/core/services/local-settings.service.d.ts +90 -0
- package/src/app/core/services/model/account.model.d.ts +35 -0
- package/src/app/core/services/model/config.model.d.ts +36 -0
- package/src/app/core/services/model/department.model.d.ts +11 -0
- package/src/app/core/services/model/entity.decorators.d.ts +17 -0
- package/src/app/core/services/model/entity.model.d.ts +89 -0
- package/src/app/core/services/model/filter.model.d.ts +43 -0
- package/src/app/core/services/model/history.model.d.ts +20 -0
- package/src/app/core/services/model/model.enum.d.ts +7 -0
- package/src/app/core/services/model/peer.model.d.ts +29 -0
- package/src/app/core/services/model/person.model.d.ts +31 -0
- package/src/app/core/services/model/referential.model.d.ts +77 -0
- package/src/app/core/services/model/settings.model.d.ts +26 -0
- package/src/app/core/services/model/token.model.d.ts +21 -0
- package/src/app/core/services/network.service.d.ts +149 -0
- package/src/app/core/services/network.types.d.ts +5 -0
- package/src/app/core/services/network.utils.d.ts +31 -0
- package/src/app/core/services/pipes/account.pipes.d.ts +15 -0
- package/src/app/core/services/pipes/department-to-string.pipe.d.ts +9 -0
- package/src/app/core/services/pipes/person-to-string.pipe.d.ts +9 -0
- package/src/app/core/services/pipes/usage-mode.pipes.d.ts +15 -0
- package/src/app/core/services/platform.service.d.ts +96 -0
- package/src/app/core/services/storage/entities-storage.service.d.ts +108 -0
- package/src/app/core/services/storage/entity-store.class.d.ts +113 -0
- package/src/app/core/services/testing/referential-filter.model.d.ts +9 -0
- package/src/app/core/services/testing/referential.validator.d.ts +22 -0
- package/src/app/core/services/validator/account.validator.d.ts +17 -0
- package/src/app/core/services/validator/base.validator.class.d.ts +21 -0
- package/src/app/core/services/validator/local-settings.validator.d.ts +18 -0
- package/src/app/core/services/validator/user-settings.validator.d.ts +10 -0
- package/src/app/core/services/validator/user-token.validator.d.ts +13 -0
- package/src/app/core/settings/settings.module.d.ts +10 -0
- package/src/app/core/settings/settings.page.d.ts +68 -0
- package/src/app/core/table/actions-column.component.d.ts +48 -0
- package/src/app/core/table/async-table.class.d.ts +383 -0
- package/src/app/core/table/entities-async-table-datasource.class.d.ts +80 -0
- package/src/app/core/table/entities-table-datasource.class.d.ts +94 -0
- package/src/app/core/table/memory-table.class.d.ts +25 -0
- package/src/app/core/table/table-select-columns.component.d.ts +22 -0
- package/src/app/core/table/table.class.d.ts +386 -0
- package/src/app/core/table/table.model.d.ts +26 -0
- package/src/app/core/table/table.module.d.ts +10 -0
- package/src/app/core/table/table.utils.d.ts +11 -0
- package/src/app/core/table/testing/table-validator.service.d.ts +17 -0
- package/src/app/core/table/testing/table.testing.d.ts +53 -0
- package/src/app/core/table/testing/table.testing.module.d.ts +11 -0
- package/src/app/shared/alerts.d.ts +53 -0
- package/src/app/shared/audio/audio.d.ts +44 -0
- package/src/app/shared/audio/audio.testing.d.ts +13 -0
- package/src/app/shared/audio/audio.testing.module.d.ts +11 -0
- package/src/app/shared/capacitor/keyboard.d.ts +16 -0
- package/src/app/shared/capacitor/plugins.d.ts +7 -0
- package/src/app/shared/constants.d.ts +7 -0
- package/src/app/shared/dates.d.ts +39 -0
- package/src/app/shared/debug/debug-service.class.d.ts +5 -0
- package/src/app/shared/debug/debug.component.d.ts +13 -0
- package/src/app/shared/debug/debug.module.d.ts +12 -0
- package/src/app/shared/directives/autofocus.directive.d.ts +19 -0
- package/src/app/shared/directives/autotitle.directive.d.ts +10 -0
- package/src/app/shared/directives/directives.module.d.ts +12 -0
- package/src/app/shared/directives/drag-and-drop.directive.d.ts +17 -0
- package/src/app/shared/directives/ng-var.directive.d.ts +12 -0
- package/src/app/shared/directives/resizable/resizable.component.d.ts +21 -0
- package/src/app/shared/directives/resizable/resizable.directive.d.ts +12 -0
- package/src/app/shared/directives/resizable/resizable.module.d.ts +8 -0
- package/src/app/shared/events.d.ts +27 -0
- package/src/app/shared/file/csv.utils.d.ts +19 -0
- package/src/app/shared/file/file.service.d.ts +23 -0
- package/src/app/shared/file/file.utils.d.ts +20 -0
- package/src/app/shared/file/images.utils.d.ts +19 -0
- package/src/app/shared/file/json.utils.d.ts +16 -0
- package/src/app/shared/file/uri.utils.d.ts +7 -0
- package/src/app/shared/focusable.d.ts +4 -0
- package/src/app/shared/form/field.component.d.ts +71 -0
- package/src/app/shared/form/field.model.d.ts +37 -0
- package/src/app/shared/form/loading-spinner.d.ts +8 -0
- package/src/app/shared/forms.d.ts +89 -0
- package/src/app/shared/functions.d.ts +132 -0
- package/src/app/shared/geolocation/geolocation.utils.d.ts +19 -0
- package/src/app/shared/gesture/gesture-config.d.ts +15 -0
- package/src/app/shared/gesture/hammer.utils.d.ts +16 -0
- package/src/app/shared/graph/colors.utils.d.ts +17 -0
- package/src/app/shared/graph/graph-colors.d.ts +63 -0
- package/src/app/shared/guard/component-dirty.guard.d.ts +19 -0
- package/src/app/shared/help/help.modal.d.ts +33 -0
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.d.ts +10 -0
- package/src/app/shared/hotkeys/hotkeys.service.d.ts +28 -0
- package/src/app/shared/hotkeys/shared-hotkeys.module.d.ts +11 -0
- package/src/app/shared/http/http.utils.d.ts +27 -0
- package/src/app/shared/image/gallery/image-gallery.component.d.ts +98 -0
- package/src/app/shared/image/gallery/image-gallery.module.d.ts +14 -0
- package/src/app/shared/image/gallery/testing/gallegry.model.testing.d.ts +12 -0
- package/src/app/shared/image/gallery/testing/gallery.service.testing.d.ts +33 -0
- package/src/app/shared/image/gallery/testing/gallery.testing.d.ts +16 -0
- package/src/app/shared/image/gallery/testing/gallery.testing.module.d.ts +12 -0
- package/src/app/shared/image/image.model.d.ts +5 -0
- package/src/app/shared/image/image.module.d.ts +8 -0
- package/src/app/shared/image/image.service.d.ts +32 -0
- package/src/app/shared/inputs.d.ts +32 -0
- package/src/app/shared/interceptors/progess.interceptor.d.ts +8 -0
- package/src/app/shared/logging/log-level.model.d.ts +38 -0
- package/src/app/shared/logging/logger.model.d.ts +68 -0
- package/src/app/shared/logging/logging-service.class.d.ts +39 -0
- package/src/app/shared/logging/logging-service.config.d.ts +25 -0
- package/src/app/shared/logging/logging-service.module.d.ts +9 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.config.d.ts +36 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +138 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.module.d.ts +21 -0
- package/src/app/shared/material/autocomplete/material.autocomplete.utils.d.ts +4 -0
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.d.ts +45 -0
- package/src/app/shared/material/badge/badge.directive.d.ts +37 -0
- package/src/app/shared/material/badge/badge.module.d.ts +10 -0
- package/src/app/shared/material/badge/badge.test.d.ts +21 -0
- package/src/app/shared/material/boolean/boolean.module.d.ts +19 -0
- package/src/app/shared/material/boolean/material.boolean.d.ts +66 -0
- package/src/app/shared/material/chips/chips.module.d.ts +21 -0
- package/src/app/shared/material/chips/material.chips.d.ts +126 -0
- package/src/app/shared/material/chips/testing/chips.test.d.ts +31 -0
- package/src/app/shared/material/datetime/datetime.module.d.ts +24 -0
- package/src/app/shared/material/datetime/material.date.d.ts +74 -0
- package/src/app/shared/material/datetime/material.dateshort.d.ts +75 -0
- package/src/app/shared/material/datetime/material.datetime.d.ts +100 -0
- package/src/app/shared/material/datetime/testing/mat-date-time.test.d.ts +31 -0
- package/src/app/shared/material/datetime/testing/mat-date.test.d.ts +30 -0
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.d.ts +29 -0
- package/src/app/shared/material/duration/duration.module.d.ts +18 -0
- package/src/app/shared/material/duration/duration.utils.d.ts +3 -0
- package/src/app/shared/material/duration/material.duration.d.ts +57 -0
- package/src/app/shared/material/latlong/latlong.utils.d.ts +13 -0
- package/src/app/shared/material/latlong/material.latlong.d.ts +65 -0
- package/src/app/shared/material/latlong/material.latlong.module.d.ts +19 -0
- package/src/app/shared/material/latlong/testing/latlong.test.d.ts +21 -0
- package/src/app/shared/material/material.animations.d.ts +4 -0
- package/src/app/shared/material/material.module.d.ts +45 -0
- package/src/app/shared/material/material.testing.module.d.ts +25 -0
- package/src/app/shared/material/numpad/numpad.append-to-input.directive.d.ts +22 -0
- package/src/app/shared/material/numpad/numpad.component.d.ts +26 -0
- package/src/app/shared/material/numpad/numpad.container.d.ts +40 -0
- package/src/app/shared/material/numpad/numpad.content.d.ts +7 -0
- package/src/app/shared/material/numpad/numpad.directive.d.ts +35 -0
- package/src/app/shared/material/numpad/numpad.dom-service.d.ts +16 -0
- package/src/app/shared/material/numpad/numpad.model.d.ts +30 -0
- package/src/app/shared/material/numpad/numpad.module.d.ts +16 -0
- package/src/app/shared/material/numpad/testing/numpad.test.d.ts +13 -0
- package/src/app/shared/material/paginator/material.paginator-i18n.d.ts +15 -0
- package/src/app/shared/material/stepper/material.stepper-i18n.d.ts +10 -0
- package/src/app/shared/material/swipe/material.swipe.d.ts +89 -0
- package/src/app/shared/material/swipe/swipe.module.d.ts +15 -0
- package/src/app/shared/material/swipe/testing/swipe.test.d.ts +22 -0
- package/src/app/shared/modules.d.ts +8 -0
- package/src/app/shared/observables.d.ts +29 -0
- package/src/app/shared/pipes/arrays.pipe.d.ts +54 -0
- package/src/app/shared/pipes/colors.pipe.d.ts +9 -0
- package/src/app/shared/pipes/date-diff-duration.pipe.d.ts +23 -0
- package/src/app/shared/pipes/date-format.pipe.d.ts +34 -0
- package/src/app/shared/pipes/date-from-now.pipe.d.ts +12 -0
- package/src/app/shared/pipes/duration.pipe.d.ts +13 -0
- package/src/app/shared/pipes/file-size.pipe.d.ts +30 -0
- package/src/app/shared/pipes/form.pipes.d.ts +59 -0
- package/src/app/shared/pipes/highlight.pipe.d.ts +11 -0
- package/src/app/shared/pipes/latlong-format.pipe.d.ts +20 -0
- package/src/app/shared/pipes/maps.pipe.d.ts +22 -0
- package/src/app/shared/pipes/math.pipes.d.ts +20 -0
- package/src/app/shared/pipes/ng-init.pipe.d.ts +8 -0
- package/src/app/shared/pipes/number-format.pipe.d.ts +10 -0
- package/src/app/shared/pipes/pipes.module.d.ts +27 -0
- package/src/app/shared/pipes/property.pipes.d.ts +26 -0
- package/src/app/shared/pipes/string.pipes.d.ts +47 -0
- package/src/app/shared/pipes/translate-context.pipe.d.ts +17 -0
- package/src/app/shared/pipes/types.pipes.d.ts +18 -0
- package/src/app/shared/platforms.d.ts +8 -0
- package/src/app/shared/services/entity-service.class.d.ts +73 -0
- package/src/app/shared/services/job.utils.d.ts +20 -0
- package/src/app/shared/services/memory-entity-service.class.d.ts +71 -0
- package/src/app/shared/services/progress-bar.service.d.ts +20 -0
- package/src/app/shared/services/startable-observable-service.class.d.ts +33 -0
- package/src/app/shared/services/startable-service.class.d.ts +34 -0
- package/src/app/shared/services/translate-context.service.d.ts +29 -0
- package/src/app/shared/services/validator-service.class.d.ts +10 -0
- package/src/app/shared/services.d.ts +9 -0
- package/src/app/shared/shared-routing.module.d.ts +22 -0
- package/src/app/shared/shared.module.d.ts +31 -0
- package/src/app/shared/shared.testing.module.d.ts +17 -0
- package/src/app/shared/storage/storage-explorer.component.d.ts +58 -0
- package/src/app/shared/storage/storage-explorer.module.d.ts +16 -0
- package/src/app/shared/storage/storage.service.d.ts +23 -0
- package/src/app/shared/storage/storage.utils.d.ts +19 -0
- package/src/app/shared/testing/observable.test.d.ts +25 -0
- package/src/app/shared/testing/tests.page.d.ts +20 -0
- package/src/app/shared/toast/toast.testing.d.ts +15 -0
- package/src/app/shared/toast/toast.testing.module.d.ts +11 -0
- package/src/app/shared/toast/toasts.d.ts +17 -0
- package/src/app/shared/toolbar/modal-toolbar.d.ts +21 -0
- package/src/app/shared/toolbar/toolbar.d.ts +63 -0
- package/src/app/shared/toolbar/toolbar.module.d.ts +15 -0
- package/src/app/shared/types.d.ts +26 -0
- package/src/app/shared/upload-file/testing/upload-file.testing.d.ts +20 -0
- package/src/app/shared/upload-file/testing/upload-file.testing.module.d.ts +11 -0
- package/src/app/shared/upload-file/upload-file-popover.component.d.ts +39 -0
- package/src/app/shared/upload-file/upload-file.component.d.ts +48 -0
- package/src/app/shared/upload-file/upload-file.model.d.ts +30 -0
- package/src/app/shared/validator/form-error-adapter.class.d.ts +27 -0
- package/src/app/shared/validator/validators.d.ts +115 -0
- package/src/app/shared/version/versions.d.ts +26 -0
- package/src/app/social/job/job.module.d.ts +12 -0
- package/src/app/social/job/progression/job-progression.component.d.ts +9 -0
- package/src/app/social/job/progression/job-progression.icon.d.ts +49 -0
- package/src/app/social/job/progression/job-progression.list.d.ts +21 -0
- package/src/app/social/job/progression/job-progression.model.d.ts +11 -0
- package/src/app/social/job/progression/job-progression.service.d.ts +34 -0
- package/src/app/social/job/testing/job-progression.testing.d.ts +17 -0
- package/src/app/social/job/testing/job-progression.testing.service.d.ts +17 -0
- package/src/app/social/job/testing/job.testing.module.d.ts +11 -0
- package/src/app/social/message/message.form.d.ts +30 -0
- package/src/app/social/message/message.modal.d.ts +39 -0
- package/src/app/social/message/message.model.d.ts +31 -0
- package/src/app/social/message/message.module.d.ts +11 -0
- package/src/app/social/message/message.service.d.ts +27 -0
- package/src/app/social/social.errors.d.ts +9 -0
- package/src/app/social/social.module.d.ts +20 -0
- package/src/app/social/social.testing.module.d.ts +13 -0
- package/src/app/social/user-event/notification/user-event-notification.icon.d.ts +31 -0
- package/src/app/social/user-event/notification/user-event-notification.list.d.ts +71 -0
- package/src/app/social/user-event/testing/user-event.testing.d.ts +34 -0
- package/src/app/social/user-event/testing/user-event.testing.model.d.ts +44 -0
- package/src/app/social/user-event/testing/user-event.testing.module.d.ts +11 -0
- package/src/app/social/user-event/testing/user-event.testing.service.d.ts +41 -0
- package/src/app/social/user-event/user-event.model.d.ts +45 -0
- package/src/app/social/user-event/user-event.module.d.ts +12 -0
- package/src/app/social/user-event/user-event.service.d.ts +124 -0
- package/src/environments/environment.class.d.ts +57 -0
- package/src/environments/environment.d.ts +3 -0
- package/.editorconfig +0 -24
- package/.eslintrc.json +0 -74
- package/.gitattribute +0 -1
- package/.github/CONTRIBUTING.md +0 -10
- package/.github/ISSUE_TEMPLATE.md +0 -6
- package/.github/PULL_REQUEST_TEMPLATE.md +0 -10
- package/.github/github_disclaimer.md +0 -14
- package/.gitlab-ci.yml +0 -46
- package/.graphqlconfig +0 -15
- package/angular.json +0 -230
- package/capacitor.config.json +0 -9
- package/ionic.config.json +0 -7
- package/karma.conf.js +0 -32
- package/ng-package.json +0 -19
- package/ngcc.config.js +0 -14
- package/public_api.ts +0 -343
- package/resources/android/build/tools/android-accept-licenses.sh +0 -14
- package/resources/android/icon/drawable-hdpi-icon.png +0 -0
- package/resources/android/icon/drawable-ldpi-icon.png +0 -0
- package/resources/android/icon/drawable-mdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xhdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
- package/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-xxxhdpi-screen.png +0 -0
- package/resources/icon/TODO.md +0 -11
- package/resources/icon.png +0 -0
- package/resources/icon.png.md5 +0 -1
- package/resources/icon.xcf +0 -0
- package/resources/ios/icon/icon-1024.png +0 -0
- package/resources/ios/icon/icon-108@2x.png +0 -0
- package/resources/ios/icon/icon-20.png +0 -0
- package/resources/ios/icon/icon-20@2x.png +0 -0
- package/resources/ios/icon/icon-20@3x.png +0 -0
- package/resources/ios/icon/icon-24@2x.png +0 -0
- package/resources/ios/icon/icon-27.5@2x.png +0 -0
- package/resources/ios/icon/icon-29.png +0 -0
- package/resources/ios/icon/icon-29@2x.png +0 -0
- package/resources/ios/icon/icon-29@3x.png +0 -0
- package/resources/ios/icon/icon-40.png +0 -0
- package/resources/ios/icon/icon-40@2x.png +0 -0
- package/resources/ios/icon/icon-40@3x.png +0 -0
- package/resources/ios/icon/icon-44@2x.png +0 -0
- package/resources/ios/icon/icon-50.png +0 -0
- package/resources/ios/icon/icon-50@2x.png +0 -0
- package/resources/ios/icon/icon-60.png +0 -0
- package/resources/ios/icon/icon-60@2x.png +0 -0
- package/resources/ios/icon/icon-60@3x.png +0 -0
- package/resources/ios/icon/icon-72.png +0 -0
- package/resources/ios/icon/icon-72@2x.png +0 -0
- package/resources/ios/icon/icon-76.png +0 -0
- package/resources/ios/icon/icon-76@2x.png +0 -0
- package/resources/ios/icon/icon-83.5@2x.png +0 -0
- package/resources/ios/icon/icon-86@2x.png +0 -0
- package/resources/ios/icon/icon-98@2x.png +0 -0
- package/resources/ios/icon/icon-small.png +0 -0
- package/resources/ios/icon/icon-small@2x.png +0 -0
- package/resources/ios/icon/icon-small@3x.png +0 -0
- package/resources/ios/icon/icon.png +0 -0
- package/resources/ios/icon/icon@2x.png +0 -0
- package/resources/ios/splash/Default-1792h~iphone.png +0 -0
- package/resources/ios/splash/Default-2436h.png +0 -0
- package/resources/ios/splash/Default-2688h~iphone.png +0 -0
- package/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
- package/resources/ios/splash/Default-667h.png +0 -0
- package/resources/ios/splash/Default-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape-1792h~iphone.png +0 -0
- package/resources/ios/splash/Default-Landscape-2436h.png +0 -0
- package/resources/ios/splash/Default-Landscape-2688h~iphone.png +0 -0
- package/resources/ios/splash/Default-Landscape-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Landscape~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Portrait~ipad.png +0 -0
- package/resources/ios/splash/Default@2x~iphone.png +0 -0
- package/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
- package/resources/ios/splash/Default~iphone.png +0 -0
- package/resources/splash.png +0 -0
- package/resources/splash.png.md5 +0 -1
- package/scripts/build-android.sh +0 -18
- package/scripts/build-i18n.js +0 -24
- package/scripts/docker-start.sh +0 -6
- package/scripts/emulate-android.sh +0 -17
- package/scripts/env-android.sh +0 -83
- package/scripts/env-clean.sh +0 -23
- package/scripts/env-global.sh +0 -156
- package/scripts/install-android-sdk-tools.sh +0 -73
- package/scripts/ionic-update.sh +0 -24
- package/scripts/node/playground.ts +0 -9
- package/scripts/node/resources.js +0 -90
- package/scripts/release.sh +0 -149
- package/scripts/run-android.sh +0 -59
- package/scripts/test.sh +0 -19
- package/src/app/admin/admin-routing.module.ts +0 -30
- package/src/app/admin/admin.module.ts +0 -23
- package/src/app/admin/services/filter/person.filter.ts +0 -77
- package/src/app/admin/services/person.service.ts +0 -212
- package/src/app/admin/services/validator/person.validator.ts +0 -37
- package/src/app/admin/users/users.html +0 -427
- package/src/app/admin/users/users.module.ts +0 -34
- package/src/app/admin/users/users.scss +0 -59
- package/src/app/admin/users/users.ts +0 -257
- package/src/app/app-routing.module.ts +0 -126
- package/src/app/app.component.html +0 -12
- package/src/app/app.component.scss +0 -4
- package/src/app/app.component.ts +0 -205
- package/src/app/app.module.ts +0 -326
- package/src/app/core/about/about.modal.html +0 -140
- package/src/app/core/about/about.modal.scss +0 -23
- package/src/app/core/about/about.modal.ts +0 -71
- package/src/app/core/about/about.module.ts +0 -24
- package/src/app/core/account/account.module.ts +0 -38
- package/src/app/core/account/account.page.html +0 -241
- package/src/app/core/account/account.page.scss +0 -21
- package/src/app/core/account/account.page.ts +0 -366
- package/src/app/core/account/new-token.modal.html +0 -120
- package/src/app/core/account/new-token.modal.ts +0 -138
- package/src/app/core/account/token.table.html +0 -177
- package/src/app/core/account/token.table.scss +0 -7
- package/src/app/core/account/token.table.ts +0 -141
- package/src/app/core/auth/auth.form.html +0 -77
- package/src/app/core/auth/auth.form.scss +0 -1
- package/src/app/core/auth/auth.form.ts +0 -145
- package/src/app/core/auth/auth.modal.html +0 -57
- package/src/app/core/auth/auth.modal.scss +0 -1
- package/src/app/core/auth/auth.modal.ts +0 -80
- package/src/app/core/auth/auth.module.ts +0 -33
- package/src/app/core/core.module.ts +0 -100
- package/src/app/core/core.testing.module.ts +0 -64
- package/src/app/core/form/buttons/form-buttons-bar.component.html +0 -59
- package/src/app/core/form/buttons/form-buttons-bar.component.scss +0 -14
- package/src/app/core/form/buttons/form-buttons-bar.component.ts +0 -70
- package/src/app/core/form/buttons/form-buttons-bar.module.ts +0 -24
- package/src/app/core/form/entity/editor.class.ts +0 -803
- package/src/app/core/form/entity/entity-editor-modal.class.ts +0 -537
- package/src/app/core/form/entity/entity-editor.class.ts +0 -885
- package/src/app/core/form/entity/entity-metadata.component.html +0 -53
- package/src/app/core/form/entity/entity-metadata.component.scss +0 -28
- package/src/app/core/form/entity/entity-metadata.component.ts +0 -19
- package/src/app/core/form/entity/entity.module.ts +0 -25
- package/src/app/core/form/form.class.ts +0 -401
- package/src/app/core/form/form.module.ts +0 -37
- package/src/app/core/form/form.utils.ts +0 -639
- package/src/app/core/form/list/list.form.html +0 -67
- package/src/app/core/form/list/list.form.scss +0 -40
- package/src/app/core/form/list/list.form.ts +0 -278
- package/src/app/core/form/list/list.module.ts +0 -25
- package/src/app/core/form/properties/properties.form.html +0 -129
- package/src/app/core/form/properties/properties.form.ts +0 -147
- package/src/app/core/form/properties/properties.module.ts +0 -30
- package/src/app/core/form/properties/properties.table.html +0 -219
- package/src/app/core/form/properties/properties.table.scss +0 -0
- package/src/app/core/form/properties/properties.table.ts +0 -291
- package/src/app/core/form/properties/property.validator.ts +0 -22
- package/src/app/core/form/properties/testing/properties-form.test.html +0 -21
- package/src/app/core/form/properties/testing/properties-form.test.ts +0 -102
- package/src/app/core/form/properties/testing/properties-form.testing.module.ts +0 -25
- package/src/app/core/form/text-popover/testing/text-popover.testing.html +0 -45
- package/src/app/core/form/text-popover/testing/text-popover.testing.module.ts +0 -32
- package/src/app/core/form/text-popover/testing/text-popover.testing.ts +0 -77
- package/src/app/core/form/text-popover/text-form.component.html +0 -44
- package/src/app/core/form/text-popover/text-form.component.scss +0 -8
- package/src/app/core/form/text-popover/text-form.component.ts +0 -65
- package/src/app/core/form/text-popover/text-popover.component.html +0 -86
- package/src/app/core/form/text-popover/text-popover.component.scss +0 -7
- package/src/app/core/form/text-popover/text-popover.component.ts +0 -165
- package/src/app/core/form/text-popover/text-popover.module.ts +0 -27
- package/src/app/core/graphql/graphql.module.ts +0 -17
- package/src/app/core/graphql/graphql.service.ts +0 -969
- package/src/app/core/graphql/graphql.utils.ts +0 -167
- package/src/app/core/home/home.html +0 -211
- package/src/app/core/home/home.module.ts +0 -32
- package/src/app/core/home/home.scss +0 -242
- package/src/app/core/home/home.ts +0 -298
- package/src/app/core/icon/icon.component.html +0 -15
- package/src/app/core/icon/icon.component.ts +0 -23
- package/src/app/core/icon/icon.module.ts +0 -22
- package/src/app/core/install/install-upgrade-card.component.html +0 -144
- package/src/app/core/install/install-upgrade-card.component.scss +0 -4
- package/src/app/core/install/install-upgrade-card.component.ts +0 -412
- package/src/app/core/install/install-upgrade-card.module.ts +0 -23
- package/src/app/core/menu/menu.component.html +0 -135
- package/src/app/core/menu/menu.component.scss +0 -225
- package/src/app/core/menu/menu.component.ts +0 -352
- package/src/app/core/menu/menu.model.ts +0 -64
- package/src/app/core/menu/menu.module.ts +0 -27
- package/src/app/core/menu/menu.service.ts +0 -62
- package/src/app/core/offline/update-offline-mode-card.component.html +0 -45
- package/src/app/core/offline/update-offline-mode-card.component.scss +0 -4
- package/src/app/core/offline/update-offline-mode-card.component.ts +0 -28
- package/src/app/core/offline/update-offline-mode-card.module.ts +0 -24
- package/src/app/core/peer/select-peer.modal.html +0 -123
- package/src/app/core/peer/select-peer.modal.scss +0 -20
- package/src/app/core/peer/select-peer.modal.ts +0 -197
- package/src/app/core/peer/select-peer.module.ts +0 -28
- package/src/app/core/register/register-confirm.page.html +0 -55
- package/src/app/core/register/register-confirm.page.scss +0 -121
- package/src/app/core/register/register-confirm.page.ts +0 -94
- package/src/app/core/register/register.form.html +0 -125
- package/src/app/core/register/register.form.scss +0 -10
- package/src/app/core/register/register.form.ts +0 -213
- package/src/app/core/register/register.modal.html +0 -70
- package/src/app/core/register/register.modal.ts +0 -52
- package/src/app/core/register/register.module.ts +0 -31
- package/src/app/core/services/account.service.ts +0 -1431
- package/src/app/core/services/auth-guard.service.ts +0 -70
- package/src/app/core/services/base-entity-service.class.ts +0 -598
- package/src/app/core/services/base-graphql-service.class.ts +0 -298
- package/src/app/core/services/base58.ts +0 -83
- package/src/app/core/services/config/account.config.ts +0 -35
- package/src/app/core/services/config/core.config.ts +0 -180
- package/src/app/core/services/config.service.ts +0 -414
- package/src/app/core/services/crypto.service.ts +0 -126
- package/src/app/core/services/errors.ts +0 -67
- package/src/app/core/services/local-settings.service.spec.ts +0 -32
- package/src/app/core/services/local-settings.service.ts +0 -548
- package/src/app/core/services/model/account.model.ts +0 -141
- package/src/app/core/services/model/config.model.ts +0 -122
- package/src/app/core/services/model/department.model.ts +0 -34
- package/src/app/core/services/model/entity.decorators.ts +0 -112
- package/src/app/core/services/model/entity.model.ts +0 -326
- package/src/app/core/services/model/filter.model.ts +0 -139
- package/src/app/core/services/model/history.model.ts +0 -25
- package/src/app/core/services/model/model.enum.ts +0 -11
- package/src/app/core/services/model/peer.model.ts +0 -86
- package/src/app/core/services/model/person.model.ts +0 -112
- package/src/app/core/services/model/referential.model.ts +0 -244
- package/src/app/core/services/model/settings.model.ts +0 -32
- package/src/app/core/services/model/token.model.ts +0 -54
- package/src/app/core/services/network.service.spec.ts +0 -49
- package/src/app/core/services/network.service.ts +0 -729
- package/src/app/core/services/network.types.ts +0 -26
- package/src/app/core/services/network.utils.ts +0 -57
- package/src/app/core/services/pipes/account.pipes.ts +0 -25
- package/src/app/core/services/pipes/department-to-string.pipe.ts +0 -15
- package/src/app/core/services/pipes/person-to-string.pipe.ts +0 -15
- package/src/app/core/services/pipes/usage-mode.pipes.ts +0 -26
- package/src/app/core/services/platform.service.spec.ts +0 -56
- package/src/app/core/services/platform.service.ts +0 -605
- package/src/app/core/services/storage/entities-storage.service.ts +0 -542
- package/src/app/core/services/storage/entity-store.class.ts +0 -598
- package/src/app/core/services/testing/referential-filter.model.ts +0 -28
- package/src/app/core/services/testing/referential.validator.ts +0 -57
- package/src/app/core/services/validator/account.validator.ts +0 -58
- package/src/app/core/services/validator/base.validator.class.ts +0 -54
- package/src/app/core/services/validator/local-settings.validator.ts +0 -72
- package/src/app/core/services/validator/user-settings.validator.ts +0 -25
- package/src/app/core/services/validator/user-token.validator.ts +0 -55
- package/src/app/core/settings/settings.module.ts +0 -24
- package/src/app/core/settings/settings.page.html +0 -264
- package/src/app/core/settings/settings.page.ts +0 -365
- package/src/app/core/table/actions-column.component.html +0 -91
- package/src/app/core/table/actions-column.component.ts +0 -70
- package/src/app/core/table/async-table.class.ts +0 -1934
- package/src/app/core/table/entities-async-table-datasource.class.ts +0 -482
- package/src/app/core/table/entities-table-datasource.class.ts +0 -496
- package/src/app/core/table/memory-table.class.ts +0 -65
- package/src/app/core/table/table-select-columns.component.html +0 -58
- package/src/app/core/table/table-select-columns.component.ts +0 -50
- package/src/app/core/table/table.class.ts +0 -1973
- package/src/app/core/table/table.model.ts +0 -35
- package/src/app/core/table/table.module.ts +0 -26
- package/src/app/core/table/table.utils.ts +0 -38
- package/src/app/core/table/testing/multi-table.testing.ts +0 -261
- package/src/app/core/table/testing/table-validator.service.ts +0 -25
- package/src/app/core/table/testing/table.testing.html +0 -396
- package/src/app/core/table/testing/table.testing.module.ts +0 -25
- package/src/app/core/table/testing/table.testing.scss +0 -23
- package/src/app/core/table/testing/table.testing.ts +0 -292
- package/src/app/shared/alerts.ts +0 -292
- package/src/app/shared/audio/audio.testing.html +0 -33
- package/src/app/shared/audio/audio.testing.module.ts +0 -32
- package/src/app/shared/audio/audio.testing.ts +0 -31
- package/src/app/shared/audio/audio.ts +0 -278
- package/src/app/shared/base64.utils.ts +0 -66
- package/src/app/shared/capacitor/keyboard.ts +0 -40
- package/src/app/shared/capacitor/plugins.ts +0 -12
- package/src/app/shared/constants.ts +0 -12
- package/src/app/shared/dates.ts +0 -163
- package/src/app/shared/debug/debug-service.class.ts +0 -8
- package/src/app/shared/debug/debug.component.html +0 -13
- package/src/app/shared/debug/debug.component.scss +0 -24
- package/src/app/shared/debug/debug.component.spec.ts +0 -25
- package/src/app/shared/debug/debug.component.ts +0 -27
- package/src/app/shared/debug/debug.module.ts +0 -28
- package/src/app/shared/directives/autofocus.directive.ts +0 -109
- package/src/app/shared/directives/autotitle.directive.ts +0 -24
- package/src/app/shared/directives/directives.module.ts +0 -29
- package/src/app/shared/directives/drag-and-drop.directive.ts +0 -47
- package/src/app/shared/directives/ng-var.directive.ts +0 -32
- package/src/app/shared/directives/resizable/resizable.component.ts +0 -47
- package/src/app/shared/directives/resizable/resizable.directive.ts +0 -43
- package/src/app/shared/directives/resizable/resizable.module.ts +0 -9
- package/src/app/shared/directives/resizable/resizable.style.scss +0 -44
- package/src/app/shared/directives/resizable/resizable.template.html +0 -6
- package/src/app/shared/events.ts +0 -96
- package/src/app/shared/file/csv.utils.ts +0 -94
- package/src/app/shared/file/file.service.ts +0 -132
- package/src/app/shared/file/file.utils.ts +0 -138
- package/src/app/shared/file/images.utils.ts +0 -198
- package/src/app/shared/file/json.utils.ts +0 -73
- package/src/app/shared/file/uri.utils.ts +0 -25
- package/src/app/shared/focusable.ts +0 -10
- package/src/app/shared/form/field.component.html +0 -261
- package/src/app/shared/form/field.component.scss +0 -7
- package/src/app/shared/form/field.component.ts +0 -318
- package/src/app/shared/form/field.model.ts +0 -64
- package/src/app/shared/form/loading-spinner.ts +0 -16
- package/src/app/shared/forms.ts +0 -458
- package/src/app/shared/functions.ts +0 -492
- package/src/app/shared/geolocation/geolocation.utils.ts +0 -101
- package/src/app/shared/gesture/gesture-config.ts +0 -45
- package/src/app/shared/gesture/hammer.utils.ts +0 -14
- package/src/app/shared/graph/colors.utils.ts +0 -74
- package/src/app/shared/graph/graph-colors.ts +0 -295
- package/src/app/shared/guard/component-dirty.guard.ts +0 -70
- package/src/app/shared/help/help.modal.html +0 -42
- package/src/app/shared/help/help.modal.ts +0 -61
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.html +0 -11
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.scss +0 -39
- package/src/app/shared/hotkeys/dialog/hotkeys-dialog.component.ts +0 -16
- package/src/app/shared/hotkeys/hotkeys.service.ts +0 -89
- package/src/app/shared/hotkeys/shared-hotkeys.module.ts +0 -27
- package/src/app/shared/http/http.utils.ts +0 -89
- package/src/app/shared/image/gallery/image-gallery.component.html +0 -231
- package/src/app/shared/image/gallery/image-gallery.component.scss +0 -196
- package/src/app/shared/image/gallery/image-gallery.component.ts +0 -389
- package/src/app/shared/image/gallery/image-gallery.module.ts +0 -34
- package/src/app/shared/image/gallery/testing/gallegry.model.testing.ts +0 -27
- package/src/app/shared/image/gallery/testing/gallery.service.testing.ts +0 -102
- package/src/app/shared/image/gallery/testing/gallery.testing.html +0 -15
- package/src/app/shared/image/gallery/testing/gallery.testing.module.ts +0 -39
- package/src/app/shared/image/gallery/testing/gallery.testing.ts +0 -38
- package/src/app/shared/image/image.model.ts +0 -6
- package/src/app/shared/image/image.module.ts +0 -16
- package/src/app/shared/image/image.service.ts +0 -94
- package/src/app/shared/image/image.testing.module.ts +0 -23
- package/src/app/shared/inputs.ts +0 -282
- package/src/app/shared/interceptors/progess.interceptor.ts +0 -25
- package/src/app/shared/logging/log-level.model.ts +0 -53
- package/src/app/shared/logging/logger.model.ts +0 -120
- package/src/app/shared/logging/logging-service.class.ts +0 -134
- package/src/app/shared/logging/logging-service.config.ts +0 -29
- package/src/app/shared/logging/logging-service.module.ts +0 -22
- package/src/app/shared/material/autocomplete/material.autocomplete.config.ts +0 -83
- package/src/app/shared/material/autocomplete/material.autocomplete.html +0 -262
- package/src/app/shared/material/autocomplete/material.autocomplete.module.ts +0 -45
- package/src/app/shared/material/autocomplete/material.autocomplete.scss +0 -21
- package/src/app/shared/material/autocomplete/material.autocomplete.ts +0 -1022
- package/src/app/shared/material/autocomplete/material.autocomplete.utils.ts +0 -20
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.html +0 -876
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.spec.ts +0 -38
- package/src/app/shared/material/autocomplete/testing/autocomplete.test.ts +0 -247
- package/src/app/shared/material/badge/badge.directive.ts +0 -164
- package/src/app/shared/material/badge/badge.module.ts +0 -22
- package/src/app/shared/material/badge/badge.test.html +0 -261
- package/src/app/shared/material/badge/badge.test.ts +0 -36
- package/src/app/shared/material/boolean/boolean.module.ts +0 -40
- package/src/app/shared/material/boolean/material.boolean.html +0 -155
- package/src/app/shared/material/boolean/material.boolean.scss +0 -34
- package/src/app/shared/material/boolean/material.boolean.ts +0 -239
- package/src/app/shared/material/chips/chips.module.ts +0 -44
- package/src/app/shared/material/chips/material.chips.html +0 -146
- package/src/app/shared/material/chips/material.chips.scss +0 -65
- package/src/app/shared/material/chips/material.chips.ts +0 -768
- package/src/app/shared/material/chips/testing/chips.test.html +0 -137
- package/src/app/shared/material/chips/testing/chips.test.ts +0 -175
- package/src/app/shared/material/datetime/datetime.module.ts +0 -52
- package/src/app/shared/material/datetime/material.date.html +0 -132
- package/src/app/shared/material/datetime/material.date.scss +0 -17
- package/src/app/shared/material/datetime/material.date.ts +0 -408
- package/src/app/shared/material/datetime/material.dateshort.html +0 -134
- package/src/app/shared/material/datetime/material.dateshort.scss +0 -23
- package/src/app/shared/material/datetime/material.dateshort.ts +0 -422
- package/src/app/shared/material/datetime/material.datetime.html +0 -224
- package/src/app/shared/material/datetime/material.datetime.scss +0 -90
- package/src/app/shared/material/datetime/material.datetime.ts +0 -575
- package/src/app/shared/material/datetime/testing/mat-date-time.test.html +0 -354
- package/src/app/shared/material/datetime/testing/mat-date-time.test.ts +0 -134
- package/src/app/shared/material/datetime/testing/mat-date.test.html +0 -418
- package/src/app/shared/material/datetime/testing/mat-date.test.ts +0 -135
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.html +0 -370
- package/src/app/shared/material/datetime/testing/mat-dateshort.test.ts +0 -127
- package/src/app/shared/material/duration/duration.module.ts +0 -39
- package/src/app/shared/material/duration/duration.utils.ts +0 -41
- package/src/app/shared/material/duration/material.duration.html +0 -44
- package/src/app/shared/material/duration/material.duration.scss +0 -28
- package/src/app/shared/material/duration/material.duration.ts +0 -294
- package/src/app/shared/material/latlong/latlong.utils.ts +0 -300
- package/src/app/shared/material/latlong/material.latlong.html +0 -127
- package/src/app/shared/material/latlong/material.latlong.module.ts +0 -40
- package/src/app/shared/material/latlong/material.latlong.scss +0 -48
- package/src/app/shared/material/latlong/material.latlong.ts +0 -421
- package/src/app/shared/material/latlong/testing/latlong.test.html +0 -341
- package/src/app/shared/material/latlong/testing/latlong.test.ts +0 -121
- package/src/app/shared/material/material.animations.ts +0 -129
- package/src/app/shared/material/material.module.ts +0 -94
- package/src/app/shared/material/material.testing.module.ts +0 -135
- package/src/app/shared/material/memory/memory.utils.ts +0 -54
- package/src/app/shared/material/numpad/numpad.animation.ts +0 -1
- package/src/app/shared/material/numpad/numpad.append-to-input.directive.ts +0 -109
- package/src/app/shared/material/numpad/numpad.component.ts +0 -78
- package/src/app/shared/material/numpad/numpad.container.html +0 -32
- package/src/app/shared/material/numpad/numpad.container.scss +0 -50
- package/src/app/shared/material/numpad/numpad.container.ts +0 -176
- package/src/app/shared/material/numpad/numpad.content.html +0 -13
- package/src/app/shared/material/numpad/numpad.content.ts +0 -10
- package/src/app/shared/material/numpad/numpad.directive.ts +0 -173
- package/src/app/shared/material/numpad/numpad.dom-service.ts +0 -46
- package/src/app/shared/material/numpad/numpad.model.ts +0 -55
- package/src/app/shared/material/numpad/numpad.module.ts +0 -38
- package/src/app/shared/material/numpad/testing/numpad.test.html +0 -146
- package/src/app/shared/material/numpad/testing/numpad.test.ts +0 -55
- package/src/app/shared/material/paginator/material.paginator-i18n.ts +0 -49
- package/src/app/shared/material/stepper/material.stepper-i18n.ts +0 -18
- package/src/app/shared/material/swipe/material.swipe.html +0 -63
- package/src/app/shared/material/swipe/material.swipe.scss +0 -39
- package/src/app/shared/material/swipe/material.swipe.ts +0 -350
- package/src/app/shared/material/swipe/swipe.module.ts +0 -33
- package/src/app/shared/material/swipe/testing/swipe.test.html +0 -128
- package/src/app/shared/material/swipe/testing/swipe.test.ts +0 -81
- package/src/app/shared/modules.ts +0 -11
- package/src/app/shared/observables.ts +0 -132
- package/src/app/shared/pipes/arrays.pipe.ts +0 -111
- package/src/app/shared/pipes/colors.pipe.ts +0 -19
- package/src/app/shared/pipes/date-diff-duration.pipe.ts +0 -48
- package/src/app/shared/pipes/date-format.pipe.ts +0 -78
- package/src/app/shared/pipes/date-from-now.pipe.ts +0 -20
- package/src/app/shared/pipes/duration.pipe.spec.ts +0 -51
- package/src/app/shared/pipes/duration.pipe.ts +0 -34
- package/src/app/shared/pipes/file-size.pipe.ts +0 -58
- package/src/app/shared/pipes/form.pipes.ts +0 -204
- package/src/app/shared/pipes/highlight.pipe.ts +0 -37
- package/src/app/shared/pipes/latlong-format.pipe.ts +0 -30
- package/src/app/shared/pipes/maps.pipe.ts +0 -39
- package/src/app/shared/pipes/math.pipes.ts +0 -39
- package/src/app/shared/pipes/ng-init.pipe.ts +0 -14
- package/src/app/shared/pipes/number-format.pipe.ts +0 -21
- package/src/app/shared/pipes/pipes.module.ts +0 -134
- package/src/app/shared/pipes/property.pipes.ts +0 -87
- package/src/app/shared/pipes/string.pipes.ts +0 -85
- package/src/app/shared/pipes/translate-context.pipe.ts +0 -33
- package/src/app/shared/pipes/types.pipes.ts +0 -31
- package/src/app/shared/platforms.ts +0 -58
- package/src/app/shared/services/entity-service.class.ts +0 -127
- package/src/app/shared/services/job.utils.ts +0 -121
- package/src/app/shared/services/memory-entity-service.class.ts +0 -447
- package/src/app/shared/services/progress-bar.service.ts +0 -42
- package/src/app/shared/services/startable-observable-service.class.ts +0 -137
- package/src/app/shared/services/startable-service.class.ts +0 -131
- package/src/app/shared/services/storage.utils.ts +0 -47
- package/src/app/shared/services/translate-context.service.ts +0 -116
- package/src/app/shared/services/validator-service.class.ts +0 -14
- package/src/app/shared/services.ts +0 -91
- package/src/app/shared/shared-routing.module.ts +0 -66
- package/src/app/shared/shared.module.spec.ts +0 -13
- package/src/app/shared/shared.module.ts +0 -146
- package/src/app/shared/shared.testing.module.ts +0 -50
- package/src/app/shared/storage/storage-explorer.component.html +0 -175
- package/src/app/shared/storage/storage-explorer.component.scss +0 -39
- package/src/app/shared/storage/storage-explorer.component.spec.ts +0 -24
- package/src/app/shared/storage/storage-explorer.component.ts +0 -292
- package/src/app/shared/storage/storage-explorer.module.ts +0 -44
- package/src/app/shared/storage/storage.service.ts +0 -133
- package/src/app/shared/storage/storage.utils.ts +0 -25
- package/src/app/shared/testing/observable.test.html +0 -53
- package/src/app/shared/testing/observable.test.scss +0 -3
- package/src/app/shared/testing/observable.test.ts +0 -117
- package/src/app/shared/testing/tests.page.html +0 -30
- package/src/app/shared/testing/tests.page.ts +0 -34
- package/src/app/shared/toast/toast.testing.html +0 -42
- package/src/app/shared/toast/toast.testing.module.ts +0 -32
- package/src/app/shared/toast/toast.testing.ts +0 -58
- package/src/app/shared/toast/toasts.ts +0 -183
- package/src/app/shared/toolbar/modal-toolbar.html +0 -32
- package/src/app/shared/toolbar/modal-toolbar.scss +0 -0
- package/src/app/shared/toolbar/modal-toolbar.ts +0 -63
- package/src/app/shared/toolbar/toolbar.html +0 -71
- package/src/app/shared/toolbar/toolbar.module.ts +0 -35
- package/src/app/shared/toolbar/toolbar.scss +0 -0
- package/src/app/shared/toolbar/toolbar.ts +0 -254
- package/src/app/shared/types.ts +0 -31
- package/src/app/shared/upload-file/testing/upload-file.testing.html +0 -25
- package/src/app/shared/upload-file/testing/upload-file.testing.module.ts +0 -32
- package/src/app/shared/upload-file/testing/upload-file.testing.ts +0 -68
- package/src/app/shared/upload-file/upload-file-popover.component.html +0 -43
- package/src/app/shared/upload-file/upload-file-popover.component.scss +0 -6
- package/src/app/shared/upload-file/upload-file-popover.component.ts +0 -115
- package/src/app/shared/upload-file/upload-file.component.html +0 -46
- package/src/app/shared/upload-file/upload-file.component.scss +0 -130
- package/src/app/shared/upload-file/upload-file.component.ts +0 -218
- package/src/app/shared/upload-file/upload-file.model.ts +0 -41
- package/src/app/shared/validator/form-error-adapter.class.ts +0 -123
- package/src/app/shared/validator/validators.ts +0 -639
- package/src/app/shared/version/versions.ts +0 -91
- package/src/app/social/job/job.module.ts +0 -26
- package/src/app/social/job/progression/job-progression.component.html +0 -22
- package/src/app/social/job/progression/job-progression.component.scss +0 -15
- package/src/app/social/job/progression/job-progression.component.ts +0 -17
- package/src/app/social/job/progression/job-progression.icon.html +0 -28
- package/src/app/social/job/progression/job-progression.icon.scss +0 -5
- package/src/app/social/job/progression/job-progression.icon.ts +0 -238
- package/src/app/social/job/progression/job-progression.list.html +0 -21
- package/src/app/social/job/progression/job-progression.list.scss +0 -17
- package/src/app/social/job/progression/job-progression.list.ts +0 -49
- package/src/app/social/job/progression/job-progression.model.ts +0 -28
- package/src/app/social/job/progression/job-progression.service.ts +0 -86
- package/src/app/social/job/testing/job-progression.testing.html +0 -20
- package/src/app/social/job/testing/job-progression.testing.service.ts +0 -60
- package/src/app/social/job/testing/job-progression.testing.ts +0 -51
- package/src/app/social/job/testing/job.testing.module.ts +0 -22
- package/src/app/social/message/message.form.html +0 -60
- package/src/app/social/message/message.form.scss +0 -6
- package/src/app/social/message/message.form.ts +0 -79
- package/src/app/social/message/message.modal.html +0 -65
- package/src/app/social/message/message.modal.ts +0 -118
- package/src/app/social/message/message.model.ts +0 -81
- package/src/app/social/message/message.module.ts +0 -22
- package/src/app/social/message/message.service.ts +0 -88
- package/src/app/social/social.errors.ts +0 -11
- package/src/app/social/social.module.ts +0 -36
- package/src/app/social/social.testing.module.ts +0 -40
- package/src/app/social/user-event/notification/user-event-notification.icon.html +0 -16
- package/src/app/social/user-event/notification/user-event-notification.icon.ts +0 -108
- package/src/app/social/user-event/notification/user-event-notification.list.html +0 -135
- package/src/app/social/user-event/notification/user-event-notification.list.scss +0 -73
- package/src/app/social/user-event/notification/user-event-notification.list.ts +0 -287
- package/src/app/social/user-event/testing/user-event.testing.html +0 -27
- package/src/app/social/user-event/testing/user-event.testing.model.ts +0 -146
- package/src/app/social/user-event/testing/user-event.testing.module.ts +0 -22
- package/src/app/social/user-event/testing/user-event.testing.service.ts +0 -141
- package/src/app/social/user-event/testing/user-event.testing.ts +0 -253
- package/src/app/social/user-event/user-event.model.ts +0 -73
- package/src/app/social/user-event/user-event.module.ts +0 -25
- package/src/app/social/user-event/user-event.service.ts +0 -679
- package/src/browserslist +0 -9
- package/src/environments/environment.class.ts +0 -83
- package/src/environments/environment.prod.ts +0 -47
- package/src/environments/environment.test.ts +0 -90
- package/src/environments/environment.ts +0 -108
- package/src/favicon.ico +0 -0
- package/src/global.scss +0 -27
- package/src/index.html +0 -80
- package/src/main.ts +0 -17
- package/src/polyfills.ts +0 -68
- package/src/schema.graphql +0 -3112
- package/src/service-worker.js +0 -31
- package/src/zone-flags.ts +0 -31
- package/tsconfig.app.json +0 -15
- package/tsconfig.json +0 -47
- package/tsconfig.spec.json +0 -19
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { gql } from '@apollo/client/core';
|
|
3
|
+
import { Person } from '../../core/services/model/person.model';
|
|
4
|
+
import { StatusIds } from '../../core/services/model/model.enum';
|
|
5
|
+
import { JobUtils } from '../../shared/services/job.utils';
|
|
6
|
+
import { PersonFilter } from './filter/person.filter';
|
|
7
|
+
import { EntityUtils } from '../../core/services/model/entity.model';
|
|
8
|
+
import { BaseEntityService } from '../../core/services/base-entity-service.class';
|
|
9
|
+
import { environment } from '../../../environments/environment';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
import * as i1 from "../../core/graphql/graphql.service";
|
|
12
|
+
import * as i2 from "../../core/services/platform.service";
|
|
13
|
+
import * as i3 from "../../core/services/network.service";
|
|
14
|
+
import * as i4 from "../../core/services/storage/entities-storage.service";
|
|
15
|
+
export const PersonFragments = {
|
|
16
|
+
person: gql `fragment PersonFragment on PersonVO {
|
|
17
|
+
id
|
|
18
|
+
firstName
|
|
19
|
+
lastName
|
|
20
|
+
email
|
|
21
|
+
pubkey
|
|
22
|
+
avatar
|
|
23
|
+
statusId
|
|
24
|
+
updateDate
|
|
25
|
+
creationDate
|
|
26
|
+
profiles
|
|
27
|
+
username
|
|
28
|
+
usernameExtranet
|
|
29
|
+
department {
|
|
30
|
+
id
|
|
31
|
+
label
|
|
32
|
+
name
|
|
33
|
+
logo
|
|
34
|
+
__typename
|
|
35
|
+
}
|
|
36
|
+
__typename
|
|
37
|
+
}`
|
|
38
|
+
};
|
|
39
|
+
// Load persons query
|
|
40
|
+
const PersonQueries = {
|
|
41
|
+
loadAll: gql `
|
|
42
|
+
query Persons($offset: Int, $size: Int, $sortBy: String, $sortDirection: String, $filter: PersonFilterVOInput){
|
|
43
|
+
data: persons(filter: $filter, offset: $offset, size: $size, sortBy: $sortBy, sortDirection: $sortDirection){
|
|
44
|
+
...PersonFragment
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
${PersonFragments.person}`,
|
|
48
|
+
loadAllWithTotal: gql `
|
|
49
|
+
query PersonsWithTotal($offset: Int, $size: Int, $sortBy: String, $sortDirection: String, $filter: PersonFilterVOInput){
|
|
50
|
+
data: persons(filter: $filter, offset: $offset, size: $size, sortBy: $sortBy, sortDirection: $sortDirection){
|
|
51
|
+
...PersonFragment
|
|
52
|
+
}
|
|
53
|
+
total: personsCount(filter: $filter)
|
|
54
|
+
}
|
|
55
|
+
${PersonFragments.person}`
|
|
56
|
+
};
|
|
57
|
+
const PersonMutations = {
|
|
58
|
+
saveAll: gql `
|
|
59
|
+
mutation savePersons($data:[PersonVOInput]){
|
|
60
|
+
data: savePersons(persons: $data){
|
|
61
|
+
...PersonFragment
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
${PersonFragments.person}`,
|
|
65
|
+
deleteAll: gql `
|
|
66
|
+
mutation deletePersons($ids:[Int]){
|
|
67
|
+
deletePersons(ids: $ids)
|
|
68
|
+
}`
|
|
69
|
+
};
|
|
70
|
+
export class PersonService extends BaseEntityService {
|
|
71
|
+
constructor(graphql, platform, network, entities) {
|
|
72
|
+
super(graphql, platform, Person, PersonFilter, {
|
|
73
|
+
queries: PersonQueries,
|
|
74
|
+
mutations: PersonMutations,
|
|
75
|
+
defaultSortBy: 'lastName',
|
|
76
|
+
defaultSortDirection: 'asc'
|
|
77
|
+
});
|
|
78
|
+
this.graphql = graphql;
|
|
79
|
+
this.platform = platform;
|
|
80
|
+
this.network = network;
|
|
81
|
+
this.entities = entities;
|
|
82
|
+
// for DEV only -----
|
|
83
|
+
this._debug = !environment.production;
|
|
84
|
+
}
|
|
85
|
+
async loadAll(offset, size, sortBy, sortDirection, filter, opts) {
|
|
86
|
+
const offline = this.network.offline && (!opts || opts.fetchPolicy !== 'network-only');
|
|
87
|
+
if (offline) {
|
|
88
|
+
return this.loadAllLocally(offset, size, sortBy, sortDirection, filter, opts);
|
|
89
|
+
}
|
|
90
|
+
return super.loadAll(offset, size, sortBy, sortDirection, filter, opts);
|
|
91
|
+
}
|
|
92
|
+
async loadAllLocally(offset, size, sortBy, sortDirection, filter, opts) {
|
|
93
|
+
filter = this.asFilter(filter);
|
|
94
|
+
const variables = {
|
|
95
|
+
offset: offset || 0,
|
|
96
|
+
size: size || 100,
|
|
97
|
+
sortBy: sortBy || this.defaultSortBy,
|
|
98
|
+
sortDirection: sortDirection || this.defaultSortDirection,
|
|
99
|
+
filter: filter && filter.asFilterFn()
|
|
100
|
+
};
|
|
101
|
+
const { data, total } = await this.entities.loadAll('PersonVO', variables);
|
|
102
|
+
const entities = (!opts || opts.toEntity !== false) ?
|
|
103
|
+
(data || []).map(Person.fromObject) :
|
|
104
|
+
(data || []);
|
|
105
|
+
return {
|
|
106
|
+
data: entities,
|
|
107
|
+
total
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
async suggest(value, filter, sortBy, sortDirection) {
|
|
111
|
+
if (EntityUtils.isNotEmpty(value, 'id'))
|
|
112
|
+
return { data: [value] };
|
|
113
|
+
value = (typeof value === 'string' && value !== '*') && value || undefined;
|
|
114
|
+
sortBy = sortBy || filter.searchAttribute || (filter.searchAttributes && filter.searchAttributes[0]);
|
|
115
|
+
return this.loadAll(0, !value ? 30 : 10, sortBy, sortDirection, {
|
|
116
|
+
...filter,
|
|
117
|
+
searchText: value,
|
|
118
|
+
statusIds: filter && filter.statusIds || [StatusIds.ENABLE],
|
|
119
|
+
userProfiles: filter && filter.userProfiles
|
|
120
|
+
}, { withTotal: true /* need by autocomplete */ });
|
|
121
|
+
}
|
|
122
|
+
async executeImport(filter, opts) {
|
|
123
|
+
const maxProgression = opts && opts.maxProgression || 100;
|
|
124
|
+
filter = {
|
|
125
|
+
...filter,
|
|
126
|
+
statusIds: [StatusIds.ENABLE, StatusIds.TEMPORARY],
|
|
127
|
+
userProfiles: ['SUPERVISOR', 'USER', 'GUEST']
|
|
128
|
+
};
|
|
129
|
+
console.info('[person-service] Importing persons...');
|
|
130
|
+
const res = await JobUtils.fetchAllPages((offset, size) => this.loadAll(offset, size, 'id', null, filter, {
|
|
131
|
+
debug: false,
|
|
132
|
+
fetchPolicy: 'network-only',
|
|
133
|
+
withTotal: (offset === 0),
|
|
134
|
+
toEntity: false
|
|
135
|
+
}), { progression: opts?.progression, maxProgression: maxProgression * 0.9 });
|
|
136
|
+
// Save result locally
|
|
137
|
+
await this.entities.saveAll(res.data, { entityName: 'PersonVO', reset: true });
|
|
138
|
+
}
|
|
139
|
+
/* -- protected methods -- */
|
|
140
|
+
asObject(source) {
|
|
141
|
+
if (!source)
|
|
142
|
+
return undefined;
|
|
143
|
+
console.debug('TODO check isInstanceOf');
|
|
144
|
+
if (!(source instanceof Person)) {
|
|
145
|
+
source = Person.fromObject(source);
|
|
146
|
+
}
|
|
147
|
+
const target = source.asObject();
|
|
148
|
+
// Not known in server GraphQL schema
|
|
149
|
+
delete target.mainProfile;
|
|
150
|
+
// Minify the department object
|
|
151
|
+
target.department = source.department && source.department.asObject(true);
|
|
152
|
+
return target;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
PersonService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PersonService, deps: [{ token: i1.GraphqlService }, { token: i2.PlatformService }, { token: i3.NetworkService }, { token: i4.EntitiesStorage }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
156
|
+
PersonService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PersonService, providedIn: 'root' });
|
|
157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PersonService, decorators: [{
|
|
158
|
+
type: Injectable,
|
|
159
|
+
args: [{ providedIn: 'root' }]
|
|
160
|
+
}], ctorParameters: function () { return [{ type: i1.GraphqlService }, { type: i2.PlatformService }, { type: i3.NetworkService }, { type: i4.EntitiesStorage }]; } });
|
|
161
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVyc29uLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9zcmMvYXBwL2FkbWluL3NlcnZpY2VzL3BlcnNvbi5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxVQUFVLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFjLEdBQUcsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBS3JELE9BQU8sRUFBQyxNQUFNLEVBQW1CLE1BQU0sd0NBQXdDLENBQUM7QUFDaEYsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLHNDQUFzQyxDQUFDO0FBRS9ELE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUd6RCxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0sd0JBQXdCLENBQUM7QUFDcEQsT0FBTyxFQUFDLFdBQVcsRUFBQyxNQUFNLHdDQUF3QyxDQUFDO0FBQ25FLE9BQU8sRUFBNkIsaUJBQWlCLEVBQUMsTUFBTSwrQ0FBK0MsQ0FBQztBQUM1RyxPQUFPLEVBQUMsV0FBVyxFQUFDLE1BQU0sbUNBQW1DLENBQUM7Ozs7OztBQUU5RCxNQUFNLENBQUMsTUFBTSxlQUFlLEdBQUc7SUFDN0IsTUFBTSxFQUFFLEdBQUcsQ0FBQTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0lBcUJUO0NBQ0gsQ0FBQztBQUVGLHFCQUFxQjtBQUNyQixNQUFNLGFBQWEsR0FBRztJQUNwQixPQUFPLEVBQUUsR0FBRyxDQUFBOzs7Ozs7TUFNUixlQUFlLENBQUMsTUFBTSxFQUFFO0lBRTVCLGdCQUFnQixFQUFFLEdBQUcsQ0FBQTs7Ozs7OztNQU9qQixlQUFlLENBQUMsTUFBTSxFQUFFO0NBQzdCLENBQUM7QUFHRixNQUFNLGVBQWUsR0FBK0I7SUFDbEQsT0FBTyxFQUFFLEdBQUcsQ0FBQTs7Ozs7O01BTVIsZUFBZSxDQUFDLE1BQU0sRUFBRTtJQUM1QixTQUFTLEVBQUUsR0FBRyxDQUFB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dXJjZXNDb250ZW50IjpbImltcG9ydCB7SW5qZWN0YWJsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0ZldGNoUG9saWN5LCBncWx9IGZyb20gJ0BhcG9sbG8vY2xpZW50L2NvcmUnO1xuaW1wb3J0IHtCZWhhdmlvclN1YmplY3R9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHtHcmFwaHFsU2VydmljZX0gZnJvbSAnLi4vLi4vY29yZS9ncmFwaHFsL2dyYXBocWwuc2VydmljZSc7XG5pbXBvcnQge05ldHdvcmtTZXJ2aWNlfSBmcm9tICcuLi8uLi9jb3JlL3NlcnZpY2VzL25ldHdvcmsuc2VydmljZSc7XG5pbXBvcnQge0VudGl0aWVzU3RvcmFnZX0gZnJvbSAnLi4vLi4vY29yZS9zZXJ2aWNlcy9zdG9yYWdlL2VudGl0aWVzLXN0b3JhZ2Uuc2VydmljZSc7XG5pbXBvcnQge1BlcnNvbiwgVXNlclByb2ZpbGVMYWJlbH0gZnJvbSAnLi4vLi4vY29yZS9zZXJ2aWNlcy9tb2RlbC9wZXJzb24ubW9kZWwnO1xuaW1wb3J0IHtTdGF0dXNJZHN9IGZyb20gJy4uLy4uL2NvcmUvc2VydmljZXMvbW9kZWwvbW9kZWwuZW51bSc7XG5pbXBvcnQge1NvcnREaXJlY3Rpb259IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3NvcnQnO1xuaW1wb3J0IHtKb2JVdGlsc30gZnJvbSAnLi4vLi4vc2hhcmVkL3NlcnZpY2VzL2pvYi51dGlscyc7XG5pbXBvcnQge0xvYWRSZXN1bHQsIFN1Z2dlc3RTZXJ2aWNlfSBmcm9tICcuLi8uLi9zaGFyZWQvc2VydmljZXMvZW50aXR5LXNlcnZpY2UuY2xhc3MnO1xuaW1wb3J0IHtQbGF0Zm9ybVNlcnZpY2V9IGZyb20gJy4uLy4uL2NvcmUvc2VydmljZXMvcGxhdGZvcm0uc2VydmljZSc7XG5pbXBvcnQge1BlcnNvbkZpbHRlcn0gZnJvbSAnLi9maWx0ZXIvcGVyc29uLmZpbHRlcic7XG5pbXBvcnQge0VudGl0eVV0aWxzfSBmcm9tICcuLi8uLi9jb3JlL3NlcnZpY2VzL21vZGVsL2VudGl0eS5tb2RlbCc7XG5pbXBvcnQge0Jhc2VFbnRpdHlHcmFwaHFsTXV0YXRpb25zLCBCYXNlRW50aXR5U2VydmljZX0gZnJvbSAnLi4vLi4vY29yZS9zZXJ2aWNlcy9iYXNlLWVudGl0eS1zZXJ2aWNlLmNsYXNzJztcbmltcG9ydCB7ZW52aXJvbm1lbnR9IGZyb20gJy4uLy4uLy4uL2Vudmlyb25tZW50cy9lbnZpcm9ubWVudCc7XG5cbmV4cG9ydCBjb25zdCBQZXJzb25GcmFnbWVudHMgPSB7XG4gIHBlcnNvbjogZ3FsYGZyYWdtZW50IFBlcnNvbkZyYWdtZW50IG9uIFBlcnNvblZPIHtcbiAgICBpZFxuICAgIGZpcnN0TmFtZVxuICAgIGxhc3ROYW1lXG4gICAgZW1haWxcbiAgICBwdWJrZXlcbiAgICBhdmF0YXJcbiAgICBzdGF0dXNJZFxuICAgIHVwZGF0ZURhdGVcbiAgICBjcmVhdGlvbkRhdGVcbiAgICBwcm9maWxlc1xuICAgIHVzZXJuYW1lXG4gICAgdXNlcm5hbWVFeHRyYW5ldFxuICAgIGRlcGFydG1lbnQge1xuICAgICAgaWRcbiAgICAgIGxhYmVsXG4gICAgICBuYW1lXG4gICAgICBsb2dvXG4gICAgICBfX3R5cGVuYW1lXG4gICAgfVxuICAgIF9fdHlwZW5hbWVcbiAgfWBcbn07XG5cbi8vIExvYWQgcGVyc29ucyBxdWVyeVxuY29uc3QgUGVyc29uUXVlcmllcyA9IHtcbiAgbG9hZEFsbDogZ3FsYFxuICAgIHF1ZXJ5IFBlcnNvbnMoJG9mZnNldDogSW50LCAkc2l6ZTogSW50LCAkc29ydEJ5OiBTdHJpbmcsICRzb3J0RGlyZWN0aW9uOiBTdHJpbmcsICRmaWx0ZXI6IFBlcnNvbkZpbHRlclZPSW5wdXQpe1xuICAgICAgZGF0YTogcGVyc29ucyhmaWx0ZXI6ICRmaWx0ZXIsIG9mZnNldDogJG9mZnNldCwgc2l6ZTogJHNpemUsIHNvcnRCeTogJHNvcnRCeSwgc29ydERpcmVjdGlvbjogJHNvcnREaXJlY3Rpb24pe1xuICAgICAgICAuLi5QZXJzb25GcmFnbWVudFxuICAgICAgfVxuICAgIH1cbiAgICAke1BlcnNvbkZyYWdtZW50cy5wZXJzb259YCxcblxuICBsb2FkQWxsV2l0aFRvdGFsOiBncWxgXG4gICAgcXVlcnkgUGVyc29uc1dpdGhUb3RhbCgkb2Zmc2V0OiBJbnQsICRzaXplOiBJbnQsICRzb3J0Qnk6IFN0cmluZywgJHNvcnREaXJlY3Rpb246IFN0cmluZywgJGZpbHRlcjogUGVyc29uRmlsdGVyVk9JbnB1dCl7XG4gICAgICBkYXRhOiBwZXJzb25zKGZpbHRlcjogJGZpbHRlciwgb2Zmc2V0OiAkb2Zmc2V0LCBzaXplOiAkc2l6ZSwgc29ydEJ5OiAkc29ydEJ5LCBzb3J0RGlyZWN0aW9uOiAkc29ydERpcmVjdGlvbil7XG4gICAgICAgIC4uLlBlcnNvbkZyYWdtZW50XG4gICAgICB9XG4gICAgICB0b3RhbDogcGVyc29uc0NvdW50KGZpbHRlcjogJGZpbHRlcilcbiAgICB9XG4gICAgJHtQZXJzb25GcmFnbWVudHMucGVyc29ufWBcbn07XG5cblxuY29uc3QgUGVyc29uTXV0YXRpb25zOiBCYXNlRW50aXR5R3JhcGhxbE11dGF0aW9ucyA9IHtcbiAgc2F2ZUFsbDogZ3FsYFxuICAgIG11dGF0aW9uIHNhdmVQZXJzb25zKCRkYXRhOltQZXJzb25WT0lucHV0XSl7XG4gICAgICBkYXRhOiBzYXZlUGVyc29ucyhwZXJzb25zOiAkZGF0YSl7XG4gICAgICAgIC4uLlBlcnNvbkZyYWdtZW50XG4gICAgICB9XG4gICAgfVxuICAgICR7UGVyc29uRnJhZ21lbnRzLnBlcnNvbn1gLFxuICBkZWxldGVBbGw6IGdxbGBcbiAgICBtdXRhdGlvbiBkZWxldGVQZXJzb25zKCRpZHM6W0ludF0pe1xuICAgICAgZGVsZXRlUGVyc29ucyhpZHM6ICRpZHMpXG4gICAgfWBcbn07XG5cbkBJbmplY3RhYmxlKHtwcm92aWRlZEluOiAncm9vdCd9KVxuZXhwb3J0IGNsYXNzIFBlcnNvblNlcnZpY2UgZXh0ZW5kcyBCYXNlRW50aXR5U2VydmljZTxQZXJzb24sIFBlcnNvbkZpbHRlcj5cbiAgaW1wbGVtZW50cyBTdWdnZXN0U2VydmljZTxQZXJzb24sIFBlcnNvbkZpbHRlcj4ge1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByb3RlY3RlZCBncmFwaHFsOiBHcmFwaHFsU2VydmljZSxcbiAgICBwcm90ZWN0ZWQgcGxhdGZvcm06IFBsYXRmb3JtU2VydmljZSxcbiAgICBwcm90ZWN0ZWQgbmV0d29yazogTmV0d29ya1NlcnZpY2UsXG4gICAgcHJvdGVjdGVkIGVudGl0aWVzOiBFbnRpdGllc1N0b3JhZ2VcbiAgKSB7XG4gICAgc3VwZXIoZ3JhcGhxbCwgcGxhdGZvcm0sIFBlcnNvbiwgUGVyc29uRmlsdGVyLCB7XG4gICAgICBxdWVyaWVzOiBQZXJzb25RdWVyaWVzLFxuICAgICAgbXV0YXRpb25zOiBQZXJzb25NdXRhdGlvbnMsXG4gICAgICBkZWZhdWx0U29ydEJ5OiAnbGFzdE5hbWUnLFxuICAgICAgZGVmYXVsdFNvcnREaXJlY3Rpb246ICdhc2MnXG4gICAgfSk7XG5cbiAgICAvLyBmb3IgREVWIG9ubHkgLS0tLS1cbiAgICB0aGlzLl9kZWJ1ZyA9ICFlbnZpcm9ubWVudC5wcm9kdWN0aW9uO1xuICB9XG5cbiAgYXN5bmMgbG9hZEFsbChvZmZzZXQ6IG51bWJlciwgc2l6ZTogbnVtYmVyLCBzb3J0Qnk/OiBzdHJpbmcsXG4gICAgICAgICAgICAgICAgc29ydERpcmVjdGlvbj86IFNvcnREaXJlY3Rpb24sXG4gICAgICAgICAgICAgICAgZmlsdGVyPzogUGFydGlhbDxQZXJzb25GaWx0ZXI+LCBvcHRzPzoge1xuICAgICAgICBba2V5OiBzdHJpbmddOiBhbnk7XG4gICAgICAgIGZldGNoUG9saWN5PzogRmV0Y2hQb2xpY3k7XG4gICAgICAgIGRlYnVnPzogYm9vbGVhbjtcbiAgICAgICAgd2l0aFRvdGFsPzogYm9vbGVhbjtcbiAgICAgICAgdG9FbnRpdHk/OiBib29sZWFuO1xuICAgICAgfSk6IFByb21pc2U8TG9hZFJlc3VsdDxQZXJzb24+PiB7XG5cbiAgICBjb25zdCBvZmZsaW5lID0gdGhpcy5uZXR3b3JrLm9mZmxpbmUgJiYgKCFvcHRzIHx8IG9wdHMuZmV0Y2hQb2xpY3kgIT09ICduZXR3b3JrLW9ubHknKTtcbiAgICBpZiAob2ZmbGluZSkge1xuICAgICAgcmV0dXJuIHRoaXMubG9hZEFsbExvY2FsbHkob2Zmc2V0LCBzaXplLCBzb3J0QnksIHNvcnREaXJlY3Rpb24sIGZpbHRlciwgb3B0cyk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHN1cGVyLmxvYWRBbGwob2Zmc2V0LCBzaXplLCBzb3J0QnksIHNvcnREaXJlY3Rpb24sIGZpbHRlciwgb3B0cyk7XG4gIH1cblxuICBhc3luYyBsb2FkQWxsTG9jYWxseShvZmZzZXQ6IG51bWJlciwgc2l6ZTogbnVtYmVyLCBzb3J0Qnk/OiBzdHJpbmcsIHNvcnREaXJlY3Rpb24/OiBTb3J0RGlyZWN0aW9uLFxuICAgICAgICAgICAgICAgICAgICAgICBmaWx0ZXI/OiBQYXJ0aWFsPFBlcnNvbkZpbHRlcj4sXG4gICAgICAgICAgICAgICAgICAgICAgIG9wdHM/OiB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgW2tleTogc3RyaW5nXTogYW55O1xuICAgICAgICAgICAgICAgICAgICAgICAgIGZldGNoUG9saWN5PzogRmV0Y2hQb2xpY3k7XG4gICAgICAgICAgICAgICAgICAgICAgICAgZGVidWc/OiBib29sZWFuO1xuICAgICAgICAgICAgICAgICAgICAgICAgIHdpdGhUb3RhbD86IGJvb2xlYW47XG4gICAgICAgICAgICAgICAgICAgICAgICAgdG9FbnRpdHk/OiBib29sZWFuO1xuICAgICAgICAgICAgICAgICAgICAgICB9KTogUHJvbWlzZTxMb2FkUmVzdWx0PFBlcnNvbj4+IHtcblxuICAgIGZpbHRlciA9IHRoaXMuYXNGaWx0ZXIoZmlsdGVyKTtcblxuICAgIGNvbnN0IHZhcmlhYmxlcyA9IHtcbiAgICAgIG9mZnNldDogb2Zmc2V0IHx8IDAsXG4gICAgICBzaXplOiBzaXplIHx8IDEwMCxcbiAgICAgIHNvcnRCeTogc29ydEJ5IHx8IHRoaXMuZGVmYXVsdFNvcnRCeSxcbiAgICAgIHNvcnREaXJlY3Rpb246IHNvcnREaXJlY3Rpb24gfHwgdGhpcy5kZWZhdWx0U29ydERpcmVjdGlvbixcbiAgICAgIGZpbHRlcjogZmlsdGVyICYmIGZpbHRlci5hc0ZpbHRlckZuKClcbiAgICB9O1xuXG4gICAgY29uc3Qge2RhdGEsIHRvdGFsfSA9IGF3YWl0IHRoaXMuZW50aXRpZXMubG9hZEFsbDxQZXJzb24+KCdQZXJzb25WTycsIHZhcmlhYmxlcyk7XG5cbiAgICBjb25zdCBlbnRpdGllcyA9ICghb3B0cyB8fCBvcHRzLnRvRW50aXR5ICE9PSBmYWxzZSkgP1xuICAgICAgKGRhdGEgfHwgW10pLm1hcChQZXJzb24uZnJvbU9iamVjdCkgOlxuICAgICAgKGRhdGEgfHwgW10pIGFzIFBlcnNvbltdO1xuICAgIHJldHVybiB7XG4gICAgICBkYXRhOiBlbnRpdGllcyxcbiAgICAgIHRvdGFsXG4gICAgfTtcbiAgfVxuXG4gIGFzeW5jIHN1Z2dlc3QodmFsdWU6IGFueSwgZmlsdGVyPzogUGVyc29uRmlsdGVyLCBzb3J0Qnk/OiBzdHJpbmcsIHNvcnREaXJlY3Rpb24/OiBTb3J0RGlyZWN0aW9uKTogUHJvbWlzZTxMb2FkUmVzdWx0PFBlcnNvbj4+IHtcbiAgICBpZiAoRW50aXR5VXRpbHMuaXNOb3RFbXB0eSh2YWx1ZSwgJ2lkJykpIHJldHVybiB7ZGF0YTogW3ZhbHVlXX07XG4gICAgdmFsdWUgPSAodHlwZW9mIHZhbHVlID09PSAnc3RyaW5nJyAmJiB2YWx1ZSAhPT0gJyonKSAmJiB2YWx1ZSB8fCB1bmRlZmluZWQ7XG4gICAgc29ydEJ5ID0gc29ydEJ5IHx8IGZpbHRlci5zZWFyY2hBdHRyaWJ1dGUgfHwgKGZpbHRlci5zZWFyY2hBdHRyaWJ1dGVzICYmIGZpbHRlci5zZWFyY2hBdHRyaWJ1dGVzWzBdKTtcbiAgICByZXR1cm4gdGhpcy5sb2FkQWxsKDAsICF2YWx1ZSA/IDMwIDogMTAsIHNvcnRCeSwgc29ydERpcmVjdGlvbixcbiAgICAgIHtcbiAgICAgICAgLi4uZmlsdGVyLFxuICAgICAgICBzZWFyY2hUZXh0OiB2YWx1ZSBhcyBzdHJpbmcsXG4gICAgICAgIHN0YXR1c0lkczogZmlsdGVyICYmIGZpbHRlci5zdGF0dXNJZHMgfHwgW1N0YXR1c0lkcy5FTkFCTEVdLFxuICAgICAgICB1c2VyUHJvZmlsZXM6IGZpbHRlciAmJiBmaWx0ZXIudXNlclByb2ZpbGVzXG4gICAgICB9LFxuICAgICAgeyB3aXRoVG90YWw6IHRydWUgLyogbmVlZCBieSBhdXRvY29tcGxldGUgKi8gfVxuICAgICAgKTtcbiAgfVxuXG4gIGFzeW5jIGV4ZWN1dGVJbXBvcnQoZmlsdGVyOiBQYXJ0aWFsPFBlcnNvbkZpbHRlcj4sXG4gICAgICAgICAgICAgICAgICAgICAgb3B0czoge1xuICAgICAgICAgICAgICAgICAgICAgICAgcHJvZ3Jlc3Npb24/OiBCZWhhdmlvclN1YmplY3Q8bnVtYmVyPjtcbiAgICAgICAgICAgICAgICAgICAgICAgIG1heFByb2dyZXNzaW9uPzogbnVtYmVyO1xuICAgICAgICAgICAgICAgICAgICAgIH0pOiBQcm9taXNlPHZvaWQ+IHtcblxuICAgIGNvbnN0IG1heFByb2dyZXNzaW9uID0gb3B0cyAmJiBvcHRzLm1heFByb2dyZXNzaW9uIHx8IDEwMDtcbiAgICBmaWx0ZXIgPSB7XG4gICAgICAuLi5maWx0ZXIsXG4gICAgICBzdGF0dXNJZHM6IFtTdGF0dXNJZHMuRU5BQkxFLCBTdGF0dXNJZHMuVEVNUE9SQVJZXSxcbiAgICAgIHVzZXJQcm9maWxlczogPFVzZXJQcm9maWxlTGFiZWxbXT5bJ1NVUEVSVklTT1InLCAnVVNFUicsICdHVUVTVCddXG4gICAgfTtcblxuICAgIGNvbnNvbGUuaW5mbygnW3BlcnNvbi1zZXJ2aWNlXSBJbXBvcnRpbmcgcGVyc29ucy4uLicpO1xuXG4gICAgY29uc3QgcmVzID0gYXdhaXQgSm9iVXRpbHMuZmV0Y2hBbGxQYWdlcygob2Zmc2V0LCBzaXplKSA9PlxuICAgICAgICB0aGlzLmxvYWRBbGwob2Zmc2V0LCBzaXplLCAnaWQnLCBudWxsLCBmaWx0ZXIsIHtcbiAgICAgICAgICBkZWJ1ZzogZmFsc2UsXG4gICAgICAgICAgZmV0Y2hQb2xpY3k6ICduZXR3b3JrLW9ubHknLFxuICAgICAgICAgIHdpdGhUb3RhbDogKG9mZnNldCA9PT0gMCksIC8vIENvbXB1dGUgdG90YWwgb25seSBvbmNlXG4gICAgICAgICAgdG9FbnRpdHk6IGZhbHNlXG4gICAgICAgIH0pLFxuICAgICAge3Byb2dyZXNzaW9uOiBvcHRzPy5wcm9ncmVzc2lvbiwgbWF4UHJvZ3Jlc3Npb246IG1heFByb2dyZXNzaW9uICogMC45fVxuICAgICk7XG5cbiAgICAvLyBTYXZlIHJlc3VsdCBsb2NhbGx5XG4gICAgYXdhaXQgdGhpcy5lbnRpdGllcy5zYXZlQWxsKHJlcy5kYXRhLCB7ZW50aXR5TmFtZTogJ1BlcnNvblZPJywgcmVzZXQ6IHRydWV9KTtcbiAgfVxuXG4gIC8qIC0tIHByb3RlY3RlZCBtZXRob2RzIC0tICovXG5cbiAgcHJvdGVjdGVkIGFzT2JqZWN0KHNvdXJjZTogUGVyc29uIHwgYW55KTogYW55IHtcbiAgICBpZiAoIXNvdXJjZSkgcmV0dXJuIHVuZGVmaW5lZDtcblxuICAgIGNvbnNvbGUuZGVidWcoJ1RPRE8gY2hlY2sgaXNJbnN0YW5jZU9mJyk7XG4gICAgaWYgKCEoc291cmNlIGluc3RhbmNlb2YgUGVyc29uKSkge1xuICAgICAgc291cmNlID0gUGVyc29uLmZyb21PYmplY3Qoc291cmNlKTtcbiAgICB9XG4gICAgY29uc3QgdGFyZ2V0ID0gc291cmNlLmFzT2JqZWN0KCk7XG5cbiAgICAvLyBOb3Qga25vd24gaW4gc2VydmVyIEdyYXBoUUwgc2NoZW1hXG4gICAgZGVsZXRlIHRhcmdldC5tYWluUHJvZmlsZTtcblxuICAgIC8vIE1pbmlmeSB0aGUgZGVwYXJ0bWVudCBvYmplY3RcbiAgICB0YXJnZXQuZGVwYXJ0bWVudCA9IHNvdXJjZS5kZXBhcnRtZW50ICYmIHNvdXJjZS5kZXBhcnRtZW50LmFzT2JqZWN0KHRydWUpO1xuXG4gICAgcmV0dXJuIHRhcmdldDtcbiAgfVxuXG59XG4iXX0=
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { Validators } from '@angular/forms';
|
|
3
|
+
import { Account } from '../../../core/services/model/account.model';
|
|
4
|
+
import { SharedValidators } from '../../../shared/validator/validators';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@angular/forms";
|
|
7
|
+
import * as i2 from "../../../core/services/validator/account.validator";
|
|
8
|
+
export class PersonValidatorService {
|
|
9
|
+
constructor(formBuilder, accountValidatorService) {
|
|
10
|
+
this.formBuilder = formBuilder;
|
|
11
|
+
this.accountValidatorService = accountValidatorService;
|
|
12
|
+
}
|
|
13
|
+
getRowValidator() {
|
|
14
|
+
return this.getFormGroup();
|
|
15
|
+
}
|
|
16
|
+
getFormGroup(data) {
|
|
17
|
+
// Use account validator as base form group definition
|
|
18
|
+
// BUT add more flexibility (e.g. 'pubkey' become optional)
|
|
19
|
+
// This is need to be able to store person that are not using SUMARiS tools (e.g. onboard observers)
|
|
20
|
+
const formConfig = this.accountValidatorService.getFormGroupConfig(data && Account.fromObject(data.asObject()));
|
|
21
|
+
formConfig.pubkey = [data && data.pubkey || null, SharedValidators.pubkey];
|
|
22
|
+
formConfig.username = [data && data.username || null, Validators.minLength(2)];
|
|
23
|
+
formConfig.usernameExtranet = [data && data.usernameExtranet || null, Validators.minLength(2)];
|
|
24
|
+
formConfig.avatar = [data && data.avatar || null];
|
|
25
|
+
return this.formBuilder.group(formConfig);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
PersonValidatorService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PersonValidatorService, deps: [{ token: i1.UntypedFormBuilder }, { token: i2.AccountValidatorService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
29
|
+
PersonValidatorService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PersonValidatorService, providedIn: 'root' });
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PersonValidatorService, decorators: [{
|
|
31
|
+
type: Injectable,
|
|
32
|
+
args: [{ providedIn: 'root' }]
|
|
33
|
+
}], ctorParameters: function () { return [{ type: i1.UntypedFormBuilder }, { type: i2.AccountValidatorService }]; } });
|
|
34
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGVyc29uLnZhbGlkYXRvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3NyYy9hcHAvYWRtaW4vc2VydmljZXMvdmFsaWRhdG9yL3BlcnNvbi52YWxpZGF0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUUzQyxPQUFPLEVBQXVDLFVBQVUsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBRWhGLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUNyRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQzs7OztBQUl4RSxNQUFNLE9BQU8sc0JBQXNCO0lBRWpDLFlBQ1ksV0FBK0IsRUFDL0IsdUJBQWdEO1FBRGhELGdCQUFXLEdBQVgsV0FBVyxDQUFvQjtRQUMvQiw0QkFBdUIsR0FBdkIsdUJBQXVCLENBQXlCO0lBRTVELENBQUM7SUFFRCxlQUFlO1FBQ2IsT0FBTyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7SUFDN0IsQ0FBQztJQUVELFlBQVksQ0FBQyxJQUFhO1FBRXhCLHNEQUFzRDtRQUN0RCwyREFBMkQ7UUFDM0Qsb0dBQW9HO1FBQ3BHLE1BQU0sVUFBVSxHQUFHLElBQUksQ0FBQyx1QkFBdUIsQ0FBQyxrQkFBa0IsQ0FBQyxJQUFJLElBQUksT0FBTyxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQ2hILFVBQVUsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLE1BQU0sSUFBSSxJQUFJLEVBQUUsZ0JBQWdCLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDM0UsVUFBVSxDQUFDLFFBQVEsR0FBRyxDQUFDLElBQUksSUFBSSxJQUFJLENBQUMsUUFBUSxJQUFJLElBQUksRUFBRSxVQUFVLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDL0UsVUFBVSxDQUFDLGdCQUFnQixHQUFHLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxnQkFBZ0IsSUFBSSxJQUFJLEVBQUUsVUFBVSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDO1FBQy9GLFVBQVUsQ0FBQyxNQUFNLEdBQUcsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLE1BQU0sSUFBSSxJQUFJLENBQUMsQ0FBQztRQUVsRCxPQUFPLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQzVDLENBQUM7O21IQXhCVSxzQkFBc0I7dUhBQXRCLHNCQUFzQixjQURWLE1BQU07MkZBQ2xCLHNCQUFzQjtrQkFEbEMsVUFBVTttQkFBQyxFQUFDLFVBQVUsRUFBRSxNQUFNLEVBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBWYWxpZGF0b3JTZXJ2aWNlIH0gZnJvbSAnQGUtaXMvbmd4LW1hdGVyaWFsLXRhYmxlJztcbmltcG9ydCB7VW50eXBlZEZvcm1Hcm91cCwgVW50eXBlZEZvcm1CdWlsZGVyLCBWYWxpZGF0b3JzfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBQZXJzb24gfSBmcm9tICcuLi8uLi8uLi9jb3JlL3NlcnZpY2VzL21vZGVsL3BlcnNvbi5tb2RlbCc7XG5pbXBvcnQgeyBBY2NvdW50IH0gZnJvbSAnLi4vLi4vLi4vY29yZS9zZXJ2aWNlcy9tb2RlbC9hY2NvdW50Lm1vZGVsJztcbmltcG9ydCB7IFNoYXJlZFZhbGlkYXRvcnMgfSBmcm9tICcuLi8uLi8uLi9zaGFyZWQvdmFsaWRhdG9yL3ZhbGlkYXRvcnMnO1xuaW1wb3J0IHtBY2NvdW50VmFsaWRhdG9yU2VydmljZX0gZnJvbSAnLi4vLi4vLi4vY29yZS9zZXJ2aWNlcy92YWxpZGF0b3IvYWNjb3VudC52YWxpZGF0b3InO1xuXG5ASW5qZWN0YWJsZSh7cHJvdmlkZWRJbjogJ3Jvb3QnfSlcbmV4cG9ydCBjbGFzcyBQZXJzb25WYWxpZGF0b3JTZXJ2aWNlIGltcGxlbWVudHMgVmFsaWRhdG9yU2VydmljZSB7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJvdGVjdGVkIGZvcm1CdWlsZGVyOiBVbnR5cGVkRm9ybUJ1aWxkZXIsXG4gICAgcHJvdGVjdGVkIGFjY291bnRWYWxpZGF0b3JTZXJ2aWNlOiBBY2NvdW50VmFsaWRhdG9yU2VydmljZVxuICApIHtcbiAgfVxuXG4gIGdldFJvd1ZhbGlkYXRvcigpOiBVbnR5cGVkRm9ybUdyb3VwIHtcbiAgICByZXR1cm4gdGhpcy5nZXRGb3JtR3JvdXAoKTtcbiAgfVxuXG4gIGdldEZvcm1Hcm91cChkYXRhPzogUGVyc29uKTogVW50eXBlZEZvcm1Hcm91cCB7XG5cbiAgICAvLyBVc2UgYWNjb3VudCB2YWxpZGF0b3IgYXMgYmFzZSBmb3JtIGdyb3VwIGRlZmluaXRpb25cbiAgICAvLyBCVVQgYWRkIG1vcmUgZmxleGliaWxpdHkgKGUuZy4gJ3B1YmtleScgYmVjb21lIG9wdGlvbmFsKVxuICAgIC8vIFRoaXMgaXMgbmVlZCB0byBiZSBhYmxlIHRvIHN0b3JlIHBlcnNvbiB0aGF0IGFyZSBub3QgdXNpbmcgU1VNQVJpUyB0b29scyAoZS5nLiBvbmJvYXJkIG9ic2VydmVycylcbiAgICBjb25zdCBmb3JtQ29uZmlnID0gdGhpcy5hY2NvdW50VmFsaWRhdG9yU2VydmljZS5nZXRGb3JtR3JvdXBDb25maWcoZGF0YSAmJiBBY2NvdW50LmZyb21PYmplY3QoZGF0YS5hc09iamVjdCgpKSk7XG4gICAgZm9ybUNvbmZpZy5wdWJrZXkgPSBbZGF0YSAmJiBkYXRhLnB1YmtleSB8fCBudWxsLCBTaGFyZWRWYWxpZGF0b3JzLnB1YmtleV07XG4gICAgZm9ybUNvbmZpZy51c2VybmFtZSA9IFtkYXRhICYmIGRhdGEudXNlcm5hbWUgfHwgbnVsbCwgVmFsaWRhdG9ycy5taW5MZW5ndGgoMildO1xuICAgIGZvcm1Db25maWcudXNlcm5hbWVFeHRyYW5ldCA9IFtkYXRhICYmIGRhdGEudXNlcm5hbWVFeHRyYW5ldCB8fCBudWxsLCBWYWxpZGF0b3JzLm1pbkxlbmd0aCgyKV07XG4gICAgZm9ybUNvbmZpZy5hdmF0YXIgPSBbZGF0YSAmJiBkYXRhLmF2YXRhciB8fCBudWxsXTtcblxuICAgIHJldHVybiB0aGlzLmZvcm1CdWlsZGVyLmdyb3VwKGZvcm1Db25maWcpO1xuICB9XG5cblxufVxuIl19
|