monkey-front-core 0.0.235 → 0.0.238
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/karma.conf.js +44 -0
- package/monkey-front-core-0.0.238.tgz +0 -0
- package/ng-package.json +8 -0
- package/package.json +4 -24
- package/src/lib/components/alerts/alerts.component.html +18 -0
- package/src/lib/components/alerts/alerts.component.scss +71 -0
- package/src/lib/components/alerts/alerts.component.ts +36 -0
- package/src/lib/components/alerts/alerts.module.ts +12 -0
- package/{lib/components/alerts/index.d.ts → src/lib/components/alerts/index.ts} +2 -2
- package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.html +25 -0
- package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.scss +51 -0
- package/src/lib/components/closed-to-maintenance/closed-to-maintenance.component.ts +25 -0
- package/src/lib/components/closed-to-maintenance/closed-to-maintenance.module.ts +26 -0
- package/{lib/components/closed-to-maintenance/index.d.ts → src/lib/components/closed-to-maintenance/index.ts} +2 -2
- package/{lib/components/index.d.ts → src/lib/components/index.ts} +4 -4
- package/{lib/components/progress-bar/index.d.ts → src/lib/components/progress-bar/index.ts} +3 -3
- package/src/lib/components/progress-bar/progress-bar.component.html +3 -0
- package/src/lib/components/progress-bar/progress-bar.component.scss +6 -0
- package/src/lib/components/progress-bar/progress-bar.component.ts +22 -0
- package/src/lib/components/progress-bar/progress-bar.module.ts +10 -0
- package/src/lib/components/progress-bar/progress-bar.service.ts +61 -0
- package/{lib/components/version-changed/index.d.ts → src/lib/components/version-changed/index.ts} +2 -2
- package/src/lib/components/version-changed/version-changed.component.html +18 -0
- package/src/lib/components/version-changed/version-changed.component.scss +52 -0
- package/src/lib/components/version-changed/version-changed.component.ts +18 -0
- package/src/lib/components/version-changed/version-changed.module.ts +24 -0
- package/{lib/core/decorators/index.d.ts → src/lib/core/decorators/index.ts} +4 -4
- package/src/lib/core/decorators/monkeyecx-charts-decorators.ts +46 -0
- package/src/lib/core/decorators/monkeyecx-decorators.ts +159 -0
- package/src/lib/core/decorators/monkeyecx-download-decorators.ts +39 -0
- package/src/lib/core/decorators/monkeyecx-upload-decorators.ts +39 -0
- package/{lib/core/directives/index.d.ts → src/lib/core/directives/index.ts} +12 -12
- package/src/lib/core/directives/monkeyecx-directives-module.ts +45 -0
- package/src/lib/core/directives/monkeyecx-drag-drop.ts +40 -0
- package/src/lib/core/directives/monkeyecx-feature-by-program-directive.ts +53 -0
- package/src/lib/core/directives/monkeyecx-feature-directive.ts +72 -0
- package/src/lib/core/directives/monkeyecx-format-currency.ts +44 -0
- package/src/lib/core/directives/monkeyecx-format-upper.ts +54 -0
- package/src/lib/core/directives/monkeyecx-only-alpha-numeric-directive.ts +21 -0
- package/src/lib/core/directives/monkeyecx-only-number-directive.ts +21 -0
- package/src/lib/core/directives/monkeyecx-popover-options.directive.ts +52 -0
- package/src/lib/core/directives/monkeyecx-popover.directive.ts +235 -0
- package/src/lib/core/directives/monkeyecx-security-directive.ts +68 -0
- package/src/lib/core/directives/monkeyecx-tooltip-directive.ts +131 -0
- package/{lib/core/index.d.ts → src/lib/core/index.ts} +9 -9
- package/{lib/core/interceptors/index.d.ts → src/lib/core/interceptors/index.ts} +5 -5
- package/src/lib/core/interceptors/monkeyecx-http-config-error.interceptor.ts +58 -0
- package/src/lib/core/interceptors/monkeyecx-http-config-header.interceptor.ts +78 -0
- package/src/lib/core/interceptors/monkeyecx-http-config-interceptor.module.ts +40 -0
- package/src/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.ts +47 -0
- package/src/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.ts +44 -0
- package/{lib/core/interfaces/index.d.ts → src/lib/core/interfaces/index.ts} +29 -29
- package/src/lib/core/interfaces/monkeyecx-auth-credentials.ts +16 -0
- package/{lib/core/interfaces/monkeyecx-company-pendencies.d.ts → src/lib/core/interfaces/monkeyecx-company-pendencies.ts} +16 -14
- package/src/lib/core/interfaces/monkeyecx-company.ts +10 -0
- package/src/lib/core/interfaces/monkeyecx-config-boostrap.ts +14 -0
- package/src/lib/core/interfaces/monkeyecx-config.ts +139 -0
- package/src/lib/core/interfaces/monkeyecx-country-security.ts +4 -0
- package/src/lib/core/interfaces/monkeyecx-error-response.ts +5 -0
- package/src/lib/core/interfaces/monkeyecx-filter.ts +26 -0
- package/src/lib/core/interfaces/monkeyecx-handled-error-response.ts +11 -0
- package/src/lib/core/interfaces/monkeyecx-header-credentials.ts +4 -0
- package/{lib/core/interfaces/monkeyecx-intercom-options.d.ts → src/lib/core/interfaces/monkeyecx-intercom-options.ts} +4 -4
- package/src/lib/core/interfaces/monkeyecx-me-credentials.ts +23 -0
- package/src/lib/core/interfaces/monkeyecx-navigation.ts +28 -0
- package/src/lib/core/interfaces/monkeyecx-program.ts +10 -0
- package/src/lib/core/interfaces/monkeyecx-releases.ts +9 -0
- package/{lib/core/interfaces/monkeyecx-request-in-progress.d.ts → src/lib/core/interfaces/monkeyecx-request-in-progress.ts} +3 -3
- package/src/lib/core/interfaces/monkeyecx-request-paged.ts +27 -0
- package/src/lib/core/interfaces/monkeyecx-response-links.ts +11 -0
- package/src/lib/core/interfaces/monkeyecx-response-paged.ts +6 -0
- package/src/lib/core/interfaces/monkeyecx-saved-state.ts +5 -0
- package/{lib/core/interfaces/monkeyecx-scroll-options.d.ts → src/lib/core/interfaces/monkeyecx-scroll-options.ts} +6 -5
- package/{lib/core/interfaces/monkeyecx-service-credentials.d.ts → src/lib/core/interfaces/monkeyecx-service-credentials.ts} +13 -12
- package/{lib/core/interfaces/monkeyecx-support-options.d.ts → src/lib/core/interfaces/monkeyecx-support-options.ts} +4 -4
- package/src/lib/core/interfaces/monkeyecx-token-credentials.ts +20 -0
- package/src/lib/core/interfaces/monkeyecx-translate-options.ts +4 -0
- package/{lib/core/interfaces/request-download/index.d.ts → src/lib/core/interfaces/request-download/index.ts} +3 -3
- package/src/lib/core/interfaces/request-download/monkeyecx-request-download.ts +11 -0
- package/src/lib/core/interfaces/request-download/monkeyecx-request-downloaded.ts +8 -0
- package/src/lib/core/interfaces/request-download/monkeyecx-request-item-download.ts +7 -0
- package/{lib/core/interfaces/request-queue/index.d.ts → src/lib/core/interfaces/request-queue/index.ts} +3 -3
- package/src/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.ts +7 -0
- package/src/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.ts +6 -0
- package/{lib/core/interfaces/request-queue/monkeyecx-request-queue.d.ts → src/lib/core/interfaces/request-queue/monkeyecx-request-queue.ts} +9 -8
- package/{lib/core/interfaces/request-upload/index.d.ts → src/lib/core/interfaces/request-upload/index.ts} +2 -2
- package/src/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.ts +5 -0
- package/src/lib/core/interfaces/request-upload/monkeyecx-request-upload.ts +11 -0
- package/{lib/core/interfaces/schedules/index.d.ts → src/lib/core/interfaces/schedules/index.ts} +1 -1
- package/src/lib/core/interfaces/schedules/monkeyecx-request-schedule.ts +14 -0
- package/{lib/core/model/index.d.ts → src/lib/core/model/index.ts} +1 -1
- package/src/lib/core/model/monkeyecx-model.ts +38 -0
- package/{lib/core/pipes/index.d.ts → src/lib/core/pipes/index.ts} +19 -19
- package/src/lib/core/pipes/monkeyecx-display-first-name.ts +12 -0
- package/src/lib/core/pipes/monkeyecx-display-initials.ts +14 -0
- package/src/lib/core/pipes/monkeyecx-display-support-phone.ts +31 -0
- package/src/lib/core/pipes/monkeyecx-format-address.ts +27 -0
- package/src/lib/core/pipes/monkeyecx-format-beautify-json.ts +35 -0
- package/src/lib/core/pipes/monkeyecx-format-currency.ts +20 -0
- package/src/lib/core/pipes/monkeyecx-format-date-group.ts +40 -0
- package/src/lib/core/pipes/monkeyecx-format-date-timelapse.ts +25 -0
- package/src/lib/core/pipes/monkeyecx-format-date-unix-timelapse.ts +31 -0
- package/src/lib/core/pipes/monkeyecx-format-document.ts +12 -0
- package/src/lib/core/pipes/monkeyecx-format-number.ts +14 -0
- package/src/lib/core/pipes/monkeyecx-format-phone.ts +32 -0
- package/src/lib/core/pipes/monkeyecx-format-size.ts +13 -0
- package/src/lib/core/pipes/monkeyecx-format-tax.ts +16 -0
- package/src/lib/core/pipes/monkeyecx-format-type-document.ts +12 -0
- package/src/lib/core/pipes/monkeyecx-format-value.ts +12 -0
- package/src/lib/core/pipes/monkeyecx-format-zipcode.ts +12 -0
- package/src/lib/core/pipes/monkeyecx-pipes.module.ts +65 -0
- package/src/lib/core/pipes/monkeyecx-text-truncate.ts +17 -0
- package/src/lib/core/pipes/monkeyecx-truncate-qtd.ts +10 -0
- package/{lib/core/services/auth/index.d.ts → src/lib/core/services/auth/index.ts} +4 -4
- package/src/lib/core/services/auth/monkeyecx-auth-guard-company.service.ts +27 -0
- package/src/lib/core/services/auth/monkeyecx-auth-guard-login.service.ts +23 -0
- package/src/lib/core/services/auth/monkeyecx-auth-guard.service.ts +25 -0
- package/src/lib/core/services/auth/monkeyecx-authentication.service.ts +87 -0
- package/{lib/core/services/commons/index.d.ts → src/lib/core/services/commons/index.ts} +1 -1
- package/src/lib/core/services/commons/monkeyecx-commons.service.ts +557 -0
- package/src/lib/core/services/config/index.ts +9 -0
- package/src/lib/core/services/config/monkeyecx-alerts-config.service.ts +37 -0
- package/src/lib/core/services/config/monkeyecx-config.module.ts +23 -0
- package/src/lib/core/services/config/monkeyecx-config.service.ts +151 -0
- package/src/lib/core/services/config/monkeyecx-error-config.service.ts +92 -0
- package/src/lib/core/services/config/monkeyecx-feature-toggle.service.ts +71 -0
- package/src/lib/core/services/config/monkeyecx-ga-config.service.ts +56 -0
- package/src/lib/core/services/config/monkeyecx-i18n-config.service.ts +95 -0
- package/src/lib/core/services/config/monkeyecx-logs-config.service.ts +34 -0
- package/src/lib/core/services/config/monkeyecx-maintenance-config.service.ts +33 -0
- package/src/lib/core/services/config/monkeyecx-security-console-config.service.ts +40 -0
- package/src/lib/core/services/config/monkeyecx-service-worker-config.service.ts +50 -0
- package/{lib/core/services/error/index.d.ts → src/lib/core/services/error/index.ts} +4 -4
- package/src/lib/core/services/error/monkeyecx-error-handling.module.ts +20 -0
- package/src/lib/core/services/error/monkeyecx-error-handling.service.ts +33 -0
- package/src/lib/core/services/error/monkeyecx-http-error-handling.service.ts +160 -0
- package/src/lib/core/services/error/monkeyecx-others-errors-handling.service.ts +24 -0
- package/{lib/core/services/index.d.ts → src/lib/core/services/index.ts} +22 -22
- package/{lib/core/services/logged/index.d.ts → src/lib/core/services/logged/index.ts} +1 -1
- package/src/lib/core/services/logged/monkeyecx-logged-handling.service.ts +42 -0
- package/src/lib/core/services/monkeyecx-handling.service.ts +58 -0
- package/src/lib/core/services/monkeyecx-service.service.ts +116 -0
- package/{lib/core/services/pagination/index.d.ts → src/lib/core/services/pagination/index.ts} +1 -1
- package/src/lib/core/services/pagination/monkeyecx-pagination.service.ts +27 -0
- package/{lib/core/services/request-download/index.d.ts → src/lib/core/services/request-download/index.ts} +2 -2
- package/src/lib/core/services/request-download/monkeyecx-request-download-handling.service.ts +100 -0
- package/src/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.ts +65 -0
- package/{lib/core/services/request-paged/index.d.ts → src/lib/core/services/request-paged/index.ts} +1 -1
- package/src/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.ts +58 -0
- package/{lib/core/services/request-queue/index.d.ts → src/lib/core/services/request-queue/index.ts} +2 -2
- package/src/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.ts +125 -0
- package/src/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.ts +136 -0
- package/{lib/core/services/routes/index.d.ts → src/lib/core/services/routes/index.ts} +1 -1
- package/src/lib/core/services/routes/monkeyecx-dicovery-params.service.ts +54 -0
- package/{lib/core/services/schedules/index.d.ts → src/lib/core/services/schedules/index.ts} +1 -1
- package/src/lib/core/services/schedules/monkeyecx-request-schedule.service.ts +224 -0
- package/{lib/core/services/storage/index.d.ts → src/lib/core/services/storage/index.ts} +2 -2
- package/src/lib/core/services/storage/monkeyecx-cookie-storage.service.ts +28 -0
- package/src/lib/core/services/storage/monkeyecx-token-storage.service.ts +151 -0
- package/{lib/core/specification-search/index.d.ts → src/lib/core/specification-search/index.ts} +1 -1
- package/src/lib/core/specification-search/monkeyecx-specification-search.ts +111 -0
- package/src/lib/core/utils/decorators-utils.ts +56 -0
- package/{lib/core/utils/index.d.ts → src/lib/core/utils/index.ts} +8 -6
- package/src/lib/core/utils/statics.ts +36 -0
- package/src/lib/core/utils/utils.ts +237 -0
- package/src/lib/core/utils/validate-utils.ts +221 -0
- package/src/lib/core/utils/validators.ts +251 -0
- package/src/lib/monkey-front-core.module.ts +37 -0
- package/{public-api.d.ts → src/public-api.ts} +6 -3
- package/src/test.ts +26 -0
- package/tsconfig.lib.json +15 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/esm2020/lib/components/alerts/alerts.component.mjs +0 -35
- package/esm2020/lib/components/alerts/alerts.module.mjs +0 -21
- package/esm2020/lib/components/alerts/index.mjs +0 -3
- package/esm2020/lib/components/closed-to-maintenance/closed-to-maintenance.component.mjs +0 -29
- package/esm2020/lib/components/closed-to-maintenance/closed-to-maintenance.module.mjs +0 -43
- package/esm2020/lib/components/closed-to-maintenance/index.mjs +0 -3
- package/esm2020/lib/components/index.mjs +0 -5
- package/esm2020/lib/components/progress-bar/index.mjs +0 -4
- package/esm2020/lib/components/progress-bar/progress-bar.component.mjs +0 -23
- package/esm2020/lib/components/progress-bar/progress-bar.module.mjs +0 -18
- package/esm2020/lib/components/progress-bar/progress-bar.service.mjs +0 -50
- package/esm2020/lib/components/version-changed/index.mjs +0 -3
- package/esm2020/lib/components/version-changed/version-changed.component.mjs +0 -24
- package/esm2020/lib/components/version-changed/version-changed.module.mjs +0 -39
- package/esm2020/lib/core/decorators/index.mjs +0 -5
- package/esm2020/lib/core/decorators/monkeyecx-charts-decorators.mjs +0 -40
- package/esm2020/lib/core/decorators/monkeyecx-decorators.mjs +0 -111
- package/esm2020/lib/core/decorators/monkeyecx-download-decorators.mjs +0 -26
- package/esm2020/lib/core/decorators/monkeyecx-upload-decorators.mjs +0 -26
- package/esm2020/lib/core/directives/index.mjs +0 -13
- package/esm2020/lib/core/directives/monkeyecx-directives-module.mjs +0 -73
- package/esm2020/lib/core/directives/monkeyecx-drag-drop.mjs +0 -57
- package/esm2020/lib/core/directives/monkeyecx-feature-by-program-directive.mjs +0 -50
- package/esm2020/lib/core/directives/monkeyecx-feature-directive.mjs +0 -68
- package/esm2020/lib/core/directives/monkeyecx-format-currency.mjs +0 -44
- package/esm2020/lib/core/directives/monkeyecx-format-upper.mjs +0 -67
- package/esm2020/lib/core/directives/monkeyecx-only-alpha-numeric-directive.mjs +0 -28
- package/esm2020/lib/core/directives/monkeyecx-only-number-directive.mjs +0 -28
- package/esm2020/lib/core/directives/monkeyecx-popover-options.directive.mjs +0 -39
- package/esm2020/lib/core/directives/monkeyecx-popover.directive.mjs +0 -212
- package/esm2020/lib/core/directives/monkeyecx-security-directive.mjs +0 -69
- package/esm2020/lib/core/directives/monkeyecx-tooltip-directive.mjs +0 -123
- package/esm2020/lib/core/index.mjs +0 -10
- package/esm2020/lib/core/interceptors/index.mjs +0 -6
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-error.interceptor.mjs +0 -39
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-header.interceptor.mjs +0 -60
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-interceptor.module.mjs +0 -47
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.mjs +0 -43
- package/esm2020/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.mjs +0 -37
- package/esm2020/lib/core/interfaces/index.mjs +0 -30
- package/esm2020/lib/core/interfaces/monkeyecx-auth-credentials.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-company-pendencies.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-company.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-config-boostrap.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-config.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-country-security.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-error-response.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-filter.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-handled-error-response.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-header-credentials.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-intercom-options.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-me-credentials.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-navigation.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-program.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-releases.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-request-in-progress.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-request-paged.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-response-links.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-response-paged.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-saved-state.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-scroll-options.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-service-credentials.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-support-options.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-token-credentials.mjs +0 -2
- package/esm2020/lib/core/interfaces/monkeyecx-translate-options.mjs +0 -2
- package/esm2020/lib/core/interfaces/request-download/index.mjs +0 -4
- package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-download.mjs +0 -2
- package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-downloaded.mjs +0 -2
- package/esm2020/lib/core/interfaces/request-download/monkeyecx-request-item-download.mjs +0 -2
- package/esm2020/lib/core/interfaces/request-queue/index.mjs +0 -4
- package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.mjs +0 -2
- package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.mjs +0 -2
- package/esm2020/lib/core/interfaces/request-queue/monkeyecx-request-queue.mjs +0 -2
- package/esm2020/lib/core/interfaces/request-upload/index.mjs +0 -3
- package/esm2020/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.mjs +0 -2
- package/esm2020/lib/core/interfaces/request-upload/monkeyecx-request-upload.mjs +0 -2
- package/esm2020/lib/core/interfaces/schedules/index.mjs +0 -2
- package/esm2020/lib/core/interfaces/schedules/monkeyecx-request-schedule.mjs +0 -2
- package/esm2020/lib/core/model/index.mjs +0 -2
- package/esm2020/lib/core/model/monkeyecx-model.mjs +0 -25
- package/esm2020/lib/core/pipes/index.mjs +0 -20
- package/esm2020/lib/core/pipes/monkeyecx-display-first-name.mjs +0 -19
- package/esm2020/lib/core/pipes/monkeyecx-display-initials.mjs +0 -21
- package/esm2020/lib/core/pipes/monkeyecx-format-address.mjs +0 -20
- package/esm2020/lib/core/pipes/monkeyecx-format-beautify-json.mjs +0 -38
- package/esm2020/lib/core/pipes/monkeyecx-format-currency.mjs +0 -27
- package/esm2020/lib/core/pipes/monkeyecx-format-date-group.mjs +0 -45
- package/esm2020/lib/core/pipes/monkeyecx-format-date-timelapse.mjs +0 -32
- package/esm2020/lib/core/pipes/monkeyecx-format-date-unix-timelapse.mjs +0 -36
- package/esm2020/lib/core/pipes/monkeyecx-format-document.mjs +0 -19
- package/esm2020/lib/core/pipes/monkeyecx-format-number.mjs +0 -20
- package/esm2020/lib/core/pipes/monkeyecx-format-phone.mjs +0 -42
- package/esm2020/lib/core/pipes/monkeyecx-format-size.mjs +0 -20
- package/esm2020/lib/core/pipes/monkeyecx-format-tax.mjs +0 -23
- package/esm2020/lib/core/pipes/monkeyecx-format-type-document.mjs +0 -19
- package/esm2020/lib/core/pipes/monkeyecx-format-value.mjs +0 -19
- package/esm2020/lib/core/pipes/monkeyecx-format-zipcode.mjs +0 -19
- package/esm2020/lib/core/pipes/monkeyecx-pipes.module.mjs +0 -107
- package/esm2020/lib/core/pipes/monkeyecx-text-truncate.mjs +0 -23
- package/esm2020/lib/core/pipes/monkeyecx-truncate-qtd.mjs +0 -16
- package/esm2020/lib/core/services/auth/index.mjs +0 -5
- package/esm2020/lib/core/services/auth/monkeyecx-auth-guard-company.service.mjs +0 -28
- package/esm2020/lib/core/services/auth/monkeyecx-auth-guard-login.service.mjs +0 -27
- package/esm2020/lib/core/services/auth/monkeyecx-auth-guard.service.mjs +0 -26
- package/esm2020/lib/core/services/auth/monkeyecx-authentication.service.mjs +0 -69
- package/esm2020/lib/core/services/commons/index.mjs +0 -2
- package/esm2020/lib/core/services/commons/monkeyecx-commons.service.mjs +0 -405
- package/esm2020/lib/core/services/config/monkeyecx-alerts-config.service.mjs +0 -40
- package/esm2020/lib/core/services/config/monkeyecx-config.module.mjs +0 -28
- package/esm2020/lib/core/services/config/monkeyecx-config.service.mjs +0 -111
- package/esm2020/lib/core/services/config/monkeyecx-error-config.service.mjs +0 -85
- package/esm2020/lib/core/services/config/monkeyecx-feature-toggle.service.mjs +0 -67
- package/esm2020/lib/core/services/config/monkeyecx-ga-config.service.mjs +0 -57
- package/esm2020/lib/core/services/config/monkeyecx-i18n-config.service.mjs +0 -92
- package/esm2020/lib/core/services/config/monkeyecx-logs-config.service.mjs +0 -34
- package/esm2020/lib/core/services/config/monkeyecx-maintenance-config.service.mjs +0 -37
- package/esm2020/lib/core/services/config/monkeyecx-security-console-config.service.mjs +0 -42
- package/esm2020/lib/core/services/config/monkeyecx-service-worker-config.service.mjs +0 -53
- package/esm2020/lib/core/services/error/index.mjs +0 -5
- package/esm2020/lib/core/services/error/monkeyecx-error-handling.module.mjs +0 -27
- package/esm2020/lib/core/services/error/monkeyecx-error-handling.service.mjs +0 -37
- package/esm2020/lib/core/services/error/monkeyecx-http-error-handling.service.mjs +0 -135
- package/esm2020/lib/core/services/error/monkeyecx-others-errors-handling.service.mjs +0 -29
- package/esm2020/lib/core/services/index.mjs +0 -23
- package/esm2020/lib/core/services/logged/index.mjs +0 -2
- package/esm2020/lib/core/services/logged/monkeyecx-logged-handling.service.mjs +0 -40
- package/esm2020/lib/core/services/monkeyecx-handling.service.mjs +0 -50
- package/esm2020/lib/core/services/monkeyecx-service.service.mjs +0 -104
- package/esm2020/lib/core/services/pagination/index.mjs +0 -2
- package/esm2020/lib/core/services/pagination/monkeyecx-pagination.service.mjs +0 -29
- package/esm2020/lib/core/services/request-download/index.mjs +0 -3
- package/esm2020/lib/core/services/request-download/monkeyecx-request-download-handling.service.mjs +0 -93
- package/esm2020/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.mjs +0 -61
- package/esm2020/lib/core/services/request-paged/index.mjs +0 -2
- package/esm2020/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.mjs +0 -42
- package/esm2020/lib/core/services/request-queue/index.mjs +0 -3
- package/esm2020/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.mjs +0 -114
- package/esm2020/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.mjs +0 -119
- package/esm2020/lib/core/services/routes/index.mjs +0 -2
- package/esm2020/lib/core/services/routes/monkeyecx-dicovery-params.service.mjs +0 -54
- package/esm2020/lib/core/services/schedules/index.mjs +0 -2
- package/esm2020/lib/core/services/schedules/monkeyecx-request-schedule.service.mjs +0 -188
- package/esm2020/lib/core/services/storage/index.mjs +0 -3
- package/esm2020/lib/core/services/storage/monkeyecx-cookie-storage.service.mjs +0 -32
- package/esm2020/lib/core/services/storage/monkeyecx-token-storage.service.mjs +0 -127
- package/esm2020/lib/core/specification-search/index.mjs +0 -2
- package/esm2020/lib/core/specification-search/monkeyecx-specification-search.mjs +0 -108
- package/esm2020/lib/core/utils/decorators-utils.mjs +0 -40
- package/esm2020/lib/core/utils/index.mjs +0 -8
- package/esm2020/lib/core/utils/statics.mjs +0 -38
- package/esm2020/lib/core/utils/utils.mjs +0 -221
- package/esm2020/lib/core/utils/validate-utils.mjs +0 -206
- package/esm2020/lib/core/utils/validators.mjs +0 -208
- package/esm2020/lib/monkey-front-core.module.mjs +0 -64
- package/esm2020/monkey-front-core.mjs +0 -5
- package/esm2020/public-api.mjs +0 -7
- package/fesm2015/monkey-front-core.mjs +0 -5123
- package/fesm2015/monkey-front-core.mjs.map +0 -1
- package/fesm2020/monkey-front-core.mjs +0 -5182
- package/fesm2020/monkey-front-core.mjs.map +0 -1
- package/lib/components/alerts/alerts.component.d.ts +0 -16
- package/lib/components/alerts/alerts.module.d.ts +0 -10
- package/lib/components/closed-to-maintenance/closed-to-maintenance.component.d.ts +0 -13
- package/lib/components/closed-to-maintenance/closed-to-maintenance.module.d.ts +0 -11
- package/lib/components/progress-bar/progress-bar.component.d.ts +0 -11
- package/lib/components/progress-bar/progress-bar.module.d.ts +0 -8
- package/lib/components/progress-bar/progress-bar.service.d.ts +0 -14
- package/lib/components/version-changed/version-changed.component.d.ts +0 -9
- package/lib/components/version-changed/version-changed.module.d.ts +0 -10
- package/lib/core/decorators/monkeyecx-charts-decorators.d.ts +0 -1
- package/lib/core/decorators/monkeyecx-decorators.d.ts +0 -7
- package/lib/core/decorators/monkeyecx-download-decorators.d.ts +0 -2
- package/lib/core/decorators/monkeyecx-upload-decorators.d.ts +0 -2
- package/lib/core/directives/monkeyecx-directives-module.d.ts +0 -19
- package/lib/core/directives/monkeyecx-drag-drop.d.ts +0 -12
- package/lib/core/directives/monkeyecx-feature-by-program-directive.d.ts +0 -15
- package/lib/core/directives/monkeyecx-feature-directive.d.ts +0 -17
- package/lib/core/directives/monkeyecx-format-currency.d.ts +0 -16
- package/lib/core/directives/monkeyecx-format-upper.d.ts +0 -18
- package/lib/core/directives/monkeyecx-only-alpha-numeric-directive.d.ts +0 -9
- package/lib/core/directives/monkeyecx-only-number-directive.d.ts +0 -9
- package/lib/core/directives/monkeyecx-popover-options.directive.d.ts +0 -19
- package/lib/core/directives/monkeyecx-popover.directive.d.ts +0 -43
- package/lib/core/directives/monkeyecx-security-directive.d.ts +0 -17
- package/lib/core/directives/monkeyecx-tooltip-directive.d.ts +0 -23
- package/lib/core/interceptors/monkeyecx-http-config-error.interceptor.d.ts +0 -17
- package/lib/core/interceptors/monkeyecx-http-config-header.interceptor.d.ts +0 -16
- package/lib/core/interceptors/monkeyecx-http-config-interceptor.module.d.ts +0 -9
- package/lib/core/interceptors/monkeyecx-http-config-loading-in-progress.interceptor.d.ts +0 -12
- package/lib/core/interceptors/monkeyecx-http-config-queue.interceptor.d.ts +0 -14
- package/lib/core/interfaces/monkeyecx-auth-credentials.d.ts +0 -15
- package/lib/core/interfaces/monkeyecx-company.d.ts +0 -10
- package/lib/core/interfaces/monkeyecx-config-boostrap.d.ts +0 -14
- package/lib/core/interfaces/monkeyecx-config.d.ts +0 -125
- package/lib/core/interfaces/monkeyecx-country-security.d.ts +0 -4
- package/lib/core/interfaces/monkeyecx-error-response.d.ts +0 -5
- package/lib/core/interfaces/monkeyecx-filter.d.ts +0 -24
- package/lib/core/interfaces/monkeyecx-handled-error-response.d.ts +0 -10
- package/lib/core/interfaces/monkeyecx-header-credentials.d.ts +0 -4
- package/lib/core/interfaces/monkeyecx-me-credentials.d.ts +0 -22
- package/lib/core/interfaces/monkeyecx-navigation.d.ts +0 -27
- package/lib/core/interfaces/monkeyecx-program.d.ts +0 -10
- package/lib/core/interfaces/monkeyecx-releases.d.ts +0 -9
- package/lib/core/interfaces/monkeyecx-request-paged.d.ts +0 -23
- package/lib/core/interfaces/monkeyecx-response-links.d.ts +0 -11
- package/lib/core/interfaces/monkeyecx-response-paged.d.ts +0 -6
- package/lib/core/interfaces/monkeyecx-saved-state.d.ts +0 -5
- package/lib/core/interfaces/monkeyecx-token-credentials.d.ts +0 -20
- package/lib/core/interfaces/monkeyecx-translate-options.d.ts +0 -4
- package/lib/core/interfaces/request-download/monkeyecx-request-download.d.ts +0 -10
- package/lib/core/interfaces/request-download/monkeyecx-request-downloaded.d.ts +0 -7
- package/lib/core/interfaces/request-download/monkeyecx-request-item-download.d.ts +0 -7
- package/lib/core/interfaces/request-queue/monkeyecx-request-item-queue.d.ts +0 -7
- package/lib/core/interfaces/request-queue/monkeyecx-request-progress-queue.d.ts +0 -6
- package/lib/core/interfaces/request-upload/monkeyecx-request-item-upload.d.ts +0 -5
- package/lib/core/interfaces/request-upload/monkeyecx-request-upload.d.ts +0 -10
- package/lib/core/interfaces/schedules/monkeyecx-request-schedule.d.ts +0 -13
- package/lib/core/model/monkeyecx-model.d.ts +0 -13
- package/lib/core/pipes/monkeyecx-display-first-name.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-display-initials.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-address.d.ts +0 -14
- package/lib/core/pipes/monkeyecx-format-beautify-json.d.ts +0 -8
- package/lib/core/pipes/monkeyecx-format-currency.d.ts +0 -11
- package/lib/core/pipes/monkeyecx-format-date-group.d.ts +0 -11
- package/lib/core/pipes/monkeyecx-format-date-timelapse.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-date-unix-timelapse.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-document.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-number.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-phone.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-size.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-tax.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-type-document.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-value.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-format-zipcode.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-pipes.module.d.ts +0 -24
- package/lib/core/pipes/monkeyecx-text-truncate.d.ts +0 -7
- package/lib/core/pipes/monkeyecx-truncate-qtd.d.ts +0 -7
- package/lib/core/services/auth/monkeyecx-auth-guard-company.service.d.ts +0 -11
- package/lib/core/services/auth/monkeyecx-auth-guard-login.service.d.ts +0 -11
- package/lib/core/services/auth/monkeyecx-auth-guard.service.d.ts +0 -11
- package/lib/core/services/auth/monkeyecx-authentication.service.d.ts +0 -30
- package/lib/core/services/commons/monkeyecx-commons.service.d.ts +0 -124
- package/lib/core/services/config/monkeyecx-alerts-config.service.d.ts +0 -11
- package/lib/core/services/config/monkeyecx-config.module.d.ts +0 -9
- package/lib/core/services/config/monkeyecx-config.service.d.ts +0 -36
- package/lib/core/services/config/monkeyecx-error-config.service.d.ts +0 -8
- package/lib/core/services/config/monkeyecx-feature-toggle.service.d.ts +0 -16
- package/lib/core/services/config/monkeyecx-ga-config.service.d.ts +0 -10
- package/lib/core/services/config/monkeyecx-i18n-config.service.d.ts +0 -16
- package/lib/core/services/config/monkeyecx-logs-config.service.d.ts +0 -7
- package/lib/core/services/config/monkeyecx-maintenance-config.service.d.ts +0 -13
- package/lib/core/services/config/monkeyecx-security-console-config.service.d.ts +0 -11
- package/lib/core/services/config/monkeyecx-service-worker-config.service.d.ts +0 -16
- package/lib/core/services/error/monkeyecx-error-handling.module.d.ts +0 -9
- package/lib/core/services/error/monkeyecx-error-handling.service.d.ts +0 -9
- package/lib/core/services/error/monkeyecx-http-error-handling.service.d.ts +0 -26
- package/lib/core/services/error/monkeyecx-others-errors-handling.service.d.ts +0 -9
- package/lib/core/services/logged/monkeyecx-logged-handling.service.d.ts +0 -14
- package/lib/core/services/monkeyecx-handling.service.d.ts +0 -22
- package/lib/core/services/monkeyecx-service.service.d.ts +0 -18
- package/lib/core/services/pagination/monkeyecx-pagination.service.d.ts +0 -9
- package/lib/core/services/request-download/monkeyecx-request-download-handling.service.d.ts +0 -18
- package/lib/core/services/request-download/monkeyecx-request-downloaded-handling.service.d.ts +0 -16
- package/lib/core/services/request-paged/monkeyecx-request-request-paged-handling.d.ts +0 -11
- package/lib/core/services/request-queue/monkeyecx-request-queue-handling.service.d.ts +0 -21
- package/lib/core/services/request-queue/monkeyecx-request-queue-modal-handling.service.d.ts +0 -23
- package/lib/core/services/routes/monkeyecx-dicovery-params.service.d.ts +0 -13
- package/lib/core/services/schedules/monkeyecx-request-schedule.service.d.ts +0 -47
- package/lib/core/services/storage/monkeyecx-cookie-storage.service.d.ts +0 -11
- package/lib/core/services/storage/monkeyecx-token-storage.service.d.ts +0 -29
- package/lib/core/specification-search/monkeyecx-specification-search.d.ts +0 -20
- package/lib/core/utils/decorators-utils.d.ts +0 -5
- package/lib/core/utils/statics.d.ts +0 -28
- package/lib/core/utils/utils.d.ts +0 -22
- package/lib/core/utils/validate-utils.d.ts +0 -66
- package/lib/core/utils/validators.d.ts +0 -29
- package/lib/monkey-front-core.module.d.ts +0 -17
- package/monkey-front-core-0.0.235.tgz +0 -0
- package/monkey-front-core.d.ts +0 -5
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
import { Injectable } from '@angular/core';
|
|
2
|
+
import { Observable, of, BehaviorSubject } from 'rxjs';
|
|
3
|
+
import { MonkeyEcxConfigService } from '../config/monkeyecx-config.service';
|
|
4
|
+
import { MonkeyEcxUtils } from '../../utils/utils';
|
|
5
|
+
import {
|
|
6
|
+
MonkeyEcxConfig,
|
|
7
|
+
MonkeyEcxMeCredentials,
|
|
8
|
+
MonkeyEcxTokenCredentials,
|
|
9
|
+
} from '../../interfaces';
|
|
10
|
+
|
|
11
|
+
@Injectable({
|
|
12
|
+
providedIn: 'root',
|
|
13
|
+
})
|
|
14
|
+
export class MonkeyEcxTokenStorageService {
|
|
15
|
+
private token: MonkeyEcxTokenCredentials | null;
|
|
16
|
+
|
|
17
|
+
private token$: BehaviorSubject<MonkeyEcxTokenCredentials | any>;
|
|
18
|
+
|
|
19
|
+
private me$: BehaviorSubject<MonkeyEcxMeCredentials | any>;
|
|
20
|
+
|
|
21
|
+
private config: MonkeyEcxConfig | null = null;
|
|
22
|
+
|
|
23
|
+
constructor(private monkeyecxConfigService: MonkeyEcxConfigService) {
|
|
24
|
+
this.token = {
|
|
25
|
+
username: '',
|
|
26
|
+
program: '',
|
|
27
|
+
accessToken: '',
|
|
28
|
+
refreshToken: '',
|
|
29
|
+
companyId: '',
|
|
30
|
+
governmentId: '',
|
|
31
|
+
companyTypeUrl: '',
|
|
32
|
+
companyType: '',
|
|
33
|
+
programAdmin: false,
|
|
34
|
+
programType: '',
|
|
35
|
+
accessType: '',
|
|
36
|
+
role: '',
|
|
37
|
+
ownerGovernmentId: '',
|
|
38
|
+
_clearIgnore: {
|
|
39
|
+
ignore: ['username', 'program', 'accessType'],
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
this.token$ = new BehaviorSubject(null);
|
|
43
|
+
this.me$ = new BehaviorSubject(null);
|
|
44
|
+
|
|
45
|
+
this.monkeyecxConfigService.config().subscribe((_: MonkeyEcxConfig) => {
|
|
46
|
+
this.config = _;
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
private setAllTokens(token: MonkeyEcxTokenCredentials) {
|
|
51
|
+
const { token$ } = this;
|
|
52
|
+
Object.entries(token).forEach(([key, value]) => {
|
|
53
|
+
if (MonkeyEcxUtils.persistNullEmptyUndefined(value)) {
|
|
54
|
+
localStorage.setItem(key, value);
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
token$.next(token);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
private getAllTokens(): MonkeyEcxTokenCredentials {
|
|
61
|
+
const { token, config } = this;
|
|
62
|
+
const handledToken: any = {
|
|
63
|
+
...token,
|
|
64
|
+
};
|
|
65
|
+
Object.entries(token || {}).forEach(([key, value]) => {
|
|
66
|
+
handledToken[key] = localStorage.getItem(key);
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
if (!handledToken?.program && config?.program) {
|
|
70
|
+
handledToken.program = config?.program?.token;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
return handledToken;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
private setAllMe(me: MonkeyEcxMeCredentials) {
|
|
77
|
+
const { me$ } = this;
|
|
78
|
+
let previousMe = JSON.parse(localStorage?.getItem('me') || '{}');
|
|
79
|
+
Object.entries(me).forEach(([key, value]) => {
|
|
80
|
+
if (MonkeyEcxUtils.persistNullEmptyUndefined(value)) {
|
|
81
|
+
previousMe = {
|
|
82
|
+
...previousMe,
|
|
83
|
+
[key]: value,
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
localStorage.setItem('me', JSON.stringify(previousMe));
|
|
89
|
+
me$.next(previousMe);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
private getAllMe(): MonkeyEcxMeCredentials {
|
|
93
|
+
const me = localStorage.getItem('me');
|
|
94
|
+
return JSON.parse(me || '{}') as MonkeyEcxMeCredentials;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
public tokenHasChanged(): Observable<MonkeyEcxTokenCredentials> {
|
|
98
|
+
return this.token$.asObservable();
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
public meHasChanged(): Observable<MonkeyEcxMeCredentials> {
|
|
102
|
+
return this.me$.asObservable() || null;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
public getToken(): MonkeyEcxTokenCredentials {
|
|
106
|
+
return this.getAllTokens();
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
public getMe(): MonkeyEcxMeCredentials {
|
|
110
|
+
return this.getAllMe();
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
public setToken(token: MonkeyEcxTokenCredentials) {
|
|
114
|
+
this.setAllTokens(token);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
public setMe(me: MonkeyEcxMeCredentials) {
|
|
118
|
+
this.setAllMe(me);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
public clear(force?: boolean): Observable<boolean> {
|
|
122
|
+
const { token } = this;
|
|
123
|
+
try {
|
|
124
|
+
Object.entries(token || {}).forEach(([key, value]) => {
|
|
125
|
+
if (
|
|
126
|
+
(token?._clearIgnore?.ignore || []).filter((val: any) => {
|
|
127
|
+
return val === key;
|
|
128
|
+
}).length <= 0 ||
|
|
129
|
+
force === true
|
|
130
|
+
) {
|
|
131
|
+
localStorage.removeItem(key);
|
|
132
|
+
}
|
|
133
|
+
});
|
|
134
|
+
localStorage.removeItem('me');
|
|
135
|
+
} catch (error) {
|
|
136
|
+
return of(false);
|
|
137
|
+
}
|
|
138
|
+
return of(true);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* @param fields (the name of fields you want to clear. ie: ['companyId', 'role', ...])
|
|
143
|
+
*/
|
|
144
|
+
public clearCredentials(
|
|
145
|
+
fields = ['companyId', 'governmentId', 'companyType', 'programAdmin', 'role']
|
|
146
|
+
) {
|
|
147
|
+
fields?.forEach((key: string) => {
|
|
148
|
+
localStorage.removeItem(key);
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
}
|
package/{lib/core/specification-search/index.d.ts → src/lib/core/specification-search/index.ts}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './monkeyecx-specification-search';
|
|
1
|
+
export * from './monkeyecx-specification-search';
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* eslint-disable no-unused-vars */
|
|
2
|
+
import { MonkeyEcxUtils } from '../utils/utils';
|
|
3
|
+
|
|
4
|
+
export enum OpSearch {
|
|
5
|
+
LIKE = ':*:value*',
|
|
6
|
+
BETWEEN = ':first AND :last',
|
|
7
|
+
OR = 'OR',
|
|
8
|
+
AND = 'AND',
|
|
9
|
+
GT = '>:value',
|
|
10
|
+
LT = '<:value',
|
|
11
|
+
EQUAL = '::value',
|
|
12
|
+
IN = ' IN :value',
|
|
13
|
+
NOT = ' !:value'
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export class MonkeyEcxSpecificationSearch {
|
|
17
|
+
constructor() {
|
|
18
|
+
// not to do
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
private handleValue(value: any) {
|
|
22
|
+
return Object.entries(value).map(([key, value1]) => {
|
|
23
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(value1)) {
|
|
24
|
+
return null;
|
|
25
|
+
}
|
|
26
|
+
if (Array.isArray(value1)) {
|
|
27
|
+
if (key === OpSearch.BETWEEN) {
|
|
28
|
+
return `${key}`.replace(':first', value1[0]).replace(':last', value1[1]);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
return `${key}`.replace(':value', `${value1}`);
|
|
32
|
+
})[0];
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
private queryVisitor(value: any): any {
|
|
36
|
+
const okay = Object.entries(value).map(([key1, value1]) => {
|
|
37
|
+
if (key1 === OpSearch.OR || key1 === OpSearch.AND) {
|
|
38
|
+
const join = (value1 as any[])
|
|
39
|
+
.map((_: any) => {
|
|
40
|
+
return Object.entries(_).map(([key2, value2]) => {
|
|
41
|
+
if (value2 instanceof Object) {
|
|
42
|
+
value2 = this.handleValue(value2);
|
|
43
|
+
}
|
|
44
|
+
return this.criteriaParser(key2, value2);
|
|
45
|
+
})[0];
|
|
46
|
+
})
|
|
47
|
+
.filter((_: any) => {
|
|
48
|
+
return _;
|
|
49
|
+
})
|
|
50
|
+
.join(` ${key1} `);
|
|
51
|
+
return `${join ? `(${join})` : ''}`;
|
|
52
|
+
}
|
|
53
|
+
if (value1 instanceof Object) {
|
|
54
|
+
value1 = this.handleValue(value1);
|
|
55
|
+
}
|
|
56
|
+
return this.criteriaParser(key1, value1);
|
|
57
|
+
});
|
|
58
|
+
return okay
|
|
59
|
+
.filter((_: any) => {
|
|
60
|
+
return _;
|
|
61
|
+
})
|
|
62
|
+
.join(' AND ');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
private criteriaParser(key: string, value: any | any[]) {
|
|
66
|
+
if (!MonkeyEcxUtils.persistNullEmptyUndefined(value)) {
|
|
67
|
+
return '';
|
|
68
|
+
}
|
|
69
|
+
if (value instanceof Object) {
|
|
70
|
+
return this.queryVisitor(value);
|
|
71
|
+
}
|
|
72
|
+
return `${key}${value}`;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
public build(spec: any): string {
|
|
76
|
+
try {
|
|
77
|
+
return this.queryVisitor(spec);
|
|
78
|
+
} catch (e) {
|
|
79
|
+
throw new Error(`MonkeyEcxSpecificationSearch Error ${e}`);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
public buildMoreThanOne(field: string, op = OpSearch.EQUAL, addSingleQuotes = false) {
|
|
84
|
+
const self: any = this;
|
|
85
|
+
try {
|
|
86
|
+
if (!self[field]) return [];
|
|
87
|
+
|
|
88
|
+
const filters = self[field]?.split(',')?.map((filter: string) => {
|
|
89
|
+
if (!filter) return null;
|
|
90
|
+
return {
|
|
91
|
+
[field]: {
|
|
92
|
+
[op]: addSingleQuotes ? `'${filter}'` : `${filter}`
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
}).filter((val: any) => { return val; });
|
|
96
|
+
return filters || [];
|
|
97
|
+
} catch (e) {
|
|
98
|
+
throw new Error(`MonkeyEcxSpecificationSearch Error ${e}`);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
public handleFieldSeparatedBy(field: string, signal = ',', op = OpSearch.EQUAL) {
|
|
103
|
+
return this[field]?.split(signal)?.map((_) => {
|
|
104
|
+
return {
|
|
105
|
+
[field]: {
|
|
106
|
+
[op]: _
|
|
107
|
+
}
|
|
108
|
+
};
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import {
|
|
2
|
+
MonkeyEcxRequestDownload,
|
|
3
|
+
MonkeyEcxRequestItemQueue,
|
|
4
|
+
MonkeyEcxRequestQueue,
|
|
5
|
+
MonkeyEcxRequestUpload
|
|
6
|
+
} from '../interfaces';
|
|
7
|
+
import * as Statics from './statics';
|
|
8
|
+
import { MonkeyEcxUtils } from './utils';
|
|
9
|
+
|
|
10
|
+
export function buildQueuePropertys(queue: MonkeyEcxRequestItemQueue): MonkeyEcxRequestQueue {
|
|
11
|
+
const params: MonkeyEcxRequestQueue = {
|
|
12
|
+
item: {
|
|
13
|
+
...queue,
|
|
14
|
+
id: MonkeyEcxUtils.getRandomString(40)
|
|
15
|
+
},
|
|
16
|
+
status: Statics.MonkeyEcxQueueEvents.OnGoing
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
return params;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export function buildDownloadPropertys(
|
|
23
|
+
name: string,
|
|
24
|
+
description?: string,
|
|
25
|
+
size?: number
|
|
26
|
+
): MonkeyEcxRequestDownload {
|
|
27
|
+
const params: MonkeyEcxRequestDownload = {
|
|
28
|
+
item: {
|
|
29
|
+
name,
|
|
30
|
+
description,
|
|
31
|
+
id: `${MonkeyEcxUtils.getRandomString(40)}`,
|
|
32
|
+
size,
|
|
33
|
+
createdAt: new Date()
|
|
34
|
+
},
|
|
35
|
+
status: Statics.MonkeyEcxQueueEvents.OnGoing
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
return params;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function buildUploadPropertys(name: string, description?: string): MonkeyEcxRequestUpload {
|
|
42
|
+
const params: MonkeyEcxRequestUpload = {
|
|
43
|
+
item: {
|
|
44
|
+
name,
|
|
45
|
+
description,
|
|
46
|
+
id: `${MonkeyEcxUtils.getRandomString(40)}`
|
|
47
|
+
},
|
|
48
|
+
status: Statics.MonkeyEcxUploadEvents.OnGoing
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
return params;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export function hasMonkeyEcxServiceAndHandlingProperties(context: any): boolean {
|
|
55
|
+
return Object.prototype.hasOwnProperty.call(context, 'monkeyecxService');
|
|
56
|
+
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
/* eslint-disable object-curly-newline */
|
|
2
|
+
import { MonkeyEcxUtils } from './utils';
|
|
3
|
+
import * as ValidateUtils from './validate-utils';
|
|
4
|
+
import * as DecoratorsUtils from './decorators-utils';
|
|
5
|
+
import * as Statics from './statics';
|
|
6
|
+
|
|
7
|
+
export { MonkeyEcxUtils, ValidateUtils, DecoratorsUtils, Statics };
|
|
8
|
+
export * from './validators';
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* eslint-disable no-unused-vars */
|
|
2
|
+
/* eslint-disable no-shadow */
|
|
3
|
+
export enum MonkeyEcxQueueEvents {
|
|
4
|
+
OnGoing,
|
|
5
|
+
Finished,
|
|
6
|
+
FinishedWithError
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export enum MonkeyEcxDownloadEvents {
|
|
10
|
+
OnGoing,
|
|
11
|
+
Finished,
|
|
12
|
+
FinishedWithError
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export enum MonkeyEcxUploadEvents {
|
|
16
|
+
OnGoing,
|
|
17
|
+
Finished,
|
|
18
|
+
FinishedWithError
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// TODO pegar do json de config
|
|
22
|
+
export enum ApiEndPointsTokenNotMandatory {
|
|
23
|
+
Assets = 'assets/',
|
|
24
|
+
MonkeyEcx = '/monkeyecx',
|
|
25
|
+
ViaCep = 'viacep.com.br/'
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// TODO pegar do json de config
|
|
29
|
+
export enum ApiEndPointsHeaderNotMandatory {
|
|
30
|
+
Assets = '/assets',
|
|
31
|
+
PayablesUpload = 'payables-upload',
|
|
32
|
+
PictureUser = '/user-pictures',
|
|
33
|
+
Documents = 'documents/',
|
|
34
|
+
BuyerTaxFile = '/buyer-tax-file',
|
|
35
|
+
ViaCep = 'viacep.com.br/'
|
|
36
|
+
}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
/* eslint-disable comma-dangle */
|
|
2
|
+
/* eslint-disable max-len */
|
|
3
|
+
/* eslint-disable no-useless-escape */
|
|
4
|
+
/* eslint-disable no-plusplus */
|
|
5
|
+
/* eslint-disable no-cond-assign */
|
|
6
|
+
/* eslint-disable eqeqeq */
|
|
7
|
+
/* eslint-disable no-redeclare */
|
|
8
|
+
/* eslint-disable vars-on-top */
|
|
9
|
+
/* eslint-disable no-var */
|
|
10
|
+
/* eslint-disable block-scoped-var */
|
|
11
|
+
export class MonkeyEcxUtils {
|
|
12
|
+
static persistNullEmptyUndefined(tp: any): boolean {
|
|
13
|
+
return tp !== null && tp !== undefined && tp !== '';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
static getDocumentType(doc: string, country?: string) {
|
|
17
|
+
if (!doc) return '';
|
|
18
|
+
if (country === 'cl') return 'RUT';
|
|
19
|
+
return doc.length <= 11 ? 'CPF' : 'CNPJ';
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
static getDocumentMask(type: string) {
|
|
23
|
+
if (type === 'CPF') return '000.000.000-00';
|
|
24
|
+
return '00.000.000/0000-00';
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
static formatDocumentWithMask(doc: string, withType?: boolean, country?: string): string {
|
|
28
|
+
if (!doc) return doc;
|
|
29
|
+
let formated: string = '';
|
|
30
|
+
if (country === 'cl') {
|
|
31
|
+
formated = doc.replace(/^(\d{1,2})(\d{3})(\d{3})(\w{1})$/, '$1.$2.$3-$4');
|
|
32
|
+
return `${formated}`;
|
|
33
|
+
}
|
|
34
|
+
if (doc.length === 14) {
|
|
35
|
+
formated = doc
|
|
36
|
+
.replace(/^(\d{2})(\d)/, '$1.$2')
|
|
37
|
+
.replace(/^(\d{2})\.(\d{3})(\d)/, '$1.$2.$3')
|
|
38
|
+
.replace(/\.(\d{3})(\d)/, '.$1/$2')
|
|
39
|
+
.replace(/(\d{4})(\d)/, '$1-$2');
|
|
40
|
+
} else {
|
|
41
|
+
formated = doc
|
|
42
|
+
.replace(/^(\d{3})(\d)/, '$1.$2')
|
|
43
|
+
.replace(/^(\d{3})\.(\d{3})(\d)/, '$1.$2.$3')
|
|
44
|
+
.replace(/\.(\d{3})(\d)/, '.$1-$2');
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
return `${withType ? `${this.getDocumentType(doc)}:` : ''} ${formated}`;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
static cutFirstLastName(value: string, tp: string = 'first') {
|
|
51
|
+
const split = value?.trim()?.split(' ');
|
|
52
|
+
|
|
53
|
+
if (tp === 'first') return split[0];
|
|
54
|
+
return split?.splice(1, split.length)?.join(' ');
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
static isCPFCNPJValid(document: any): boolean {
|
|
58
|
+
document = document.replace(/[^\d]/g, '');
|
|
59
|
+
|
|
60
|
+
const handled = document.replace(new RegExp(document.charAt(0), 'g'), '');
|
|
61
|
+
if (!handled) return false;
|
|
62
|
+
|
|
63
|
+
if (document.length === 11) {
|
|
64
|
+
let base = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0];
|
|
65
|
+
for (var i = 0, n = 0; i < 9; n += document[i] * base[i++]);
|
|
66
|
+
if (document[9] != ((n %= 11) <= 1 ? 0 : 11 - n)) {
|
|
67
|
+
return false;
|
|
68
|
+
}
|
|
69
|
+
base = [11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0];
|
|
70
|
+
for (var i = 0, n = 0; i <= 9; n += document[i] * base[i++]);
|
|
71
|
+
if (document[10] != ((n %= 11) <= 1 ? 0 : 11 - n)) {
|
|
72
|
+
return false;
|
|
73
|
+
}
|
|
74
|
+
return true;
|
|
75
|
+
}
|
|
76
|
+
if (document.length === 14 || /0{14}/.test(document)) {
|
|
77
|
+
const base = [6, 5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2];
|
|
78
|
+
for (var i = 0, n = 0; i < 12; n += document[i] * base[++i]);
|
|
79
|
+
if (document[12] != ((n %= 11) < 2 ? 0 : 11 - n)) {
|
|
80
|
+
return false;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
for (var i = 0, n = 0; i <= 12; n += document[i] * base[i++]);
|
|
84
|
+
if (document[13] != ((n %= 11) < 2 ? 0 : 11 - n)) {
|
|
85
|
+
return false;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
return true;
|
|
89
|
+
}
|
|
90
|
+
return false;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
public static isValidRUT(document: string): boolean {
|
|
94
|
+
if (!document || document.trim().length < 3) return false;
|
|
95
|
+
const documentHandled = document.replace(/[^0-9kK]/g, '');
|
|
96
|
+
|
|
97
|
+
if (documentHandled.length < 3) return false;
|
|
98
|
+
|
|
99
|
+
const calcDv = (rut: string) => {
|
|
100
|
+
const value: string = `${rut}`;
|
|
101
|
+
let sum = 0;
|
|
102
|
+
let mult = 2;
|
|
103
|
+
|
|
104
|
+
for (let i = 1; i <= value.length; i++) {
|
|
105
|
+
const index = mult * Number(value.charAt(value.length - i));
|
|
106
|
+
|
|
107
|
+
sum += index;
|
|
108
|
+
|
|
109
|
+
if (mult < 7) {
|
|
110
|
+
mult += 1;
|
|
111
|
+
} else {
|
|
112
|
+
mult = 2;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
const dvEsperado = 11 - (sum % 11);
|
|
117
|
+
if (dvEsperado === 10) return 'K';
|
|
118
|
+
if (dvEsperado === 11) return '0';
|
|
119
|
+
return `${dvEsperado}`;
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
const num = documentHandled.slice(0, -1);
|
|
123
|
+
const dgv = documentHandled.slice(-1).toUpperCase();
|
|
124
|
+
|
|
125
|
+
const dvCalc = calcDv(num);
|
|
126
|
+
return dvCalc === dgv;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
static isValidUrl(txt: string): boolean {
|
|
130
|
+
const regex = new RegExp(
|
|
131
|
+
/^(http:\/\/www\.|https:\/\/www\.|http:\/\/|https:\/\/)+[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,10}(:[0-9]{1,5})?(\/.*)?$/gm
|
|
132
|
+
);
|
|
133
|
+
return regex.test(txt);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
static isValidZipCode(zipCode: string): boolean {
|
|
137
|
+
return `${this.handleOnlyNumbers(zipCode)}`.length === 8;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
static getRandomString(len: number, charSet?: string): string {
|
|
141
|
+
charSet = charSet || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
142
|
+
|
|
143
|
+
const randomString: string = new Array(len)
|
|
144
|
+
.fill('1')
|
|
145
|
+
.map(() => {
|
|
146
|
+
return charSet?.charAt(Math.floor(Math.random() * charSet?.length));
|
|
147
|
+
})
|
|
148
|
+
.join('');
|
|
149
|
+
return randomString;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
static handleOnlyNumbers(value: any) {
|
|
153
|
+
if (!value) return null;
|
|
154
|
+
return value.replace(new RegExp(/[^0-9]/g), '');
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
static handleOnlyAlphaNumeric(value: any) {
|
|
158
|
+
if (!value) return '';
|
|
159
|
+
return value.replace(new RegExp(/[^0-9A-Za-z]/, 'g'), '');
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
static capitalize(value: string) {
|
|
163
|
+
return `${value.charAt(0).toUpperCase()}${value.slice(1)}`;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
static formatZipCode(zipCode: string): string {
|
|
167
|
+
if (!zipCode) return zipCode;
|
|
168
|
+
const formated: string = zipCode
|
|
169
|
+
.replace(/^(\d{5})(\d)/, '$1-$2')
|
|
170
|
+
.replace(/\.(\d{3})(\d)/, '.$1-$2');
|
|
171
|
+
|
|
172
|
+
return `${formated}`;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
static formatFileSize(size: number): string {
|
|
176
|
+
const units = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
|
177
|
+
let l = 0;
|
|
178
|
+
while (size >= 1024 && ++l) {
|
|
179
|
+
size /= 1024;
|
|
180
|
+
}
|
|
181
|
+
return `${size.toFixed(size < 10 && l > 0 ? 1 : 0)} ${units[l]}`;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
static sufflue(data: any[]): any[] {
|
|
185
|
+
for (let i = data.length - 1; i > 0; i--) {
|
|
186
|
+
const j = Math.floor(Math.random() * i);
|
|
187
|
+
const temp = data[i];
|
|
188
|
+
data[i] = data[j];
|
|
189
|
+
data[j] = temp;
|
|
190
|
+
}
|
|
191
|
+
return data;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
static handleBlobFile(theBlob: any, fileName: string, fileType: string) {
|
|
195
|
+
function blobToFile(theBlob: any, fileName: string) {
|
|
196
|
+
const b = theBlob;
|
|
197
|
+
b.lastModifiedDate = new Date();
|
|
198
|
+
b.name = fileName;
|
|
199
|
+
return b;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
let file: any;
|
|
203
|
+
if (!(navigator as any).msSaveBlob) {
|
|
204
|
+
file = new File([theBlob], fileName, {
|
|
205
|
+
type: fileType,
|
|
206
|
+
});
|
|
207
|
+
} else {
|
|
208
|
+
file = new Blob([theBlob], {
|
|
209
|
+
type: fileType,
|
|
210
|
+
});
|
|
211
|
+
file = blobToFile(file, fileName);
|
|
212
|
+
}
|
|
213
|
+
return file;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
static truncate(text: string, maxLength: number = 25): string {
|
|
217
|
+
const midChar = '...';
|
|
218
|
+
if (!text) return midChar;
|
|
219
|
+
if (text && text.length <= maxLength) return text;
|
|
220
|
+
|
|
221
|
+
const left = Math.ceil(maxLength / 2);
|
|
222
|
+
const right = text.length - left + 1;
|
|
223
|
+
|
|
224
|
+
return `${text.substr(0, left)} ${midChar} ${text.substring(right)}`;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
static isLocalhost() {
|
|
228
|
+
const { href } = window?.location;
|
|
229
|
+
if (!href) return false;
|
|
230
|
+
return href?.search('localhost') >= 0;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
static isSameOrigin(frontend: string): boolean {
|
|
234
|
+
const initialPath: string = window.location.origin;
|
|
235
|
+
return (initialPath || '') === frontend;
|
|
236
|
+
}
|
|
237
|
+
}
|