geonetwork-ui 2.10.0-dev.e97ea6950 → 2.10.0-dev.f1c00d5fe
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/fesm2022/geonetwork-ui.mjs +2558 -6985
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +299 -189
- package/index.d.ts.map +1 -1
- package/package.json +25 -35
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +20 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +23 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +23 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +9 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +6 -5
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +11 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +21 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +52 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +24 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +73 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +79 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +8 -4
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +79 -41
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +37 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +23 -5
- package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
- package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
- package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -1
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +62 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
- package/src/libs/feature/editor/src/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +10 -1
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -20
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +15 -2
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +68 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +41 -0
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +18 -3
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +33 -40
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +41 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +33 -34
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +13 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +18 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +8 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.ts +89 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +3 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +28 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +16 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +118 -5
- package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
- package/src/libs/feature/editor/src/lib/fields.config.ts +354 -337
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +10 -3
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +9 -13
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
- package/src/libs/feature/notify-reuse/src/index.ts +2 -0
- package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.html +23 -0
- package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.ts +114 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +234 -0
- package/src/libs/feature/notify-reuse/src/lib/utils/url.ts +16 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
- package/src/libs/ui/dataviz/src/index.ts +0 -1
- package/src/libs/ui/elements/src/index.ts +3 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +88 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +41 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +70 -0
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +1 -1
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +0 -1
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +3 -2
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +26 -68
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +30 -10
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +8 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +0 -3
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -7
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +56 -30
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +2 -2
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +2 -1
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -1
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +15 -64
- package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +0 -1
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -1
- package/src/libs/util/app-config/src/lib/app-config.ts +70 -9
- package/src/libs/util/app-config/src/lib/model.ts +7 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
- package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
- package/src/libs/util/i18n/src/index.ts +0 -1
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
- package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
- package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +23 -1
- package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
- package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
- package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
- package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/user-display.ts +32 -0
- package/style.css +0 -1
- package/tailwind.base.css +26 -2
- package/translations/de.json +112 -50
- package/translations/en.json +117 -55
- package/translations/es.json +86 -24
- package/translations/fr.json +114 -52
- package/translations/it.json +113 -51
- package/translations/nl.json +85 -23
- package/translations/pt.json +86 -24
- package/translations/sk.json +86 -24
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -3
|
@@ -19,9 +19,17 @@ export interface FormFieldConfig {
|
|
|
19
19
|
// This is used for instance to target only certain online resources in a field
|
|
20
20
|
type OnlineLinkResourceSpecifier = `onlineResourceType:link`
|
|
21
21
|
type DatasetDistributionsSpecifier = `onlineResourceType:!link`
|
|
22
|
+
// Renders a single URL input bound to the first online resource of the record
|
|
23
|
+
// (FormFieldOnlineSingleLinkResourceComponent)
|
|
24
|
+
type OnlineSingleLinkResourceSpecifier = `onlineResourceType:singleLink`
|
|
25
|
+
// When set on the `contacts` field, contacts are rendered as editable detail
|
|
26
|
+
// fields (ContactDetailsFormComponent) instead of cards (ContactCardComponent)
|
|
27
|
+
type EditableContactDetailsSpecifier = `contact:editableDetails`
|
|
22
28
|
export type FieldModelSpecifier =
|
|
23
29
|
| OnlineLinkResourceSpecifier
|
|
24
30
|
| DatasetDistributionsSpecifier
|
|
31
|
+
| OnlineSingleLinkResourceSpecifier
|
|
32
|
+
| EditableContactDetailsSpecifier
|
|
25
33
|
|
|
26
34
|
export type FormFieldComponentName =
|
|
27
35
|
| 'form-field-constraints-shortcuts'
|
|
@@ -44,8 +52,7 @@ export interface EditorField extends EditorFieldIdentification {
|
|
|
44
52
|
gridColumnSpan?: number
|
|
45
53
|
|
|
46
54
|
// a hidden field won't show but can still be used to modify the record
|
|
47
|
-
|
|
48
|
-
hidden?: boolean
|
|
55
|
+
hidden?: boolean | EditorFieldExpression
|
|
49
56
|
|
|
50
57
|
// the result of this expression will replace the field value on save
|
|
51
58
|
onSaveProcess?: EditorFieldExpression
|
|
@@ -54,7 +61,7 @@ export interface EditorField extends EditorFieldIdentification {
|
|
|
54
61
|
export interface EditorSection {
|
|
55
62
|
labelKey?: string
|
|
56
63
|
descriptionKey?: string
|
|
57
|
-
hidden
|
|
64
|
+
hidden?: boolean | EditorFieldExpression
|
|
58
65
|
fields: EditorField[]
|
|
59
66
|
}
|
|
60
67
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { inject, Injectable } from '@angular/core'
|
|
2
|
+
import { Observable, switchMap } from 'rxjs'
|
|
3
3
|
import { map, tap } from 'rxjs/operators'
|
|
4
4
|
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
5
5
|
import { EditorConfig } from '../models/'
|
|
@@ -16,7 +16,8 @@ export class EditorService {
|
|
|
16
16
|
saveRecord(
|
|
17
17
|
record: CatalogRecord,
|
|
18
18
|
recordSource: string,
|
|
19
|
-
fieldsConfig: EditorConfig
|
|
19
|
+
fieldsConfig: EditorConfig,
|
|
20
|
+
publish: boolean
|
|
20
21
|
): Observable<[CatalogRecord, string]> {
|
|
21
22
|
const savedRecord = { ...record }
|
|
22
23
|
|
|
@@ -27,22 +28,17 @@ export class EditorService {
|
|
|
27
28
|
// run onSave processes
|
|
28
29
|
for (const field of fields) {
|
|
29
30
|
if (field.onSaveProcess && field.model) {
|
|
30
|
-
const evaluator = evaluate(field.onSaveProcess)
|
|
31
|
+
const { evaluator } = evaluate(field.onSaveProcess)
|
|
31
32
|
savedRecord[field.model] = evaluator({
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
globals: {
|
|
34
|
+
record,
|
|
35
|
+
},
|
|
34
36
|
})
|
|
35
37
|
}
|
|
36
38
|
}
|
|
37
|
-
let publishToAll = true
|
|
38
|
-
// if the record is new, generate a new unique identifier and pass publishToAll as false
|
|
39
|
-
if (!record.uniqueIdentifier) {
|
|
40
|
-
savedRecord.uniqueIdentifier = null
|
|
41
|
-
publishToAll = false
|
|
42
|
-
}
|
|
43
39
|
|
|
44
40
|
return this.recordsRepository
|
|
45
|
-
.saveRecord(savedRecord, recordSource,
|
|
41
|
+
.saveRecord(savedRecord, recordSource, publish)
|
|
46
42
|
.pipe(
|
|
47
43
|
switchMap((uniqueIdentifier) =>
|
|
48
44
|
this.recordsRepository.openRecordForEdition(uniqueIdentifier)
|
|
@@ -2,6 +2,23 @@ import { Injectable } from '@angular/core'
|
|
|
2
2
|
import { extend } from 'ol/extent.js'
|
|
3
3
|
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
4
4
|
import { BoundingBox, getGeometryBoundingBox } from '../../../../../../libs/util/shared/src'
|
|
5
|
+
import { MapContextLayer } from '@geospatial-sdk/core'
|
|
6
|
+
import {
|
|
7
|
+
createSpatialExtentLayer,
|
|
8
|
+
SpatialExtentLayerStyle,
|
|
9
|
+
} from '../../../../../../libs/ui/map/src'
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Style of the extent overlay drawn on top of the previewed data: a dashed
|
|
13
|
+
* black outline over a very light fill, so the extent stays readable without
|
|
14
|
+
* hiding the data underneath.
|
|
15
|
+
*/
|
|
16
|
+
const RECORD_EXTENT_OVERLAY_STYLE: SpatialExtentLayerStyle = {
|
|
17
|
+
'stroke-color': 'rgba(0, 0, 0, 0.6)',
|
|
18
|
+
'stroke-width': 2,
|
|
19
|
+
'stroke-line-dash': [8, 6],
|
|
20
|
+
'fill-color': 'rgba(0, 0, 0, 0.03)',
|
|
21
|
+
}
|
|
5
22
|
|
|
6
23
|
@Injectable({
|
|
7
24
|
providedIn: 'root',
|
|
@@ -26,4 +43,20 @@ export class MapUtilsService {
|
|
|
26
43
|
[Infinity, Infinity, -Infinity, -Infinity]
|
|
27
44
|
)
|
|
28
45
|
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Builds a non-interactive overlay layer drawing the spatial extent(s)
|
|
49
|
+
* declared in the record's metadata (bounding boxes and/or geometries).
|
|
50
|
+
* Returns null when the record has no usable spatial extent.
|
|
51
|
+
*
|
|
52
|
+
* This is purely for display and is independent from the map's initial view,
|
|
53
|
+
* which is derived separately (see {@link getRecordExtent}).
|
|
54
|
+
*/
|
|
55
|
+
getRecordExtentLayer(record: Partial<CatalogRecord>): MapContextLayer | null {
|
|
56
|
+
return createSpatialExtentLayer(record.spatialExtents ?? [], {
|
|
57
|
+
label: 'Spatial extent',
|
|
58
|
+
clickable: false,
|
|
59
|
+
style: RECORD_EXTENT_OVERLAY_STYLE,
|
|
60
|
+
})
|
|
61
|
+
}
|
|
29
62
|
}
|
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<div class="flex flex-row gap-6">
|
|
2
|
+
<gn-ui-button
|
|
3
|
+
class="grow"
|
|
4
|
+
type="primary"
|
|
5
|
+
extraClass="w-full flex flex-row justify-between"
|
|
6
|
+
[style.--gn-ui-button-rounded]="'10px'"
|
|
7
|
+
(buttonClick)="editReuse()"
|
|
8
|
+
data-cy="editReuseButton"
|
|
9
|
+
>
|
|
10
|
+
<span translate>notify.reuse.record.action.edit</span>
|
|
11
|
+
<ng-icon class="mr-[5px]" name="iconoirEdit"></ng-icon>
|
|
12
|
+
</gn-ui-button>
|
|
13
|
+
<gn-ui-button
|
|
14
|
+
type="outline"
|
|
15
|
+
[style.--gn-ui-button-rounded]="'10px'"
|
|
16
|
+
[style.--gn-ui-button-height]="'50px'"
|
|
17
|
+
[title]="'notify.reuse.record.action.delete' | translate"
|
|
18
|
+
(buttonClick)="deleteReuse()"
|
|
19
|
+
data-cy="deleteReuseButton"
|
|
20
|
+
>
|
|
21
|
+
<ng-icon name="iconoirTrash"></ng-icon>
|
|
22
|
+
</gn-ui-button>
|
|
23
|
+
</div>
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { LocationStrategy } from '@angular/common'
|
|
2
|
+
import { ChangeDetectionStrategy, Component, inject } from '@angular/core'
|
|
3
|
+
import { MatDialog } from '@angular/material/dialog'
|
|
4
|
+
import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface'
|
|
5
|
+
import { NotificationsService } from '../../../../../../libs/feature/notifications/src'
|
|
6
|
+
import { MdViewFacade } from '../../../../../../libs/feature/record/src'
|
|
7
|
+
import { RouterFacade } from '../../../../../../libs/feature/router/src'
|
|
8
|
+
import { ConfirmationDialogComponent } from '../../../../../../libs/ui/elements/src'
|
|
9
|
+
import { ButtonComponent } from '../../../../../../libs/ui/inputs/src'
|
|
10
|
+
import { NgIcon, provideIcons, provideNgIconsConfig } from '@ng-icons/core'
|
|
11
|
+
import { iconoirEdit, iconoirTrash } from '@ng-icons/iconoir'
|
|
12
|
+
import {
|
|
13
|
+
TranslateDirective,
|
|
14
|
+
TranslatePipe,
|
|
15
|
+
TranslateService,
|
|
16
|
+
} from '@ngx-translate/core'
|
|
17
|
+
import { filter, map, take } from 'rxjs/operators'
|
|
18
|
+
import { REUSE_FORM_URL } from '../../index'
|
|
19
|
+
import { navigateToLightEdit } from '../utils/url'
|
|
20
|
+
|
|
21
|
+
@Component({
|
|
22
|
+
selector: 'gn-ui-edit-delete-reuse-buttons',
|
|
23
|
+
templateUrl: './edit-delete-reuse-buttons.component.html',
|
|
24
|
+
styleUrl: './edit-delete-reuse-buttons.component.css',
|
|
25
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
26
|
+
standalone: true,
|
|
27
|
+
imports: [ButtonComponent, TranslatePipe, TranslateDirective, NgIcon],
|
|
28
|
+
viewProviders: [
|
|
29
|
+
provideIcons({
|
|
30
|
+
iconoirEdit,
|
|
31
|
+
iconoirTrash,
|
|
32
|
+
}),
|
|
33
|
+
provideNgIconsConfig({
|
|
34
|
+
size: '1.5em',
|
|
35
|
+
}),
|
|
36
|
+
],
|
|
37
|
+
})
|
|
38
|
+
export class EditDeleteReuseButtonsComponent {
|
|
39
|
+
metadataViewFacade = inject(MdViewFacade)
|
|
40
|
+
private recordsRepository = inject(RecordsRepositoryInterface)
|
|
41
|
+
private notificationsService = inject(NotificationsService)
|
|
42
|
+
private routerFacade = inject(RouterFacade)
|
|
43
|
+
private translateService = inject(TranslateService)
|
|
44
|
+
private dialog = inject(MatDialog)
|
|
45
|
+
reuseFormUrl = inject(REUSE_FORM_URL, { optional: true })
|
|
46
|
+
private locationStrategy = inject(LocationStrategy)
|
|
47
|
+
|
|
48
|
+
metadataUuid$ = this.metadataViewFacade.metadata$.pipe(
|
|
49
|
+
map((record) => record?.uniqueIdentifier),
|
|
50
|
+
filter(Boolean)
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
editReuse() {
|
|
54
|
+
this.metadataUuid$.pipe(take(1)).subscribe((uniqueIdentifier) => {
|
|
55
|
+
navigateToLightEdit(
|
|
56
|
+
this.reuseFormUrl,
|
|
57
|
+
this.locationStrategy.getBaseHref(),
|
|
58
|
+
uniqueIdentifier
|
|
59
|
+
)
|
|
60
|
+
})
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
deleteReuse() {
|
|
64
|
+
const dialogRef = this.dialog.open(ConfirmationDialogComponent, {
|
|
65
|
+
data: {
|
|
66
|
+
title: this.translateService.instant(
|
|
67
|
+
'record.reuse.delete.confirmation.title'
|
|
68
|
+
),
|
|
69
|
+
message: this.translateService.instant(
|
|
70
|
+
'record.reuse.delete.confirmation.message'
|
|
71
|
+
),
|
|
72
|
+
confirmText: this.translateService.instant(
|
|
73
|
+
'record.reuse.delete.confirmation.confirmText'
|
|
74
|
+
),
|
|
75
|
+
cancelText: this.translateService.instant(
|
|
76
|
+
'record.reuse.delete.confirmation.cancelText'
|
|
77
|
+
),
|
|
78
|
+
focusCancel: true,
|
|
79
|
+
},
|
|
80
|
+
restoreFocus: true,
|
|
81
|
+
})
|
|
82
|
+
|
|
83
|
+
dialogRef.afterClosed().subscribe((confirmed) => {
|
|
84
|
+
if (confirmed) {
|
|
85
|
+
this.performReuseDeletion()
|
|
86
|
+
}
|
|
87
|
+
})
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
private performReuseDeletion() {
|
|
91
|
+
this.metadataUuid$.pipe(take(1)).subscribe((uuid) =>
|
|
92
|
+
this.recordsRepository.deleteRecord(uuid).subscribe({
|
|
93
|
+
next: () => {
|
|
94
|
+
this.routerFacade.setSearch()
|
|
95
|
+
},
|
|
96
|
+
error: (error) => {
|
|
97
|
+
this.notificationsService.showNotification(
|
|
98
|
+
{
|
|
99
|
+
type: 'error',
|
|
100
|
+
title: this.translateService.instant(
|
|
101
|
+
'record.reuse.deleteError.title'
|
|
102
|
+
),
|
|
103
|
+
text: `${this.translateService.instant(
|
|
104
|
+
'record.reuse.deleteError.body'
|
|
105
|
+
)} ${error}`,
|
|
106
|
+
},
|
|
107
|
+
undefined,
|
|
108
|
+
error
|
|
109
|
+
)
|
|
110
|
+
},
|
|
111
|
+
})
|
|
112
|
+
)
|
|
113
|
+
}
|
|
114
|
+
}
|
package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.css
ADDED
|
File without changes
|
package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
<gn-ui-button
|
|
2
|
+
type="outline"
|
|
3
|
+
extraClass="w-full flex flex-row justify-between"
|
|
4
|
+
[style.--gn-ui-button-rounded]="'10px'"
|
|
5
|
+
(buttonClick)="toggleOverlay()"
|
|
6
|
+
>
|
|
7
|
+
<span translate>notify.reuse.record.action.declare</span>
|
|
8
|
+
<ng-icon class="mr-[5px]" name="iconoirAppWindow"></ng-icon>
|
|
9
|
+
</gn-ui-button>
|
|
10
|
+
<ng-template #notifyReuseForm>
|
|
11
|
+
<div
|
|
12
|
+
class="w-[400px] max-w-[90vw] flex flex-col gap-3 bg-gray-50 rounded-l overflow-clip px-4 py-5 shadow-[0px_9px_12px_0px_rgba(9,30,66,0.15),0px_0px_1px_0px_rgba(9,30,66,0.31)]"
|
|
13
|
+
>
|
|
14
|
+
<div class="flex flex-col gap-3 pb-3">
|
|
15
|
+
<div class="flex items-start justify-between pb-3">
|
|
16
|
+
<p class="text-xl font-medium text-black" translate>
|
|
17
|
+
notify.reuse.form.title
|
|
18
|
+
</p>
|
|
19
|
+
<gn-ui-button
|
|
20
|
+
type="gray-light"
|
|
21
|
+
class="shrink-0"
|
|
22
|
+
(buttonClick)="closeOverlay()"
|
|
23
|
+
[style.--gn-ui-button-padding]="0"
|
|
24
|
+
[style.--gn-ui-button-width]="'21px'"
|
|
25
|
+
[style.--gn-ui-button-height]="'21px'"
|
|
26
|
+
aria-label="Close"
|
|
27
|
+
>
|
|
28
|
+
<ng-icon
|
|
29
|
+
class="text-[22px] !w-[21px] !h-[21px]"
|
|
30
|
+
name="matCloseOutline"
|
|
31
|
+
></ng-icon>
|
|
32
|
+
</gn-ui-button>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
<div class="flex flex-col gap-[10px]">
|
|
36
|
+
<div class="flex flex-col gap-2">
|
|
37
|
+
<div class="flex items-center">
|
|
38
|
+
<label class="font-bold text-base text-main leading-6">
|
|
39
|
+
<span translate>notify.reuse.form.field.title</span>
|
|
40
|
+
<span class="text-red-500">*</span>
|
|
41
|
+
</label>
|
|
42
|
+
</div>
|
|
43
|
+
<gn-ui-text-input
|
|
44
|
+
#titleInput
|
|
45
|
+
[(value)]="title"
|
|
46
|
+
[placeholder]="
|
|
47
|
+
'notify.reuse.form.field.title.placeholder' | translate
|
|
48
|
+
"
|
|
49
|
+
[required]="true"
|
|
50
|
+
></gn-ui-text-input>
|
|
51
|
+
</div>
|
|
52
|
+
|
|
53
|
+
<div class="flex flex-col gap-2 pt-3">
|
|
54
|
+
<div class="flex items-center">
|
|
55
|
+
<label class="font-bold text-base text-main leading-6">
|
|
56
|
+
<span translate>notify.reuse.form.field.url</span>
|
|
57
|
+
<span class="text-red-500">*</span>
|
|
58
|
+
</label>
|
|
59
|
+
</div>
|
|
60
|
+
<gn-ui-text-input
|
|
61
|
+
#urlInput
|
|
62
|
+
[(value)]="url"
|
|
63
|
+
[type]="'url'"
|
|
64
|
+
[placeholder]="
|
|
65
|
+
'notify.reuse.form.field.url.placeholder' | translate
|
|
66
|
+
"
|
|
67
|
+
[required]="true"
|
|
68
|
+
></gn-ui-text-input>
|
|
69
|
+
</div>
|
|
70
|
+
|
|
71
|
+
<div class="flex flex-col gap-2 pt-3">
|
|
72
|
+
<div class="flex items-center">
|
|
73
|
+
<label class="font-bold text-base text-main leading-6">
|
|
74
|
+
<span translate>notify.reuse.form.field.email</span>
|
|
75
|
+
<span class="text-red-500">*</span>
|
|
76
|
+
</label>
|
|
77
|
+
</div>
|
|
78
|
+
<gn-ui-text-input
|
|
79
|
+
#emailInput
|
|
80
|
+
[(value)]="email"
|
|
81
|
+
[type]="'email'"
|
|
82
|
+
[placeholder]="
|
|
83
|
+
'notify.reuse.form.field.email.placeholder' | translate
|
|
84
|
+
"
|
|
85
|
+
[required]="true"
|
|
86
|
+
></gn-ui-text-input>
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
89
|
+
|
|
90
|
+
<p class="font-medium text-sm text-gray-700 leading-5" translate>
|
|
91
|
+
notify.reuse.form.required.hint
|
|
92
|
+
</p>
|
|
93
|
+
</div>
|
|
94
|
+
|
|
95
|
+
<div class="flex flex-col">
|
|
96
|
+
<gn-ui-button
|
|
97
|
+
type="primary"
|
|
98
|
+
extraClass="w-full h-8 justify-center gap-2"
|
|
99
|
+
[disabled]="!isFormValid() || loading()"
|
|
100
|
+
(buttonClick)="submit()"
|
|
101
|
+
>
|
|
102
|
+
@if (loading()) {
|
|
103
|
+
<mat-spinner [diameter]="16"></mat-spinner>
|
|
104
|
+
} @else {
|
|
105
|
+
<span translate>notify.reuse.form.submit</span>
|
|
106
|
+
<ng-icon name="iconoirPlusCircle" size="1.5em"></ng-icon>
|
|
107
|
+
}
|
|
108
|
+
</gn-ui-button>
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
</ng-template>
|
package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts
ADDED
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Overlay,
|
|
3
|
+
OverlayModule,
|
|
4
|
+
OverlayRef,
|
|
5
|
+
ScrollStrategyOptions,
|
|
6
|
+
} from '@angular/cdk/overlay'
|
|
7
|
+
import { TemplatePortal } from '@angular/cdk/portal'
|
|
8
|
+
import { CommonModule, LocationStrategy } from '@angular/common'
|
|
9
|
+
import {
|
|
10
|
+
ChangeDetectionStrategy,
|
|
11
|
+
Component,
|
|
12
|
+
computed,
|
|
13
|
+
inject,
|
|
14
|
+
InjectionToken,
|
|
15
|
+
input,
|
|
16
|
+
OnDestroy,
|
|
17
|
+
signal,
|
|
18
|
+
TemplateRef,
|
|
19
|
+
viewChild,
|
|
20
|
+
ViewContainerRef,
|
|
21
|
+
} from '@angular/core'
|
|
22
|
+
import { toSignal } from '@angular/core/rxjs-interop'
|
|
23
|
+
import { MatProgressSpinner } from '@angular/material/progress-spinner'
|
|
24
|
+
import { marker } from '@biesbjerg/ngx-translate-extract-marker'
|
|
25
|
+
import {
|
|
26
|
+
CatalogRecord,
|
|
27
|
+
Individual,
|
|
28
|
+
OnlineLinkResource,
|
|
29
|
+
ReuseRecord,
|
|
30
|
+
} from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
31
|
+
import { PlatformServiceInterface } from '../../../../../../libs/common/domain/src/lib/platform.service.interface'
|
|
32
|
+
import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface'
|
|
33
|
+
import { NOT_KNOWN_CONSTRAINT } from '../../../../../../libs/feature/editor/src'
|
|
34
|
+
import { NotificationsService } from '../../../../../../libs/feature/notifications/src'
|
|
35
|
+
import { ButtonComponent, TextInputComponent } from '../../../../../../libs/ui/inputs/src'
|
|
36
|
+
import { getOptionalEditorConfig } from '../../../../../../libs/util/app-config/src'
|
|
37
|
+
import { NgIcon, provideIcons, provideNgIconsConfig } from '@ng-icons/core'
|
|
38
|
+
import { iconoirAppWindow, iconoirPlusCircle } from '@ng-icons/iconoir'
|
|
39
|
+
import { matCloseOutline } from '@ng-icons/material-icons/outline'
|
|
40
|
+
import {
|
|
41
|
+
TranslateDirective,
|
|
42
|
+
TranslatePipe,
|
|
43
|
+
TranslateService,
|
|
44
|
+
} from '@ngx-translate/core'
|
|
45
|
+
import { navigateToLightEdit } from '../utils/url'
|
|
46
|
+
|
|
47
|
+
marker('notify.reuse.form.error.title')
|
|
48
|
+
marker('notify.reuse.form.error.body')
|
|
49
|
+
|
|
50
|
+
export const REUSE_FORM_URL = new InjectionToken<string>('reuseFormUrl')
|
|
51
|
+
|
|
52
|
+
@Component({
|
|
53
|
+
selector: 'gn-ui-notify-reuse-form',
|
|
54
|
+
standalone: true,
|
|
55
|
+
imports: [
|
|
56
|
+
CommonModule,
|
|
57
|
+
OverlayModule,
|
|
58
|
+
TextInputComponent,
|
|
59
|
+
ButtonComponent,
|
|
60
|
+
TranslatePipe,
|
|
61
|
+
TranslateDirective,
|
|
62
|
+
NgIcon,
|
|
63
|
+
MatProgressSpinner,
|
|
64
|
+
],
|
|
65
|
+
templateUrl: './notify-reuse-form.component.html',
|
|
66
|
+
styleUrl: './notify-reuse-form.component.css',
|
|
67
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
68
|
+
viewProviders: [
|
|
69
|
+
provideIcons({
|
|
70
|
+
iconoirAppWindow,
|
|
71
|
+
iconoirPlusCircle,
|
|
72
|
+
matCloseOutline,
|
|
73
|
+
}),
|
|
74
|
+
provideNgIconsConfig({
|
|
75
|
+
size: '1.5em',
|
|
76
|
+
}),
|
|
77
|
+
],
|
|
78
|
+
})
|
|
79
|
+
export class NotifyReuseFormComponent implements OnDestroy {
|
|
80
|
+
private overlay = inject(Overlay)
|
|
81
|
+
private viewContainerRef = inject(ViewContainerRef)
|
|
82
|
+
private scrollStrategies = inject(ScrollStrategyOptions)
|
|
83
|
+
private overlayRef: OverlayRef | null = null
|
|
84
|
+
private recordsRepository = inject(RecordsRepositoryInterface)
|
|
85
|
+
private readonly translate = inject(TranslateService)
|
|
86
|
+
private readonly notificationsService = inject(NotificationsService)
|
|
87
|
+
private readonly platformServiceInterface = inject(PlatformServiceInterface)
|
|
88
|
+
reuseFormUrl = inject(REUSE_FORM_URL, { optional: true })
|
|
89
|
+
private locationStrategy = inject(LocationStrategy)
|
|
90
|
+
|
|
91
|
+
me = toSignal(this.platformServiceInterface.getMe())
|
|
92
|
+
initialEmail = computed(() => this.me()?.email)
|
|
93
|
+
templateRef = viewChild<TemplateRef<HTMLElement>>('notifyReuseForm')
|
|
94
|
+
record = input<Partial<CatalogRecord | null>>(null)
|
|
95
|
+
|
|
96
|
+
// TODO: use a form() signal once migrated to Angular 22
|
|
97
|
+
title = signal('')
|
|
98
|
+
url = signal('')
|
|
99
|
+
email = signal(this.initialEmail() ?? '')
|
|
100
|
+
|
|
101
|
+
titleInput = viewChild<TextInputComponent>('titleInput')
|
|
102
|
+
urlInput = viewChild<TextInputComponent>('urlInput')
|
|
103
|
+
emailInput = viewChild<TextInputComponent>('emailInput')
|
|
104
|
+
|
|
105
|
+
loading = signal(false)
|
|
106
|
+
|
|
107
|
+
isFormValid = computed(
|
|
108
|
+
() =>
|
|
109
|
+
this.titleInput().isValid() &&
|
|
110
|
+
this.urlInput().isValid() &&
|
|
111
|
+
this.emailInput().isValid()
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
clearInputs() {
|
|
115
|
+
this.title.set('')
|
|
116
|
+
this.url.set('')
|
|
117
|
+
this.email.set(this.initialEmail() ?? '')
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
toggleOverlay() {
|
|
121
|
+
if (this.overlayRef) {
|
|
122
|
+
this.closeOverlay()
|
|
123
|
+
} else {
|
|
124
|
+
this.openOverlay()
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
openOverlay() {
|
|
129
|
+
const positionStrategy = this.overlay
|
|
130
|
+
.position()
|
|
131
|
+
.global()
|
|
132
|
+
.centerVertically()
|
|
133
|
+
.right('16px')
|
|
134
|
+
|
|
135
|
+
this.overlayRef = this.overlay.create({
|
|
136
|
+
positionStrategy,
|
|
137
|
+
hasBackdrop: false,
|
|
138
|
+
backdropClass: 'cdk-overlay-transparent-backdrop',
|
|
139
|
+
scrollStrategy: this.scrollStrategies.noop(),
|
|
140
|
+
})
|
|
141
|
+
|
|
142
|
+
this.overlayRef.attach(
|
|
143
|
+
new TemplatePortal(this.templateRef(), this.viewContainerRef)
|
|
144
|
+
)
|
|
145
|
+
this.overlayRef.backdropClick().subscribe(() => this.closeOverlay())
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
closeOverlay() {
|
|
149
|
+
this.clearInputs()
|
|
150
|
+
this.overlayRef?.dispose()
|
|
151
|
+
this.overlayRef = null
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
ngOnDestroy() {
|
|
155
|
+
this.closeOverlay()
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
submit() {
|
|
159
|
+
if (!this.isFormValid()) return
|
|
160
|
+
const defaultLang =
|
|
161
|
+
getOptionalEditorConfig()?.NEW_RECORD_DEFAULT_LANGUAGE ??
|
|
162
|
+
this.translate.currentLang
|
|
163
|
+
const onlineResource: OnlineLinkResource = {
|
|
164
|
+
type: 'link',
|
|
165
|
+
url: new URL(this.url()),
|
|
166
|
+
description: this.translate.instant('notify.reuse.link.description'),
|
|
167
|
+
}
|
|
168
|
+
const contact: Individual = {
|
|
169
|
+
firstName: this.me()?.name,
|
|
170
|
+
lastName: this.me()?.surname,
|
|
171
|
+
email: this.email(),
|
|
172
|
+
role: 'point_of_contact',
|
|
173
|
+
organization: { name: this.me()?.organisation },
|
|
174
|
+
}
|
|
175
|
+
const reuseRecord: ReuseRecord = {
|
|
176
|
+
kind: 'reuse',
|
|
177
|
+
reuseType: 'application',
|
|
178
|
+
uniqueIdentifier: null,
|
|
179
|
+
title: this.title(),
|
|
180
|
+
abstract: '',
|
|
181
|
+
overviews: [],
|
|
182
|
+
ownerOrganization: {
|
|
183
|
+
name: 'Owner organization',
|
|
184
|
+
},
|
|
185
|
+
recordUpdated: new Date(),
|
|
186
|
+
updateFrequency: 'unknown',
|
|
187
|
+
otherLanguages: [],
|
|
188
|
+
defaultLanguage: defaultLang,
|
|
189
|
+
topics: [],
|
|
190
|
+
keywords: [],
|
|
191
|
+
licenses: [],
|
|
192
|
+
legalConstraints: [NOT_KNOWN_CONSTRAINT],
|
|
193
|
+
securityConstraints: [],
|
|
194
|
+
otherConstraints: [],
|
|
195
|
+
contacts: [contact],
|
|
196
|
+
contactsForResource: [],
|
|
197
|
+
lineage: '',
|
|
198
|
+
sourceRecords: [
|
|
199
|
+
{
|
|
200
|
+
uuid: this.record()?.uniqueIdentifier ?? '',
|
|
201
|
+
title: this.record()?.title ?? '',
|
|
202
|
+
},
|
|
203
|
+
],
|
|
204
|
+
associatedRecords: [],
|
|
205
|
+
onlineResources: [onlineResource],
|
|
206
|
+
spatialExtents: [],
|
|
207
|
+
temporalExtents: [],
|
|
208
|
+
}
|
|
209
|
+
this.loading.set(true)
|
|
210
|
+
this.recordsRepository.saveRecord(reuseRecord, undefined, false).subscribe({
|
|
211
|
+
next: (uniqueIdentifier) => {
|
|
212
|
+
this.loading.set(false)
|
|
213
|
+
this.closeOverlay()
|
|
214
|
+
navigateToLightEdit(
|
|
215
|
+
this.reuseFormUrl,
|
|
216
|
+
this.locationStrategy.getBaseHref(),
|
|
217
|
+
uniqueIdentifier
|
|
218
|
+
)
|
|
219
|
+
},
|
|
220
|
+
error: (err) => {
|
|
221
|
+
this.loading.set(false)
|
|
222
|
+
this.notificationsService.showNotification(
|
|
223
|
+
{
|
|
224
|
+
type: 'error',
|
|
225
|
+
title: this.translate.instant('notify.reuse.form.error.title'),
|
|
226
|
+
text: this.translate.instant('notify.reuse.form.error.body'),
|
|
227
|
+
},
|
|
228
|
+
undefined,
|
|
229
|
+
err
|
|
230
|
+
)
|
|
231
|
+
},
|
|
232
|
+
})
|
|
233
|
+
}
|
|
234
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export const navigateToLightEdit = (
|
|
2
|
+
reuseFormUrl: string,
|
|
3
|
+
baseHref: string,
|
|
4
|
+
uniqueIdentifier: string
|
|
5
|
+
) => {
|
|
6
|
+
const baseUrl = `${reuseFormUrl ?? ''}`.replace(/\/+$/, '')
|
|
7
|
+
// Normalisation du baseHref pour éviter les doubles /
|
|
8
|
+
const baseHrefClean = baseHref.replace(/^\/+|\/+$/g, '')
|
|
9
|
+
const prefix = baseHrefClean ? `/${baseHrefClean}` : ''
|
|
10
|
+
const rawRedirectUrl = `${window.location.origin}${prefix}/reuse/${uniqueIdentifier}`
|
|
11
|
+
const redirect_on_leave = encodeURIComponent(rawRedirectUrl)
|
|
12
|
+
window.open(
|
|
13
|
+
`${baseUrl}/light-edit/${uniqueIdentifier}?redirect_on_leave=${redirect_on_leave}`,
|
|
14
|
+
'_self'
|
|
15
|
+
)
|
|
16
|
+
}
|
|
@@ -431,11 +431,19 @@ export class MapViewComponent implements AfterViewInit {
|
|
|
431
431
|
}),
|
|
432
432
|
withLatestFrom(this.mdViewFacade.metadata$),
|
|
433
433
|
map(([context, metadata]) => {
|
|
434
|
-
|
|
434
|
+
// overlay the record's declared spatial extent on top of the data layers
|
|
435
|
+
const extentLayer = this.mapUtils.getRecordExtentLayer(metadata)
|
|
436
|
+
const layers = extentLayer
|
|
437
|
+
? [...context.layers, extentLayer]
|
|
438
|
+
: context.layers
|
|
439
|
+
// the view (initial zoom) is derived from the data layer or, as a
|
|
440
|
+
// fallback, from the record extent — independently from the overlay above
|
|
441
|
+
if (context.view) return { ...context, layers }
|
|
435
442
|
const extent = this.mapUtils.getRecordExtent(metadata)
|
|
436
443
|
const view = extent ? { extent } : null
|
|
437
444
|
return {
|
|
438
445
|
...context,
|
|
446
|
+
layers,
|
|
439
447
|
view,
|
|
440
448
|
}
|
|
441
449
|
}),
|