geonetwork-ui 2.4.0-dev.e97caaf2 → 2.4.0-dev.f5019723
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/libs/api/metadata-converter/src/index.mjs +4 -1
- package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +64 -0
- package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +254 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/index.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.mjs +17 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +196 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +46 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +74 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +27 -0
- package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +11 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +6 -6
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +17 -29
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +8 -15
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +6 -6
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +54 -54
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +35 -3
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +78 -39
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +41 -7
- package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
- package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -4
- package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +6 -6
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +10 -7
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +40 -50
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
- package/esm2022/libs/feature/editor/src/index.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +5 -5
- package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +4 -16
- package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +4 -2
- package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +95 -0
- package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +109 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +15 -32
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +19 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +23 -10
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +38 -60
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +86 -11
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +4 -8
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +36 -7
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +35 -59
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +14 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -2
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +41 -7
- package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +5 -5
- package/esm2022/libs/feature/map/src/index.mjs +2 -9
- package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +4 -7
- package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +9 -15
- package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +13 -44
- package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +3 -2
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +16 -16
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +16 -10
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +10 -8
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +11 -7
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +10 -6
- package/esm2022/libs/feature/map/src/lib/constant/index.mjs +1 -2
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +4 -44
- package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +43 -29
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +17 -8
- package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +27 -0
- package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +4 -168
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +21 -17
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +14 -8
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +40 -52
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +4 -2
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +12 -6
- package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +7 -7
- package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +1 -6
- package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
- package/esm2022/libs/ui/elements/src/index.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +6 -6
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
- package/esm2022/libs/ui/inputs/src/index.mjs +5 -1
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +7 -4
- package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +5 -3
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +8 -1
- package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +11 -4
- package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +9 -3
- package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
- package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +5 -4
- package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +6 -4
- package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -4
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +4 -3
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +2 -7
- package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +3 -3
- package/esm2022/libs/ui/layout/src/index.mjs +3 -1
- package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +5 -3
- package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
- package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
- package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
- package/esm2022/libs/ui/map/src/index.mjs +4 -3
- package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +8 -6
- package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +137 -0
- package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +13 -0
- package/esm2022/libs/ui/map/src/lib/map-utils.mjs +37 -0
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +8 -8
- package/esm2022/libs/util/app-config/src/index.mjs +2 -1
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
- package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +27 -0
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +2 -1
- package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
- package/esm2022/translations/de.json +28 -2
- package/esm2022/translations/en.json +59 -33
- package/esm2022/translations/es.json +26 -0
- package/esm2022/translations/fr.json +90 -64
- package/esm2022/translations/it.json +28 -2
- package/esm2022/translations/nl.json +26 -0
- package/esm2022/translations/pt.json +26 -0
- package/fesm2022/geonetwork-ui.mjs +9462 -8515
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/index.d.ts +3 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/common/license.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/common/url.d.ts +7 -0
- package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +13 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +16 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +20 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +9 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +8 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +6 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -2
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +4 -5
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +10 -11
- 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 +58 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +12 -7
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +21 -2
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -1
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +6 -6
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +15 -0
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +7 -0
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +2 -1
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +10 -9
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +13 -20
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
- package/libs/feature/editor/src/index.d.ts +1 -0
- package/libs/feature/editor/src/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +1 -5
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +2 -1
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +34 -0
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts +38 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +2 -5
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +9 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +5 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +6 -13
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +20 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +1 -3
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +7 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +9 -15
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +5 -3
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +3 -2
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts +10 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +6 -0
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +2 -2
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/index.d.ts +1 -8
- package/libs/feature/map/src/index.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.actions.d.ts +13 -39
- package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.facade.d.ts +9 -10
- package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts +4 -2
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts +6 -1
- package/libs/feature/map/src/lib/+state/map.selectors.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 +7 -9
- 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-file/add-layer-from-file.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 +2 -2
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/constant/index.d.ts +0 -1
- package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -1
- package/libs/feature/map/src/lib/feature-map.module.d.ts +12 -18
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +7 -7
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +4 -3
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +14 -0
- package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -30
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +10 -7
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/feature-record.module.d.ts +13 -11
- 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 +14 -20
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +5 -3
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +1 -1
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +9 -10
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +1 -1
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
- 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 +2 -2
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
- package/libs/ui/inputs/src/index.d.ts +4 -0
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +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/file-input/file-input.component.d.ts +24 -0
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +0 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +25 -26
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
- package/libs/ui/layout/src/index.d.ts +2 -0
- package/libs/ui/layout/src/index.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +1 -1
- package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
- package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
- package/libs/ui/map/src/index.d.ts +3 -2
- package/libs/ui/map/src/index.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +3 -4
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +37 -0
- package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -0
- package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +18 -0
- package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -0
- package/libs/ui/map/src/lib/map-utils.d.ts +7 -0
- package/libs/ui/map/src/lib/map-utils.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +3 -3
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/util/app-config/src/index.d.ts +1 -0
- package/libs/util/app-config/src/index.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/map-layers.d.ts +4 -0
- package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
- package/package.json +5 -3
- package/src/libs/api/metadata-converter/src/index.ts +3 -0
- package/src/libs/api/metadata-converter/src/lib/common/license.ts +66 -0
- package/src/libs/api/metadata-converter/src/lib/common/url.ts +15 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +378 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.ts +17 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +370 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +95 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/individual-name.ts +20 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/keyword.mapper.ts +16 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/role.mapper.ts +48 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +97 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/status.mapper.ts +19 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/update-frequency.mapper.ts +67 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +68 -0
- package/src/libs/api/metadata-converter/src/lib/find-converter.ts +13 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +272 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +110 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +85 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +73 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +5 -6
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +21 -43
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +5 -14
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +13 -15
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +133 -156
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +37 -2
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +132 -68
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +47 -3
- package/src/libs/common/domain/src/lib/model/record/contact.model.ts +1 -1
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +7 -7
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +26 -0
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +10 -0
- package/src/libs/common/fixtures/src/index.ts +4 -1
- package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +37 -37
- package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
- package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
- package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
- package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
- package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
- package/src/libs/common/fixtures/src/lib/individual.fixtures.ts +61 -0
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
- package/src/libs/common/fixtures/src/lib/map/index.ts +1 -0
- package/src/libs/common/fixtures/src/lib/map/map-context.fixtures.ts +53 -0
- package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
- package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +35 -11
- package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +9 -9
- package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
- package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
- package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
- package/src/libs/common/fixtures/src/lib/user.fixtures.ts +45 -15
- package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
- package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +5 -1
- package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
- package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +6 -2
- package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +5 -2
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +38 -78
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
- package/src/libs/feature/editor/src/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +11 -4
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +12 -24
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +1 -13
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +47 -0
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +132 -0
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +40 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +170 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +13 -23
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +11 -50
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-resource-updated/form-field-resource-updated.component.ts → form-field-date-updated/form-field-date-updated.component.ts} +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +3 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +35 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +1 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +41 -83
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +34 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +93 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +13 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +0 -9
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +7 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +62 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +23 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +37 -69
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +16 -14
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +34 -20
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +12 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +31 -29
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -1
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +2 -6
- package/src/libs/feature/editor/src/lib/fields.config.ts +45 -6
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +12 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +7 -3
- package/src/libs/feature/map/src/index.ts +1 -8
- package/src/libs/feature/map/src/lib/+state/map.actions.ts +10 -25
- package/src/libs/feature/map/src/lib/+state/map.facade.ts +11 -15
- package/src/libs/feature/map/src/lib/+state/map.reducer.ts +16 -53
- package/src/libs/feature/map/src/lib/+state/map.selectors.ts +7 -2
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +18 -21
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +17 -11
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +11 -12
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +12 -10
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +11 -9
- package/src/libs/feature/map/src/lib/constant/index.ts +0 -1
- package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -26
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +38 -20
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +2 -2
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +15 -5
- package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.html +4 -0
- package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +29 -0
- package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +1 -229
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +29 -20
- package/src/libs/feature/record/src/lib/feature-record.module.ts +11 -3
- package/src/libs/feature/record/src/lib/map-view/map-view.component.html +4 -4
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +45 -72
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +5 -1
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +1 -1
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +5 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +14 -3
- package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
- package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +8 -1
- package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +0 -3
- package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
- package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
- package/src/libs/ui/elements/src/index.ts +1 -1
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -20
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +5 -0
- package/src/libs/ui/inputs/src/index.ts +4 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +25 -18
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +38 -24
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +4 -1
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +11 -3
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +2 -1
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +15 -1
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +14 -6
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +7 -1
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +28 -23
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +7 -1
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +7 -3
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +2 -1
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +30 -22
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +2 -1
- package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +5 -1
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +4 -3
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +0 -1
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -2
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +1 -1
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -3
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +1 -1
- package/src/libs/ui/layout/src/index.ts +2 -0
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +8 -3
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +4 -3
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +1 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +2 -2
- package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
- package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
- package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +13 -16
- package/src/libs/ui/map/src/index.ts +3 -2
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +1 -1
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +8 -5
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.css +0 -0
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +203 -0
- package/src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts +23 -0
- package/src/libs/ui/map/src/lib/map-utils.ts +54 -0
- package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +20 -9
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +5 -6
- package/src/libs/util/app-config/src/index.ts +1 -0
- package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
- package/src/libs/util/app-config/src/lib/map-layers.ts +31 -0
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
- package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
- package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
- package/tailwind.base.config.js +1 -0
- package/tailwind.base.css +38 -6
- package/translations/de.json +28 -2
- package/translations/en.json +59 -33
- package/translations/es.json +26 -0
- package/translations/fr.json +90 -64
- package/translations/it.json +28 -2
- package/translations/nl.json +26 -0
- package/translations/pt.json +26 -0
- package/translations/sk.json +26 -0
- package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +0 -96
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -19
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
- package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +0 -15
- package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +0 -2
- package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +0 -8
- package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +0 -17
- package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +0 -38
- package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +0 -19
- package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +0 -19
- package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +0 -27
- package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +0 -46
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +0 -10
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +0 -289
- package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -39
- package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +0 -40
- package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +0 -33
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +0 -27
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -9
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/+state/map.effects.d.ts +0 -9
- package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +0 -1
- package/libs/feature/map/src/lib/+state/map.models.d.ts +0 -9
- package/libs/feature/map/src/lib/+state/map.models.d.ts.map +0 -1
- package/libs/feature/map/src/lib/constant/map-options.d.ts +0 -9
- package/libs/feature/map/src/lib/constant/map-options.d.ts.map +0 -1
- package/libs/feature/map/src/lib/constant/style.constant.d.ts +0 -4
- package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +0 -1
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +0 -16
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +0 -1
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +0 -9
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +0 -1
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +0 -11
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +0 -12
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +0 -26
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +0 -77
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +0 -26
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -17
- package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
- package/libs/ui/map/src/lib/components/map/map.component.d.ts +0 -19
- package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +0 -1
- package/libs/ui/map/src/lib/ui-map.module.d.ts +0 -13
- package/libs/ui/map/src/lib/ui-map.module.d.ts.map +0 -1
- package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
- package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
- package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -9
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -113
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
- package/src/libs/feature/map/src/lib/+state/map.effects.ts +0 -7
- package/src/libs/feature/map/src/lib/+state/map.models.ts +0 -9
- package/src/libs/feature/map/src/lib/constant/map-options.ts +0 -17
- package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +0 -42
- package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +0 -10
- package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +0 -13
- package/src/libs/feature/map/src/lib/map-container/map-container.component.html +0 -1
- package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +0 -26
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +0 -1
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +0 -57
- package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +0 -51
- package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +0 -95
- package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +0 -318
- package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -29
- package/src/libs/ui/map/src/lib/components/map/map.component.ts +0 -57
- package/src/libs/ui/map/src/lib/ui-map.module.ts +0 -19
- /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → import-record/import-record.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css → online-resource-card/online-resource-card.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → form-field-contacts/form-field-contacts.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → form-field-date-updated/form-field-date-updated.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-resource-updated/form-field-resource-updated.component.html → form-field-date-updated/form-field-date-updated.component.html} +0 -0
- /package/src/libs/feature/{map/src/lib/map-container/map-container.component.css → editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.css} +0 -0
- /package/src/libs/feature/map/src/lib/{map-context/component/map-context.component.css → map-state-container/map-state-container.component.css} +0 -0
- /package/src/libs/ui/{map/src/lib/components/map/map.component.css → layout/src/lib/modal-dialog/modal-dialog.component.css} +0 -0
- /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
- /package/src/libs/ui/map/src/lib/components/{map/map.component.html → map-container/map-container.component.html} +0 -0
package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts
CHANGED
|
@@ -17,17 +17,18 @@ import {
|
|
|
17
17
|
GraphicOverview,
|
|
18
18
|
Individual,
|
|
19
19
|
Keyword,
|
|
20
|
+
OnlineResource,
|
|
20
21
|
UpdateFrequency,
|
|
21
22
|
} from '../../../../../../../../libs/common/domain/src/lib/model/record'
|
|
22
23
|
import { EditableLabelDirective } from '../../../../../../../../libs/ui/inputs/src'
|
|
23
24
|
import { FormFieldWrapperComponent } from '../../../../../../../../libs/ui/layout/src'
|
|
24
25
|
import { TranslateModule } from '@ngx-translate/core'
|
|
25
26
|
import {
|
|
27
|
+
FormFieldDateUpdatedComponent,
|
|
26
28
|
FormFieldLicenseComponent,
|
|
27
|
-
FormFieldResourceUpdatedComponent,
|
|
28
29
|
FormFieldTemporalExtentsComponent,
|
|
29
30
|
} from '.'
|
|
30
|
-
import { FormFieldConfig } from '../../../models'
|
|
31
|
+
import { FieldModelSpecifier, FormFieldConfig } from '../../../models'
|
|
31
32
|
import { FormFieldArrayComponent } from './form-field-array/form-field-array.component'
|
|
32
33
|
import { FormFieldContactsForResourceComponent } from './form-field-contacts-for-resource/form-field-contacts-for-resource.component'
|
|
33
34
|
import { FormFieldFileComponent } from './form-field-file/form-field-file.component'
|
|
@@ -39,6 +40,8 @@ import { FormFieldSimpleComponent } from './form-field-simple/form-field-simple.
|
|
|
39
40
|
import { FormFieldSpatialExtentComponent } from './form-field-spatial-extent/form-field-spatial-extent.component'
|
|
40
41
|
import { FormFieldUpdateFrequencyComponent } from './form-field-update-frequency/form-field-update-frequency.component'
|
|
41
42
|
import { FormFieldOpenDataComponent } from './form-field-open-data/form-field-open-data.component'
|
|
43
|
+
import { FormFieldOnlineLinkResourcesComponent } from './form-field-online-link-resources/form-field-online-link-resources.component'
|
|
44
|
+
import { FormFieldContactsComponent } from './form-field-contacts/form-field-contacts.component'
|
|
42
45
|
|
|
43
46
|
@Component({
|
|
44
47
|
selector: 'gn-ui-form-field',
|
|
@@ -54,7 +57,7 @@ import { FormFieldOpenDataComponent } from './form-field-open-data/form-field-op
|
|
|
54
57
|
MatTooltipModule,
|
|
55
58
|
FormFieldWrapperComponent,
|
|
56
59
|
FormFieldLicenseComponent,
|
|
57
|
-
|
|
60
|
+
FormFieldDateUpdatedComponent,
|
|
58
61
|
FormFieldUpdateFrequencyComponent,
|
|
59
62
|
FormFieldTemporalExtentsComponent,
|
|
60
63
|
FormFieldSimpleComponent,
|
|
@@ -67,11 +70,14 @@ import { FormFieldOpenDataComponent } from './form-field-open-data/form-field-op
|
|
|
67
70
|
FormFieldOverviewsComponent,
|
|
68
71
|
FormFieldContactsForResourceComponent,
|
|
69
72
|
FormFieldOpenDataComponent,
|
|
73
|
+
FormFieldOnlineLinkResourcesComponent,
|
|
74
|
+
FormFieldContactsComponent,
|
|
70
75
|
],
|
|
71
76
|
})
|
|
72
77
|
export class FormFieldComponent {
|
|
73
78
|
@Input() uniqueIdentifier: string
|
|
74
79
|
@Input() model: CatalogRecordKeys
|
|
80
|
+
@Input() modelSpecifier: FieldModelSpecifier
|
|
75
81
|
@Input() config: FormFieldConfig
|
|
76
82
|
@Input() value: unknown
|
|
77
83
|
|
|
@@ -114,4 +120,7 @@ export class FormFieldComponent {
|
|
|
114
120
|
get valueAsIndividuals() {
|
|
115
121
|
return this.value as Array<Individual>
|
|
116
122
|
}
|
|
123
|
+
get valueAsOnlineResources() {
|
|
124
|
+
return this.value as Array<OnlineResource>
|
|
125
|
+
}
|
|
117
126
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './form-field-keywords/form-field-keywords.component'
|
|
2
2
|
export * from './form-field-license/form-field-license.component'
|
|
3
|
-
export * from './form-field-
|
|
3
|
+
export * from './form-field-date-updated/form-field-date-updated.component'
|
|
4
4
|
export * from './form-field-temporal-extents/form-field-temporal-extents.component'
|
|
5
5
|
export * from './form-field-simple/form-field-simple.component'
|
|
6
6
|
export * from './form-field-file/form-field-file.component'
|
|
@@ -1,32 +1,28 @@
|
|
|
1
|
-
<
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
>
|
|
9
|
-
<
|
|
10
|
-
<div
|
|
1
|
+
<div class="flex flex-col gap-6">
|
|
2
|
+
<ng-container
|
|
3
|
+
*ngFor="
|
|
4
|
+
let section of facade.currentSections$ | async;
|
|
5
|
+
trackBy: sectionTracker
|
|
6
|
+
"
|
|
7
|
+
>
|
|
8
|
+
<ng-container *ngIf="!section.hidden">
|
|
9
|
+
<div class="flex flex-col gap-8 border p-8 rounded-[8px] shadow">
|
|
10
|
+
<div
|
|
11
|
+
class="flex flex-col gap-2"
|
|
12
|
+
[ngClass]="section.labelKey ? 'mb-4' : 'hidden'"
|
|
13
|
+
>
|
|
11
14
|
<div
|
|
12
|
-
|
|
13
|
-
|
|
15
|
+
*ngIf="section.labelKey"
|
|
16
|
+
class="text-2xl font-title text-main"
|
|
17
|
+
translate
|
|
14
18
|
>
|
|
15
|
-
|
|
16
|
-
*ngIf="section.labelKey"
|
|
17
|
-
class="text-2xl font-title text-secondary"
|
|
18
|
-
translate
|
|
19
|
-
>
|
|
20
|
-
{{ section.labelKey }}
|
|
21
|
-
</div>
|
|
22
|
-
<div
|
|
23
|
-
*ngIf="section.descriptionKey"
|
|
24
|
-
class="text-secondary-lightest"
|
|
25
|
-
translate
|
|
26
|
-
>
|
|
27
|
-
{{ section.descriptionKey }}
|
|
28
|
-
</div>
|
|
19
|
+
{{ section.labelKey }}
|
|
29
20
|
</div>
|
|
21
|
+
<div *ngIf="section.descriptionKey" class="text-gray-800" translate>
|
|
22
|
+
{{ section.descriptionKey }}
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="grid auto-rows-auto grid-cols-2 gap-[32px]">
|
|
30
26
|
<ng-container
|
|
31
27
|
*ngFor="
|
|
32
28
|
let field of section.fieldsWithValues;
|
|
@@ -35,8 +31,14 @@
|
|
|
35
31
|
>
|
|
36
32
|
<ng-container *ngIf="!field.config.hidden">
|
|
37
33
|
<gn-ui-form-field
|
|
34
|
+
[ngClass]="
|
|
35
|
+
field.config.gridColumnSpan === 1
|
|
36
|
+
? 'col-span-1'
|
|
37
|
+
: 'col-span-2'
|
|
38
|
+
"
|
|
38
39
|
[uniqueIdentifier]="recordUniqueIdentifier$ | async"
|
|
39
40
|
[model]="field.config.model!"
|
|
41
|
+
[modelSpecifier]="field.config.modelSpecifier!"
|
|
40
42
|
[config]="field.config.formFieldConfig"
|
|
41
43
|
[value]="field.value"
|
|
42
44
|
(valueChange)="
|
|
@@ -46,7 +48,7 @@
|
|
|
46
48
|
</ng-container>
|
|
47
49
|
</ng-container>
|
|
48
50
|
</div>
|
|
49
|
-
</
|
|
51
|
+
</div>
|
|
50
52
|
</ng-container>
|
|
51
|
-
</
|
|
52
|
-
</
|
|
53
|
+
</ng-container>
|
|
54
|
+
</div>
|
|
@@ -9,6 +9,7 @@ import {
|
|
|
9
9
|
EditorSectionWithValues,
|
|
10
10
|
} from '../../+state/editor.models'
|
|
11
11
|
import { map } from 'rxjs'
|
|
12
|
+
import { CatalogRecordKeys } from '../../../../../../../libs/common/domain/src/lib/model/record'
|
|
12
13
|
|
|
13
14
|
@Component({
|
|
14
15
|
selector: 'gn-ui-record-form',
|
|
@@ -25,7 +26,7 @@ export class RecordFormComponent {
|
|
|
25
26
|
|
|
26
27
|
constructor(public facade: EditorFacade) {}
|
|
27
28
|
|
|
28
|
-
handleFieldValueChange(model:
|
|
29
|
+
handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue) {
|
|
29
30
|
if (!model) {
|
|
30
31
|
return
|
|
31
32
|
}
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
<div class="pl-5 pt-24 flex flex-1 flex-col justify-between">
|
|
2
|
-
<div
|
|
3
|
-
#wizardFields
|
|
4
|
-
class="flex-1 flex"
|
|
5
|
-
*ngFor="let config of configuration; let i = index"
|
|
6
|
-
>
|
|
1
|
+
<div class="pl-5 pt-24 flex flex-1 flex-col justify-between" #wizardFields>
|
|
2
|
+
<div class="flex-1 flex" *ngFor="let config of configuration; let i = index">
|
|
7
3
|
<gn-ui-wizard-field [wizardFieldConfig]="config"></gn-ui-wizard-field>
|
|
8
4
|
</div>
|
|
9
5
|
</div>
|
|
@@ -4,6 +4,7 @@ import {
|
|
|
4
4
|
EditorField,
|
|
5
5
|
EditorSection,
|
|
6
6
|
} from './models/editor-config.model'
|
|
7
|
+
import { Keyword } from '../../../../../libs/common/domain/src/lib/model/record'
|
|
7
8
|
|
|
8
9
|
/**
|
|
9
10
|
* This file contains the configuration of the fields that will be displayed in the editor.
|
|
@@ -44,6 +45,7 @@ export const RECORD_RESOURCE_UPDATED_FIELD: EditorField = {
|
|
|
44
45
|
formFieldConfig: {
|
|
45
46
|
labelKey: marker('editor.record.form.field.resourceUpdated'),
|
|
46
47
|
},
|
|
48
|
+
gridColumnSpan: 1,
|
|
47
49
|
}
|
|
48
50
|
|
|
49
51
|
export const RECORD_UPDATED_FIELD: EditorField = {
|
|
@@ -53,14 +55,15 @@ export const RECORD_UPDATED_FIELD: EditorField = {
|
|
|
53
55
|
locked: true,
|
|
54
56
|
},
|
|
55
57
|
onSaveProcess: '${dateNow()}',
|
|
58
|
+
gridColumnSpan: 1,
|
|
56
59
|
}
|
|
57
60
|
|
|
58
61
|
export const RECORD_UPDATE_FREQUENCY_FIELD: EditorField = {
|
|
59
62
|
model: 'updateFrequency',
|
|
60
|
-
formFieldConfig: {
|
|
61
|
-
labelKey: marker('editor.record.form.field.updateFrequency'),
|
|
62
|
-
},
|
|
63
|
+
formFieldConfig: {},
|
|
63
64
|
}
|
|
65
|
+
// keeping track of the label to not lose existing translation
|
|
66
|
+
marker('editor.record.form.field.updateFrequency')
|
|
64
67
|
|
|
65
68
|
export const RECORD_TEMPORAL_EXTENTS_FIELD: EditorField = {
|
|
66
69
|
model: 'temporalExtents',
|
|
@@ -90,6 +93,13 @@ export const CONTACTS_FOR_RESOURCE_FIELD: EditorField = {
|
|
|
90
93
|
},
|
|
91
94
|
}
|
|
92
95
|
|
|
96
|
+
export const CONTACTS: EditorField = {
|
|
97
|
+
model: 'contacts',
|
|
98
|
+
formFieldConfig: {
|
|
99
|
+
labelKey: '',
|
|
100
|
+
},
|
|
101
|
+
}
|
|
102
|
+
|
|
93
103
|
export const RECORD_GRAPHICAL_OVERVIEW_FIELD: EditorField = {
|
|
94
104
|
model: 'overviews',
|
|
95
105
|
formFieldConfig: {
|
|
@@ -104,6 +114,14 @@ export const RECORD_SPATIAL_EXTENTS_FIELD: EditorField = {
|
|
|
104
114
|
},
|
|
105
115
|
}
|
|
106
116
|
|
|
117
|
+
export const RECORD_ONLINE_LINK_RESOURCES: EditorField = {
|
|
118
|
+
model: 'onlineResources',
|
|
119
|
+
modelSpecifier: 'onlineResourceType:link',
|
|
120
|
+
formFieldConfig: {
|
|
121
|
+
labelKey: marker('editor.record.form.field.onlineLinkResources'),
|
|
122
|
+
},
|
|
123
|
+
}
|
|
124
|
+
|
|
107
125
|
/************************************************************
|
|
108
126
|
*************** SECTIONS *****************
|
|
109
127
|
************************************************************
|
|
@@ -149,7 +167,7 @@ export const ASSOCIATED_RESOURCES_SECTION: EditorSection = {
|
|
|
149
167
|
export const ANNEXES_SECTION: EditorSection = {
|
|
150
168
|
labelKey: marker('editor.record.form.section.annexes.label'),
|
|
151
169
|
hidden: false,
|
|
152
|
-
fields: [],
|
|
170
|
+
fields: [RECORD_ONLINE_LINK_RESOURCES],
|
|
153
171
|
}
|
|
154
172
|
|
|
155
173
|
export const CLASSIFICATION_SECTION: EditorSection = {
|
|
@@ -180,7 +198,7 @@ export const DATA_POINT_OF_CONTACT_SECTION: EditorSection = {
|
|
|
180
198
|
'editor.record.form.section.dataPointOfContact.description'
|
|
181
199
|
),
|
|
182
200
|
hidden: false,
|
|
183
|
-
fields: [],
|
|
201
|
+
fields: [CONTACTS],
|
|
184
202
|
}
|
|
185
203
|
|
|
186
204
|
/************************************************************
|
|
@@ -210,7 +228,7 @@ export const DEFAULT_CONFIGURATION: EditorConfig = {
|
|
|
210
228
|
}
|
|
211
229
|
|
|
212
230
|
/************************************************************
|
|
213
|
-
*************** LICENSES
|
|
231
|
+
*************** LICENSES **************
|
|
214
232
|
************************************************************
|
|
215
233
|
*/
|
|
216
234
|
export const OPEN_DATA_LICENSES: string[] = [
|
|
@@ -220,3 +238,24 @@ export const OPEN_DATA_LICENSES: string[] = [
|
|
|
220
238
|
'odc-by',
|
|
221
239
|
'pddl',
|
|
222
240
|
]
|
|
241
|
+
|
|
242
|
+
export const MAX_UPLOAD_SIZE_MB = 10
|
|
243
|
+
/************************************************************
|
|
244
|
+
*************** SPATIAL SCOPE ************
|
|
245
|
+
************************************************************
|
|
246
|
+
*/
|
|
247
|
+
|
|
248
|
+
export const SPATIAL_SCOPES: Keyword[] = [
|
|
249
|
+
{
|
|
250
|
+
key: 'http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/national',
|
|
251
|
+
label: 'National',
|
|
252
|
+
description: '',
|
|
253
|
+
type: 'theme',
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
key: 'http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional',
|
|
257
|
+
label: 'Regional',
|
|
258
|
+
description: '',
|
|
259
|
+
type: 'theme',
|
|
260
|
+
},
|
|
261
|
+
]
|
|
@@ -16,12 +16,24 @@ export interface FormFieldConfig {
|
|
|
16
16
|
invalidHintKey?: string
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
// Specifiers let us use specific components
|
|
20
|
+
// This is used for instance to target only certain online resources in a field
|
|
21
|
+
type OnlineLinkResourceSpecifier = `onlineResourceType:link`
|
|
22
|
+
type DatasetDistributionsSpecifier = `onlineResourceType:!link`
|
|
23
|
+
export type FieldModelSpecifier =
|
|
24
|
+
| OnlineLinkResourceSpecifier
|
|
25
|
+
| DatasetDistributionsSpecifier
|
|
26
|
+
|
|
19
27
|
export interface EditorField {
|
|
20
28
|
// configuration of the form field used as presentation
|
|
21
29
|
formFieldConfig: FormFieldConfig
|
|
22
30
|
|
|
23
31
|
// name of the target field in the record; will not change the record directly if not defined
|
|
24
32
|
model?: CatalogRecordKeys
|
|
33
|
+
modelSpecifier?: FieldModelSpecifier
|
|
34
|
+
|
|
35
|
+
// grid column span; if unspecified, full width will be used
|
|
36
|
+
gridColumnSpan?: number
|
|
25
37
|
|
|
26
38
|
// a hidden field won't show but can still be used to modify the record
|
|
27
39
|
// FIXME: currently this is redundant with an absence of formFieldConfig but necessary for clarity
|
|
@@ -15,6 +15,7 @@ export class EditorService {
|
|
|
15
15
|
// returns the record as it was when saved, alongside its source
|
|
16
16
|
saveRecord(
|
|
17
17
|
record: CatalogRecord,
|
|
18
|
+
recordSource: string,
|
|
18
19
|
fieldsConfig: EditorConfig,
|
|
19
20
|
generateNewUniqueIdentifier = false
|
|
20
21
|
): Observable<[CatalogRecord, string]> {
|
|
@@ -40,7 +41,7 @@ export class EditorService {
|
|
|
40
41
|
savedRecord.uniqueIdentifier = null
|
|
41
42
|
}
|
|
42
43
|
|
|
43
|
-
return this.recordsRepository.saveRecord(savedRecord).pipe(
|
|
44
|
+
return this.recordsRepository.saveRecord(savedRecord, recordSource).pipe(
|
|
44
45
|
switchMap((uniqueIdentifier) =>
|
|
45
46
|
this.recordsRepository.openRecordForEdition(uniqueIdentifier)
|
|
46
47
|
),
|
|
@@ -54,9 +55,12 @@ export class EditorService {
|
|
|
54
55
|
|
|
55
56
|
// emits and completes once saving is done
|
|
56
57
|
// note: onSave processes are not run for drafts
|
|
57
|
-
saveRecordAsDraft(
|
|
58
|
+
saveRecordAsDraft(
|
|
59
|
+
record: CatalogRecord,
|
|
60
|
+
recordSource: string
|
|
61
|
+
): Observable<void> {
|
|
58
62
|
return this.recordsRepository
|
|
59
|
-
.saveRecordAsDraft(record)
|
|
63
|
+
.saveRecordAsDraft(record, recordSource)
|
|
60
64
|
.pipe(map(() => undefined))
|
|
61
65
|
}
|
|
62
66
|
|
|
@@ -1,20 +1,13 @@
|
|
|
1
1
|
export * from './lib/+state/map.facade'
|
|
2
|
-
export * from './lib/+state/map.models'
|
|
3
2
|
export * from './lib/+state/map.selectors'
|
|
4
3
|
export * from './lib/+state/map.reducer'
|
|
5
4
|
export * from './lib/+state/map.actions'
|
|
6
5
|
export * from './lib/feature-map.module'
|
|
7
|
-
export * from './lib/
|
|
8
|
-
export * from './lib/manager/map-instance.directive'
|
|
9
|
-
export * from './lib/feature-info/feature-info.service'
|
|
10
|
-
export * from './lib/map-context/map-context.model'
|
|
11
|
-
export * from './lib/map-context/map-context.service'
|
|
12
|
-
export * from './lib/map-context/component/map-context.component'
|
|
6
|
+
export * from './lib/map-state-container/map-state-container.component'
|
|
13
7
|
export * from './lib/constant'
|
|
14
8
|
export * from './lib/utils'
|
|
15
9
|
export * from './lib/style'
|
|
16
10
|
export * from './lib/layers-panel/layers-panel.component'
|
|
17
11
|
export * from './lib/add-layer-from-catalog/add-layer-from-catalog.component'
|
|
18
12
|
export * from './lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component'
|
|
19
|
-
export * from './lib/map-container/map-container.component'
|
|
20
13
|
export * from './lib/geocoding/geocoding.component'
|
|
@@ -1,32 +1,17 @@
|
|
|
1
1
|
import { createAction, props } from '@ngrx/store'
|
|
2
|
-
import {
|
|
2
|
+
import { MapContext } from '@geospatial-sdk/core'
|
|
3
|
+
import type { Feature } from 'geojson'
|
|
3
4
|
|
|
4
|
-
export const
|
|
5
|
-
'[Map]
|
|
6
|
-
props<{
|
|
5
|
+
export const setContext = createAction(
|
|
6
|
+
'[Map] Set Context',
|
|
7
|
+
props<{ context: MapContext }>()
|
|
7
8
|
)
|
|
8
9
|
|
|
9
|
-
export const
|
|
10
|
-
'[Map]
|
|
11
|
-
props<{
|
|
10
|
+
export const setSelectedFeatures = createAction(
|
|
11
|
+
'[Map] Set Selected Features',
|
|
12
|
+
props<{ selectedFeatures: Feature[] }>()
|
|
12
13
|
)
|
|
13
14
|
|
|
14
|
-
export const
|
|
15
|
-
'[Map]
|
|
16
|
-
props<{ updatedLayer: MapLayer; index: number }>()
|
|
17
|
-
)
|
|
18
|
-
|
|
19
|
-
export const changeLayerOrder = createAction(
|
|
20
|
-
'[Map] Change Layer Order',
|
|
21
|
-
props<{ currentIndex: number; newIndex: number }>()
|
|
22
|
-
)
|
|
23
|
-
|
|
24
|
-
export const setLayerError = createAction(
|
|
25
|
-
'[Map] Set Layer Error',
|
|
26
|
-
props<{ index: number; error: string }>()
|
|
27
|
-
)
|
|
28
|
-
|
|
29
|
-
export const clearLayerError = createAction(
|
|
30
|
-
'[Map] Clear Layer Error',
|
|
31
|
-
props<{ index: number }>()
|
|
15
|
+
export const clearSelectedFeatures = createAction(
|
|
16
|
+
'[Map] Clear Selected Features'
|
|
32
17
|
)
|
|
@@ -1,30 +1,26 @@
|
|
|
1
1
|
import { Injectable } from '@angular/core'
|
|
2
2
|
import { select, Store } from '@ngrx/store'
|
|
3
3
|
import * as MapSelectors from './map.selectors'
|
|
4
|
-
import { MapLayer } from './map.models'
|
|
5
4
|
import * as MapActions from './map.actions'
|
|
5
|
+
import { MapContext } from '@geospatial-sdk/core'
|
|
6
|
+
import { Feature } from 'geojson'
|
|
6
7
|
|
|
7
8
|
@Injectable()
|
|
8
9
|
export class MapFacade {
|
|
9
|
-
|
|
10
|
+
context$ = this.store.pipe(select(MapSelectors.getMapContext))
|
|
11
|
+
selectedFeatures$ = this.store.pipe(select(MapSelectors.getSelectedFeatures))
|
|
10
12
|
|
|
11
13
|
constructor(private readonly store: Store) {}
|
|
12
14
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
* or more tasks in your Effects.
|
|
16
|
-
*/
|
|
17
|
-
init() {
|
|
18
|
-
// placeholder
|
|
15
|
+
applyContext(context: MapContext) {
|
|
16
|
+
this.store.dispatch(MapActions.setContext({ context }))
|
|
19
17
|
}
|
|
20
18
|
|
|
21
|
-
|
|
22
|
-
this.store.dispatch(MapActions.
|
|
19
|
+
selectFeatures(selectedFeatures: Feature[]) {
|
|
20
|
+
this.store.dispatch(MapActions.setSelectedFeatures({ selectedFeatures }))
|
|
23
21
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
removeLayer(index: number) {
|
|
28
|
-
this.store.dispatch(MapActions.removeLayer({ index }))
|
|
22
|
+
|
|
23
|
+
clearFeatureSelection() {
|
|
24
|
+
this.store.dispatch(MapActions.clearSelectedFeatures())
|
|
29
25
|
}
|
|
30
26
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { Action, createReducer, on } from '@ngrx/store'
|
|
2
|
-
|
|
3
2
|
import * as MapActions from './map.actions'
|
|
4
|
-
import {
|
|
3
|
+
import { MapContext } from '@geospatial-sdk/core'
|
|
4
|
+
import { Feature } from 'geojson'
|
|
5
5
|
|
|
6
6
|
export const MAP_FEATURE_KEY = 'map'
|
|
7
7
|
|
|
8
8
|
export interface MapState {
|
|
9
|
-
|
|
9
|
+
context: MapContext
|
|
10
|
+
selectedFeatures: Feature[]
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
export interface MapPartialState {
|
|
@@ -14,68 +15,30 @@ export interface MapPartialState {
|
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
export const initialMapState: MapState = {
|
|
17
|
-
layers: [],
|
|
18
|
+
context: { layers: [], view: null },
|
|
19
|
+
selectedFeatures: [],
|
|
18
20
|
}
|
|
19
21
|
|
|
20
22
|
const reducer = createReducer(
|
|
21
23
|
initialMapState,
|
|
22
|
-
on(MapActions.
|
|
23
|
-
const layers: MapLayerWithInfo[] = [...state.layers]
|
|
24
|
-
const layerWithInfo = { ...action.layer, loading: false, error: null }
|
|
25
|
-
if (!('atIndex' in action)) layers.push(layerWithInfo)
|
|
26
|
-
else layers.splice(action.atIndex, 0, layerWithInfo)
|
|
24
|
+
on(MapActions.setContext, (state, { context }) => {
|
|
27
25
|
return {
|
|
28
26
|
...state,
|
|
29
|
-
|
|
27
|
+
context,
|
|
30
28
|
}
|
|
31
29
|
}),
|
|
32
|
-
on(MapActions.
|
|
33
|
-
...state,
|
|
34
|
-
layers: state.layers.map((layer, index) =>
|
|
35
|
-
index === action.index
|
|
36
|
-
? {
|
|
37
|
-
...action.updatedLayer,
|
|
38
|
-
loading: false,
|
|
39
|
-
error: null,
|
|
40
|
-
}
|
|
41
|
-
: layer
|
|
42
|
-
),
|
|
43
|
-
})),
|
|
44
|
-
on(MapActions.removeLayer, (state, action) => ({
|
|
45
|
-
...state,
|
|
46
|
-
layers: state.layers.filter((layer, index) => index !== action.index),
|
|
47
|
-
})),
|
|
48
|
-
on(MapActions.changeLayerOrder, (state, action) => {
|
|
49
|
-
const layers: MapLayerWithInfo[] = [...state.layers]
|
|
50
|
-
const moved = layers.splice(action.currentIndex, 1)[0]
|
|
51
|
-
layers.splice(action.newIndex, 0, moved)
|
|
30
|
+
on(MapActions.setSelectedFeatures, (state, { selectedFeatures }) => {
|
|
52
31
|
return {
|
|
53
32
|
...state,
|
|
54
|
-
|
|
33
|
+
selectedFeatures,
|
|
55
34
|
}
|
|
56
35
|
}),
|
|
57
|
-
on(MapActions.
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
error: action.error,
|
|
64
|
-
}
|
|
65
|
-
: layer
|
|
66
|
-
),
|
|
67
|
-
})),
|
|
68
|
-
on(MapActions.clearLayerError, (state, action) => ({
|
|
69
|
-
...state,
|
|
70
|
-
layers: state.layers.map((layer, index) =>
|
|
71
|
-
index === action.index
|
|
72
|
-
? {
|
|
73
|
-
...layer,
|
|
74
|
-
error: null,
|
|
75
|
-
}
|
|
76
|
-
: layer
|
|
77
|
-
),
|
|
78
|
-
}))
|
|
36
|
+
on(MapActions.clearSelectedFeatures, (state) => {
|
|
37
|
+
return {
|
|
38
|
+
...state,
|
|
39
|
+
selectedFeatures: [],
|
|
40
|
+
}
|
|
41
|
+
})
|
|
79
42
|
)
|
|
80
43
|
|
|
81
44
|
export function mapReducer(state: MapState | undefined, action: Action) {
|
|
@@ -4,7 +4,12 @@ import { MAP_FEATURE_KEY, MapState } from './map.reducer'
|
|
|
4
4
|
// Lookup the 'Map' feature state managed by NgRx
|
|
5
5
|
export const getMapState = createFeatureSelector<MapState>(MAP_FEATURE_KEY)
|
|
6
6
|
|
|
7
|
-
export const
|
|
7
|
+
export const getMapContext = createSelector(
|
|
8
8
|
getMapState,
|
|
9
|
-
(state: MapState) => state.
|
|
9
|
+
(state: MapState) => state.context
|
|
10
|
+
)
|
|
11
|
+
|
|
12
|
+
export const getSelectedFeatures = createSelector(
|
|
13
|
+
getMapState,
|
|
14
|
+
(state: MapState) => state.selectedFeatures
|
|
10
15
|
)
|
|
@@ -5,17 +5,13 @@ import {
|
|
|
5
5
|
LinkClassifierService,
|
|
6
6
|
LinkUsage,
|
|
7
7
|
} from '../../../../../../../libs/util/shared/src'
|
|
8
|
-
import { Observable, of, throwError } from 'rxjs'
|
|
9
|
-
import { MapUtilsService } from '../../utils'
|
|
8
|
+
import { firstValueFrom, Observable, of, throwError } from 'rxjs'
|
|
10
9
|
import { MapFacade } from '../../+state/map.facade'
|
|
11
10
|
import {
|
|
12
|
-
|
|
13
|
-
MapContextLayerTypeEnum,
|
|
14
|
-
} from '../../map-context/map-context.model'
|
|
15
|
-
import {
|
|
16
|
-
DatasetDistribution,
|
|
11
|
+
DatasetOnlineResource,
|
|
17
12
|
DatasetRecord,
|
|
18
13
|
} from '../../../../../../../libs/common/domain/src/lib/model/record'
|
|
14
|
+
import { MapContextLayer } from '@geospatial-sdk/core'
|
|
19
15
|
import { ThumbnailComponent } from '../../../../../../../libs/ui/elements/src'
|
|
20
16
|
import { ButtonComponent } from '../../../../../../../libs/ui/inputs/src'
|
|
21
17
|
import { CommonModule } from '@angular/common'
|
|
@@ -29,29 +25,30 @@ import { CommonModule } from '@angular/common'
|
|
|
29
25
|
imports: [ThumbnailComponent, ButtonComponent, CommonModule],
|
|
30
26
|
})
|
|
31
27
|
export class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
32
|
-
get mapLinks():
|
|
33
|
-
return (this.record as DatasetRecord).
|
|
28
|
+
get mapLinks(): DatasetOnlineResource[] {
|
|
29
|
+
return (this.record as DatasetRecord).onlineResources.filter((link) =>
|
|
34
30
|
this.linkClassifier.hasUsage(link, LinkUsage.MAP_API)
|
|
35
|
-
) as
|
|
31
|
+
) as DatasetOnlineResource[]
|
|
36
32
|
}
|
|
37
33
|
|
|
38
34
|
constructor(
|
|
39
35
|
protected elementRef: ElementRef,
|
|
40
36
|
private linkClassifier: LinkClassifierService,
|
|
41
|
-
private mapFacade: MapFacade
|
|
42
|
-
private mapUtils: MapUtilsService
|
|
37
|
+
private mapFacade: MapFacade
|
|
43
38
|
) {
|
|
44
39
|
super(elementRef)
|
|
45
40
|
}
|
|
46
41
|
|
|
47
|
-
async handleLinkClick(link:
|
|
48
|
-
const layer = await this.getLayerFromLink(link)
|
|
49
|
-
|
|
42
|
+
async handleLinkClick(link: DatasetOnlineResource) {
|
|
43
|
+
const layer = await firstValueFrom(this.getLayerFromLink(link))
|
|
44
|
+
const context = await firstValueFrom(this.mapFacade.context$)
|
|
45
|
+
this.mapFacade.applyContext({
|
|
46
|
+
...context,
|
|
47
|
+
layers: [...context.layers, { ...layer, label: this.record.title }],
|
|
48
|
+
})
|
|
50
49
|
}
|
|
51
50
|
|
|
52
|
-
getLayerFromLink(
|
|
53
|
-
link: DatasetDistribution
|
|
54
|
-
): Observable<MapContextLayerModel> {
|
|
51
|
+
getLayerFromLink(link: DatasetOnlineResource): Observable<MapContextLayer> {
|
|
55
52
|
if (link.type !== 'service')
|
|
56
53
|
return throwError(
|
|
57
54
|
() => 'map layer could not be built for this distribution'
|
|
@@ -59,20 +56,20 @@ export class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
|
59
56
|
if (link.accessServiceProtocol === 'wms') {
|
|
60
57
|
return of({
|
|
61
58
|
url: link.url.toString(),
|
|
62
|
-
type:
|
|
59
|
+
type: 'wms',
|
|
63
60
|
name: link.name,
|
|
64
61
|
})
|
|
65
62
|
} else if (link.accessServiceProtocol === 'wmts') {
|
|
66
63
|
return of({
|
|
67
64
|
url: link.url.toString(),
|
|
68
|
-
type:
|
|
65
|
+
type: 'wmts',
|
|
69
66
|
name: link.name,
|
|
70
67
|
})
|
|
71
68
|
}
|
|
72
69
|
return throwError(() => 'protocol not supported')
|
|
73
70
|
}
|
|
74
71
|
|
|
75
|
-
getLinkLabel(link:
|
|
72
|
+
getLinkLabel(link: DatasetOnlineResource) {
|
|
76
73
|
return getLinkLabel(link)
|
|
77
74
|
}
|
|
78
75
|
}
|