geonetwork-ui 2.9.0-dev.fc19cbfed → 2.10.0-dev.02185426a
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 +2382 -6943
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +378 -196
- package/index.d.ts.map +1 -1
- package/material-styles.css +483 -0
- package/package.json +25 -35
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -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 +1 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +5 -4
- 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 +7 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -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 +72 -37
- 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 +48 -2
- package/src/libs/common/domain/src/index.ts +2 -0
- package/src/libs/common/domain/src/lib/model/index.ts +3 -0
- package/src/libs/common/domain/src/lib/model/record/index.ts +2 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +13 -5
- package/src/libs/common/domain/src/lib/model/search/index.ts +1 -1
- 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/fixtures/src/lib/records.fixtures.ts +56 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +3 -3
- package/src/libs/feature/editor/src/index.ts +2 -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 +67 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +39 -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 +11 -6
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +18 -2
- 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 +21 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +14 -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 +310 -336
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +6 -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 +1 -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 +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +21 -0
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +8 -4
- 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/downloads-list/downloads-list.component.ts +5 -3
- 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/dropdown-selector/dropdown-selector.component.ts +1 -1
- 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 +6 -2
- 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/util/app-config/src/lib/app-config.ts +72 -9
- package/src/libs/util/app-config/src/lib/model.ts +8 -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 +28 -2
- package/translations/de.json +82 -48
- package/translations/en.json +87 -53
- package/translations/es.json +56 -22
- package/translations/fr.json +84 -50
- package/translations/it.json +82 -48
- package/translations/nl.json +55 -21
- package/translations/pt.json +56 -22
- package/translations/sk.json +56 -22
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -3
|
@@ -12,7 +12,6 @@ import {
|
|
|
12
12
|
} from './editor.selectors'
|
|
13
13
|
import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface'
|
|
14
14
|
import { PlatformServiceInterface } from '../../../../../../libs/common/domain/src/lib/platform.service.interface'
|
|
15
|
-
|
|
16
15
|
@Injectable()
|
|
17
16
|
export class EditorEffects {
|
|
18
17
|
private actions$ = inject(Actions)
|
|
@@ -29,30 +28,37 @@ export class EditorEffects {
|
|
|
29
28
|
this.store.select(selectRecordSource),
|
|
30
29
|
this.store.select(selectEditorConfig)
|
|
31
30
|
),
|
|
32
|
-
switchMap(([, record, recordSource, fieldsConfig]) =>
|
|
33
|
-
this.editorService
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
switchMap(([{ publish }, record, recordSource, fieldsConfig]) =>
|
|
32
|
+
this.editorService
|
|
33
|
+
.saveRecord(record, recordSource, fieldsConfig, publish)
|
|
34
|
+
.pipe(
|
|
35
|
+
switchMap(([savedRecord, savedRecordSource]) => {
|
|
36
|
+
const actions: Action[] = [EditorActions.saveRecordSuccess()]
|
|
36
37
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
EditorActions.
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
if (publish) {
|
|
39
|
+
// saving without publishing doesn't unpublish
|
|
40
|
+
actions.push(EditorActions.isPublished({ isPublished: true }))
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
if (!record?.uniqueIdentifier) {
|
|
44
|
+
actions.push(
|
|
45
|
+
EditorActions.openRecord({
|
|
46
|
+
record: savedRecord,
|
|
47
|
+
recordSource: savedRecordSource,
|
|
48
|
+
})
|
|
49
|
+
)
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
return of(...actions)
|
|
53
|
+
}),
|
|
54
|
+
catchError((error) =>
|
|
55
|
+
of(
|
|
56
|
+
EditorActions.saveRecordFailure({
|
|
57
|
+
error,
|
|
42
58
|
})
|
|
43
59
|
)
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
return of(...actions)
|
|
47
|
-
}),
|
|
48
|
-
catchError((error) =>
|
|
49
|
-
of(
|
|
50
|
-
EditorActions.saveRecordFailure({
|
|
51
|
-
error,
|
|
52
|
-
})
|
|
53
60
|
)
|
|
54
61
|
)
|
|
55
|
-
)
|
|
56
62
|
)
|
|
57
63
|
)
|
|
58
64
|
)
|
|
@@ -4,9 +4,10 @@ import * as EditorActions from './editor.actions'
|
|
|
4
4
|
import * as EditorSelectors from './editor.selectors'
|
|
5
5
|
import {
|
|
6
6
|
CatalogRecord,
|
|
7
|
+
CatalogRecordKeys,
|
|
7
8
|
LanguageCode,
|
|
8
9
|
} from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
9
|
-
import { filter } from 'rxjs'
|
|
10
|
+
import { filter, map } from 'rxjs'
|
|
10
11
|
import { Actions, ofType } from '@ngrx/effects'
|
|
11
12
|
import { EditorConfig, EditorFieldIdentification } from '../models'
|
|
12
13
|
|
|
@@ -37,6 +38,10 @@ export class EditorFacade {
|
|
|
37
38
|
)
|
|
38
39
|
isPublished$ = this.store.pipe(select(EditorSelectors.selectIsPublished))
|
|
39
40
|
canEditRecord$ = this.store.pipe(select(EditorSelectors.selectCanEditRecord))
|
|
41
|
+
focusedField$ = this.actions$.pipe(
|
|
42
|
+
ofType(EditorActions.setFocusedField),
|
|
43
|
+
map(({ model }) => model)
|
|
44
|
+
)
|
|
40
45
|
|
|
41
46
|
openRecord(record: CatalogRecord, recordSource: string) {
|
|
42
47
|
this.store.dispatch(
|
|
@@ -49,7 +54,11 @@ export class EditorFacade {
|
|
|
49
54
|
}
|
|
50
55
|
|
|
51
56
|
saveRecord() {
|
|
52
|
-
this.store.dispatch(EditorActions.saveRecord())
|
|
57
|
+
this.store.dispatch(EditorActions.saveRecord({ publish: false }))
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
saveAndPublishRecord() {
|
|
61
|
+
this.store.dispatch(EditorActions.saveRecord({ publish: true }))
|
|
53
62
|
}
|
|
54
63
|
|
|
55
64
|
undoRecordDraft() {
|
|
@@ -77,6 +86,10 @@ export class EditorFacade {
|
|
|
77
86
|
this.store.dispatch(EditorActions.setCurrentPage({ page }))
|
|
78
87
|
}
|
|
79
88
|
|
|
89
|
+
setFocusedField(model: CatalogRecordKeys) {
|
|
90
|
+
this.store.dispatch(EditorActions.setFocusedField({ model }))
|
|
91
|
+
}
|
|
92
|
+
|
|
80
93
|
setFieldVisibility(field: EditorFieldIdentification, visible: boolean) {
|
|
81
94
|
this.store.dispatch(EditorActions.setFieldVisibility({ field, visible }))
|
|
82
95
|
}
|
package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts
CHANGED
|
@@ -8,7 +8,6 @@ import {
|
|
|
8
8
|
|
|
9
9
|
import { FormFieldRichComponent } from '../record-form/form-field/form-field-rich/form-field-rich.component'
|
|
10
10
|
import { ButtonComponent, UrlInputComponent } from '../../../../../../../libs/ui/inputs/src'
|
|
11
|
-
import { MatIconModule } from '@angular/material/icon'
|
|
12
11
|
import { TranslateDirective, TranslatePipe } from '@ngx-translate/core'
|
|
13
12
|
import { Constraint } from '../../../../../../../libs/common/domain/src/lib/model/record'
|
|
14
13
|
import {
|
|
@@ -26,7 +25,6 @@ import { marker } from '@biesbjerg/ngx-translate-extract-marker'
|
|
|
26
25
|
FormFieldRichComponent,
|
|
27
26
|
UrlInputComponent,
|
|
28
27
|
ButtonComponent,
|
|
29
|
-
MatIconModule,
|
|
30
28
|
TranslateDirective,
|
|
31
29
|
TranslatePipe,
|
|
32
30
|
NgIconComponent,
|
|
File without changes
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<div class="flex flex-col gap-7">
|
|
2
|
+
<div class="grid grid-cols-2 gap-4">
|
|
3
|
+
<div class="min-w-0">
|
|
4
|
+
<h3 class="text-[16px] font-bold text-main mb-[12px]" translate>
|
|
5
|
+
editor.record.form.field.contactDetails.lastName
|
|
6
|
+
</h3>
|
|
7
|
+
<gn-ui-text-input
|
|
8
|
+
class="block w-full"
|
|
9
|
+
extraClass="w-full"
|
|
10
|
+
[(value)]="contact.lastName"
|
|
11
|
+
(valueChange)="emitContactChange()"
|
|
12
|
+
[placeholder]="
|
|
13
|
+
'editor.record.form.field.contactDetails.lastName.placeholder'
|
|
14
|
+
| translate
|
|
15
|
+
"
|
|
16
|
+
data-test="contactDetailsLastName"
|
|
17
|
+
></gn-ui-text-input>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="min-w-0">
|
|
20
|
+
<h3 class="text-[16px] font-bold text-main mb-[12px]" translate>
|
|
21
|
+
editor.record.form.field.contactDetails.firstName
|
|
22
|
+
</h3>
|
|
23
|
+
<gn-ui-text-input
|
|
24
|
+
class="block w-full"
|
|
25
|
+
extraClass="w-full"
|
|
26
|
+
[(value)]="contact.firstName"
|
|
27
|
+
(valueChange)="emitContactChange()"
|
|
28
|
+
[placeholder]="
|
|
29
|
+
'editor.record.form.field.contactDetails.firstName.placeholder'
|
|
30
|
+
| translate
|
|
31
|
+
"
|
|
32
|
+
data-test="contactDetailsFirstName"
|
|
33
|
+
></gn-ui-text-input>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
<div>
|
|
37
|
+
<h3 class="text-[16px] font-bold text-main mb-[12px]" translate>
|
|
38
|
+
editor.record.form.field.contactDetails.email
|
|
39
|
+
</h3>
|
|
40
|
+
<gn-ui-text-input
|
|
41
|
+
class="block w-full"
|
|
42
|
+
extraClass="w-full"
|
|
43
|
+
[value]="contact.organization?.email ?? ''"
|
|
44
|
+
(valueChange)="handleOrganizationChange({ email: $event })"
|
|
45
|
+
[placeholder]="
|
|
46
|
+
'editor.record.form.field.contactDetails.email.placeholder' | translate
|
|
47
|
+
"
|
|
48
|
+
data-test="contactDetailsEmail"
|
|
49
|
+
></gn-ui-text-input>
|
|
50
|
+
</div>
|
|
51
|
+
<div>
|
|
52
|
+
<h3 class="text-[16px] font-bold text-main mb-[12px]" translate>
|
|
53
|
+
editor.record.form.field.contactDetails.organization
|
|
54
|
+
</h3>
|
|
55
|
+
<gn-ui-text-input
|
|
56
|
+
class="block w-full"
|
|
57
|
+
extraClass="w-full"
|
|
58
|
+
[value]="contact.organization?.name ?? ''"
|
|
59
|
+
(valueChange)="handleOrganizationChange({ name: $event })"
|
|
60
|
+
[placeholder]="
|
|
61
|
+
'editor.record.form.field.contactDetails.organization.placeholder'
|
|
62
|
+
| translate
|
|
63
|
+
"
|
|
64
|
+
data-test="contactDetailsOrganization"
|
|
65
|
+
></gn-ui-text-input>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ChangeDetectionStrategy,
|
|
3
|
+
Component,
|
|
4
|
+
EventEmitter,
|
|
5
|
+
Input,
|
|
6
|
+
Output,
|
|
7
|
+
} from '@angular/core'
|
|
8
|
+
import {
|
|
9
|
+
Individual,
|
|
10
|
+
Organization,
|
|
11
|
+
} from '../../../../../../../libs/common/domain/src/lib/model/record'
|
|
12
|
+
import { TextInputComponent } from '../../../../../../../libs/ui/inputs/src'
|
|
13
|
+
import { TranslateDirective, TranslatePipe } from '@ngx-translate/core'
|
|
14
|
+
|
|
15
|
+
@Component({
|
|
16
|
+
selector: 'gn-ui-contact-details-form',
|
|
17
|
+
templateUrl: './contact-details-form.component.html',
|
|
18
|
+
styleUrls: ['./contact-details-form.component.css'],
|
|
19
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
20
|
+
standalone: true,
|
|
21
|
+
imports: [TextInputComponent, TranslateDirective, TranslatePipe],
|
|
22
|
+
})
|
|
23
|
+
export class ContactDetailsFormComponent {
|
|
24
|
+
@Input() contact: Individual
|
|
25
|
+
@Output() contactChange = new EventEmitter<Individual>()
|
|
26
|
+
|
|
27
|
+
emitContactChange() {
|
|
28
|
+
this.contactChange.emit(this.contact)
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
handleOrganizationChange(change: Partial<Organization>) {
|
|
32
|
+
this.contact.organization = {
|
|
33
|
+
...(this.contact.organization ?? ({} as Organization)),
|
|
34
|
+
...change,
|
|
35
|
+
} as Organization
|
|
36
|
+
|
|
37
|
+
this.emitContactChange()
|
|
38
|
+
}
|
|
39
|
+
}
|
package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html
CHANGED
|
@@ -11,20 +11,11 @@
|
|
|
11
11
|
></gn-ui-autocomplete>
|
|
12
12
|
<div class="flex gap-2 flex-wrap">
|
|
13
13
|
@for (keyword of keywords; track keyword) {
|
|
14
|
-
<gn-ui-badge
|
|
15
|
-
[
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
<ng-icon
|
|
20
|
-
[title]="
|
|
21
|
-
'editor.record.form.keywords.place.withoutExtent' | translate
|
|
22
|
-
"
|
|
23
|
-
class="badge-warning"
|
|
24
|
-
name="matWarningAmberOutline"
|
|
25
|
-
></ng-icon>
|
|
26
|
-
}
|
|
27
|
-
</gn-ui-badge>
|
|
14
|
+
<gn-ui-keyword-badge
|
|
15
|
+
[keyword]="keyword"
|
|
16
|
+
[editable]="true"
|
|
17
|
+
(keywordRemove)="removeKeyword($event)"
|
|
18
|
+
></gn-ui-keyword-badge>
|
|
28
19
|
}
|
|
29
20
|
</div>
|
|
30
21
|
</div>
|
package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts
CHANGED
|
@@ -7,40 +7,20 @@ import {
|
|
|
7
7
|
inject,
|
|
8
8
|
} from '@angular/core'
|
|
9
9
|
import { PlatformServiceInterface } from '../../../../../../../libs/common/domain/src/lib/platform.service.interface'
|
|
10
|
-
import { AutocompleteComponent
|
|
10
|
+
import { AutocompleteComponent } from '../../../../../../../libs/ui/inputs/src'
|
|
11
|
+
import { KeywordBadgeComponent } from '../../../../../../../libs/ui/elements/src'
|
|
11
12
|
import { map } from 'rxjs'
|
|
12
13
|
import { Keyword } from '../../../../../../../libs/common/domain/src/lib/model/record'
|
|
13
14
|
import { KeywordType } from '../../../../../../../libs/common/domain/src/lib/model/thesaurus'
|
|
14
|
-
import { TranslatePipe } from '@ngx-translate/core'
|
|
15
|
-
import {
|
|
16
|
-
NgIconComponent,
|
|
17
|
-
provideIcons,
|
|
18
|
-
provideNgIconsConfig,
|
|
19
|
-
} from '@ng-icons/core'
|
|
20
|
-
import { matWarningAmberOutline } from '@ng-icons/material-icons/outline'
|
|
21
15
|
|
|
22
16
|
type AutocompleteItem = { title: string; value: Keyword }
|
|
23
17
|
|
|
24
18
|
@Component({
|
|
25
19
|
selector: 'gn-ui-generic-keywords',
|
|
26
20
|
templateUrl: './generic-keywords.component.html',
|
|
27
|
-
styleUrls: ['./generic-keywords.component.css'],
|
|
28
21
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
29
22
|
standalone: true,
|
|
30
|
-
imports: [
|
|
31
|
-
AutocompleteComponent,
|
|
32
|
-
NgIconComponent,
|
|
33
|
-
BadgeComponent,
|
|
34
|
-
TranslatePipe,
|
|
35
|
-
],
|
|
36
|
-
providers: [
|
|
37
|
-
provideIcons({
|
|
38
|
-
matWarningAmberOutline,
|
|
39
|
-
}),
|
|
40
|
-
provideNgIconsConfig({
|
|
41
|
-
size: '1.5em',
|
|
42
|
-
}),
|
|
43
|
-
],
|
|
23
|
+
imports: [AutocompleteComponent, KeywordBadgeComponent],
|
|
44
24
|
})
|
|
45
25
|
export class GenericKeywordsComponent {
|
|
46
26
|
private platformService = inject(PlatformServiceInterface)
|
|
@@ -87,9 +67,4 @@ export class GenericKeywordsComponent {
|
|
|
87
67
|
this.changedKeywords.emit(this.keywords)
|
|
88
68
|
this.deletedKeyword.emit(keyword)
|
|
89
69
|
}
|
|
90
|
-
|
|
91
|
-
isPlaceWithoutExtent(keyword: Keyword): boolean {
|
|
92
|
-
if (keyword.type !== 'place') return false
|
|
93
|
-
return !keyword.bbox
|
|
94
|
-
}
|
|
95
70
|
}
|
|
@@ -7,11 +7,26 @@
|
|
|
7
7
|
>editor.record.form.metadataQuality.title</span
|
|
8
8
|
>
|
|
9
9
|
</div>
|
|
10
|
-
@for (
|
|
10
|
+
@for (
|
|
11
|
+
properties of (propertiesByPage$ | async) ?? [];
|
|
12
|
+
track properties;
|
|
13
|
+
let isLast = $last
|
|
14
|
+
) {
|
|
11
15
|
<div class="flex flex-col gap-2">
|
|
12
16
|
@for (property of properties; track property) {
|
|
13
17
|
<gn-ui-button
|
|
14
|
-
|
|
18
|
+
style="
|
|
19
|
+
--gn-ui-button-justify: space-between;
|
|
20
|
+
--gn-ui-button-height: 34px;
|
|
21
|
+
--gn-ui-button-width: 100%;
|
|
22
|
+
--gn-ui-button-border-width: 0;
|
|
23
|
+
--gn-ui-button-color: black;
|
|
24
|
+
--gn-ui-button-background: transparent;
|
|
25
|
+
--gn-ui-button-bg-hover: #f3f4f6;
|
|
26
|
+
--gn-ui-button-disabled-opacity: 1;
|
|
27
|
+
"
|
|
28
|
+
[disabled]="property.value"
|
|
29
|
+
(buttonClick)="onCriterionClick(property)"
|
|
15
30
|
type="outline"
|
|
16
31
|
attr.data-cy="md-quality-btn-{{ property.label }}"
|
|
17
32
|
>
|
|
@@ -28,7 +43,7 @@
|
|
|
28
43
|
</div>
|
|
29
44
|
</gn-ui-button>
|
|
30
45
|
}
|
|
31
|
-
@if (
|
|
46
|
+
@if (!isLast) {
|
|
32
47
|
<hr class="border-gray-300 w-11/12 mx-auto" />
|
|
33
48
|
}
|
|
34
49
|
</div>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Component,
|
|
2
|
-
import {
|
|
1
|
+
import { Component, inject } from '@angular/core'
|
|
2
|
+
import { CatalogRecordKeys } from '../../../../../../../libs/common/domain/src/lib/model/record'
|
|
3
3
|
import { ButtonComponent } from '../../../../../../../libs/ui/inputs/src'
|
|
4
4
|
import {
|
|
5
5
|
getAllKeysValidator,
|
|
@@ -13,8 +13,10 @@ import {
|
|
|
13
13
|
} from '@ng-icons/core'
|
|
14
14
|
import { iconoirBadgeCheck, iconoirSystemShut } from '@ng-icons/iconoir'
|
|
15
15
|
import { TranslateDirective, TranslatePipe } from '@ngx-translate/core'
|
|
16
|
-
import { EditorConfig } from '../../models'
|
|
17
16
|
import { marker } from '@biesbjerg/ngx-translate-extract-marker'
|
|
17
|
+
import { EditorFacade } from '../../+state/editor.facade'
|
|
18
|
+
import { combineLatest, map } from 'rxjs'
|
|
19
|
+
import { AsyncPipe } from '@angular/common'
|
|
18
20
|
|
|
19
21
|
//forced translations that are not available in fields.config.ts
|
|
20
22
|
marker('editor.record.form.field.keywords')
|
|
@@ -29,6 +31,7 @@ marker('editor.record.form.field.organisation')
|
|
|
29
31
|
TranslatePipe,
|
|
30
32
|
ButtonComponent,
|
|
31
33
|
NgIconComponent,
|
|
34
|
+
AsyncPipe,
|
|
32
35
|
],
|
|
33
36
|
providers: [
|
|
34
37
|
provideIcons({
|
|
@@ -42,47 +45,37 @@ marker('editor.record.form.field.organisation')
|
|
|
42
45
|
templateUrl: './metadata-quality-panel.component.html',
|
|
43
46
|
styleUrl: './metadata-quality-panel.component.css',
|
|
44
47
|
})
|
|
45
|
-
export class MetadataQualityPanelComponent
|
|
48
|
+
export class MetadataQualityPanelComponent {
|
|
49
|
+
facade = inject(EditorFacade)
|
|
46
50
|
propsToValidate: ValidatorMapperKeys[] = getAllKeysValidator()
|
|
47
|
-
propertiesByPage: { label: string; value: boolean }[][] = []
|
|
48
|
-
@Input() editorConfig: EditorConfig
|
|
49
|
-
@Input() record: CatalogRecord
|
|
50
51
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
this.record,
|
|
71
|
-
fields as ValidatorMapperKeys[]
|
|
72
|
-
).map(({ name, validator }) => ({
|
|
73
|
-
label: `editor.record.form.field.${name}`, // use same translations as in fields.config.ts
|
|
74
|
-
value: validator(),
|
|
75
|
-
}))
|
|
52
|
+
propertiesByPage$ = combineLatest([
|
|
53
|
+
this.facade.editorConfig$,
|
|
54
|
+
this.facade.record$,
|
|
55
|
+
]).pipe(
|
|
56
|
+
map(([editorConfig, record]) => {
|
|
57
|
+
if (!editorConfig || !record) return []
|
|
58
|
+
const validators = getQualityValidators(record, this.propsToValidate)
|
|
59
|
+
return editorConfig.pages
|
|
60
|
+
.map((page) =>
|
|
61
|
+
page.sections
|
|
62
|
+
.flatMap((section) => section.fields)
|
|
63
|
+
.flatMap(({ model }) =>
|
|
64
|
+
validators.filter((v) => (v.alias ?? v.name) === model)
|
|
65
|
+
)
|
|
66
|
+
.map(({ name, validator, alias }) => ({
|
|
67
|
+
label: `editor.record.form.field.${name}`,
|
|
68
|
+
value: validator(),
|
|
69
|
+
model: (alias ?? name) as CatalogRecordKeys,
|
|
70
|
+
}))
|
|
76
71
|
)
|
|
77
72
|
.filter((arr) => arr.length > 0)
|
|
78
|
-
}
|
|
79
|
-
|
|
73
|
+
})
|
|
74
|
+
)
|
|
80
75
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
? `${baseClasses} bg-neutral-100 hover:bg-neutral-100`
|
|
86
|
-
: `${baseClasses} bg-transparent hover:bg-transparent`
|
|
76
|
+
onCriterionClick(property: { value: boolean; model: CatalogRecordKeys }) {
|
|
77
|
+
if (!property.value) {
|
|
78
|
+
this.facade.setFocusedField(property.model)
|
|
79
|
+
}
|
|
87
80
|
}
|
|
88
81
|
}
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
editor.record.form.field.onlineResource.edit.protocol
|
|
4
4
|
</h3>
|
|
5
5
|
@if (protocolHint) {
|
|
6
|
-
<
|
|
7
|
-
|
|
6
|
+
<ng-icon
|
|
7
|
+
name="matHelpOutline"
|
|
8
|
+
size="16"
|
|
9
|
+
class="m-2"
|
|
8
10
|
[matTooltip]="protocolHint"
|
|
9
11
|
matTooltipPosition="above"
|
|
10
|
-
>
|
|
11
|
-
help
|
|
12
|
-
</span>
|
|
12
|
+
></ng-icon>
|
|
13
13
|
}
|
|
14
14
|
</div>
|
|
15
15
|
<div class="flex flex-row items-center gap-4 h-[48px]">
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
[disabled]="disabled"
|
|
21
21
|
(change)="resetAllFormFields()"
|
|
22
22
|
>
|
|
23
|
-
@for (protocolOption of
|
|
23
|
+
@for (protocolOption of availableProtocolOptions; track protocolOption) {
|
|
24
24
|
<mat-radio-button [value]="protocolOption.value">
|
|
25
25
|
{{ protocolOption.label | translate }}
|
|
26
26
|
</mat-radio-button>
|
|
@@ -45,6 +45,11 @@
|
|
|
45
45
|
}
|
|
46
46
|
</gn-ui-url-input>
|
|
47
47
|
|
|
48
|
+
@if (loading) {
|
|
49
|
+
<div class="flex justify-center w-full py-4">
|
|
50
|
+
<gn-ui-spinning-loader></gn-ui-spinning-loader>
|
|
51
|
+
</div>
|
|
52
|
+
}
|
|
48
53
|
@if (errorMessage) {
|
|
49
54
|
<p class="text-sm text-red-500 pl-4" translate>
|
|
50
55
|
editor.record.form.field.onlineResource.edit.identifier.error
|
|
@@ -22,6 +22,7 @@ import {
|
|
|
22
22
|
TextInputComponent,
|
|
23
23
|
UrlInputComponent,
|
|
24
24
|
} from '../../../../../../../libs/ui/inputs/src'
|
|
25
|
+
import { SpinningLoaderComponent } from '../../../../../../../libs/ui/widgets/src'
|
|
25
26
|
import { createFuzzyFilter, getLayers } from '../../../../../../../libs/util/shared/src'
|
|
26
27
|
import {
|
|
27
28
|
NgIconComponent,
|
|
@@ -29,6 +30,7 @@ import {
|
|
|
29
30
|
provideNgIconsConfig,
|
|
30
31
|
} from '@ng-icons/core'
|
|
31
32
|
import { iconoirRefresh } from '@ng-icons/iconoir'
|
|
33
|
+
import { matHelpOutline } from '@ng-icons/material-icons/outline'
|
|
32
34
|
import { TranslateDirective, TranslatePipe } from '@ngx-translate/core'
|
|
33
35
|
import {
|
|
34
36
|
BehaviorSubject,
|
|
@@ -57,13 +59,14 @@ marker(
|
|
|
57
59
|
MatTooltipModule,
|
|
58
60
|
MatRadioModule,
|
|
59
61
|
NgIconComponent,
|
|
62
|
+
SpinningLoaderComponent,
|
|
60
63
|
TextInputComponent,
|
|
61
64
|
TranslateDirective,
|
|
62
65
|
TranslatePipe,
|
|
63
66
|
UrlInputComponent,
|
|
64
67
|
],
|
|
65
68
|
providers: [
|
|
66
|
-
provideIcons({ iconoirRefresh }),
|
|
69
|
+
provideIcons({ iconoirRefresh, matHelpOutline }),
|
|
67
70
|
provideNgIconsConfig({
|
|
68
71
|
size: '1.5em',
|
|
69
72
|
}),
|
|
@@ -79,17 +82,19 @@ export class OnlineServiceResourceInputComponent {
|
|
|
79
82
|
@Input() protocolHint?: string
|
|
80
83
|
@Input() disabled? = false
|
|
81
84
|
@Input() modifyMode? = false
|
|
85
|
+
@Input() protocolOptions?: ServiceProtocol[]
|
|
82
86
|
@Output() serviceChange: EventEmitter<DatasetServiceDistribution> =
|
|
83
87
|
new EventEmitter()
|
|
84
88
|
|
|
85
89
|
errorMessage = false
|
|
90
|
+
loading = false
|
|
86
91
|
resetUrlOnChange = Math.random()
|
|
87
92
|
|
|
88
93
|
layersSubject = new BehaviorSubject<{ name?: string; title?: string }[]>([])
|
|
89
94
|
layers$: Observable<{ name?: string; title?: string }[]> =
|
|
90
95
|
this.layersSubject.asObservable()
|
|
91
96
|
|
|
92
|
-
|
|
97
|
+
allProtocolOptions: {
|
|
93
98
|
label: string
|
|
94
99
|
value: ServiceProtocol
|
|
95
100
|
}[] = [
|
|
@@ -123,6 +128,13 @@ export class OnlineServiceResourceInputComponent {
|
|
|
123
128
|
},
|
|
124
129
|
]
|
|
125
130
|
|
|
131
|
+
get availableProtocolOptions() {
|
|
132
|
+
if (!this.protocolOptions) return this.allProtocolOptions
|
|
133
|
+
return this.protocolOptions.flatMap(
|
|
134
|
+
(v) => this.allProtocolOptions.find((o) => o.value === v) ?? []
|
|
135
|
+
)
|
|
136
|
+
}
|
|
137
|
+
|
|
126
138
|
get activeLayerSuggestion() {
|
|
127
139
|
return !['wps', 'GPFDL', 'esriRest', 'other'].includes(
|
|
128
140
|
this._service.accessServiceProtocol
|
|
@@ -135,6 +147,8 @@ export class OnlineServiceResourceInputComponent {
|
|
|
135
147
|
}
|
|
136
148
|
|
|
137
149
|
async handleUploadClick(url: string) {
|
|
150
|
+
this.loading = true
|
|
151
|
+
this.cdr.detectChanges()
|
|
138
152
|
try {
|
|
139
153
|
const layers = await getLayers(url, this._service.accessServiceProtocol)
|
|
140
154
|
|
|
@@ -148,6 +162,7 @@ export class OnlineServiceResourceInputComponent {
|
|
|
148
162
|
this.layersSubject.next([])
|
|
149
163
|
}
|
|
150
164
|
|
|
165
|
+
this.loading = false
|
|
151
166
|
this.cdr.detectChanges()
|
|
152
167
|
}
|
|
153
168
|
|
|
@@ -159,6 +174,7 @@ export class OnlineServiceResourceInputComponent {
|
|
|
159
174
|
|
|
160
175
|
resetLayersSuggestion() {
|
|
161
176
|
this.errorMessage = false
|
|
177
|
+
this.loading = false
|
|
162
178
|
this.layersSubject.next([])
|
|
163
179
|
this._service.identifierInService = null
|
|
164
180
|
}
|
package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Directive, ElementRef, inject, Input } from '@angular/core'
|
|
2
|
+
|
|
3
|
+
@Directive({
|
|
4
|
+
selector: '[gnUiFieldFocus]',
|
|
5
|
+
standalone: true,
|
|
6
|
+
exportAs: 'fieldFocus',
|
|
7
|
+
})
|
|
8
|
+
export class FieldFocusDirective {
|
|
9
|
+
@Input() gnUiFieldFocusGlowClass = 'gn-ui-field-focus-glow'
|
|
10
|
+
|
|
11
|
+
private el = inject(ElementRef)
|
|
12
|
+
|
|
13
|
+
public focusField(focusInnerTarget = true) {
|
|
14
|
+
setTimeout(() => {
|
|
15
|
+
const host = this.el.nativeElement as HTMLElement
|
|
16
|
+
const glowClass = this.gnUiFieldFocusGlowClass
|
|
17
|
+
|
|
18
|
+
host.classList.remove(glowClass)
|
|
19
|
+
void host.offsetWidth
|
|
20
|
+
host.classList.add(glowClass)
|
|
21
|
+
host.addEventListener(
|
|
22
|
+
'animationend',
|
|
23
|
+
() => host.classList.remove(glowClass),
|
|
24
|
+
{ once: true }
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
host.scrollIntoView({ behavior: 'smooth', block: 'start' })
|
|
28
|
+
if (!focusInnerTarget) {
|
|
29
|
+
return
|
|
30
|
+
}
|
|
31
|
+
const target =
|
|
32
|
+
host.querySelector<HTMLElement>(
|
|
33
|
+
'input, textarea, select, [contenteditable="true"]'
|
|
34
|
+
) ??
|
|
35
|
+
host.querySelector<HTMLElement>(
|
|
36
|
+
'button:not([disabled]), [tabindex]:not([tabindex="-1"])'
|
|
37
|
+
)
|
|
38
|
+
target?.focus({ preventScroll: true })
|
|
39
|
+
})
|
|
40
|
+
}
|
|
41
|
+
}
|