geonetwork-ui 2.3.0-dev.f736344f → 2.3.0-dev.ff2a9db7
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/esm2022/index.mjs +2 -1
- package/esm2022/libs/api/metadata-converter/src/index.mjs +5 -5
- package/esm2022/libs/api/metadata-converter/src/lib/base.converter.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +15 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +3 -3
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.converter.mjs +52 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +8 -4
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/index.mjs +4 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/index.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +123 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +116 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +138 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/index.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +242 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +59 -63
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.mjs +18 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.mjs +48 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.mjs +18 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.mjs +64 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +76 -59
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +76 -14
- package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +1 -1
- package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +12 -1
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +4 -4
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +36 -3
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +21 -7
- package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/record/user-feedbacks.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/user/index.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +35 -7
- package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +1 -2
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +36 -3
- package/esm2022/libs/feature/editor/src/index.mjs +2 -2
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +6 -2
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +11 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +28 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +64 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +11 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +15 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +45 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +50 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +104 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +126 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +2 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +10 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +29 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -10
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +23 -1
- package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +8 -8
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +6 -2
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +125 -0
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +7 -3
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +12 -7
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +2 -1
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +73 -25
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +12 -49
- package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
- package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
- package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
- package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
- package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +4 -4
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +9 -4
- package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +22 -4
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +37 -10
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +22 -7
- package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +52 -17
- package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +18 -3
- package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
- package/esm2022/libs/feature/search/src/index.mjs +2 -1
- package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
- package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +1 -1
- package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +1 -1
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
- package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +1 -1
- package/esm2022/libs/ui/elements/src/index.mjs +15 -15
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -2
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +5 -5
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +16 -3
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +45 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
- package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +99 -36
- package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +4 -3
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +14 -10
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +59 -0
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +60 -0
- package/esm2022/libs/ui/inputs/src/index.mjs +16 -16
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -1
- package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +4 -3
- package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +22 -0
- package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +7 -5
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +19 -8
- package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +59 -0
- package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +183 -0
- package/esm2022/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +29 -0
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +27 -4
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +21 -3
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +21 -31
- package/esm2022/libs/ui/layout/src/index.mjs +7 -5
- package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +76 -0
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +42 -18
- package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +18 -0
- package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +3 -8
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +2 -2
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +22 -1
- package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -0
- package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +60 -0
- package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -6
- package/esm2022/translations/de.json +43 -0
- package/esm2022/translations/en.json +43 -0
- package/esm2022/translations/es.json +43 -0
- package/esm2022/translations/fr.json +43 -0
- package/esm2022/translations/it.json +43 -0
- package/esm2022/translations/nl.json +43 -0
- package/esm2022/translations/pt.json +43 -0
- package/fesm2022/geonetwork-ui.mjs +5728 -3420
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -1
- package/index.ts +1 -0
- package/libs/api/metadata-converter/src/index.d.ts +4 -4
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/{metadata-base.mapper.d.ts → base.converter.d.ts} +3 -3
- package/libs/api/metadata-converter/src/lib/base.converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/find-converter.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/{gn4.metadata.mapper.d.ts → gn4.converter.d.ts} +5 -5
- package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/index.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/gn4/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/index.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts +9 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +20 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +21 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/index.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/iso19139/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts +11 -0
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +34 -6
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.d.ts +8 -0
- package/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +39 -3
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +14 -1
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +2 -2
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +6 -2
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +9 -6
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
- package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +6 -4
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +15 -0
- package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/user/index.d.ts +2 -0
- package/libs/common/domain/src/lib/model/user/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -0
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +9 -5
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/models.d.ts +0 -1
- package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +3 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/editor/src/index.d.ts +1 -1
- package/libs/feature/editor/src/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +39 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +8 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +16 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.d.ts +2 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +21 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.d.ts +13 -4
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.d.ts +3 -3
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +1 -1
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/fields.model.d.ts +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +28 -0
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts +2 -1
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +2 -0
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +11 -5
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -1
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +2 -3
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
- package/libs/feature/notifications/src/index.d.ts +4 -0
- package/libs/feature/notifications/src/index.d.ts.map +1 -0
- package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
- package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
- package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
- package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
- package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
- package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
- package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
- package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +40 -6
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +24 -4
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +14 -4
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +8 -5
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +12 -9
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
- package/libs/feature/search/src/index.d.ts +1 -0
- package/libs/feature/search/src/index.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +3 -3
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +14 -14
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +3 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +13 -0
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
- package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +24 -4
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +29 -28
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +11 -0
- package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +21 -0
- package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/index.d.ts +15 -15
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts +9 -0
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +2 -1
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts +14 -0
- package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +44 -0
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +12 -0
- package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +7 -1
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +5 -1
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +35 -42
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
- package/libs/ui/layout/src/index.d.ts +6 -4
- package/libs/ui/layout/src/index.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +25 -0
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +13 -6
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +8 -0
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts +4 -5
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +18 -0
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/image-resize.d.ts +3 -0
- package/libs/util/shared/src/lib/utils/image-resize.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/index.d.ts +7 -5
- package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/libs/api/metadata-converter/src/index.ts +4 -4
- package/src/libs/api/metadata-converter/src/lib/{metadata-base.mapper.ts → base.converter.ts} +2 -2
- package/src/libs/api/metadata-converter/src/lib/find-converter.ts +16 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +32 -5
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +11 -4
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +33 -7
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +580 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/{gn4.metadata.mapper.ts → gn4.converter.ts} +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +9 -3
- package/src/libs/api/metadata-converter/src/lib/gn4/index.ts +3 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +176 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +329 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +513 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +327 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +122 -83
- package/src/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.ts +20 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +175 -98
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +84 -16
- package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +1 -0
- package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +12 -1
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +51 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +40 -7
- package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +9 -4
- package/src/libs/common/domain/src/lib/model/record/user-feedbacks.model.ts +15 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +3 -0
- package/src/libs/common/fixtures/src/index.ts +8 -6
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +8 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +3 -3
- package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +83 -0
- package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +43 -12
- package/src/libs/data-access/gn4/src/openapi/model/models.ts +0 -1
- package/src/libs/data-access/gn4/src/spec.yaml +1 -1
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +52 -2
- package/src/libs/feature/editor/src/index.ts +1 -1
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +8 -0
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +70 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.ts +1 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.ts +4 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +8 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +64 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +15 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +20 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +44 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.ts +4 -1
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css +0 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +14 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +143 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +97 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +142 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.html +1 -0
- package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.ts +4 -4
- package/src/libs/feature/editor/src/lib/feature-editor.module.ts +9 -9
- package/src/libs/feature/editor/src/lib/fields.config.ts +22 -0
- package/src/libs/feature/editor/src/lib/models/fields.model.ts +1 -1
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +27 -16
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +5 -1
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.css +7 -0
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +50 -0
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +135 -0
- package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +8 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +5 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +11 -3
- package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +78 -32
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +17 -61
- package/src/libs/feature/notifications/src/index.ts +3 -0
- package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
- package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
- package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
- package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
- package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
- package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
- package/src/libs/feature/record/src/lib/feature-record.module.ts +5 -2
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +7 -2
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +51 -6
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +82 -7
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +48 -8
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +81 -24
- package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +40 -10
- package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
- package/src/libs/feature/search/src/index.ts +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +2 -2
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
- package/src/libs/ui/elements/src/index.ts +14 -14
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +2 -1
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +38 -20
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +0 -5
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +0 -21
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -14
- package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
- package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
- package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +27 -11
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +126 -30
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +5 -3
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +6 -3
- package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +54 -0
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.css +0 -0
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +75 -0
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +62 -0
- package/src/libs/ui/inputs/src/index.ts +15 -15
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -1
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +3 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +11 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +16 -0
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +8 -1
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +14 -0
- package/src/libs/ui/inputs/src/lib/files-drop/files-drop.directive.ts +45 -0
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +146 -0
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +193 -0
- package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.css +6 -0
- package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.html +26 -0
- package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts +32 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +29 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +2 -1
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +17 -1
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +6 -22
- package/src/libs/ui/layout/src/index.ts +6 -4
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +23 -0
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +20 -0
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +84 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +8 -4
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +4 -4
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +45 -15
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +0 -0
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +18 -0
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +16 -0
- package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -2
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +1 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +21 -0
- package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +3 -0
- package/src/libs/util/shared/src/lib/utils/image-resize.ts +72 -0
- package/src/libs/util/shared/src/lib/utils/index.ts +7 -5
- package/tailwind.base.css +36 -0
- package/translations/de.json +43 -0
- package/translations/en.json +43 -0
- package/translations/es.json +43 -0
- package/translations/fr.json +43 -0
- package/translations/it.json +43 -0
- package/translations/nl.json +43 -0
- package/translations/pt.json +43 -0
- package/translations/sk.json +43 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +0 -52
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/keyword.mapper.mjs +0 -14
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.mjs +0 -48
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.mjs +0 -18
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.mjs +0 -64
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +0 -130
- package/esm2022/libs/api/metadata-converter/src/lib/metadata-base.mapper.mjs +0 -14
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +0 -13
- package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +0 -30
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +0 -11
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +0 -27
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +0 -11
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +0 -27
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +0 -49
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -11
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +0 -11
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +0 -76
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +0 -2
- package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +0 -10
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/keyword.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts +0 -4
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +0 -11
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +0 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +0 -196
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +0 -18
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +0 -11
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +0 -15
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +0 -68
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +0 -80
- /package/libs/api/metadata-converter/src/lib/iso19139/{codelists → utils}/keyword.mapper.d.ts +0 -0
- /package/libs/api/metadata-converter/src/lib/iso19139/{codelists → utils}/role.mapper.d.ts +0 -0
- /package/libs/api/metadata-converter/src/lib/iso19139/{codelists → utils}/status.mapper.d.ts +0 -0
- /package/libs/api/metadata-converter/src/lib/iso19139/{codelists → utils}/update-frequency.mapper.d.ts +0 -0
- /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.d.ts +0 -0
- /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.d.ts +0 -0
- /package/src/libs/api/metadata-converter/src/lib/iso19139/{codelists → utils}/keyword.mapper.ts +0 -0
- /package/src/libs/api/metadata-converter/src/lib/iso19139/{codelists → utils}/role.mapper.ts +0 -0
- /package/src/libs/api/metadata-converter/src/lib/iso19139/{codelists → utils}/status.mapper.ts +0 -0
- /package/src/libs/api/metadata-converter/src/lib/iso19139/{codelists → utils}/update-frequency.mapper.ts +0 -0
- /package/src/libs/feature/editor/src/lib/{record-form/record-form.component.css → components/overview-upload/overview-upload.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.css +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.css +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.ts +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.ts +0 -0
package/translations/fr.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"button.login": "Se connecter",
|
|
2
3
|
"catalog.figures.datasets": "{count, plural, =0{données} one{donnée} other{données}}",
|
|
3
4
|
"catalog.figures.organisations": "{count, plural, =0{organisations} one{organisation} other{organisations}}",
|
|
4
5
|
"chart.aggregation.average": "moyenne",
|
|
@@ -144,7 +145,28 @@
|
|
|
144
145
|
"downloads.format.unknown": "inconnu",
|
|
145
146
|
"downloads.wfs.featuretype.not.found": "La couche n'a pas été retrouvée",
|
|
146
147
|
"dropFile": "Faites glisser votre fichier",
|
|
148
|
+
"editor.record.form.license": "Licence",
|
|
149
|
+
"editor.record.form.license.cc-by": "",
|
|
150
|
+
"editor.record.form.license.cc-by-sa": "",
|
|
151
|
+
"editor.record.form.license.cc-zero": "",
|
|
152
|
+
"editor.record.form.license.etalab": "Licence Ouverte (Etalab)",
|
|
153
|
+
"editor.record.form.license.etalab-v2": "Licence Ouverte v2.0 (Etalab)",
|
|
154
|
+
"editor.record.form.license.odbl": "",
|
|
155
|
+
"editor.record.form.license.odc-by": "",
|
|
156
|
+
"editor.record.form.license.pddl": "",
|
|
157
|
+
"editor.record.form.license.unknown": "Non-reconnue ou absente",
|
|
158
|
+
"editor.record.form.resourceUpdated": "Date de dernière révision",
|
|
159
|
+
"editor.record.form.updateFrequency": "Fréquence de mise à jour",
|
|
160
|
+
"editor.record.form.updateFrequency.planned": "Ces données doivent être mise à jour régulièrement.",
|
|
161
|
+
"editor.record.loadError.body": "",
|
|
162
|
+
"editor.record.loadError.closeMessage": "",
|
|
163
|
+
"editor.record.loadError.title": "",
|
|
147
164
|
"editor.record.publish": "",
|
|
165
|
+
"editor.record.publishError.body": "",
|
|
166
|
+
"editor.record.publishError.closeMessage": "",
|
|
167
|
+
"editor.record.publishError.title": "",
|
|
168
|
+
"editor.record.publishSuccess.body": "",
|
|
169
|
+
"editor.record.publishSuccess.title": "",
|
|
148
170
|
"editor.record.upToDate": "",
|
|
149
171
|
"externalviewer.dataset.unnamed": "Couche du datahub",
|
|
150
172
|
"facets.block.title.OrgForResource": "Organisation",
|
|
@@ -159,6 +181,16 @@
|
|
|
159
181
|
"facets.block.title.tag.default": "Tag",
|
|
160
182
|
"facets.block.title.th_regions_tree.default": "Régions",
|
|
161
183
|
"favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Connectez-vous</a> pour avoir accès à cette fonctionnalité</div>",
|
|
184
|
+
"input.image.altTextPlaceholder": "Texte alternatif de l'image",
|
|
185
|
+
"input.image.delete": "Supprimer",
|
|
186
|
+
"input.image.displayAltTextInput": "Texte alternatif",
|
|
187
|
+
"input.image.displayUrlInput": "Saisir une URL",
|
|
188
|
+
"input.image.dropFileLabel": "ou la glisser ici",
|
|
189
|
+
"input.image.selectFileLabel": "Sélectionner une image",
|
|
190
|
+
"input.image.uploadErrorLabel": "L'image n'a pas pu être chargée",
|
|
191
|
+
"input.image.uploadErrorRetry": "Réessayer",
|
|
192
|
+
"input.image.uploadProgressCancel": "Annuler",
|
|
193
|
+
"input.image.uploadProgressLabel": "Chargement en cours...",
|
|
162
194
|
"language.ca": "Catalan",
|
|
163
195
|
"language.cs": "Tchèque",
|
|
164
196
|
"language.de": "Allemand",
|
|
@@ -177,6 +209,7 @@
|
|
|
177
209
|
"map.add.layer": "Ajouter une couche",
|
|
178
210
|
"map.add.layer.catalog": "Du catalogue",
|
|
179
211
|
"map.add.layer.file": "À partir d'un fichier",
|
|
212
|
+
"map.add.layer.ogc.api": "",
|
|
180
213
|
"map.add.layer.wfs": "Depuis un service WFS",
|
|
181
214
|
"map.add.layer.wms": "Depuis un service WMS",
|
|
182
215
|
"map.addFromFile.placeholder": "Cliquez ou déposez un fichier ici",
|
|
@@ -188,12 +221,14 @@
|
|
|
188
221
|
"map.loading.data": "Chargement des données...",
|
|
189
222
|
"map.loading.service": "Chargement du service...",
|
|
190
223
|
"map.navigation.message": "Veuillez utiliser CTRL + souris (ou deux doigts sur mobile) pour naviguer sur la carte",
|
|
224
|
+
"map.ogc.urlInput.hint": "",
|
|
191
225
|
"map.select.layer": "Source de données",
|
|
192
226
|
"map.wfs.urlInput.hint": "Entrez l'URL du service WFS",
|
|
193
227
|
"map.wms.urlInput.hint": "Entrez l'URL du service WMS",
|
|
194
228
|
"multiselect.filter.placeholder": "Rechercher",
|
|
195
229
|
"nav.back": "Retour",
|
|
196
230
|
"next": "suivant",
|
|
231
|
+
"ogc.unreachable.unknown": "Le service n'est pas accessible",
|
|
197
232
|
"organisation.filter.placeholder": "Filtrer les résultats",
|
|
198
233
|
"organisation.sort.sortBy": "Trier par :",
|
|
199
234
|
"organisations.hits.found": "{hits, plural, =0{Aucune organisation trouvé} one{1 organisation sur {total} affichée} other{{hits} organisations sur {total} affichées}}",
|
|
@@ -272,6 +307,14 @@
|
|
|
272
307
|
"record.metadata.updateFrequency": "Fréquence de mise à jour des données",
|
|
273
308
|
"record.metadata.updatedOn": "Dernière mise à jour des informations sur les données",
|
|
274
309
|
"record.metadata.usage": "Licences et conditions d'utilisation",
|
|
310
|
+
"record.metadata.userFeedbacks": "Questions / Réponses",
|
|
311
|
+
"record.metadata.userFeedbacks.anonymousUser": "Pour rédiger un commentaire, veuillez vous identifier.",
|
|
312
|
+
"record.metadata.userFeedbacks.newAnswer.buttonTitle": "Publier",
|
|
313
|
+
"record.metadata.userFeedbacks.newAnswer.placeholder": "Répondre...",
|
|
314
|
+
"record.metadata.userFeedbacks.newComment.placeholder": "Rédiger votre commentaire ici...",
|
|
315
|
+
"record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "Les plus récents en premier",
|
|
316
|
+
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "Les plus anciens en premier",
|
|
317
|
+
"record.metadata.userFeedbacks.sortSelector.label": "Trier par ...",
|
|
275
318
|
"record.more.details": "Détails",
|
|
276
319
|
"record.tab.chart": "Graphique",
|
|
277
320
|
"record.tab.data": "Tableau",
|
package/translations/it.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"button.login": "",
|
|
2
3
|
"catalog.figures.datasets": "{count, plural, =0{datasets} one{dataset} other{datasets}}",
|
|
3
4
|
"catalog.figures.organisations": "{count, plural, =0{organizzazioni} one{organizzazione} other{organizzazioni}}",
|
|
4
5
|
"chart.aggregation.average": "media",
|
|
@@ -144,7 +145,28 @@
|
|
|
144
145
|
"downloads.format.unknown": "sconosciuto",
|
|
145
146
|
"downloads.wfs.featuretype.not.found": "Il layer non è stato trovato",
|
|
146
147
|
"dropFile": "Trascina il suo file",
|
|
148
|
+
"editor.record.form.license": "Licenza",
|
|
149
|
+
"editor.record.form.license.cc-by": "",
|
|
150
|
+
"editor.record.form.license.cc-by-sa": "",
|
|
151
|
+
"editor.record.form.license.cc-zero": "",
|
|
152
|
+
"editor.record.form.license.etalab": "Licenza aperta (Etalab)",
|
|
153
|
+
"editor.record.form.license.etalab-v2": "Licenza aperta v2.0 (Etalab)",
|
|
154
|
+
"editor.record.form.license.odbl": "",
|
|
155
|
+
"editor.record.form.license.odc-by": "",
|
|
156
|
+
"editor.record.form.license.pddl": "",
|
|
157
|
+
"editor.record.form.license.unknown": "Non riconosciuta o assente",
|
|
158
|
+
"editor.record.form.resourceUpdated": "",
|
|
159
|
+
"editor.record.form.updateFrequency": "",
|
|
160
|
+
"editor.record.form.updateFrequency.planned": "",
|
|
161
|
+
"editor.record.loadError.body": "",
|
|
162
|
+
"editor.record.loadError.closeMessage": "",
|
|
163
|
+
"editor.record.loadError.title": "",
|
|
147
164
|
"editor.record.publish": "",
|
|
165
|
+
"editor.record.publishError.body": "",
|
|
166
|
+
"editor.record.publishError.closeMessage": "",
|
|
167
|
+
"editor.record.publishError.title": "",
|
|
168
|
+
"editor.record.publishSuccess.body": "",
|
|
169
|
+
"editor.record.publishSuccess.title": "",
|
|
148
170
|
"editor.record.upToDate": "",
|
|
149
171
|
"externalviewer.dataset.unnamed": "Layer del datahub",
|
|
150
172
|
"facets.block.title.OrgForResource": "Organizzazione",
|
|
@@ -159,6 +181,16 @@
|
|
|
159
181
|
"facets.block.title.tag.default": "Tag",
|
|
160
182
|
"facets.block.title.th_regions_tree.default": "Regioni",
|
|
161
183
|
"favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> per accedere a questa funzionalità</div>",
|
|
184
|
+
"input.image.altTextPlaceholder": "",
|
|
185
|
+
"input.image.delete": "",
|
|
186
|
+
"input.image.displayAltTextInput": "",
|
|
187
|
+
"input.image.displayUrlInput": "",
|
|
188
|
+
"input.image.dropFileLabel": "",
|
|
189
|
+
"input.image.selectFileLabel": "",
|
|
190
|
+
"input.image.uploadErrorLabel": "",
|
|
191
|
+
"input.image.uploadErrorRetry": "",
|
|
192
|
+
"input.image.uploadProgressCancel": "",
|
|
193
|
+
"input.image.uploadProgressLabel": "",
|
|
162
194
|
"language.ca": "Catalano",
|
|
163
195
|
"language.cs": "Ceco",
|
|
164
196
|
"language.de": "Tedesco",
|
|
@@ -177,6 +209,7 @@
|
|
|
177
209
|
"map.add.layer": "Aggiungere un layer",
|
|
178
210
|
"map.add.layer.catalog": "Dal catalogo",
|
|
179
211
|
"map.add.layer.file": "Da un file",
|
|
212
|
+
"map.add.layer.ogc.api": "",
|
|
180
213
|
"map.add.layer.wfs": "Da un WFS",
|
|
181
214
|
"map.add.layer.wms": "Da un WMS",
|
|
182
215
|
"map.addFromFile.placeholder": "Clicca o trascina un file qui",
|
|
@@ -188,12 +221,14 @@
|
|
|
188
221
|
"map.loading.data": "Caricamento dati...",
|
|
189
222
|
"map.loading.service": "Caricamento del servizio...",
|
|
190
223
|
"map.navigation.message": "Si prega di utilizzare CTRL + mouse (o due dita su mobile) per navigare sulla mappa",
|
|
224
|
+
"map.ogc.urlInput.hint": "",
|
|
191
225
|
"map.select.layer": "Sorgente dati",
|
|
192
226
|
"map.wfs.urlInput.hint": "Inserisci URL del servizio WFS",
|
|
193
227
|
"map.wms.urlInput.hint": "Inserisci URL del servizio WMS",
|
|
194
228
|
"multiselect.filter.placeholder": "Cerca",
|
|
195
229
|
"nav.back": "Indietro",
|
|
196
230
|
"next": "successivo",
|
|
231
|
+
"ogc.unreachable.unknown": "Il servizio non è accessibile",
|
|
197
232
|
"organisation.filter.placeholder": "Filtra i risultati",
|
|
198
233
|
"organisation.sort.sortBy": "Ordina per:",
|
|
199
234
|
"organisations.hits.found": "{hits, plural, =0{Nessuna organizzazione trovata} one{1 organizzazione su {total} visualizzata} other{{hits} organizzazioni su {total} visualizzate}}",
|
|
@@ -272,6 +307,14 @@
|
|
|
272
307
|
"record.metadata.updateFrequency": "Frequenza di aggiornamento dei dati",
|
|
273
308
|
"record.metadata.updatedOn": "Ultimo aggiornamento delle informazioni sui dati",
|
|
274
309
|
"record.metadata.usage": "Licenze e limiti di utilizzo",
|
|
310
|
+
"record.metadata.userFeedbacks": "",
|
|
311
|
+
"record.metadata.userFeedbacks.anonymousUser": "",
|
|
312
|
+
"record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
|
|
313
|
+
"record.metadata.userFeedbacks.newAnswer.placeholder": "",
|
|
314
|
+
"record.metadata.userFeedbacks.newComment.placeholder": "",
|
|
315
|
+
"record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
|
|
316
|
+
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
|
|
317
|
+
"record.metadata.userFeedbacks.sortSelector.label": "",
|
|
275
318
|
"record.more.details": "Dettagli",
|
|
276
319
|
"record.tab.chart": "Grafico",
|
|
277
320
|
"record.tab.data": "Tabella",
|
package/translations/nl.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"button.login": "",
|
|
2
3
|
"catalog.figures.datasets": "datasets",
|
|
3
4
|
"catalog.figures.organisations": "organisaties",
|
|
4
5
|
"chart.aggregation.average": "gemiddelde",
|
|
@@ -144,7 +145,28 @@
|
|
|
144
145
|
"downloads.format.unknown": "",
|
|
145
146
|
"downloads.wfs.featuretype.not.found": "",
|
|
146
147
|
"dropFile": "",
|
|
148
|
+
"editor.record.form.license": "",
|
|
149
|
+
"editor.record.form.license.cc-by": "",
|
|
150
|
+
"editor.record.form.license.cc-by-sa": "",
|
|
151
|
+
"editor.record.form.license.cc-zero": "",
|
|
152
|
+
"editor.record.form.license.etalab": "",
|
|
153
|
+
"editor.record.form.license.etalab-v2": "",
|
|
154
|
+
"editor.record.form.license.odbl": "",
|
|
155
|
+
"editor.record.form.license.odc-by": "",
|
|
156
|
+
"editor.record.form.license.pddl": "",
|
|
157
|
+
"editor.record.form.license.unknown": "",
|
|
158
|
+
"editor.record.form.resourceUpdated": "",
|
|
159
|
+
"editor.record.form.updateFrequency": "",
|
|
160
|
+
"editor.record.form.updateFrequency.planned": "",
|
|
161
|
+
"editor.record.loadError.body": "",
|
|
162
|
+
"editor.record.loadError.closeMessage": "",
|
|
163
|
+
"editor.record.loadError.title": "",
|
|
147
164
|
"editor.record.publish": "",
|
|
165
|
+
"editor.record.publishError.body": "",
|
|
166
|
+
"editor.record.publishError.closeMessage": "",
|
|
167
|
+
"editor.record.publishError.title": "",
|
|
168
|
+
"editor.record.publishSuccess.body": "",
|
|
169
|
+
"editor.record.publishSuccess.title": "",
|
|
148
170
|
"editor.record.upToDate": "",
|
|
149
171
|
"externalviewer.dataset.unnamed": "",
|
|
150
172
|
"facets.block.title.OrgForResource": "",
|
|
@@ -159,6 +181,16 @@
|
|
|
159
181
|
"facets.block.title.tag.default": "",
|
|
160
182
|
"facets.block.title.th_regions_tree.default": "",
|
|
161
183
|
"favorite.not.authenticated.tooltip": "",
|
|
184
|
+
"input.image.altTextPlaceholder": "",
|
|
185
|
+
"input.image.delete": "",
|
|
186
|
+
"input.image.displayAltTextInput": "",
|
|
187
|
+
"input.image.displayUrlInput": "",
|
|
188
|
+
"input.image.dropFileLabel": "",
|
|
189
|
+
"input.image.selectFileLabel": "",
|
|
190
|
+
"input.image.uploadErrorLabel": "",
|
|
191
|
+
"input.image.uploadErrorRetry": "",
|
|
192
|
+
"input.image.uploadProgressCancel": "",
|
|
193
|
+
"input.image.uploadProgressLabel": "",
|
|
162
194
|
"language.ca": "Catalaans",
|
|
163
195
|
"language.cs": "Tsjechisch",
|
|
164
196
|
"language.de": "Duits",
|
|
@@ -177,6 +209,7 @@
|
|
|
177
209
|
"map.add.layer": "",
|
|
178
210
|
"map.add.layer.catalog": "",
|
|
179
211
|
"map.add.layer.file": "",
|
|
212
|
+
"map.add.layer.ogc.api": "",
|
|
180
213
|
"map.add.layer.wfs": "",
|
|
181
214
|
"map.add.layer.wms": "",
|
|
182
215
|
"map.addFromFile.placeholder": "",
|
|
@@ -188,12 +221,14 @@
|
|
|
188
221
|
"map.loading.data": "",
|
|
189
222
|
"map.loading.service": "",
|
|
190
223
|
"map.navigation.message": "",
|
|
224
|
+
"map.ogc.urlInput.hint": "",
|
|
191
225
|
"map.select.layer": "",
|
|
192
226
|
"map.wfs.urlInput.hint": "",
|
|
193
227
|
"map.wms.urlInput.hint": "",
|
|
194
228
|
"multiselect.filter.placeholder": "",
|
|
195
229
|
"nav.back": "",
|
|
196
230
|
"next": "",
|
|
231
|
+
"ogc.unreachable.unknown": "",
|
|
197
232
|
"organisation.filter.placeholder": "",
|
|
198
233
|
"organisation.sort.sortBy": "",
|
|
199
234
|
"organisations.hits.found": "",
|
|
@@ -272,6 +307,14 @@
|
|
|
272
307
|
"record.metadata.updateFrequency": "",
|
|
273
308
|
"record.metadata.updatedOn": "",
|
|
274
309
|
"record.metadata.usage": "",
|
|
310
|
+
"record.metadata.userFeedbacks": "",
|
|
311
|
+
"record.metadata.userFeedbacks.anonymousUser": "",
|
|
312
|
+
"record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
|
|
313
|
+
"record.metadata.userFeedbacks.newAnswer.placeholder": "",
|
|
314
|
+
"record.metadata.userFeedbacks.newComment.placeholder": "",
|
|
315
|
+
"record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
|
|
316
|
+
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
|
|
317
|
+
"record.metadata.userFeedbacks.sortSelector.label": "",
|
|
275
318
|
"record.more.details": "",
|
|
276
319
|
"record.tab.chart": "",
|
|
277
320
|
"record.tab.data": "",
|
package/translations/pt.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"button.login": "",
|
|
2
3
|
"catalog.figures.datasets": "conjuntos de dados",
|
|
3
4
|
"catalog.figures.organisations": "organizações",
|
|
4
5
|
"chart.aggregation.average": "média",
|
|
@@ -144,7 +145,28 @@
|
|
|
144
145
|
"downloads.format.unknown": "",
|
|
145
146
|
"downloads.wfs.featuretype.not.found": "",
|
|
146
147
|
"dropFile": "",
|
|
148
|
+
"editor.record.form.license": "",
|
|
149
|
+
"editor.record.form.license.cc-by": "",
|
|
150
|
+
"editor.record.form.license.cc-by-sa": "",
|
|
151
|
+
"editor.record.form.license.cc-zero": "",
|
|
152
|
+
"editor.record.form.license.etalab": "",
|
|
153
|
+
"editor.record.form.license.etalab-v2": "",
|
|
154
|
+
"editor.record.form.license.odbl": "",
|
|
155
|
+
"editor.record.form.license.odc-by": "",
|
|
156
|
+
"editor.record.form.license.pddl": "",
|
|
157
|
+
"editor.record.form.license.unknown": "",
|
|
158
|
+
"editor.record.form.resourceUpdated": "",
|
|
159
|
+
"editor.record.form.updateFrequency": "",
|
|
160
|
+
"editor.record.form.updateFrequency.planned": "",
|
|
161
|
+
"editor.record.loadError.body": "",
|
|
162
|
+
"editor.record.loadError.closeMessage": "",
|
|
163
|
+
"editor.record.loadError.title": "",
|
|
147
164
|
"editor.record.publish": "",
|
|
165
|
+
"editor.record.publishError.body": "",
|
|
166
|
+
"editor.record.publishError.closeMessage": "",
|
|
167
|
+
"editor.record.publishError.title": "",
|
|
168
|
+
"editor.record.publishSuccess.body": "",
|
|
169
|
+
"editor.record.publishSuccess.title": "",
|
|
148
170
|
"editor.record.upToDate": "",
|
|
149
171
|
"externalviewer.dataset.unnamed": "",
|
|
150
172
|
"facets.block.title.OrgForResource": "",
|
|
@@ -159,6 +181,16 @@
|
|
|
159
181
|
"facets.block.title.tag.default": "",
|
|
160
182
|
"facets.block.title.th_regions_tree.default": "",
|
|
161
183
|
"favorite.not.authenticated.tooltip": "",
|
|
184
|
+
"input.image.altTextPlaceholder": "",
|
|
185
|
+
"input.image.delete": "",
|
|
186
|
+
"input.image.displayAltTextInput": "",
|
|
187
|
+
"input.image.displayUrlInput": "",
|
|
188
|
+
"input.image.dropFileLabel": "",
|
|
189
|
+
"input.image.selectFileLabel": "",
|
|
190
|
+
"input.image.uploadErrorLabel": "",
|
|
191
|
+
"input.image.uploadErrorRetry": "",
|
|
192
|
+
"input.image.uploadProgressCancel": "",
|
|
193
|
+
"input.image.uploadProgressLabel": "",
|
|
162
194
|
"language.ca": "Catalão",
|
|
163
195
|
"language.cs": "Tcheco",
|
|
164
196
|
"language.de": "Alemão",
|
|
@@ -177,6 +209,7 @@
|
|
|
177
209
|
"map.add.layer": "",
|
|
178
210
|
"map.add.layer.catalog": "",
|
|
179
211
|
"map.add.layer.file": "",
|
|
212
|
+
"map.add.layer.ogc.api": "",
|
|
180
213
|
"map.add.layer.wfs": "",
|
|
181
214
|
"map.add.layer.wms": "",
|
|
182
215
|
"map.addFromFile.placeholder": "",
|
|
@@ -188,12 +221,14 @@
|
|
|
188
221
|
"map.loading.data": "",
|
|
189
222
|
"map.loading.service": "",
|
|
190
223
|
"map.navigation.message": "",
|
|
224
|
+
"map.ogc.urlInput.hint": "",
|
|
191
225
|
"map.select.layer": "",
|
|
192
226
|
"map.wfs.urlInput.hint": "",
|
|
193
227
|
"map.wms.urlInput.hint": "",
|
|
194
228
|
"multiselect.filter.placeholder": "",
|
|
195
229
|
"nav.back": "",
|
|
196
230
|
"next": "",
|
|
231
|
+
"ogc.unreachable.unknown": "",
|
|
197
232
|
"organisation.filter.placeholder": "",
|
|
198
233
|
"organisation.sort.sortBy": "",
|
|
199
234
|
"organisations.hits.found": "",
|
|
@@ -272,6 +307,14 @@
|
|
|
272
307
|
"record.metadata.updateFrequency": "",
|
|
273
308
|
"record.metadata.updatedOn": "",
|
|
274
309
|
"record.metadata.usage": "",
|
|
310
|
+
"record.metadata.userFeedbacks": "",
|
|
311
|
+
"record.metadata.userFeedbacks.anonymousUser": "",
|
|
312
|
+
"record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
|
|
313
|
+
"record.metadata.userFeedbacks.newAnswer.placeholder": "",
|
|
314
|
+
"record.metadata.userFeedbacks.newComment.placeholder": "",
|
|
315
|
+
"record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
|
|
316
|
+
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
|
|
317
|
+
"record.metadata.userFeedbacks.sortSelector.label": "",
|
|
275
318
|
"record.more.details": "",
|
|
276
319
|
"record.tab.chart": "",
|
|
277
320
|
"record.tab.data": "",
|
package/translations/sk.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"button.login": "",
|
|
2
3
|
"catalog.figures.datasets": "{count, plural, =0{datasety} one{dataset} other{datasety}}",
|
|
3
4
|
"catalog.figures.organisations": "{count, plural, =0{organizácie} one{organizácia} other{organizácie}}",
|
|
4
5
|
"chart.aggregation.average": "priemer",
|
|
@@ -144,7 +145,28 @@
|
|
|
144
145
|
"downloads.format.unknown": "neznámy",
|
|
145
146
|
"downloads.wfs.featuretype.not.found": "Vrstva nebola nájdená",
|
|
146
147
|
"dropFile": "nahrať súbor",
|
|
148
|
+
"editor.record.form.license": "Licencia",
|
|
149
|
+
"editor.record.form.license.cc-by": "",
|
|
150
|
+
"editor.record.form.license.cc-by-sa": "",
|
|
151
|
+
"editor.record.form.license.cc-zero": "",
|
|
152
|
+
"editor.record.form.license.etalab": "",
|
|
153
|
+
"editor.record.form.license.etalab-v2": "",
|
|
154
|
+
"editor.record.form.license.odbl": "",
|
|
155
|
+
"editor.record.form.license.odc-by": "",
|
|
156
|
+
"editor.record.form.license.pddl": "",
|
|
157
|
+
"editor.record.form.license.unknown": "Neznáme alebo chýbajúce",
|
|
158
|
+
"editor.record.form.resourceUpdated": "",
|
|
159
|
+
"editor.record.form.updateFrequency": "",
|
|
160
|
+
"editor.record.form.updateFrequency.planned": "",
|
|
161
|
+
"editor.record.loadError.body": "",
|
|
162
|
+
"editor.record.loadError.closeMessage": "",
|
|
163
|
+
"editor.record.loadError.title": "",
|
|
147
164
|
"editor.record.publish": "",
|
|
165
|
+
"editor.record.publishError.body": "",
|
|
166
|
+
"editor.record.publishError.closeMessage": "",
|
|
167
|
+
"editor.record.publishError.title": "",
|
|
168
|
+
"editor.record.publishSuccess.body": "",
|
|
169
|
+
"editor.record.publishSuccess.title": "",
|
|
148
170
|
"editor.record.upToDate": "",
|
|
149
171
|
"externalviewer.dataset.unnamed": "",
|
|
150
172
|
"facets.block.title.OrgForResource": "Organizácia",
|
|
@@ -159,6 +181,16 @@
|
|
|
159
181
|
"facets.block.title.tag.default": "Štítok",
|
|
160
182
|
"facets.block.title.th_regions_tree.default": "Regióny",
|
|
161
183
|
"favorite.not.authenticated.tooltip": "<div><a href='{link}'>Prihlásiť sa</a> pre prístup k tejto funkcii</div>",
|
|
184
|
+
"input.image.altTextPlaceholder": "",
|
|
185
|
+
"input.image.delete": "",
|
|
186
|
+
"input.image.displayAltTextInput": "",
|
|
187
|
+
"input.image.displayUrlInput": "",
|
|
188
|
+
"input.image.dropFileLabel": "",
|
|
189
|
+
"input.image.selectFileLabel": "",
|
|
190
|
+
"input.image.uploadErrorLabel": "",
|
|
191
|
+
"input.image.uploadErrorRetry": "",
|
|
192
|
+
"input.image.uploadProgressCancel": "",
|
|
193
|
+
"input.image.uploadProgressLabel": "",
|
|
162
194
|
"language.ca": "Catalánsky",
|
|
163
195
|
"language.cs": "Čeština",
|
|
164
196
|
"language.de": "Nemecky",
|
|
@@ -177,6 +209,7 @@
|
|
|
177
209
|
"map.add.layer": "Pridať vrstvu",
|
|
178
210
|
"map.add.layer.catalog": "Z katalógu",
|
|
179
211
|
"map.add.layer.file": "Zo súboru",
|
|
212
|
+
"map.add.layer.ogc.api": "",
|
|
180
213
|
"map.add.layer.wfs": "Z WFS",
|
|
181
214
|
"map.add.layer.wms": "Z WMS",
|
|
182
215
|
"map.addFromFile.placeholder": "Kliknite na tlačidlo alebo sem vložte súbor",
|
|
@@ -188,12 +221,14 @@
|
|
|
188
221
|
"map.loading.data": "Načítavanie dát mapy...",
|
|
189
222
|
"map.loading.service": "Načítavanie služieb...",
|
|
190
223
|
"map.navigation.message": "Použite prosím CTRL + myš (alebo dva prsty na mobilnom zariadení) na navigáciu po mape",
|
|
224
|
+
"map.ogc.urlInput.hint": "",
|
|
191
225
|
"map.select.layer": "Zdroj dát",
|
|
192
226
|
"map.wfs.urlInput.hint": "Zadajte URL adresu služby WFS",
|
|
193
227
|
"map.wms.urlInput.hint": "Zadajte URL adresu služby WMS",
|
|
194
228
|
"multiselect.filter.placeholder": "Hľadať",
|
|
195
229
|
"nav.back": "Späť",
|
|
196
230
|
"next": "Ďalej",
|
|
231
|
+
"ogc.unreachable.unknown": "So službou sa nedalo spojiť",
|
|
197
232
|
"organisation.filter.placeholder": "Filtrovať výsledky",
|
|
198
233
|
"organisation.sort.sortBy": "Zoradiť podľa:",
|
|
199
234
|
"organisations.hits.found": "{hits, plural, =0{Žiadna organizácia nenájdená} other{{hits} celkovo {total} organizácií nájdených}}",
|
|
@@ -272,6 +307,14 @@
|
|
|
272
307
|
"record.metadata.updateFrequency": "Frekvencia aktualizácie metadát",
|
|
273
308
|
"record.metadata.updatedOn": "Posledná aktualizácia metadát",
|
|
274
309
|
"record.metadata.usage": "Použitie a obmedzenia",
|
|
310
|
+
"record.metadata.userFeedbacks": "",
|
|
311
|
+
"record.metadata.userFeedbacks.anonymousUser": "",
|
|
312
|
+
"record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
|
|
313
|
+
"record.metadata.userFeedbacks.newAnswer.placeholder": "",
|
|
314
|
+
"record.metadata.userFeedbacks.newComment.placeholder": "",
|
|
315
|
+
"record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
|
|
316
|
+
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
|
|
317
|
+
"record.metadata.userFeedbacks.sortSelector.label": "",
|
|
275
318
|
"record.more.details": "Čítať viac",
|
|
276
319
|
"record.tab.chart": "Graf",
|
|
277
320
|
"record.tab.data": "Tabuľka",
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { Gn4FieldMapper } from './gn4.field.mapper';
|
|
2
|
-
import { lastValueFrom } from 'rxjs';
|
|
3
|
-
import { OrganizationsServiceInterface } from '../../../../../../libs/common/domain/src/lib/organizations.service.interface';
|
|
4
|
-
import { MetadataBaseMapper } from '../metadata-base.mapper';
|
|
5
|
-
import { Injectable } from '@angular/core';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
import * as i1 from "./gn4.field.mapper";
|
|
8
|
-
import * as i2 from "../../../../../../libs/common/domain/src/lib/organizations.service.interface";
|
|
9
|
-
export class Gn4MetadataMapper extends MetadataBaseMapper {
|
|
10
|
-
constructor(fieldMapper, orgsService) {
|
|
11
|
-
super();
|
|
12
|
-
this.fieldMapper = fieldMapper;
|
|
13
|
-
this.orgsService = orgsService;
|
|
14
|
-
}
|
|
15
|
-
readRecord(document) {
|
|
16
|
-
const { _source } = document;
|
|
17
|
-
const emptyRecord = {
|
|
18
|
-
kind: 'dataset',
|
|
19
|
-
status: null,
|
|
20
|
-
lineage: null,
|
|
21
|
-
recordUpdated: null,
|
|
22
|
-
recordPublished: null,
|
|
23
|
-
ownerOrganization: null,
|
|
24
|
-
licenses: [],
|
|
25
|
-
legalConstraints: [],
|
|
26
|
-
securityConstraints: [],
|
|
27
|
-
otherConstraints: [],
|
|
28
|
-
contacts: [],
|
|
29
|
-
contactsForResource: [],
|
|
30
|
-
keywords: [],
|
|
31
|
-
topics: [],
|
|
32
|
-
spatialExtents: [],
|
|
33
|
-
temporalExtents: [],
|
|
34
|
-
overviews: [],
|
|
35
|
-
languages: [],
|
|
36
|
-
};
|
|
37
|
-
const record = Object.keys(_source).reduce((prev, fieldName) => this.fieldMapper.getMappingFn(fieldName)(prev, _source), emptyRecord);
|
|
38
|
-
return lastValueFrom(this.orgsService.addOrganizationToRecordFromSource(_source, record));
|
|
39
|
-
}
|
|
40
|
-
writeRecord(record) {
|
|
41
|
-
throw new Error('not implemented');
|
|
42
|
-
}
|
|
43
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: Gn4MetadataMapper, deps: [{ token: i1.Gn4FieldMapper }, { token: i2.OrganizationsServiceInterface }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
44
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: Gn4MetadataMapper, providedIn: 'root' }); }
|
|
45
|
-
}
|
|
46
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: Gn4MetadataMapper, decorators: [{
|
|
47
|
-
type: Injectable,
|
|
48
|
-
args: [{
|
|
49
|
-
providedIn: 'root',
|
|
50
|
-
}]
|
|
51
|
-
}], ctorParameters: function () { return [{ type: i1.Gn4FieldMapper }, { type: i2.OrganizationsServiceInterface }]; } });
|
|
52
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ240Lm1ldGFkYXRhLm1hcHBlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYXBpL21ldGFkYXRhLWNvbnZlcnRlci9zcmMvbGliL2duNC9nbjQubWV0YWRhdGEubWFwcGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQTtBQUNuRCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sTUFBTSxDQUFBO0FBQ3BDLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLDhFQUE4RSxDQUFBO0FBRTVILE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHlCQUF5QixDQUFBO0FBQzVELE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUE7Ozs7QUFNMUMsTUFBTSxPQUFPLGlCQUFrQixTQUFRLGtCQUE2QjtJQUNsRSxZQUNVLFdBQTJCLEVBQzNCLFdBQTBDO1FBRWxELEtBQUssRUFBRSxDQUFBO1FBSEMsZ0JBQVcsR0FBWCxXQUFXLENBQWdCO1FBQzNCLGdCQUFXLEdBQVgsV0FBVyxDQUErQjtJQUdwRCxDQUFDO0lBRUQsVUFBVSxDQUFDLFFBQW1CO1FBQzVCLE1BQU0sRUFBRSxPQUFPLEVBQUUsR0FBRyxRQUFRLENBQUE7UUFDNUIsTUFBTSxXQUFXLEdBQTJCO1lBQzFDLElBQUksRUFBRSxTQUFTO1lBQ2YsTUFBTSxFQUFFLElBQUk7WUFDWixPQUFPLEVBQUUsSUFBSTtZQUNiLGFBQWEsRUFBRSxJQUFJO1lBQ25CLGVBQWUsRUFBRSxJQUFJO1lBQ3JCLGlCQUFpQixFQUFFLElBQUk7WUFDdkIsUUFBUSxFQUFFLEVBQUU7WUFDWixnQkFBZ0IsRUFBRSxFQUFFO1lBQ3BCLG1CQUFtQixFQUFFLEVBQUU7WUFDdkIsZ0JBQWdCLEVBQUUsRUFBRTtZQUNwQixRQUFRLEVBQUUsRUFBRTtZQUNaLG1CQUFtQixFQUFFLEVBQUU7WUFDdkIsUUFBUSxFQUFFLEVBQUU7WUFDWixNQUFNLEVBQUUsRUFBRTtZQUNWLGNBQWMsRUFBRSxFQUFFO1lBQ2xCLGVBQWUsRUFBRSxFQUFFO1lBQ25CLFNBQVMsRUFBRSxFQUFFO1lBQ2IsU0FBUyxFQUFFLEVBQUU7U0FDZCxDQUFBO1FBQ0QsTUFBTSxNQUFNLEdBQWtCLE1BQU0sQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLENBQUMsTUFBTSxDQUN2RCxDQUFDLElBQUksRUFBRSxTQUFTLEVBQUUsRUFBRSxDQUNsQixJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsQ0FBQyxJQUFJLEVBQUUsT0FBTyxDQUFDLEVBQ3pELFdBQVcsQ0FDWixDQUFBO1FBQ0QsT0FBTyxhQUFhLENBQ2xCLElBQUksQ0FBQyxXQUFXLENBQUMsaUNBQWlDLENBQUMsT0FBTyxFQUFFLE1BQU0sQ0FBQyxDQUNwRSxDQUFBO0lBQ0gsQ0FBQztJQUVELFdBQVcsQ0FBQyxNQUFxQjtRQUMvQixNQUFNLElBQUksS0FBSyxDQUFDLGlCQUFpQixDQUFDLENBQUE7SUFDcEMsQ0FBQzs4R0ExQ1UsaUJBQWlCO2tIQUFqQixpQkFBaUIsY0FGaEIsTUFBTTs7MkZBRVAsaUJBQWlCO2tCQUg3QixVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEduNEZpZWxkTWFwcGVyIH0gZnJvbSAnLi9nbjQuZmllbGQubWFwcGVyJ1xuaW1wb3J0IHsgbGFzdFZhbHVlRnJvbSB9IGZyb20gJ3J4anMnXG5pbXBvcnQgeyBPcmdhbml6YXRpb25zU2VydmljZUludGVyZmFjZSB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tbW9uL2RvbWFpbi9zcmMvbGliL29yZ2FuaXphdGlvbnMuc2VydmljZS5pbnRlcmZhY2UnXG5pbXBvcnQgeyBDYXRhbG9nUmVjb3JkIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vZG9tYWluL3NyYy9saWIvbW9kZWwvcmVjb3JkJ1xuaW1wb3J0IHsgTWV0YWRhdGFCYXNlTWFwcGVyIH0gZnJvbSAnLi4vbWV0YWRhdGEtYmFzZS5tYXBwZXInXG5pbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IEduNFJlY29yZCB9IGZyb20gJy4vdHlwZXMnXG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnLFxufSlcbmV4cG9ydCBjbGFzcyBHbjRNZXRhZGF0YU1hcHBlciBleHRlbmRzIE1ldGFkYXRhQmFzZU1hcHBlcjxHbjRSZWNvcmQ+IHtcbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSBmaWVsZE1hcHBlcjogR240RmllbGRNYXBwZXIsXG4gICAgcHJpdmF0ZSBvcmdzU2VydmljZTogT3JnYW5pemF0aW9uc1NlcnZpY2VJbnRlcmZhY2VcbiAgKSB7XG4gICAgc3VwZXIoKVxuICB9XG5cbiAgcmVhZFJlY29yZChkb2N1bWVudDogR240UmVjb3JkKTogUHJvbWlzZTxDYXRhbG9nUmVjb3JkPiB7XG4gICAgY29uc3QgeyBfc291cmNlIH0gPSBkb2N1bWVudFxuICAgIGNvbnN0IGVtcHR5UmVjb3JkOiBQYXJ0aWFsPENhdGFsb2dSZWNvcmQ+ID0ge1xuICAgICAga2luZDogJ2RhdGFzZXQnLFxuICAgICAgc3RhdHVzOiBudWxsLFxuICAgICAgbGluZWFnZTogbnVsbCxcbiAgICAgIHJlY29yZFVwZGF0ZWQ6IG51bGwsXG4gICAgICByZWNvcmRQdWJsaXNoZWQ6IG51bGwsXG4gICAgICBvd25lck9yZ2FuaXphdGlvbjogbnVsbCxcbiAgICAgIGxpY2Vuc2VzOiBbXSxcbiAgICAgIGxlZ2FsQ29uc3RyYWludHM6IFtdLFxuICAgICAgc2VjdXJpdHlDb25zdHJhaW50czogW10sXG4gICAgICBvdGhlckNvbnN0cmFpbnRzOiBbXSxcbiAgICAgIGNvbnRhY3RzOiBbXSxcbiAgICAgIGNvbnRhY3RzRm9yUmVzb3VyY2U6IFtdLFxuICAgICAga2V5d29yZHM6IFtdLFxuICAgICAgdG9waWNzOiBbXSxcbiAgICAgIHNwYXRpYWxFeHRlbnRzOiBbXSxcbiAgICAgIHRlbXBvcmFsRXh0ZW50czogW10sXG4gICAgICBvdmVydmlld3M6IFtdLFxuICAgICAgbGFuZ3VhZ2VzOiBbXSxcbiAgICB9XG4gICAgY29uc3QgcmVjb3JkOiBDYXRhbG9nUmVjb3JkID0gT2JqZWN0LmtleXMoX3NvdXJjZSkucmVkdWNlKFxuICAgICAgKHByZXYsIGZpZWxkTmFtZSkgPT5cbiAgICAgICAgdGhpcy5maWVsZE1hcHBlci5nZXRNYXBwaW5nRm4oZmllbGROYW1lKShwcmV2LCBfc291cmNlKSxcbiAgICAgIGVtcHR5UmVjb3JkXG4gICAgKVxuICAgIHJldHVybiBsYXN0VmFsdWVGcm9tKFxuICAgICAgdGhpcy5vcmdzU2VydmljZS5hZGRPcmdhbml6YXRpb25Ub1JlY29yZEZyb21Tb3VyY2UoX3NvdXJjZSwgcmVjb3JkKVxuICAgIClcbiAgfVxuXG4gIHdyaXRlUmVjb3JkKHJlY29yZDogQ2F0YWxvZ1JlY29yZCk6IFByb21pc2U8R240UmVjb3JkPiB7XG4gICAgdGhyb3cgbmV3IEVycm9yKCdub3QgaW1wbGVtZW50ZWQnKVxuICB9XG59XG4iXX0=
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export function getKeywordTypeFromKeywordTypeCode(typeCode) {
|
|
2
|
-
if (!typeCode)
|
|
3
|
-
return 'other';
|
|
4
|
-
switch (typeCode) {
|
|
5
|
-
case 'theme':
|
|
6
|
-
case 'place':
|
|
7
|
-
case 'temporal':
|
|
8
|
-
case 'other':
|
|
9
|
-
return typeCode;
|
|
10
|
-
default:
|
|
11
|
-
return 'other';
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2V5d29yZC5tYXBwZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FwaS9tZXRhZGF0YS1jb252ZXJ0ZXIvc3JjL2xpYi9pc28xOTEzOS9jb2RlbGlzdHMva2V5d29yZC5tYXBwZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxVQUFVLGlDQUFpQyxDQUMvQyxRQUFnQjtJQUVoQixJQUFJLENBQUMsUUFBUTtRQUFFLE9BQU8sT0FBTyxDQUFBO0lBQzdCLFFBQVEsUUFBUSxFQUFFO1FBQ2hCLEtBQUssT0FBTyxDQUFDO1FBQ2IsS0FBSyxPQUFPLENBQUM7UUFDYixLQUFLLFVBQVUsQ0FBQztRQUNoQixLQUFLLE9BQU87WUFDVixPQUFPLFFBQVEsQ0FBQTtRQUNqQjtZQUNFLE9BQU8sT0FBTyxDQUFBO0tBQ2pCO0FBQ0gsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEtleXdvcmRUeXBlIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vZG9tYWluL3NyYy9saWIvbW9kZWwvcmVjb3JkJ1xuXG5leHBvcnQgZnVuY3Rpb24gZ2V0S2V5d29yZFR5cGVGcm9tS2V5d29yZFR5cGVDb2RlKFxuICB0eXBlQ29kZTogc3RyaW5nXG4pOiBLZXl3b3JkVHlwZSB7XG4gIGlmICghdHlwZUNvZGUpIHJldHVybiAnb3RoZXInXG4gIHN3aXRjaCAodHlwZUNvZGUpIHtcbiAgICBjYXNlICd0aGVtZSc6XG4gICAgY2FzZSAncGxhY2UnOlxuICAgIGNhc2UgJ3RlbXBvcmFsJzpcbiAgICBjYXNlICdvdGhlcic6XG4gICAgICByZXR1cm4gdHlwZUNvZGVcbiAgICBkZWZhdWx0OlxuICAgICAgcmV0dXJuICdvdGhlcidcbiAgfVxufVxuIl19
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
export function getRoleFromRoleCode(roleCode) {
|
|
2
|
-
if (!roleCode)
|
|
3
|
-
return 'unspecified';
|
|
4
|
-
switch (roleCode) {
|
|
5
|
-
case 'author':
|
|
6
|
-
case 'coAuthor':
|
|
7
|
-
return 'author';
|
|
8
|
-
case 'originator':
|
|
9
|
-
return 'originator';
|
|
10
|
-
case 'principalInvestigator':
|
|
11
|
-
return 'principal_investigator';
|
|
12
|
-
case 'resourceProvider':
|
|
13
|
-
return 'resource_provider';
|
|
14
|
-
case 'processor':
|
|
15
|
-
return 'processor';
|
|
16
|
-
case 'custodian':
|
|
17
|
-
return 'custodian';
|
|
18
|
-
case 'owner':
|
|
19
|
-
return 'owner';
|
|
20
|
-
case 'pointOfContact':
|
|
21
|
-
return 'point_of_contact';
|
|
22
|
-
case 'publisher':
|
|
23
|
-
return 'publisher';
|
|
24
|
-
case 'distributor':
|
|
25
|
-
return 'distributor';
|
|
26
|
-
case 'user':
|
|
27
|
-
return 'user';
|
|
28
|
-
case 'collaborator':
|
|
29
|
-
return 'collaborator';
|
|
30
|
-
case 'editor':
|
|
31
|
-
return 'editor';
|
|
32
|
-
case 'contributor':
|
|
33
|
-
return 'contributor';
|
|
34
|
-
case 'stakeholder':
|
|
35
|
-
return 'stakeholder';
|
|
36
|
-
case 'sponsor':
|
|
37
|
-
return 'sponsor';
|
|
38
|
-
case 'funder':
|
|
39
|
-
return 'funder';
|
|
40
|
-
case 'rightsHolder':
|
|
41
|
-
return 'rights_holder';
|
|
42
|
-
case 'mediator':
|
|
43
|
-
return 'mediator';
|
|
44
|
-
default:
|
|
45
|
-
return 'other';
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm9sZS5tYXBwZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2FwaS9tZXRhZGF0YS1jb252ZXJ0ZXIvc3JjL2xpYi9pc28xOTEzOS9jb2RlbGlzdHMvcm9sZS5tYXBwZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxVQUFVLG1CQUFtQixDQUFDLFFBQWdCO0lBQ2xELElBQUksQ0FBQyxRQUFRO1FBQUUsT0FBTyxhQUFhLENBQUE7SUFDbkMsUUFBUSxRQUFRLEVBQUU7UUFDaEIsS0FBSyxRQUFRLENBQUM7UUFDZCxLQUFLLFVBQVU7WUFDYixPQUFPLFFBQVEsQ0FBQTtRQUNqQixLQUFLLFlBQVk7WUFDZixPQUFPLFlBQVksQ0FBQTtRQUNyQixLQUFLLHVCQUF1QjtZQUMxQixPQUFPLHdCQUF3QixDQUFBO1FBQ2pDLEtBQUssa0JBQWtCO1lBQ3JCLE9BQU8sbUJBQW1CLENBQUE7UUFDNUIsS0FBSyxXQUFXO1lBQ2QsT0FBTyxXQUFXLENBQUE7UUFDcEIsS0FBSyxXQUFXO1lBQ2QsT0FBTyxXQUFXLENBQUE7UUFDcEIsS0FBSyxPQUFPO1lBQ1YsT0FBTyxPQUFPLENBQUE7UUFDaEIsS0FBSyxnQkFBZ0I7WUFDbkIsT0FBTyxrQkFBa0IsQ0FBQTtRQUMzQixLQUFLLFdBQVc7WUFDZCxPQUFPLFdBQVcsQ0FBQTtRQUNwQixLQUFLLGFBQWE7WUFDaEIsT0FBTyxhQUFhLENBQUE7UUFDdEIsS0FBSyxNQUFNO1lBQ1QsT0FBTyxNQUFNLENBQUE7UUFDZixLQUFLLGNBQWM7WUFDakIsT0FBTyxjQUFjLENBQUE7UUFDdkIsS0FBSyxRQUFRO1lBQ1gsT0FBTyxRQUFRLENBQUE7UUFDakIsS0FBSyxhQUFhO1lBQ2hCLE9BQU8sYUFBYSxDQUFBO1FBQ3RCLEtBQUssYUFBYTtZQUNoQixPQUFPLGFBQWEsQ0FBQTtRQUN0QixLQUFLLFNBQVM7WUFDWixPQUFPLFNBQVMsQ0FBQTtRQUNsQixLQUFLLFFBQVE7WUFDWCxPQUFPLFFBQVEsQ0FBQTtRQUNqQixLQUFLLGNBQWM7WUFDakIsT0FBTyxlQUFlLENBQUE7UUFDeEIsS0FBSyxVQUFVO1lBQ2IsT0FBTyxVQUFVLENBQUE7UUFDbkI7WUFDRSxPQUFPLE9BQU8sQ0FBQTtLQUNqQjtBQUNILENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBSb2xlIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vZG9tYWluL3NyYy9saWIvbW9kZWwvcmVjb3JkJ1xuXG5leHBvcnQgZnVuY3Rpb24gZ2V0Um9sZUZyb21Sb2xlQ29kZShyb2xlQ29kZTogc3RyaW5nKTogUm9sZSB7XG4gIGlmICghcm9sZUNvZGUpIHJldHVybiAndW5zcGVjaWZpZWQnXG4gIHN3aXRjaCAocm9sZUNvZGUpIHtcbiAgICBjYXNlICdhdXRob3InOlxuICAgIGNhc2UgJ2NvQXV0aG9yJzpcbiAgICAgIHJldHVybiAnYXV0aG9yJ1xuICAgIGNhc2UgJ29yaWdpbmF0b3InOlxuICAgICAgcmV0dXJuICdvcmlnaW5hdG9yJ1xuICAgIGNhc2UgJ3ByaW5jaXBhbEludmVzdGlnYXRvcic6XG4gICAgICByZXR1cm4gJ3ByaW5jaXBhbF9pbnZlc3RpZ2F0b3InXG4gICAgY2FzZSAncmVzb3VyY2VQcm92aWRlcic6XG4gICAgICByZXR1cm4gJ3Jlc291cmNlX3Byb3ZpZGVyJ1xuICAgIGNhc2UgJ3Byb2Nlc3Nvcic6XG4gICAgICByZXR1cm4gJ3Byb2Nlc3NvcidcbiAgICBjYXNlICdjdXN0b2RpYW4nOlxuICAgICAgcmV0dXJuICdjdXN0b2RpYW4nXG4gICAgY2FzZSAnb3duZXInOlxuICAgICAgcmV0dXJuICdvd25lcidcbiAgICBjYXNlICdwb2ludE9mQ29udGFjdCc6XG4gICAgICByZXR1cm4gJ3BvaW50X29mX2NvbnRhY3QnXG4gICAgY2FzZSAncHVibGlzaGVyJzpcbiAgICAgIHJldHVybiAncHVibGlzaGVyJ1xuICAgIGNhc2UgJ2Rpc3RyaWJ1dG9yJzpcbiAgICAgIHJldHVybiAnZGlzdHJpYnV0b3InXG4gICAgY2FzZSAndXNlcic6XG4gICAgICByZXR1cm4gJ3VzZXInXG4gICAgY2FzZSAnY29sbGFib3JhdG9yJzpcbiAgICAgIHJldHVybiAnY29sbGFib3JhdG9yJ1xuICAgIGNhc2UgJ2VkaXRvcic6XG4gICAgICByZXR1cm4gJ2VkaXRvcidcbiAgICBjYXNlICdjb250cmlidXRvcic6XG4gICAgICByZXR1cm4gJ2NvbnRyaWJ1dG9yJ1xuICAgIGNhc2UgJ3N0YWtlaG9sZGVyJzpcbiAgICAgIHJldHVybiAnc3Rha2Vob2xkZXInXG4gICAgY2FzZSAnc3BvbnNvcic6XG4gICAgICByZXR1cm4gJ3Nwb25zb3InXG4gICAgY2FzZSAnZnVuZGVyJzpcbiAgICAgIHJldHVybiAnZnVuZGVyJ1xuICAgIGNhc2UgJ3JpZ2h0c0hvbGRlcic6XG4gICAgICByZXR1cm4gJ3JpZ2h0c19ob2xkZXInXG4gICAgY2FzZSAnbWVkaWF0b3InOlxuICAgICAgcmV0dXJuICdtZWRpYXRvcidcbiAgICBkZWZhdWx0OlxuICAgICAgcmV0dXJuICdvdGhlcidcbiAgfVxufVxuIl19
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export function getStatusFromStatusCode(statusCode) {
|
|
2
|
-
switch (statusCode) {
|
|
3
|
-
case 'completed':
|
|
4
|
-
return 'completed';
|
|
5
|
-
case 'historicalArchive':
|
|
6
|
-
return 'removed';
|
|
7
|
-
case 'obsolete':
|
|
8
|
-
return 'deprecated';
|
|
9
|
-
case 'onGoing':
|
|
10
|
-
return 'ongoing';
|
|
11
|
-
case 'planned':
|
|
12
|
-
case 'required':
|
|
13
|
-
case 'underDevelopment':
|
|
14
|
-
default:
|
|
15
|
-
return 'under_development';
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RhdHVzLm1hcHBlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYXBpL21ldGFkYXRhLWNvbnZlcnRlci9zcmMvbGliL2lzbzE5MTM5L2NvZGVsaXN0cy9zdGF0dXMubWFwcGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sVUFBVSx1QkFBdUIsQ0FBQyxVQUFrQjtJQUN4RCxRQUFRLFVBQVUsRUFBRTtRQUNsQixLQUFLLFdBQVc7WUFDZCxPQUFPLFdBQVcsQ0FBQTtRQUNwQixLQUFLLG1CQUFtQjtZQUN0QixPQUFPLFNBQVMsQ0FBQTtRQUNsQixLQUFLLFVBQVU7WUFDYixPQUFPLFlBQVksQ0FBQTtRQUNyQixLQUFLLFNBQVM7WUFDWixPQUFPLFNBQVMsQ0FBQTtRQUNsQixLQUFLLFNBQVMsQ0FBQztRQUNmLEtBQUssVUFBVSxDQUFDO1FBQ2hCLEtBQUssa0JBQWtCLENBQUM7UUFDeEI7WUFDRSxPQUFPLG1CQUFtQixDQUFBO0tBQzdCO0FBQ0gsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFJlY29yZFN0YXR1cyB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tbW9uL2RvbWFpbi9zcmMvbGliL21vZGVsL3JlY29yZCdcblxuZXhwb3J0IGZ1bmN0aW9uIGdldFN0YXR1c0Zyb21TdGF0dXNDb2RlKHN0YXR1c0NvZGU6IHN0cmluZyk6IFJlY29yZFN0YXR1cyB7XG4gIHN3aXRjaCAoc3RhdHVzQ29kZSkge1xuICAgIGNhc2UgJ2NvbXBsZXRlZCc6XG4gICAgICByZXR1cm4gJ2NvbXBsZXRlZCdcbiAgICBjYXNlICdoaXN0b3JpY2FsQXJjaGl2ZSc6XG4gICAgICByZXR1cm4gJ3JlbW92ZWQnXG4gICAgY2FzZSAnb2Jzb2xldGUnOlxuICAgICAgcmV0dXJuICdkZXByZWNhdGVkJ1xuICAgIGNhc2UgJ29uR29pbmcnOlxuICAgICAgcmV0dXJuICdvbmdvaW5nJ1xuICAgIGNhc2UgJ3BsYW5uZWQnOlxuICAgIGNhc2UgJ3JlcXVpcmVkJzpcbiAgICBjYXNlICd1bmRlckRldmVsb3BtZW50JzpcbiAgICBkZWZhdWx0OlxuICAgICAgcmV0dXJuICd1bmRlcl9kZXZlbG9wbWVudCdcbiAgfVxufVxuIl19
|