geonetwork-ui 2.4.0-dev.00c93bef → 2.4.0-dev.0925104f
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/lib/gn4/types/keywords.model.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +7 -5
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +30 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +23 -1
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +10 -3
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +31 -3
- 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 +11 -1
- package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
- 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/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
- 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 +29 -0
- package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +78 -0
- package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +96 -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 +164 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +19 -41
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +10 -8
- 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-open-data/form-field-open-data.component.mjs +44 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +28 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +10 -6
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +11 -11
- 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 +111 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +49 -52
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +16 -14
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +37 -43
- 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 +37 -4
- 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 +6 -5
- 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/map/src/lib/utils/map-utils.service.mjs +10 -5
- 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 +48 -8
- package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +6 -2
- package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
- package/esm2022/libs/ui/elements/src/index.mjs +2 -1
- package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +4 -3
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
- package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +6 -10
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +11 -5
- package/esm2022/libs/ui/inputs/src/index.mjs +2 -1
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +19 -5
- package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
- package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +17 -14
- 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 +6 -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/lib/form-field-wrapper/form-field-wrapper.component.mjs +3 -3
- package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
- 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/action-menu/action-menu.component.mjs +67 -0
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +31 -11
- package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
- package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
- package/esm2022/translations/de.json +64 -19
- package/esm2022/translations/en.json +57 -12
- package/esm2022/translations/es.json +54 -9
- package/esm2022/translations/fr.json +68 -23
- package/esm2022/translations/it.json +57 -12
- package/esm2022/translations/nl.json +54 -9
- package/esm2022/translations/pt.json +54 -9
- package/fesm2022/geonetwork-ui.mjs +4665 -3305
- package/fesm2022/geonetwork-ui.mjs.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/iso19139/iso19139.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +8 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
- package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +3 -1
- 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 +1 -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 +7 -1
- 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 +1 -0
- 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 -0
- 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 +3 -1
- 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 +1 -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 +17 -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/data-access/gn4/src/openapi/api/records.api.service.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 +12 -0
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +32 -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/overview-upload/overview-upload.component.d.ts +27 -0
- package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.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 +44 -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.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +8 -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-open-data/form-field-open-data.component.d.ts +15 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.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 +13 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +4 -3
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.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 -4
- 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 +23 -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 +15 -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-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 +15 -19
- 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/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/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 +8 -0
- package/libs/feature/editor/src/lib/fields.config.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 +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-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/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +15 -4
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/search.facade.d.ts +1 -0
- package/libs/feature/search/src/lib/state/search.facade.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 -0
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
- package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.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/sortable-list/sortable-list.component.d.ts +5 -10
- package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +8 -6
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/index.d.ts +1 -0
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.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/image-input/image-input.component.d.ts +3 -4
- 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 +17 -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/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/action-menu/action-menu.component.d.ts +20 -0
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +10 -4
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/ui/widgets/src/index.d.ts +1 -0
- package/libs/ui/widgets/src/index.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
- package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
- 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/package.json +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +6 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +5 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +37 -12
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +6 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +72 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +70 -1
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +13 -5
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +42 -2
- 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 +43 -12
- package/src/libs/common/domain/src/lib/model/record/contact.model.ts +28 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +3 -1
- 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 +4 -0
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +22 -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 +84 -56
- 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 +6 -6
- 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/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
- package/src/libs/data-access/gn4/src/spec.yaml +0 -8
- package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
- package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
- 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.css +0 -0
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +27 -0
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +30 -0
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -0
- 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 +89 -0
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +2 -1
- package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +74 -31
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +0 -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 +76 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +249 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -17
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +18 -51
- 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-open-data/form-field-open-data.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +48 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +33 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +9 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +13 -7
- 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 +15 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +156 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +9 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +59 -70
- 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 +103 -68
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +43 -43
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +2 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +7 -2
- 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 +40 -3
- 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 +5 -1
- 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/map/src/lib/utils/map-utils.service.ts +8 -4
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +4 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +66 -3
- package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
- package/src/libs/feature/search/src/lib/state/search.facade.ts +6 -0
- 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 -0
- package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
- package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
- package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +4 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +2 -1
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
- package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +3 -10
- package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts +7 -7
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +8 -2
- package/src/libs/ui/inputs/src/index.ts +1 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +15 -3
- 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 +0 -0
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +85 -0
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +91 -0
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +49 -49
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +15 -13
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +2 -27
- 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/lib/form-field-wrapper/form-field-wrapper.component.html +1 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -0
- 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/action-menu/action-menu.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +24 -3
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +27 -16
- package/src/libs/ui/widgets/src/index.ts +1 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
- package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
- package/tailwind.base.css +18 -5
- package/translations/de.json +64 -19
- package/translations/en.json +57 -12
- package/translations/es.json +54 -9
- package/translations/fr.json +68 -23
- package/translations/it.json +57 -12
- package/translations/nl.json +54 -9
- package/translations/pt.json +54 -9
- package/translations/sk.json +55 -10
- 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
|
@@ -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
|
+
})
|
|
@@ -32,7 +32,7 @@ import { ProxyService } from '../../../../../../libs/util/shared/src'
|
|
|
32
32
|
import { WmsEndpoint, WmtsEndpoint } from '@camptocamp/ogc-client'
|
|
33
33
|
import { LONLAT_CRS_CODES } from '../constant/projections'
|
|
34
34
|
import { fromEPSGCode, register } from 'ol/proj/proj4'
|
|
35
|
-
import proj4 from 'proj4
|
|
35
|
+
import proj4 from 'proj4'
|
|
36
36
|
import { defaults as defaultControls } from 'ol/control/defaults'
|
|
37
37
|
|
|
38
38
|
const FEATURE_PROJECTION = 'EPSG:3857'
|
|
@@ -220,11 +220,15 @@ export class MapUtilsService {
|
|
|
220
220
|
if (!('spatialExtents' in record) || record.spatialExtents.length === 0) {
|
|
221
221
|
return null
|
|
222
222
|
}
|
|
223
|
-
//
|
|
223
|
+
// extend all the spatial extents into an including bbox
|
|
224
224
|
const totalExtent = record.spatialExtents.reduce(
|
|
225
225
|
(prev, curr) => {
|
|
226
|
-
|
|
227
|
-
|
|
226
|
+
if ('bbox' in curr) return extend(prev, curr.bbox)
|
|
227
|
+
else if ('geometry' in curr) {
|
|
228
|
+
const geom = GEOJSON.readGeometry(curr.geometry)
|
|
229
|
+
return extend(prev, geom.getExtent())
|
|
230
|
+
}
|
|
231
|
+
return prev
|
|
228
232
|
},
|
|
229
233
|
[Infinity, Infinity, -Infinity, -Infinity]
|
|
230
234
|
)
|
package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
<gn-ui-results-table
|
|
2
2
|
[records]="records$ | async"
|
|
3
|
-
[
|
|
3
|
+
[hasDraft]="hasDraft"
|
|
4
4
|
[selectedRecordsIdentifiers]="selectedRecords$ | async"
|
|
5
5
|
[sortOrder]="sortBy$ | async"
|
|
6
|
+
[isUnsavedDraft]="isUnsavedDraft"
|
|
6
7
|
(recordClick)="handleRecordClick($event)"
|
|
8
|
+
(duplicateRecord)="handleDuplicateRecord($event)"
|
|
9
|
+
(deleteRecord)="handleDeleteRecord($event)"
|
|
7
10
|
(recordsSelectedChange)="handleRecordsSelectedChange($event[0], $event[1])"
|
|
8
11
|
(sortByChange)="handleSortByChange($event[0], $event[1])"
|
|
9
12
|
></gn-ui-results-table>
|
|
@@ -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'
|
|
@@ -6,6 +12,9 @@ import { SearchService } from '../utils/service/search.service'
|
|
|
6
12
|
import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface'
|
|
7
13
|
import { ResultsTableComponent } from '../../../../../../libs/ui/search/src'
|
|
8
14
|
import { CommonModule } from '@angular/common'
|
|
15
|
+
import { Subscription } from 'rxjs'
|
|
16
|
+
import { NotificationsService } from '../../../../../../libs/feature/notifications/src'
|
|
17
|
+
import { TranslateService } from '@ngx-translate/core'
|
|
9
18
|
|
|
10
19
|
@Component({
|
|
11
20
|
selector: 'gn-ui-results-table-container',
|
|
@@ -14,8 +23,11 @@ import { CommonModule } from '@angular/common'
|
|
|
14
23
|
standalone: true,
|
|
15
24
|
imports: [CommonModule, ResultsTableComponent],
|
|
16
25
|
})
|
|
17
|
-
export class ResultsTableContainerComponent {
|
|
26
|
+
export class ResultsTableContainerComponent implements OnDestroy {
|
|
18
27
|
@Output() recordClick = new EventEmitter<CatalogRecord>()
|
|
28
|
+
@Output() duplicateRecord = new EventEmitter<CatalogRecord>()
|
|
29
|
+
|
|
30
|
+
subscription = new Subscription()
|
|
19
31
|
|
|
20
32
|
records$ = this.searchFacade.results$
|
|
21
33
|
selectedRecords$ = this.selectionService.selectedRecordsIdentifiers$
|
|
@@ -24,17 +36,64 @@ export class ResultsTableContainerComponent {
|
|
|
24
36
|
hasDraft = (record: CatalogRecord): boolean =>
|
|
25
37
|
this.recordsRepository.recordHasDraft(record.uniqueIdentifier)
|
|
26
38
|
|
|
39
|
+
isUnsavedDraft = (record: CatalogRecord): boolean =>
|
|
40
|
+
this.recordsRepository.isRecordNotYetSaved(record.uniqueIdentifier)
|
|
41
|
+
|
|
27
42
|
constructor(
|
|
28
43
|
private searchFacade: SearchFacade,
|
|
29
44
|
private searchService: SearchService,
|
|
30
45
|
private selectionService: SelectionService,
|
|
31
|
-
private recordsRepository: RecordsRepositoryInterface
|
|
46
|
+
private recordsRepository: RecordsRepositoryInterface,
|
|
47
|
+
private notificationsService: NotificationsService,
|
|
48
|
+
private translateService: TranslateService
|
|
32
49
|
) {}
|
|
33
50
|
|
|
34
51
|
handleRecordClick(item: unknown) {
|
|
35
52
|
this.recordClick.emit(item as CatalogRecord)
|
|
36
53
|
}
|
|
37
54
|
|
|
55
|
+
handleDuplicateRecord(item: unknown) {
|
|
56
|
+
this.duplicateRecord.emit(item as CatalogRecord)
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
async handleDeleteRecord(item: unknown) {
|
|
60
|
+
const uniqueIdentifier = (item as CatalogRecord).uniqueIdentifier
|
|
61
|
+
this.subscription.add(
|
|
62
|
+
this.recordsRepository.deleteRecord(uniqueIdentifier).subscribe({
|
|
63
|
+
next: () => {
|
|
64
|
+
this.recordsRepository.clearRecordDraft(uniqueIdentifier)
|
|
65
|
+
this.searchFacade.requestNewResults()
|
|
66
|
+
this.notificationsService.showNotification(
|
|
67
|
+
{
|
|
68
|
+
type: 'success',
|
|
69
|
+
title: this.translateService.instant(
|
|
70
|
+
'editor.record.deleteSuccess.title'
|
|
71
|
+
),
|
|
72
|
+
text: `${this.translateService.instant(
|
|
73
|
+
'editor.record.deleteSuccess.body'
|
|
74
|
+
)}`,
|
|
75
|
+
},
|
|
76
|
+
2500
|
|
77
|
+
)
|
|
78
|
+
},
|
|
79
|
+
error: (error) => {
|
|
80
|
+
this.notificationsService.showNotification({
|
|
81
|
+
type: 'error',
|
|
82
|
+
title: this.translateService.instant(
|
|
83
|
+
'editor.record.deleteError.title'
|
|
84
|
+
),
|
|
85
|
+
text: `${this.translateService.instant(
|
|
86
|
+
'editor.record.deleteError.body'
|
|
87
|
+
)} ${error}`,
|
|
88
|
+
closeMessage: this.translateService.instant(
|
|
89
|
+
'editor.record.deleteError.closeMessage'
|
|
90
|
+
),
|
|
91
|
+
})
|
|
92
|
+
},
|
|
93
|
+
})
|
|
94
|
+
)
|
|
95
|
+
}
|
|
96
|
+
|
|
38
97
|
handleSortByChange(col: string, order: 'asc' | 'desc') {
|
|
39
98
|
this.searchService.setSortBy([order, col])
|
|
40
99
|
}
|
|
@@ -46,4 +105,8 @@ export class ResultsTableContainerComponent {
|
|
|
46
105
|
this.selectionService.selectRecords(records)
|
|
47
106
|
}
|
|
48
107
|
}
|
|
108
|
+
|
|
109
|
+
ngOnDestroy() {
|
|
110
|
+
this.subscription.unsubscribe()
|
|
111
|
+
}
|
|
49
112
|
}
|
|
@@ -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
|
+
})
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
Paginate,
|
|
9
9
|
RequestMoreOnAggregation,
|
|
10
10
|
RequestMoreResults,
|
|
11
|
+
RequestNewResults,
|
|
11
12
|
SetConfigAggregations,
|
|
12
13
|
SetConfigFilters,
|
|
13
14
|
SetConfigRequestFields,
|
|
@@ -151,6 +152,11 @@ export class SearchFacade {
|
|
|
151
152
|
return this
|
|
152
153
|
}
|
|
153
154
|
|
|
155
|
+
requestNewResults(): SearchFacade {
|
|
156
|
+
this.store.dispatch(new RequestNewResults(this.searchId))
|
|
157
|
+
return this
|
|
158
|
+
}
|
|
159
|
+
|
|
154
160
|
requestMoreOnAggregation(key: string, increment: number): SearchFacade {
|
|
155
161
|
this.store.dispatch(
|
|
156
162
|
new RequestMoreOnAggregation(key, increment, this.searchId)
|
|
@@ -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',
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from './lib/api-card/api-card.component'
|
|
2
2
|
export * from './lib/avatar/avatar.component'
|
|
3
|
+
export * from './lib/confirmation-dialog/confirmation-dialog.component'
|
|
3
4
|
export * from './lib/content-ghost/content-ghost.component'
|
|
4
5
|
export * from './lib/download-item/download-item.component'
|
|
5
6
|
export * from './lib/downloads-list/downloads-list.component'
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<h1 mat-dialog-title>{{ data.title }}</h1>
|
|
2
|
+
<div mat-dialog-content>{{ data.message }}</div>
|
|
3
|
+
<div mat-dialog-actions>
|
|
4
|
+
<gn-ui-button (buttonClick)="onCancel()">{{ data.cancelText }}</gn-ui-button>
|
|
5
|
+
<gn-ui-button
|
|
6
|
+
(buttonClick)="onConfirm()"
|
|
7
|
+
cdkFocusInitial
|
|
8
|
+
class="ml-2"
|
|
9
|
+
data-cy="confirm-button"
|
|
10
|
+
>{{ data.confirmText }}</gn-ui-button
|
|
11
|
+
>
|
|
12
|
+
</div>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, Inject } from '@angular/core'
|
|
2
|
+
import {
|
|
3
|
+
MAT_DIALOG_DATA,
|
|
4
|
+
MatDialogModule,
|
|
5
|
+
MatDialogRef,
|
|
6
|
+
} from '@angular/material/dialog'
|
|
7
|
+
import { ButtonComponent } from '../../../../../../libs/ui/inputs/src'
|
|
8
|
+
|
|
9
|
+
export interface ConfirmationDialogData {
|
|
10
|
+
title: string
|
|
11
|
+
message: string
|
|
12
|
+
confirmText: string
|
|
13
|
+
cancelText: string
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@Component({
|
|
17
|
+
selector: 'gn-ui-confirmation-dialog',
|
|
18
|
+
templateUrl: './confirmation-dialog.component.html',
|
|
19
|
+
styleUrls: ['./confirmation-dialog.component.css'],
|
|
20
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
21
|
+
standalone: true,
|
|
22
|
+
imports: [MatDialogModule, ButtonComponent],
|
|
23
|
+
})
|
|
24
|
+
export class ConfirmationDialogComponent {
|
|
25
|
+
constructor(
|
|
26
|
+
public dialogRef: MatDialogRef<ConfirmationDialogComponent>,
|
|
27
|
+
@Inject(MAT_DIALOG_DATA) public data: ConfirmationDialogData
|
|
28
|
+
) {}
|
|
29
|
+
|
|
30
|
+
onConfirm() {
|
|
31
|
+
this.dialogRef.close(true)
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
onCancel() {
|
|
35
|
+
this.dialogRef.close(false)
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<div class="mb-6 md-description sm:mb-4 sm:pr-16">
|
|
2
2
|
<gn-ui-content-ghost ghostClass="h-32" [showContent]="fieldReady('abstract')">
|
|
3
3
|
<gn-ui-max-lines [maxLines]="6" *ngIf="metadata.abstract">
|
|
4
|
-
<div>
|
|
4
|
+
<div class="mb-6">
|
|
5
5
|
<gn-ui-markdown-parser
|
|
6
6
|
[textContent]="metadata.abstract"
|
|
7
7
|
></gn-ui-markdown-parser>
|
|
@@ -47,19 +47,23 @@
|
|
|
47
47
|
</ng-template>
|
|
48
48
|
</ng-container>
|
|
49
49
|
<ng-container *ngIf="legalConstraints.length">
|
|
50
|
-
<
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
50
|
+
<div class="mb-6">
|
|
51
|
+
<gn-ui-markdown-parser
|
|
52
|
+
*ngFor="let constraint of legalConstraints"
|
|
53
|
+
[textContent]="constraint"
|
|
54
|
+
>
|
|
55
|
+
</gn-ui-markdown-parser>
|
|
56
|
+
</div>
|
|
55
57
|
</ng-container>
|
|
56
58
|
<ng-container *ngIf="otherConstraints.length">
|
|
57
59
|
<div gnUiLinkify *ngFor="let constraint of otherConstraints">
|
|
58
60
|
<h5 translate class="font-medium text-black text-sm mb-[2px] mt-[16px]">
|
|
59
61
|
record.metadata.otherConstraints
|
|
60
62
|
</h5>
|
|
61
|
-
<
|
|
62
|
-
|
|
63
|
+
<div class="mb-6">
|
|
64
|
+
<gn-ui-markdown-parser [textContent]="constraint">
|
|
65
|
+
</gn-ui-markdown-parser>
|
|
66
|
+
</div>
|
|
63
67
|
</div>
|
|
64
68
|
</ng-container>
|
|
65
69
|
|
|
@@ -1,22 +1,16 @@
|
|
|
1
|
-
<div
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
></gn-ui-progress-bar>
|
|
15
|
-
</div>
|
|
16
|
-
<div
|
|
17
|
-
class="absolute z-10 bg-white border border-black border-opacity-35 rounded-lg shadow-lg p-5 whitespace-nowrap"
|
|
18
|
-
[class]="isMenuShown ? 'block' : 'hidden'"
|
|
19
|
-
>
|
|
1
|
+
<div *ngIf="metadataQualityDisplay" class="mb-6 metadata-quality">
|
|
2
|
+
<gn-ui-popover [content]="popoverItems" theme="light-border">
|
|
3
|
+
<div class="min-w-[200px]" [class]="smaller ? 'leading-[8px]' : ''">
|
|
4
|
+
<gn-ui-progress-bar
|
|
5
|
+
tabindex="0"
|
|
6
|
+
[value]="qualityScore"
|
|
7
|
+
type="primary"
|
|
8
|
+
></gn-ui-progress-bar>
|
|
9
|
+
</div>
|
|
10
|
+
</gn-ui-popover>
|
|
11
|
+
</div>
|
|
12
|
+
<ng-template #popoverItems>
|
|
13
|
+
<div class="p-2 py-4">
|
|
20
14
|
<div class="mb-4 font-bold" translate>record.metadata.quality.details</div>
|
|
21
15
|
<gn-ui-metadata-quality-item
|
|
22
16
|
*ngFor="let e of items"
|
|
@@ -24,4 +18,4 @@
|
|
|
24
18
|
[value]="e.value"
|
|
25
19
|
></gn-ui-metadata-quality-item>
|
|
26
20
|
</div>
|
|
27
|
-
</
|
|
21
|
+
</ng-template>
|