geonetwork-ui 2.4.0-dev.b0bcda82 → 2.4.0-dev.c2a3cdd1
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 +2 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +5 -5
- 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 +10 -7
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +11 -16
- 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 +28 -33
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +18 -2
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +78 -39
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +11 -1
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +51 -7
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/user/user.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/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
- 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.actions.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +6 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +4 -1
- 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 +80 -0
- package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +93 -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-for-resource/form-field-contacts-for-resource.component.mjs +42 -67
- 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 +31 -40
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +11 -9
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +101 -0
- 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-open-data/form-field-open-data.component.mjs +22 -25
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +93 -11
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +12 -16
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +140 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +41 -69
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +17 -15
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +42 -65
- 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 +5 -3
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
- 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 -1
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +7 -6
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +8 -5
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +6 -7
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +8 -7
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +7 -6
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +7 -26
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +29 -13
- package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
- 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 +1 -1
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +4 -2
- 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 +5 -4
- 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/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +7 -4
- package/esm2022/libs/ui/inputs/src/index.mjs +6 -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/editable-label/editable-label.directive.mjs +26 -24
- 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 +19 -15
- package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +32 -0
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +7 -21
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +3 -7
- package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +43 -0
- 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/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/lib/ui-map.module.mjs +3 -3
- 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/lib/fixtures.mjs +10 -10
- 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 +42 -3
- package/esm2022/translations/en.json +41 -2
- package/esm2022/translations/es.json +39 -0
- package/esm2022/translations/fr.json +45 -6
- package/esm2022/translations/it.json +41 -2
- package/esm2022/translations/nl.json +39 -0
- package/esm2022/translations/pt.json +39 -0
- package/fesm2022/geonetwork-ui.mjs +2915 -1938
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/index.d.ts +1 -0
- package/libs/api/metadata-converter/src/index.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/gn4/types/keywords.model.d.ts +2 -6
- package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.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 -1
- 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 +7 -7
- 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 +6 -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.mapper.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +22 -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/metadata.model.d.ts +7 -6
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
- package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +16 -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/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/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.actions.d.ts +1 -0
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +1 -0
- package/libs/feature/editor/src/lib/+state/editor.facade.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 +33 -0
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +33 -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-for-resource/form-field-contacts-for-resource.component.d.ts +11 -17
- 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 +11 -19
- 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-license/form-field-license.component.d.ts +6 -4
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.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 +22 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -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 +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-open-data/form-field-open-data.component.d.ts +10 -12
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +24 -4
- 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 +4 -6
- 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-simple/form-field-simple.component.d.ts +4 -3
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.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 +28 -0
- 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 +10 -18
- 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-update-frequency/form-field-update-frequency.component.d.ts +5 -5
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +18 -28
- 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 +5 -3
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -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 +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 +1 -0
- 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-from-catalog.component.d.ts +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.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 +6 -6
- 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 +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 +1 -1
- 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/feature-map.module.d.ts +16 -21
- 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 +1 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
- 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/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 +2 -2
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +2 -2
- 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 +1 -0
- package/libs/feature/search/src/lib/results-table/results-table-container.component.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/elements/src/lib/ui-elements.module.d.ts +2 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/index.d.ts +5 -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/editable-label/editable-label.directive.d.ts +5 -3
- package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.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 +4 -5
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +16 -0
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
- 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 +2 -4
- 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 +34 -35
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +18 -0
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
- 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/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/lib/fixtures.d.ts +8 -8
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
- 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 +1 -1
- package/src/libs/api/metadata-converter/src/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +7 -2
- 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/gn4/gn4.field.mapper.ts +18 -16
- package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +4 -4
- 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 +14 -8
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +8 -15
- 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 +48 -63
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +20 -1
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +132 -68
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +12 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +90 -15
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +8 -7
- package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +30 -0
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +10 -0
- package/src/libs/common/fixtures/src/index.ts +1 -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/link.fixtures.ts +233 -164
- package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
- package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +37 -3
- 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 +32 -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/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/figure/figure.fixtures.ts +2 -2
- 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.actions.ts +2 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +15 -0
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +4 -0
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +12 -22
- 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.html +26 -0
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +90 -0
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +43 -0
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +129 -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-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 +47 -107
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.html +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.ts +21 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +44 -45
- 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-license/form-field-license.component.ts +13 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +128 -0
- package/src/libs/feature/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/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-open-data/form-field-open-data.component.html +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +18 -29
- 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 +107 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +15 -8
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +11 -14
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +20 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +212 -1
- 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 +31 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +43 -87
- 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 +17 -15
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +106 -81
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +45 -67
- 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 +32 -29
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +9 -3
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
- package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
- 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 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +12 -8
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +5 -0
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -7
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +5 -0
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +6 -1
- package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -15
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +24 -1
- package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +26 -22
- package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
- 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 +2 -2
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -2
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +5 -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 +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -1
- package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
- 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/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +6 -1
- package/src/libs/ui/inputs/src/index.ts +5 -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 +12 -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/editable-label/editable-label.directive.ts +40 -26
- 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 +89 -0
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +92 -0
- 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 +76 -68
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +17 -14
- 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 +3 -2
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +3 -28
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
- 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.css +9 -0
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +37 -0
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +33 -0
- 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/modal-dialog/modal-dialog.component.css +0 -0
- 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 +11 -18
- package/src/libs/ui/map/src/lib/ui-map.module.ts +1 -1
- 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 +9 -2
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +5 -6
- package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
- 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 +49 -6
- package/translations/de.json +42 -3
- package/translations/en.json +41 -2
- package/translations/es.json +39 -0
- package/translations/fr.json +45 -6
- package/translations/it.json +41 -2
- package/translations/nl.json +39 -0
- package/translations/pt.json +39 -0
- package/translations/sk.json +39 -0
- package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +0 -131
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -15
- 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/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -47
- 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 -8
- 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/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -22
- package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.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 -161
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +0 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +0 -15
- 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/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -38
- /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → generic-keywords/generic-keywords.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 → import-record/import-record.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 → 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-range/form-field-temporal-extents-range.component.css → form-field-date-updated/form-field-date-updated.component.css} +0 -0
- /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
|
@@ -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
|
|
@@ -59,4 +59,11 @@ export class EditorService {
|
|
|
59
59
|
.saveRecordAsDraft(record)
|
|
60
60
|
.pipe(map(() => undefined))
|
|
61
61
|
}
|
|
62
|
+
|
|
63
|
+
undoRecordDraft(
|
|
64
|
+
record: CatalogRecord
|
|
65
|
+
): Observable<[CatalogRecord, string, boolean]> {
|
|
66
|
+
this.recordsRepository.clearRecordDraft(record.uniqueIdentifier)
|
|
67
|
+
return this.recordsRepository.openRecordForEdition(record.uniqueIdentifier)
|
|
68
|
+
}
|
|
62
69
|
}
|
package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core'
|
|
2
2
|
import {
|
|
3
|
+
FeatureSearchModule,
|
|
3
4
|
FIELDS_BRIEF,
|
|
4
5
|
SearchFacade,
|
|
5
6
|
SearchService,
|
|
@@ -15,6 +16,7 @@ import { AddLayerRecordPreviewComponent } from './add-layer-record-preview/add-l
|
|
|
15
16
|
templateUrl: './add-layer-from-catalog.component.html',
|
|
16
17
|
styleUrls: ['./add-layer-from-catalog.component.css'],
|
|
17
18
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
19
|
+
standalone: true,
|
|
18
20
|
providers: [
|
|
19
21
|
SearchFacade,
|
|
20
22
|
SearchService,
|
|
@@ -30,6 +32,7 @@ import { AddLayerRecordPreviewComponent } from './add-layer-record-preview/add-l
|
|
|
30
32
|
},
|
|
31
33
|
},
|
|
32
34
|
],
|
|
35
|
+
imports: [FeatureSearchModule],
|
|
33
36
|
})
|
|
34
37
|
export class AddLayerFromCatalogComponent implements OnInit {
|
|
35
38
|
constructor(private searchFacade: SearchFacade) {}
|
|
@@ -6,7 +6,6 @@ import {
|
|
|
6
6
|
LinkUsage,
|
|
7
7
|
} from '../../../../../../../libs/util/shared/src'
|
|
8
8
|
import { Observable, of, throwError } from 'rxjs'
|
|
9
|
-
import { map } from 'rxjs/operators'
|
|
10
9
|
import { MapUtilsService } from '../../utils'
|
|
11
10
|
import { MapFacade } from '../../+state/map.facade'
|
|
12
11
|
import {
|
|
@@ -14,21 +13,26 @@ import {
|
|
|
14
13
|
MapContextLayerTypeEnum,
|
|
15
14
|
} from '../../map-context/map-context.model'
|
|
16
15
|
import {
|
|
17
|
-
|
|
16
|
+
DatasetOnlineResource,
|
|
18
17
|
DatasetRecord,
|
|
19
18
|
} from '../../../../../../../libs/common/domain/src/lib/model/record'
|
|
19
|
+
import { ThumbnailComponent } from '../../../../../../../libs/ui/elements/src'
|
|
20
|
+
import { ButtonComponent } from '../../../../../../../libs/ui/inputs/src'
|
|
21
|
+
import { CommonModule } from '@angular/common'
|
|
20
22
|
|
|
21
23
|
@Component({
|
|
22
24
|
selector: 'gn-ui-add-layer-record-preview',
|
|
23
25
|
templateUrl: './add-layer-record-preview.component.html',
|
|
24
26
|
styleUrls: ['./add-layer-record-preview.component.css'],
|
|
25
27
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
28
|
+
standalone: true,
|
|
29
|
+
imports: [ThumbnailComponent, ButtonComponent, CommonModule],
|
|
26
30
|
})
|
|
27
31
|
export class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
28
|
-
get mapLinks():
|
|
29
|
-
return (this.record as DatasetRecord).
|
|
32
|
+
get mapLinks(): DatasetOnlineResource[] {
|
|
33
|
+
return (this.record as DatasetRecord).onlineResources.filter((link) =>
|
|
30
34
|
this.linkClassifier.hasUsage(link, LinkUsage.MAP_API)
|
|
31
|
-
) as
|
|
35
|
+
) as DatasetOnlineResource[]
|
|
32
36
|
}
|
|
33
37
|
|
|
34
38
|
constructor(
|
|
@@ -40,13 +44,13 @@ export class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
|
40
44
|
super(elementRef)
|
|
41
45
|
}
|
|
42
46
|
|
|
43
|
-
async handleLinkClick(link:
|
|
47
|
+
async handleLinkClick(link: DatasetOnlineResource) {
|
|
44
48
|
const layer = await this.getLayerFromLink(link).toPromise()
|
|
45
49
|
this.mapFacade.addLayer({ ...layer, title: this.record.title })
|
|
46
50
|
}
|
|
47
51
|
|
|
48
52
|
getLayerFromLink(
|
|
49
|
-
link:
|
|
53
|
+
link: DatasetOnlineResource
|
|
50
54
|
): Observable<MapContextLayerModel> {
|
|
51
55
|
if (link.type !== 'service')
|
|
52
56
|
return throwError(
|
|
@@ -68,7 +72,7 @@ export class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
|
68
72
|
return throwError(() => 'protocol not supported')
|
|
69
73
|
}
|
|
70
74
|
|
|
71
|
-
getLinkLabel(link:
|
|
75
|
+
getLinkLabel(link: DatasetOnlineResource) {
|
|
72
76
|
return getLinkLabel(link)
|
|
73
77
|
}
|
|
74
78
|
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { ChangeDetectorRef, Component } from '@angular/core'
|
|
2
2
|
import { MapContextLayerModel } from '../map-context/map-context.model'
|
|
3
3
|
import { MapFacade } from '../+state/map.facade'
|
|
4
|
+
import { UiInputsModule } from '../../../../../../libs/ui/inputs/src'
|
|
5
|
+
import { TranslateModule } from '@ngx-translate/core'
|
|
6
|
+
import { CommonModule } from '@angular/common'
|
|
4
7
|
|
|
5
8
|
const INVALID_FILE_FORMAT_ERROR_MESSAGE = 'Invalid file format'
|
|
6
9
|
|
|
@@ -8,6 +11,8 @@ const INVALID_FILE_FORMAT_ERROR_MESSAGE = 'Invalid file format'
|
|
|
8
11
|
selector: 'gn-ui-add-layer-from-file',
|
|
9
12
|
templateUrl: './add-layer-from-file.component.html',
|
|
10
13
|
styleUrls: ['./add-layer-from-file.component.css'],
|
|
14
|
+
standalone: true,
|
|
15
|
+
imports: [UiInputsModule, TranslateModule, CommonModule],
|
|
11
16
|
})
|
|
12
17
|
export class AddLayerFromFileComponent {
|
|
13
18
|
errorMessage: string | null = null
|
package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ChangeDetectorRef,
|
|
2
3
|
Component,
|
|
3
|
-
OnInit,
|
|
4
|
-
Output,
|
|
5
4
|
EventEmitter,
|
|
6
|
-
ChangeDetectionStrategy,
|
|
7
5
|
Input,
|
|
8
|
-
|
|
6
|
+
OnInit,
|
|
7
|
+
Output,
|
|
9
8
|
} from '@angular/core'
|
|
10
9
|
import { OgcApiEndpoint } from '@camptocamp/ogc-client'
|
|
11
|
-
import {
|
|
10
|
+
import { debounceTime, Subject } from 'rxjs'
|
|
12
11
|
import {
|
|
13
12
|
MapContextLayerModel,
|
|
14
13
|
MapContextLayerTypeEnum,
|
|
15
14
|
} from '../map-context/map-context.model'
|
|
16
15
|
import { TranslateModule } from '@ngx-translate/core'
|
|
17
|
-
import {
|
|
16
|
+
import {
|
|
17
|
+
DropdownChoice,
|
|
18
|
+
TextInputComponent,
|
|
19
|
+
UiInputsModule,
|
|
20
|
+
} from '../../../../../../libs/ui/inputs/src'
|
|
18
21
|
import { CommonModule } from '@angular/common'
|
|
19
22
|
import { MapLayer } from '../+state/map.models'
|
|
20
23
|
|
|
@@ -23,7 +26,7 @@ import { MapLayer } from '../+state/map.models'
|
|
|
23
26
|
templateUrl: './add-layer-from-ogc-api.component.html',
|
|
24
27
|
styleUrls: ['./add-layer-from-ogc-api.component.css'],
|
|
25
28
|
standalone: true,
|
|
26
|
-
imports: [CommonModule, TranslateModule, UiInputsModule],
|
|
29
|
+
imports: [CommonModule, TranslateModule, UiInputsModule, TextInputComponent],
|
|
27
30
|
})
|
|
28
31
|
export class AddLayerFromOgcApiComponent implements OnInit {
|
|
29
32
|
@Input() ogcUrl: string
|
|
@@ -7,11 +7,16 @@ import {
|
|
|
7
7
|
} from '../map-context/map-context.model'
|
|
8
8
|
import { MapFacade } from '../+state/map.facade'
|
|
9
9
|
import { debounceTime } from 'rxjs/operators'
|
|
10
|
+
import { ButtonComponent, TextInputComponent } from '../../../../../../libs/ui/inputs/src'
|
|
11
|
+
import { TranslateModule } from '@ngx-translate/core'
|
|
12
|
+
import { CommonModule } from '@angular/common'
|
|
10
13
|
|
|
11
14
|
@Component({
|
|
12
15
|
selector: 'gn-ui-add-layer-from-wfs',
|
|
13
16
|
templateUrl: './add-layer-from-wfs.component.html',
|
|
14
17
|
styleUrls: ['./add-layer-from-wfs.component.css'],
|
|
18
|
+
standalone: true,
|
|
19
|
+
imports: [TextInputComponent, ButtonComponent, TranslateModule, CommonModule],
|
|
15
20
|
})
|
|
16
21
|
export class AddLayerFromWfsComponent implements OnInit {
|
|
17
22
|
wfsUrl = ''
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ChangeDetectorRef, Component, OnInit } from '@angular/core'
|
|
2
2
|
import { WmsEndpoint, WmsLayerSummary } from '@camptocamp/ogc-client'
|
|
3
3
|
import { MapFacade } from '../+state/map.facade'
|
|
4
4
|
import {
|
|
@@ -7,11 +7,16 @@ import {
|
|
|
7
7
|
} from '../map-context/map-context.model'
|
|
8
8
|
import { Subject } from 'rxjs'
|
|
9
9
|
import { debounceTime } from 'rxjs/operators'
|
|
10
|
+
import { ButtonComponent, TextInputComponent } from '../../../../../../libs/ui/inputs/src'
|
|
11
|
+
import { CommonModule } from '@angular/common'
|
|
12
|
+
import { TranslateModule } from '@ngx-translate/core'
|
|
10
13
|
|
|
11
14
|
@Component({
|
|
12
15
|
selector: 'gn-ui-add-layer-from-wms',
|
|
13
16
|
templateUrl: './add-layer-from-wms.component.html',
|
|
14
17
|
styleUrls: ['./add-layer-from-wms.component.css'],
|
|
18
|
+
standalone: true,
|
|
19
|
+
imports: [TextInputComponent, CommonModule, TranslateModule, ButtonComponent],
|
|
15
20
|
})
|
|
16
21
|
export class AddLayerFromWmsComponent implements OnInit {
|
|
17
22
|
wmsUrl = ''
|
|
@@ -4,12 +4,10 @@ import { UiMapModule } from '../../../../../libs/ui/map/src'
|
|
|
4
4
|
import { defaultMapOptions, FEATURE_MAP_OPTIONS } from './constant'
|
|
5
5
|
import { MapInstanceDirective } from './manager/map-instance.directive'
|
|
6
6
|
import { MapContextComponent } from './map-context/component/map-context.component'
|
|
7
|
-
import { LayersPanelComponent } from './layers-panel/layers-panel.component'
|
|
8
7
|
import { UiLayoutModule } from '../../../../../libs/ui/layout/src'
|
|
9
8
|
import { MatIconModule } from '@angular/material/icon'
|
|
10
9
|
import { MatTabsModule } from '@angular/material/tabs'
|
|
11
10
|
import { TranslateModule } from '@ngx-translate/core'
|
|
12
|
-
import { AddLayerFromCatalogComponent } from './add-layer-from-catalog/add-layer-from-catalog.component'
|
|
13
11
|
import { FeatureSearchModule } from '../../../../../libs/feature/search/src'
|
|
14
12
|
import { StoreModule } from '@ngrx/store'
|
|
15
13
|
import { EffectsModule } from '@ngrx/effects'
|
|
@@ -17,12 +15,8 @@ import * as fromMap from './+state/map.reducer'
|
|
|
17
15
|
import { MapEffects } from './+state/map.effects'
|
|
18
16
|
import { MapFacade } from './+state/map.facade'
|
|
19
17
|
import { MapContainerComponent } from './map-container/map-container.component'
|
|
20
|
-
import { AddLayerRecordPreviewComponent } from './add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component'
|
|
21
18
|
import { UiElementsModule } from '../../../../../libs/ui/elements/src'
|
|
22
|
-
import { UiInputsModule } from '../../../../../libs/ui/inputs/src'
|
|
23
|
-
import { AddLayerFromWmsComponent } from './add-layer-from-wms/add-layer-from-wms.component'
|
|
24
|
-
import { AddLayerFromFileComponent } from './add-layer-from-file/add-layer-from-file.component'
|
|
25
|
-
import { AddLayerFromWfsComponent } from './add-layer-from-wfs/add-layer-from-wfs.component'
|
|
19
|
+
import { TextInputComponent, UiInputsModule } from '../../../../../libs/ui/inputs/src'
|
|
26
20
|
import { GeocodingComponent } from './geocoding/geocoding.component'
|
|
27
21
|
import { GEOCODING_PROVIDER, GeocodingProvider } from './geocoding.service'
|
|
28
22
|
import { AddLayerFromOgcApiComponent } from './add-layer-from-ogc-api/add-layer-from-ogc-api.component'
|
|
@@ -31,20 +25,12 @@ import { AddLayerFromOgcApiComponent } from './add-layer-from-ogc-api/add-layer-
|
|
|
31
25
|
declarations: [
|
|
32
26
|
MapContextComponent,
|
|
33
27
|
MapInstanceDirective,
|
|
34
|
-
LayersPanelComponent,
|
|
35
|
-
AddLayerFromCatalogComponent,
|
|
36
28
|
MapContainerComponent,
|
|
37
|
-
AddLayerRecordPreviewComponent,
|
|
38
|
-
AddLayerFromWmsComponent,
|
|
39
|
-
AddLayerFromFileComponent,
|
|
40
|
-
AddLayerFromWfsComponent,
|
|
41
29
|
GeocodingComponent,
|
|
42
30
|
],
|
|
43
31
|
exports: [
|
|
44
32
|
MapContextComponent,
|
|
45
33
|
MapInstanceDirective,
|
|
46
|
-
LayersPanelComponent,
|
|
47
|
-
AddLayerFromCatalogComponent,
|
|
48
34
|
MapContainerComponent,
|
|
49
35
|
GeocodingComponent,
|
|
50
36
|
],
|
|
@@ -61,6 +47,7 @@ import { AddLayerFromOgcApiComponent } from './add-layer-from-ogc-api/add-layer-
|
|
|
61
47
|
UiElementsModule,
|
|
62
48
|
UiInputsModule,
|
|
63
49
|
AddLayerFromOgcApiComponent,
|
|
50
|
+
TextInputComponent,
|
|
64
51
|
],
|
|
65
52
|
providers: [
|
|
66
53
|
{
|
|
@@ -1,11 +1,34 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ChangeDetectionStrategy, Component } from '@angular/core'
|
|
2
2
|
import { MapFacade } from '../+state/map.facade'
|
|
3
|
+
import { MatIconModule } from '@angular/material/icon'
|
|
4
|
+
import { UiLayoutModule } from '../../../../../../libs/ui/layout/src'
|
|
5
|
+
import { MatTabsModule } from '@angular/material/tabs'
|
|
6
|
+
import { AddLayerFromOgcApiComponent } from '../add-layer-from-ogc-api/add-layer-from-ogc-api.component'
|
|
7
|
+
import { AddLayerFromWfsComponent } from '../add-layer-from-wfs/add-layer-from-wfs.component'
|
|
8
|
+
import { AddLayerFromWmsComponent } from '../add-layer-from-wms/add-layer-from-wms.component'
|
|
9
|
+
import { AddLayerFromCatalogComponent } from '../add-layer-from-catalog/add-layer-from-catalog.component'
|
|
10
|
+
import { AddLayerFromFileComponent } from '../add-layer-from-file/add-layer-from-file.component'
|
|
11
|
+
import { TranslateModule } from '@ngx-translate/core'
|
|
12
|
+
import { CommonModule } from '@angular/common'
|
|
3
13
|
|
|
4
14
|
@Component({
|
|
5
15
|
selector: 'gn-ui-layers-panel',
|
|
6
16
|
templateUrl: './layers-panel.component.html',
|
|
7
17
|
styleUrls: ['./layers-panel.component.scss'],
|
|
8
18
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
19
|
+
standalone: true,
|
|
20
|
+
imports: [
|
|
21
|
+
MatIconModule,
|
|
22
|
+
UiLayoutModule,
|
|
23
|
+
MatTabsModule,
|
|
24
|
+
AddLayerFromOgcApiComponent,
|
|
25
|
+
AddLayerFromWfsComponent,
|
|
26
|
+
AddLayerFromWmsComponent,
|
|
27
|
+
AddLayerFromCatalogComponent,
|
|
28
|
+
AddLayerFromFileComponent,
|
|
29
|
+
TranslateModule,
|
|
30
|
+
CommonModule,
|
|
31
|
+
],
|
|
9
32
|
})
|
|
10
33
|
export class LayersPanelComponent {
|
|
11
34
|
layers$ = this.mapFacade.layers$
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { polygonFeatureCollectionFixture } from '../../../../../../libs/common/fixtures/src'
|
|
2
2
|
import { Extent } from 'ol/extent'
|
|
3
3
|
import {
|
|
4
4
|
MapContextLayerGeojsonModel,
|
|
@@ -8,44 +8,48 @@ import {
|
|
|
8
8
|
MapContextViewModel,
|
|
9
9
|
} from '../map-context/map-context.model'
|
|
10
10
|
|
|
11
|
-
export const
|
|
11
|
+
export const mapCtxLayerXyzFixture = (): MapContextLayerModel => ({
|
|
12
12
|
type: MapContextLayerTypeEnum.XYZ,
|
|
13
13
|
url: 'https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
14
|
-
}
|
|
15
|
-
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
export const mapCtxLayerWmsFixture = (): MapContextLayerModel => ({
|
|
16
17
|
type: MapContextLayerTypeEnum.WMS,
|
|
17
18
|
url: 'https://www.geograndest.fr/geoserver/region-grand-est/ows?REQUEST=GetCapabilities&SERVICE=WMS',
|
|
18
19
|
name: 'commune_actuelle_3857',
|
|
19
|
-
}
|
|
20
|
-
|
|
20
|
+
})
|
|
21
|
+
|
|
22
|
+
export const mapCtxLayerWfsFixture = (): MapContextLayerModel => ({
|
|
21
23
|
type: MapContextLayerTypeEnum.WFS,
|
|
22
24
|
url: 'https://www.geograndest.fr/geoserver/region-grand-est/ows?REQUEST=GetCapabilities&SERVICE=WFS&VERSION=1.1.0',
|
|
23
25
|
name: 'ms:commune_actuelle_3857',
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
+
})
|
|
27
|
+
|
|
28
|
+
export const mapCtxLayerGeojsonFixture = (): MapContextLayerGeojsonModel => ({
|
|
26
29
|
type: MapContextLayerTypeEnum.GEOJSON,
|
|
27
|
-
data:
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
data: polygonFeatureCollectionFixture(),
|
|
31
|
+
})
|
|
32
|
+
|
|
33
|
+
export const mapCtxLayerGeojsonRemoteFixture =
|
|
34
|
+
(): MapContextLayerGeojsonModel => ({
|
|
31
35
|
type: MapContextLayerTypeEnum.GEOJSON,
|
|
32
36
|
url: 'https://my.host.com/data/regions.json',
|
|
33
|
-
}
|
|
37
|
+
})
|
|
34
38
|
|
|
35
|
-
export const
|
|
39
|
+
export const mapCtxViewFixture = (): MapContextViewModel => ({
|
|
36
40
|
center: [7.75, 48.6],
|
|
37
41
|
zoom: 9,
|
|
38
|
-
}
|
|
42
|
+
})
|
|
39
43
|
|
|
40
|
-
export const
|
|
44
|
+
export const mapCtxFixture = (): MapContextModel => ({
|
|
41
45
|
layers: [
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
46
|
+
mapCtxLayerXyzFixture(),
|
|
47
|
+
mapCtxLayerWmsFixture(),
|
|
48
|
+
mapCtxLayerGeojsonFixture(),
|
|
45
49
|
],
|
|
46
|
-
view:
|
|
47
|
-
}
|
|
50
|
+
view: mapCtxViewFixture(),
|
|
51
|
+
})
|
|
48
52
|
|
|
49
|
-
export const
|
|
53
|
+
export const mapCtxExtentFixture = (): Extent => [
|
|
50
54
|
171083.69713494915, 6246047.945419401, 476970.39956295764, 6631079.362882684,
|
|
51
55
|
]
|
|
@@ -4,42 +4,44 @@ const colorPrimary = 'blue'
|
|
|
4
4
|
const colorSecondary = 'red'
|
|
5
5
|
const colorStroke = 'white'
|
|
6
6
|
|
|
7
|
-
export const
|
|
8
|
-
|
|
7
|
+
export const defaultMapStyleFixture = (): Style =>
|
|
8
|
+
new Style({
|
|
9
|
+
image: new Circle({
|
|
10
|
+
fill: new Fill({
|
|
11
|
+
color: colorPrimary,
|
|
12
|
+
}),
|
|
13
|
+
stroke: new Stroke({
|
|
14
|
+
color: colorStroke,
|
|
15
|
+
width: 2,
|
|
16
|
+
}),
|
|
17
|
+
radius: 5,
|
|
18
|
+
}),
|
|
9
19
|
fill: new Fill({
|
|
10
|
-
color:
|
|
20
|
+
color: 'rgba(0,0,255,0.25)',
|
|
11
21
|
}),
|
|
12
22
|
stroke: new Stroke({
|
|
13
23
|
color: colorStroke,
|
|
14
24
|
width: 2,
|
|
15
25
|
}),
|
|
16
|
-
|
|
17
|
-
}),
|
|
18
|
-
fill: new Fill({
|
|
19
|
-
color: 'rgba(0,0,255,0.25)',
|
|
20
|
-
}),
|
|
21
|
-
stroke: new Stroke({
|
|
22
|
-
color: colorStroke,
|
|
23
|
-
width: 2,
|
|
24
|
-
}),
|
|
25
|
-
})
|
|
26
|
+
})
|
|
26
27
|
|
|
27
|
-
export const
|
|
28
|
-
|
|
28
|
+
export const defaultMapStyleHlFixture = (): Style =>
|
|
29
|
+
new Style({
|
|
30
|
+
image: new Circle({
|
|
31
|
+
fill: new Fill({
|
|
32
|
+
color: colorSecondary,
|
|
33
|
+
}),
|
|
34
|
+
stroke: new Stroke({
|
|
35
|
+
color: colorStroke,
|
|
36
|
+
width: 3,
|
|
37
|
+
}),
|
|
38
|
+
radius: 6,
|
|
39
|
+
}),
|
|
29
40
|
fill: new Fill({
|
|
30
|
-
color:
|
|
41
|
+
color: 'rgba(255,0,0,0.25)',
|
|
31
42
|
}),
|
|
32
43
|
stroke: new Stroke({
|
|
33
|
-
color:
|
|
44
|
+
color: colorSecondary,
|
|
34
45
|
width: 3,
|
|
35
46
|
}),
|
|
36
|
-
|
|
37
|
-
}),
|
|
38
|
-
fill: new Fill({
|
|
39
|
-
color: 'rgba(255,0,0,0.25)',
|
|
40
|
-
}),
|
|
41
|
-
stroke: new Stroke({
|
|
42
|
-
color: colorSecondary,
|
|
43
|
-
width: 3,
|
|
44
|
-
}),
|
|
45
|
-
})
|
|
47
|
+
})
|
|
@@ -9,7 +9,7 @@ import { BehaviorSubject, combineLatest } from 'rxjs'
|
|
|
9
9
|
import { map, tap } from 'rxjs/operators'
|
|
10
10
|
import { MdViewFacade } from '../state'
|
|
11
11
|
import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model'
|
|
12
|
-
import {
|
|
12
|
+
import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
13
13
|
|
|
14
14
|
@Component({
|
|
15
15
|
selector: 'gn-ui-data-view',
|
|
@@ -43,7 +43,7 @@ export class DataViewComponent {
|
|
|
43
43
|
}))
|
|
44
44
|
)
|
|
45
45
|
)
|
|
46
|
-
selectedLink$ = new BehaviorSubject<
|
|
46
|
+
selectedLink$ = new BehaviorSubject<DatasetOnlineResource>(null)
|
|
47
47
|
|
|
48
48
|
constructor(private mdViewFacade: MdViewFacade) {}
|
|
49
49
|
|
|
@@ -52,7 +52,7 @@ export class DataViewComponent {
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
selectLink(linkAsString: string) {
|
|
55
|
-
const link:
|
|
55
|
+
const link: DatasetOnlineResource = JSON.parse(linkAsString)
|
|
56
56
|
link.url = new URL(link.url)
|
|
57
57
|
this.selectedLink$.next(link)
|
|
58
58
|
}
|
package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, Input } from '@angular/core'
|
|
2
2
|
import { MapConfig } from '../../../../../../libs/util/app-config/src'
|
|
3
|
-
import {
|
|
3
|
+
import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
4
4
|
import { marker } from '@biesbjerg/ngx-translate-extract-marker'
|
|
5
5
|
import { TranslateService } from '@ngx-translate/core'
|
|
6
6
|
import { getFileFormat } from '../../../../../../libs/util/shared/src'
|
|
@@ -14,7 +14,7 @@ marker('externalviewer.dataset.unnamed')
|
|
|
14
14
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
15
15
|
})
|
|
16
16
|
export class ExternalViewerButtonComponent {
|
|
17
|
-
@Input() link:
|
|
17
|
+
@Input() link: DatasetOnlineResource
|
|
18
18
|
@Input() mapConfig: MapConfig
|
|
19
19
|
|
|
20
20
|
get externalViewer() {
|
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
} from 'rxjs/operators'
|
|
41
41
|
import { MdViewFacade } from '../state/mdview.facade'
|
|
42
42
|
import { DataService } from '../../../../../../libs/feature/dataviz/src'
|
|
43
|
-
import {
|
|
43
|
+
import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
44
44
|
|
|
45
45
|
@Component({
|
|
46
46
|
selector: 'gn-ui-map-view',
|
|
@@ -183,7 +183,7 @@ export class MapViewComponent implements OnInit, OnDestroy {
|
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
getLayerFromLink(
|
|
186
|
-
link:
|
|
186
|
+
link: DatasetOnlineResource
|
|
187
187
|
): Observable<MapContextLayerModel> {
|
|
188
188
|
if (link.type === 'service' && link.accessServiceProtocol === 'wms') {
|
|
189
189
|
return of({
|
|
@@ -63,7 +63,11 @@ export class MdViewFacade {
|
|
|
63
63
|
chartConfig$ = this.store.pipe(select(MdViewSelectors.getChartConfig))
|
|
64
64
|
|
|
65
65
|
allLinks$ = this.metadata$.pipe(
|
|
66
|
-
map((record) =>
|
|
66
|
+
map((record) =>
|
|
67
|
+
record.kind === 'dataset' && 'onlineResources' in record
|
|
68
|
+
? record.onlineResources
|
|
69
|
+
: []
|
|
70
|
+
)
|
|
67
71
|
)
|
|
68
72
|
|
|
69
73
|
apiLinks$ = this.allLinks$.pipe(
|
package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
[hasDraft]="hasDraft"
|
|
4
4
|
[selectedRecordsIdentifiers]="selectedRecords$ | async"
|
|
5
5
|
[sortOrder]="sortBy$ | async"
|
|
6
|
+
[isUnsavedDraft]="isUnsavedDraft"
|
|
6
7
|
(recordClick)="handleRecordClick($event)"
|
|
7
8
|
(duplicateRecord)="handleDuplicateRecord($event)"
|
|
8
9
|
(deleteRecord)="handleDeleteRecord($event)"
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
Component,
|
|
3
|
+
EventEmitter,
|
|
4
|
+
Input,
|
|
5
|
+
OnDestroy,
|
|
6
|
+
Output,
|
|
7
|
+
} from '@angular/core'
|
|
2
8
|
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
3
9
|
import { SearchFacade } from '../state/search.facade'
|
|
4
10
|
import { SelectionService } from '../../../../../../libs/api/repository/src'
|
|
@@ -30,6 +36,9 @@ export class ResultsTableContainerComponent implements OnDestroy {
|
|
|
30
36
|
hasDraft = (record: CatalogRecord): boolean =>
|
|
31
37
|
this.recordsRepository.recordHasDraft(record.uniqueIdentifier)
|
|
32
38
|
|
|
39
|
+
isUnsavedDraft = (record: CatalogRecord): boolean =>
|
|
40
|
+
this.recordsRepository.isRecordNotYetSaved(record.uniqueIdentifier)
|
|
41
|
+
|
|
33
42
|
constructor(
|
|
34
43
|
private searchFacade: SearchFacade,
|
|
35
44
|
private searchService: SearchService,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const
|
|
1
|
+
export const searchStateFiltersFixture = () => ({
|
|
2
2
|
recursiveTerms: {
|
|
3
3
|
resourceType: {
|
|
4
4
|
service: {
|
|
@@ -26,4 +26,4 @@ export const SEARCH_STATE_FILTERS_FIXTURE = {
|
|
|
26
26
|
availableInViewService: '+linkProtocol:/OGC:WMS.*/',
|
|
27
27
|
},
|
|
28
28
|
},
|
|
29
|
-
}
|
|
29
|
+
})
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const
|
|
1
|
+
export const charItemFixture = () => [
|
|
2
2
|
{
|
|
3
3
|
name: 'name 1',
|
|
4
4
|
id: 'id 1',
|
|
@@ -19,7 +19,7 @@ export const CHART_ITEM_FIXTURE = [
|
|
|
19
19
|
},
|
|
20
20
|
]
|
|
21
21
|
|
|
22
|
-
export const
|
|
22
|
+
export const chartItemHabFixture = () => [
|
|
23
23
|
{
|
|
24
24
|
name: 'France',
|
|
25
25
|
id: '1',
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const
|
|
1
|
+
export const tableItemFixture = () => [
|
|
2
2
|
{
|
|
3
3
|
name: 'name 1',
|
|
4
4
|
id: 'id 1',
|
|
@@ -16,7 +16,7 @@ export const TABLE_ITEM_FIXTURE = [
|
|
|
16
16
|
},
|
|
17
17
|
]
|
|
18
18
|
|
|
19
|
-
export const
|
|
19
|
+
export const someHabTableItemFixture = () => [
|
|
20
20
|
{
|
|
21
21
|
name: 'France',
|
|
22
22
|
id: '1',
|