geonetwork-ui 2.6.0-dev.7be6567ef → 2.6.0-dev.9df114cd4
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/gn4.field.mapper.mjs +6 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +5 -1
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +5 -1
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +6 -1
- package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +7 -6
- package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/index.mjs +2 -1
- package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +163 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +10 -4
- package/esm2022/libs/ui/inputs/src/index.mjs +1 -2
- package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +4 -3
- package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +43 -3
- package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +3 -3
- package/esm2022/translations/de.json +8 -1
- package/esm2022/translations/en.json +8 -1
- package/esm2022/translations/es.json +8 -1
- package/esm2022/translations/fr.json +10 -3
- package/esm2022/translations/it.json +8 -1
- package/esm2022/translations/nl.json +8 -1
- package/esm2022/translations/pt.json +8 -1
- package/fesm2022/geonetwork-ui.mjs +292 -44
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +3 -0
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.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/internal-link-card/internal-link-card.component.d.ts +43 -0
- package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +2 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/index.d.ts +0 -1
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +10 -3
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +6 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +3 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +4 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +5 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +1 -7
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +14 -6
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +6 -0
- package/src/libs/ui/elements/src/index.ts +1 -0
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +156 -0
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +190 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +4 -2
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +3 -0
- package/src/libs/ui/inputs/src/index.ts +0 -1
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +5 -5
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +2 -1
- package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +46 -2
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +2 -2
- package/tailwind.base.css +16 -11
- package/translations/de.json +8 -1
- package/translations/en.json +8 -1
- package/translations/es.json +8 -1
- package/translations/fr.json +10 -3
- package/translations/it.json +8 -1
- package/translations/nl.json +8 -1
- package/translations/pt.json +8 -1
- package/translations/sk.json +8 -1
- package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +0 -16
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +0 -8
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +0 -1
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -3
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +0 -9
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +0 -15
|
@@ -16,7 +16,7 @@ import { TranslateMessageFormatCompiler } from 'ngx-translate-messageformat-comp
|
|
|
16
16
|
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
|
17
17
|
import { map as map$1, catchError, tap as tap$1, shareReplay, filter, startWith, withLatestFrom, switchMap as switchMap$1, take, mergeMap, throttleTime, distinctUntilChanged, debounceTime, finalize, first as first$1, share, pairwise, delay, defaultIfEmpty, toArray } from 'rxjs/operators';
|
|
18
18
|
import * as i1$2 from '@angular/common';
|
|
19
|
-
import { CommonModule, NgSwitch, NgSwitchCase, NgSwitchDefault, NgOptimizedImage, DatePipe
|
|
19
|
+
import { CommonModule, NgSwitch, NgSwitchCase, NgSwitchDefault, NgClass, NgIf, NgTemplateOutlet, NgOptimizedImage, DatePipe } from '@angular/common';
|
|
20
20
|
import { of, map as map$2, lastValueFrom, Subject, switchMap, combineLatest, from, exhaustMap, throwError, forkJoin, takeLast, firstValueFrom, merge, BehaviorSubject, fromEvent, animationFrameScheduler, ReplaySubject, Subscription, first, distinctUntilChanged as distinctUntilChanged$1, filter as filter$1, tap as tap$2, Observable, buffer, debounceTime as debounceTime$1, combineLatestWith, catchError as catchError$1, timer, takeUntil, EMPTY, mergeMap as mergeMap$1, startWith as startWith$1, withLatestFrom as withLatestFrom$1, shareReplay as shareReplay$1, pairwise as pairwise$1 } from 'rxjs';
|
|
21
21
|
import { lt, valid, coerce, satisfies, ltr } from 'semver';
|
|
22
22
|
import chroma from 'chroma-js';
|
|
@@ -26,8 +26,8 @@ import { createAction, props, createReducer, on, createFeatureSelector, createSe
|
|
|
26
26
|
import EmblaCarousel from 'embla-carousel';
|
|
27
27
|
import * as i2$2 from '@ng-icons/core';
|
|
28
28
|
import { provideIcons, NgIcon, NgIconComponent, provideNgIconsConfig, NgIconsModule } from '@ng-icons/core';
|
|
29
|
-
import { iconoirNavArrowRight, iconoirNavArrowLeft, iconoirNavArrowDown, iconoirNavArrowUp, iconoirSearch, iconoirLongArrowDownLeft, iconoirCalendar, iconoirLink, iconoirArrowUp, iconoirCloudUpload, iconoirFramePlusIn, iconoirSettings, iconoirDownload, iconoirMediaImage, iconoirMediaImageXmark, iconoirBin, iconoirPlus, iconoirUser, iconoirLock, iconoirImport, iconoirLightBulbOn, iconoirArrowLeft, iconoirAttachment, iconoirRefresh } from '@ng-icons/iconoir';
|
|
30
|
-
import { matExpandMore, matExpandLess, matAdd, matRemove, matClose, matContentCopy, matSearch, matStar, matStarBorder, matChevronLeft, matChevronRight, matArrowForward, matArrowBack, matCheck, matWarningAmber, matFace, matQuestionMark, matMoodBad, matZoomOutMap, matOpenInNew, matMailOutline, matPersonOutline, matCheckCircleOutline, matWarning, matMoreVert, matCorporateFare } from '@ng-icons/material-icons/baseline';
|
|
29
|
+
import { iconoirNavArrowRight, iconoirNavArrowLeft, iconoirNavArrowDown, iconoirNavArrowUp, iconoirSearch, iconoirLongArrowDownLeft, iconoirCalendar, iconoirLink, iconoirArrowUp, iconoirCloudUpload, iconoirFramePlusIn, iconoirSettings, iconoirDownload, iconoirMediaImage, iconoirMediaImageXmark, iconoirBin, iconoirPlus, iconoirDatabase, iconoirMap, iconoirInternet, iconoirUser, iconoirLock, iconoirImport, iconoirLightBulbOn, iconoirArrowLeft, iconoirAttachment, iconoirRefresh } from '@ng-icons/iconoir';
|
|
30
|
+
import { matExpandMore, matExpandLess, matAdd, matRemove, matClose, matContentCopy, matSearch, matStar, matStarBorder, matChevronLeft, matChevronRight, matArrowForward, matArrowBack, matCheck, matWarningAmber, matFace, matQuestionMark, matMoodBad, matZoomOutMap, matOpenInNew, matMailOutline, matPersonOutline, matCheckCircleOutline, matWarning, matCode, matMoreVert, matCorporateFare } from '@ng-icons/material-icons/baseline';
|
|
31
31
|
import * as i1$4 from '@angular/material/tooltip';
|
|
32
32
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
33
33
|
import { moveItemInArray, CdkDropList, CdkDrag, CdkDragHandle } from '@angular/cdk/drag-drop';
|
|
@@ -41,7 +41,7 @@ import { TagInputModule } from 'ngx-chips';
|
|
|
41
41
|
import * as i1$5 from '@angular/material/progress-spinner';
|
|
42
42
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
43
43
|
import tippy from 'tippy.js';
|
|
44
|
-
import { matErrorOutlineOutline, matInfoOutline, matComputerOutline, matCallOutline, matLocationOnOutline, matMailOutline as matMailOutline$1, matWarningAmberOutline, matCloseOutline, matSendOutline, matMapOutline, matCloudDownloadOutline, matHomeWorkOutline, matSwipeOutline, matLayersOutline, matAddCircleOutlineOutline } from '@ng-icons/material-icons/outline';
|
|
44
|
+
import { matErrorOutlineOutline, matInfoOutline, matComputerOutline, matCallOutline, matLocationOnOutline, matMailOutline as matMailOutline$1, matWarningAmberOutline, matCloseOutline, matLocationSearchingOutline, matEmailOutline, matPhoneOutline, matSendOutline, matMapOutline, matCloudDownloadOutline, matHomeWorkOutline, matSwipeOutline, matLayersOutline, matAddCircleOutlineOutline } from '@ng-icons/material-icons/outline';
|
|
45
45
|
import * as i2 from '@angular/material/core';
|
|
46
46
|
import { MatNativeDateModule, MAT_DATE_LOCALE, DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
|
|
47
47
|
import * as i1$7 from '@angular/material/checkbox';
|
|
@@ -18602,6 +18602,7 @@ var records$6 = "Datensätze";
|
|
|
18602
18602
|
var de = {
|
|
18603
18603
|
"": "",
|
|
18604
18604
|
"Add Layer As": "",
|
|
18605
|
+
"Enter to search": "",
|
|
18605
18606
|
"button.login": "",
|
|
18606
18607
|
"catalog.figures.datasets": "{count, plural, =0{Datensätze} one{Datensatz} other{Datensätze}}",
|
|
18607
18608
|
"catalog.figures.organizations": "{count, plural, =0{Organisationen} one{Organisation} other{Organisationen}}",
|
|
@@ -18663,7 +18664,6 @@ var de = {
|
|
|
18663
18664
|
"datahub.news.contact.title": "Ein spezielles Bedürfnis?",
|
|
18664
18665
|
"datahub.news.feed": "Nachrichtenfeed",
|
|
18665
18666
|
"datahub.news.figures": "Indikatoren",
|
|
18666
|
-
"datahub.record.addToFavorites": "Zu Favoriten hinzufügen",
|
|
18667
18667
|
"datahub.search.back": "Zurück",
|
|
18668
18668
|
"datahub.search.filter.all": "Alle",
|
|
18669
18669
|
"datahub.search.filter.generatedByAPI": "Generiert durch eine API",
|
|
@@ -18673,6 +18673,7 @@ var de = {
|
|
|
18673
18673
|
"dataset.error.http": "Die Daten konnten aufgrund eines HTTP-Fehlers nicht geladen werden: \"{ info }\"",
|
|
18674
18674
|
"dataset.error.network": "Die Daten konnten aufgrund eines Netzwerkfehlers oder CORS-Beschränkungen nicht geladen werden: \"{ info }\"",
|
|
18675
18675
|
"dataset.error.parse": "Die Daten wurden geladen, konnten aber nicht gelesen werden: \"{ info }\"",
|
|
18676
|
+
"dataset.error.restrictedAccess": "",
|
|
18676
18677
|
"dataset.error.unknown": "Die Daten können nicht angezeigt werden: \"{ info }\"",
|
|
18677
18678
|
"dataset.error.unsupportedType": "Der folgende Inhaltstyp wird nicht unterstützt: \"{ info }\"",
|
|
18678
18679
|
"domain.contact.role.author": "",
|
|
@@ -18932,6 +18933,7 @@ var de = {
|
|
|
18932
18933
|
"map.wms.urlInput.hint": "Geben Sie die WMS URL ein",
|
|
18933
18934
|
"multiselect.filter.placeholder": "Suche",
|
|
18934
18935
|
"nav.back": "Zurück",
|
|
18936
|
+
"navbar.mobile.menuTitle": "Schnellzugriff",
|
|
18935
18937
|
next: next$6,
|
|
18936
18938
|
"ogc.unreachable.unknown": "Der Dienst konnte nicht erreicht werden",
|
|
18937
18939
|
"organisation.filter.placeholder": "Ergebnisse filtern",
|
|
@@ -18955,8 +18957,12 @@ var de = {
|
|
|
18955
18957
|
"record.action.duplicating": "",
|
|
18956
18958
|
"record.action.rollback": "",
|
|
18957
18959
|
"record.action.view": "Anzeigen",
|
|
18960
|
+
"record.card.metadata.contact": "",
|
|
18958
18961
|
"record.externalViewer.open": "In externem Kartenviewer öffnen",
|
|
18959
18962
|
"record.feature.limit": "Die Vorschau wurde aufgrund zu vieler Elemente deaktiviert",
|
|
18963
|
+
"record.kind.dataset": "",
|
|
18964
|
+
"record.kind.reuse": "",
|
|
18965
|
+
"record.kind.service": "",
|
|
18960
18966
|
"record.metadata.about": "Beschreibung",
|
|
18961
18967
|
"record.metadata.api": "API",
|
|
18962
18968
|
"record.metadata.api.form.closeButton": "Schließen",
|
|
@@ -18990,6 +18996,7 @@ var de = {
|
|
|
18990
18996
|
"record.metadata.api.form.zoneTitle": "",
|
|
18991
18997
|
"record.metadata.api.form.zoneTooltip": "",
|
|
18992
18998
|
"record.metadata.api.gpfdl": "",
|
|
18999
|
+
"record.metadata.capabilities": "",
|
|
18993
19000
|
"record.metadata.catalog": "Katalog",
|
|
18994
19001
|
"record.metadata.contact": "Kontakt",
|
|
18995
19002
|
"record.metadata.creation": "Erstellungsdatum",
|
|
@@ -19150,6 +19157,7 @@ var records$5 = "datasets";
|
|
|
19150
19157
|
var en = {
|
|
19151
19158
|
"": "",
|
|
19152
19159
|
"Add Layer As": "",
|
|
19160
|
+
"Enter to search": "",
|
|
19153
19161
|
"button.login": "Log in",
|
|
19154
19162
|
"catalog.figures.datasets": "{count, plural, =0{datasets} one{dataset} other{datasets}}",
|
|
19155
19163
|
"catalog.figures.organizations": "{count, plural, =0{organizations} one{organization} other{organizations}}",
|
|
@@ -19211,7 +19219,6 @@ var en = {
|
|
|
19211
19219
|
"datahub.news.contact.title": "A specific need?",
|
|
19212
19220
|
"datahub.news.feed": "News feed",
|
|
19213
19221
|
"datahub.news.figures": "Indicators",
|
|
19214
|
-
"datahub.record.addToFavorites": "Add to favorites",
|
|
19215
19222
|
"datahub.search.back": "Back",
|
|
19216
19223
|
"datahub.search.filter.all": "All",
|
|
19217
19224
|
"datahub.search.filter.generatedByAPI": "Generated by an API",
|
|
@@ -19221,6 +19228,7 @@ var en = {
|
|
|
19221
19228
|
"dataset.error.http": "The data could not be loaded because of an HTTP error: \"{ info }\"",
|
|
19222
19229
|
"dataset.error.network": "The data could not be loaded because of a network error or CORS limitations: \"{ info }\"",
|
|
19223
19230
|
"dataset.error.parse": "The data was loaded but could not be parsed: \"{ info }\"",
|
|
19231
|
+
"dataset.error.restrictedAccess": "Access to this resource is restricted",
|
|
19224
19232
|
"dataset.error.unknown": "The data cannot be displayed: \"{ info }\"",
|
|
19225
19233
|
"dataset.error.unsupportedType": "The following content type is unsupported: \"{ info }\"",
|
|
19226
19234
|
"domain.contact.role.author": "Author",
|
|
@@ -19480,6 +19488,7 @@ var en = {
|
|
|
19480
19488
|
"map.wms.urlInput.hint": "Enter WMS service URL",
|
|
19481
19489
|
"multiselect.filter.placeholder": "Search",
|
|
19482
19490
|
"nav.back": "Back",
|
|
19491
|
+
"navbar.mobile.menuTitle": "Quick access",
|
|
19483
19492
|
next: next$5,
|
|
19484
19493
|
"ogc.unreachable.unknown": "The service could not be reached",
|
|
19485
19494
|
"organisation.filter.placeholder": "Filter results",
|
|
@@ -19503,8 +19512,12 @@ var en = {
|
|
|
19503
19512
|
"record.action.duplicating": "Duplicating...",
|
|
19504
19513
|
"record.action.rollback": "Rollback",
|
|
19505
19514
|
"record.action.view": "View",
|
|
19515
|
+
"record.card.metadata.contact": "Metadata Contact",
|
|
19506
19516
|
"record.externalViewer.open": "Open in the external map viewer",
|
|
19507
19517
|
"record.feature.limit": "Preview disabled due to too many elements",
|
|
19518
|
+
"record.kind.dataset": "Data",
|
|
19519
|
+
"record.kind.reuse": "Reuse",
|
|
19520
|
+
"record.kind.service": "Service",
|
|
19508
19521
|
"record.metadata.about": "Description",
|
|
19509
19522
|
"record.metadata.api": "API",
|
|
19510
19523
|
"record.metadata.api.form.closeButton": "Close",
|
|
@@ -19538,6 +19551,7 @@ var en = {
|
|
|
19538
19551
|
"record.metadata.api.form.zoneTitle": "Zone",
|
|
19539
19552
|
"record.metadata.api.form.zoneTooltip": "Dropdown for selecting a geographic zone",
|
|
19540
19553
|
"record.metadata.api.gpfdl": "Data download",
|
|
19554
|
+
"record.metadata.capabilities": "",
|
|
19541
19555
|
"record.metadata.catalog": "Catalog",
|
|
19542
19556
|
"record.metadata.contact": "Contact",
|
|
19543
19557
|
"record.metadata.creation": "Date of creation",
|
|
@@ -19698,6 +19712,7 @@ var records$4 = "";
|
|
|
19698
19712
|
var es = {
|
|
19699
19713
|
"": "",
|
|
19700
19714
|
"Add Layer As": "",
|
|
19715
|
+
"Enter to search": "",
|
|
19701
19716
|
"button.login": "",
|
|
19702
19717
|
"catalog.figures.datasets": "conjuntos de datos",
|
|
19703
19718
|
"catalog.figures.organizations": "organizaciones",
|
|
@@ -19759,7 +19774,6 @@ var es = {
|
|
|
19759
19774
|
"datahub.news.contact.title": "",
|
|
19760
19775
|
"datahub.news.feed": "",
|
|
19761
19776
|
"datahub.news.figures": "",
|
|
19762
|
-
"datahub.record.addToFavorites": "",
|
|
19763
19777
|
"datahub.search.back": "",
|
|
19764
19778
|
"datahub.search.filter.all": "",
|
|
19765
19779
|
"datahub.search.filter.generatedByAPI": "",
|
|
@@ -19769,6 +19783,7 @@ var es = {
|
|
|
19769
19783
|
"dataset.error.http": "",
|
|
19770
19784
|
"dataset.error.network": "",
|
|
19771
19785
|
"dataset.error.parse": "",
|
|
19786
|
+
"dataset.error.restrictedAccess": "",
|
|
19772
19787
|
"dataset.error.unknown": "",
|
|
19773
19788
|
"dataset.error.unsupportedType": "",
|
|
19774
19789
|
"domain.contact.role.author": "",
|
|
@@ -20028,6 +20043,7 @@ var es = {
|
|
|
20028
20043
|
"map.wms.urlInput.hint": "",
|
|
20029
20044
|
"multiselect.filter.placeholder": "",
|
|
20030
20045
|
"nav.back": "",
|
|
20046
|
+
"navbar.mobile.menuTitle": "Acceso rápido",
|
|
20031
20047
|
next: next$4,
|
|
20032
20048
|
"ogc.unreachable.unknown": "",
|
|
20033
20049
|
"organisation.filter.placeholder": "",
|
|
@@ -20051,8 +20067,12 @@ var es = {
|
|
|
20051
20067
|
"record.action.duplicating": "",
|
|
20052
20068
|
"record.action.rollback": "",
|
|
20053
20069
|
"record.action.view": "",
|
|
20070
|
+
"record.card.metadata.contact": "",
|
|
20054
20071
|
"record.externalViewer.open": "",
|
|
20055
20072
|
"record.feature.limit": "",
|
|
20073
|
+
"record.kind.dataset": "",
|
|
20074
|
+
"record.kind.reuse": "",
|
|
20075
|
+
"record.kind.service": "",
|
|
20056
20076
|
"record.metadata.about": "",
|
|
20057
20077
|
"record.metadata.api": "",
|
|
20058
20078
|
"record.metadata.api.form.closeButton": "",
|
|
@@ -20086,6 +20106,7 @@ var es = {
|
|
|
20086
20106
|
"record.metadata.api.form.zoneTitle": "",
|
|
20087
20107
|
"record.metadata.api.form.zoneTooltip": "",
|
|
20088
20108
|
"record.metadata.api.gpfdl": "",
|
|
20109
|
+
"record.metadata.capabilities": "",
|
|
20089
20110
|
"record.metadata.catalog": "",
|
|
20090
20111
|
"record.metadata.contact": "",
|
|
20091
20112
|
"record.metadata.creation": "",
|
|
@@ -20246,6 +20267,7 @@ var records$3 = "Enregistrements";
|
|
|
20246
20267
|
var fr = {
|
|
20247
20268
|
"": "",
|
|
20248
20269
|
"Add Layer As": "",
|
|
20270
|
+
"Enter to search": "",
|
|
20249
20271
|
"button.login": "Se connecter",
|
|
20250
20272
|
"catalog.figures.datasets": "{count, plural, =0{données} one{donnée} other{données}}",
|
|
20251
20273
|
"catalog.figures.organizations": "{count, plural, =0{organisations} one{organisation} other{organisations}}",
|
|
@@ -20307,7 +20329,6 @@ var fr = {
|
|
|
20307
20329
|
"datahub.news.contact.title": "Un besoin spécifique ?",
|
|
20308
20330
|
"datahub.news.feed": "Fil d'activité",
|
|
20309
20331
|
"datahub.news.figures": "Quelques chiffres",
|
|
20310
|
-
"datahub.record.addToFavorites": "Ajouter aux favoris",
|
|
20311
20332
|
"datahub.search.back": "Retour",
|
|
20312
20333
|
"datahub.search.filter.all": "Tous",
|
|
20313
20334
|
"datahub.search.filter.generatedByAPI": "généré par une API",
|
|
@@ -20317,6 +20338,7 @@ var fr = {
|
|
|
20317
20338
|
"dataset.error.http": "Le chargement des données a échoué en raison d'une erreur HTTP: \"{ info }\"",
|
|
20318
20339
|
"dataset.error.network": "Le chargement des données a échoué en raison d'une erreur réseau ou de limitations CORS: \"{ info }\"",
|
|
20319
20340
|
"dataset.error.parse": "Les données ont été chargées mais leur décodage a échoué: \"{ info }\"",
|
|
20341
|
+
"dataset.error.restrictedAccess": "L’accès à cette ressource est restreint",
|
|
20320
20342
|
"dataset.error.unknown": "Les données ne peuvent être affichées: \"{ info }\"",
|
|
20321
20343
|
"dataset.error.unsupportedType": "Le type de contenu suivant n'est pas pris en charge: \"{ info }\"",
|
|
20322
20344
|
"domain.contact.role.author": "Auteur",
|
|
@@ -20576,6 +20598,7 @@ var fr = {
|
|
|
20576
20598
|
"map.wms.urlInput.hint": "Entrez l'URL du service WMS",
|
|
20577
20599
|
"multiselect.filter.placeholder": "Rechercher",
|
|
20578
20600
|
"nav.back": "Retour",
|
|
20601
|
+
"navbar.mobile.menuTitle": "Navigation rapide",
|
|
20579
20602
|
next: next$3,
|
|
20580
20603
|
"ogc.unreachable.unknown": "Le service n'est pas accessible",
|
|
20581
20604
|
"organisation.filter.placeholder": "Filtrer les résultats",
|
|
@@ -20599,9 +20622,13 @@ var fr = {
|
|
|
20599
20622
|
"record.action.duplicating": "Duplication...",
|
|
20600
20623
|
"record.action.rollback": "Restaurer",
|
|
20601
20624
|
"record.action.view": "Voir",
|
|
20625
|
+
"record.card.metadata.contact": "Contact de la métadonnée ",
|
|
20602
20626
|
"record.externalViewer.open": "Ouvrir dans le visualiseur externe",
|
|
20603
20627
|
"record.feature.limit": "L’aperçu a été désactivé en raison d’un trop grand nombre d'éléments",
|
|
20604
|
-
"record.
|
|
20628
|
+
"record.kind.dataset": "Donnée",
|
|
20629
|
+
"record.kind.reuse": "Réutilisation",
|
|
20630
|
+
"record.kind.service": "Service",
|
|
20631
|
+
"record.metadata.about": "A propos",
|
|
20605
20632
|
"record.metadata.api": "API",
|
|
20606
20633
|
"record.metadata.api.form.closeButton": "Fermer",
|
|
20607
20634
|
"record.metadata.api.form.closeForm": "Fermer le panneau de personnalisation",
|
|
@@ -20634,6 +20661,7 @@ var fr = {
|
|
|
20634
20661
|
"record.metadata.api.form.zoneTitle": "Zone",
|
|
20635
20662
|
"record.metadata.api.form.zoneTooltip": "Menu déroulant pour sélectionner une zone géographique",
|
|
20636
20663
|
"record.metadata.api.gpfdl": "Téléchargement",
|
|
20664
|
+
"record.metadata.capabilities": "Capacités du service",
|
|
20637
20665
|
"record.metadata.catalog": "Catalogue",
|
|
20638
20666
|
"record.metadata.contact": "Contact",
|
|
20639
20667
|
"record.metadata.creation": "Date de création",
|
|
@@ -20643,7 +20671,7 @@ var fr = {
|
|
|
20643
20671
|
"record.metadata.keywords": "Mots-clés",
|
|
20644
20672
|
"record.metadata.languages": "Langues",
|
|
20645
20673
|
"record.metadata.lastUpdate": "Mis à jour le {date}",
|
|
20646
|
-
"record.metadata.links": "
|
|
20674
|
+
"record.metadata.links": "Ressources & liens",
|
|
20647
20675
|
"record.metadata.noUsage": "Aucune condition d'utilisation spécifiée pour ces données",
|
|
20648
20676
|
"record.metadata.otherConstraints": "Limitations d'usage",
|
|
20649
20677
|
"record.metadata.owner": "Catalogue d'origine",
|
|
@@ -20794,6 +20822,7 @@ var records$2 = "record";
|
|
|
20794
20822
|
var it = {
|
|
20795
20823
|
"": "",
|
|
20796
20824
|
"Add Layer As": "",
|
|
20825
|
+
"Enter to search": "",
|
|
20797
20826
|
"button.login": "Login",
|
|
20798
20827
|
"catalog.figures.datasets": "{count, plural, =0{datasets} one{dataset} other{datasets}}",
|
|
20799
20828
|
"catalog.figures.organizations": "{count, plural, =0{organizzazioni} one{organizzazione} other{organizzazioni}}",
|
|
@@ -20855,7 +20884,6 @@ var it = {
|
|
|
20855
20884
|
"datahub.news.contact.title": "Ha un bisogno specifico?",
|
|
20856
20885
|
"datahub.news.feed": "Feed di attività",
|
|
20857
20886
|
"datahub.news.figures": "Alcune figure",
|
|
20858
|
-
"datahub.record.addToFavorites": "Aggiungere a miei preferiti",
|
|
20859
20887
|
"datahub.search.back": "Ritorna",
|
|
20860
20888
|
"datahub.search.filter.all": "Tutti",
|
|
20861
20889
|
"datahub.search.filter.generatedByAPI": "generato da un'API",
|
|
@@ -20865,6 +20893,7 @@ var it = {
|
|
|
20865
20893
|
"dataset.error.http": "Il caricamento dei dati non è riuscito a causa di un errore HTTP: \"{info}\"",
|
|
20866
20894
|
"dataset.error.network": "Il caricamento dei dati non è riuscito a causa di un errore di rete o di limitazioni CORS: \"{info}\"",
|
|
20867
20895
|
"dataset.error.parse": "I dati sono stati caricati ma la decodifica non è riuscita: \"{info}\"",
|
|
20896
|
+
"dataset.error.restrictedAccess": "",
|
|
20868
20897
|
"dataset.error.unknown": "Impossibile visualizzare i dati: \"{info}\"",
|
|
20869
20898
|
"dataset.error.unsupportedType": "Il seguente tipo di contenuto non è supportato: \"{info}\"",
|
|
20870
20899
|
"domain.contact.role.author": "Autore",
|
|
@@ -21124,6 +21153,7 @@ var it = {
|
|
|
21124
21153
|
"map.wms.urlInput.hint": "Inserisci URL del servizio WMS",
|
|
21125
21154
|
"multiselect.filter.placeholder": "Cerca",
|
|
21126
21155
|
"nav.back": "Indietro",
|
|
21156
|
+
"navbar.mobile.menuTitle": "",
|
|
21127
21157
|
next: next$2,
|
|
21128
21158
|
"ogc.unreachable.unknown": "Il servizio non è accessibile",
|
|
21129
21159
|
"organisation.filter.placeholder": "Filtra i risultati",
|
|
@@ -21147,8 +21177,12 @@ var it = {
|
|
|
21147
21177
|
"record.action.duplicating": "Duplicazione",
|
|
21148
21178
|
"record.action.rollback": "Annulla",
|
|
21149
21179
|
"record.action.view": "Visualizza",
|
|
21180
|
+
"record.card.metadata.contact": "",
|
|
21150
21181
|
"record.externalViewer.open": "Aprire nel visualizzatore esterno",
|
|
21151
21182
|
"record.feature.limit": "La visualizzazione è stata disabilitata a causa di troppi elementi ",
|
|
21183
|
+
"record.kind.dataset": "",
|
|
21184
|
+
"record.kind.reuse": "",
|
|
21185
|
+
"record.kind.service": "",
|
|
21152
21186
|
"record.metadata.about": "Descrizione",
|
|
21153
21187
|
"record.metadata.api": "API",
|
|
21154
21188
|
"record.metadata.api.form.closeButton": "Chiude",
|
|
@@ -21182,6 +21216,7 @@ var it = {
|
|
|
21182
21216
|
"record.metadata.api.form.zoneTitle": "Zona",
|
|
21183
21217
|
"record.metadata.api.form.zoneTooltip": "Menu a discesa per selezionare una zona geografica",
|
|
21184
21218
|
"record.metadata.api.gpfdl": "Scarica",
|
|
21219
|
+
"record.metadata.capabilities": "",
|
|
21185
21220
|
"record.metadata.catalog": "Catalogo",
|
|
21186
21221
|
"record.metadata.contact": "Contatto",
|
|
21187
21222
|
"record.metadata.creation": "Data di creazione",
|
|
@@ -21342,6 +21377,7 @@ var records$1 = "";
|
|
|
21342
21377
|
var nl = {
|
|
21343
21378
|
"": "",
|
|
21344
21379
|
"Add Layer As": "",
|
|
21380
|
+
"Enter to search": "",
|
|
21345
21381
|
"button.login": "",
|
|
21346
21382
|
"catalog.figures.datasets": "datasets",
|
|
21347
21383
|
"catalog.figures.organizations": "organisaties",
|
|
@@ -21403,7 +21439,6 @@ var nl = {
|
|
|
21403
21439
|
"datahub.news.contact.title": "",
|
|
21404
21440
|
"datahub.news.feed": "",
|
|
21405
21441
|
"datahub.news.figures": "",
|
|
21406
|
-
"datahub.record.addToFavorites": "",
|
|
21407
21442
|
"datahub.search.back": "",
|
|
21408
21443
|
"datahub.search.filter.all": "",
|
|
21409
21444
|
"datahub.search.filter.generatedByAPI": "",
|
|
@@ -21413,6 +21448,7 @@ var nl = {
|
|
|
21413
21448
|
"dataset.error.http": "",
|
|
21414
21449
|
"dataset.error.network": "",
|
|
21415
21450
|
"dataset.error.parse": "",
|
|
21451
|
+
"dataset.error.restrictedAccess": "",
|
|
21416
21452
|
"dataset.error.unknown": "",
|
|
21417
21453
|
"dataset.error.unsupportedType": "",
|
|
21418
21454
|
"domain.contact.role.author": "",
|
|
@@ -21672,6 +21708,7 @@ var nl = {
|
|
|
21672
21708
|
"map.wms.urlInput.hint": "",
|
|
21673
21709
|
"multiselect.filter.placeholder": "",
|
|
21674
21710
|
"nav.back": "",
|
|
21711
|
+
"navbar.mobile.menuTitle": "",
|
|
21675
21712
|
next: next$1,
|
|
21676
21713
|
"ogc.unreachable.unknown": "",
|
|
21677
21714
|
"organisation.filter.placeholder": "",
|
|
@@ -21695,8 +21732,12 @@ var nl = {
|
|
|
21695
21732
|
"record.action.duplicating": "",
|
|
21696
21733
|
"record.action.rollback": "",
|
|
21697
21734
|
"record.action.view": "",
|
|
21735
|
+
"record.card.metadata.contact": "",
|
|
21698
21736
|
"record.externalViewer.open": "",
|
|
21699
21737
|
"record.feature.limit": "",
|
|
21738
|
+
"record.kind.dataset": "",
|
|
21739
|
+
"record.kind.reuse": "",
|
|
21740
|
+
"record.kind.service": "",
|
|
21700
21741
|
"record.metadata.about": "",
|
|
21701
21742
|
"record.metadata.api": "",
|
|
21702
21743
|
"record.metadata.api.form.closeButton": "",
|
|
@@ -21730,6 +21771,7 @@ var nl = {
|
|
|
21730
21771
|
"record.metadata.api.form.zoneTitle": "",
|
|
21731
21772
|
"record.metadata.api.form.zoneTooltip": "",
|
|
21732
21773
|
"record.metadata.api.gpfdl": "",
|
|
21774
|
+
"record.metadata.capabilities": "",
|
|
21733
21775
|
"record.metadata.catalog": "",
|
|
21734
21776
|
"record.metadata.contact": "",
|
|
21735
21777
|
"record.metadata.creation": "",
|
|
@@ -21890,6 +21932,7 @@ var records = "";
|
|
|
21890
21932
|
var pt = {
|
|
21891
21933
|
"": "",
|
|
21892
21934
|
"Add Layer As": "",
|
|
21935
|
+
"Enter to search": "",
|
|
21893
21936
|
"button.login": "",
|
|
21894
21937
|
"catalog.figures.datasets": "conjuntos de dados",
|
|
21895
21938
|
"catalog.figures.organizations": "organizações",
|
|
@@ -21951,7 +21994,6 @@ var pt = {
|
|
|
21951
21994
|
"datahub.news.contact.title": "",
|
|
21952
21995
|
"datahub.news.feed": "",
|
|
21953
21996
|
"datahub.news.figures": "",
|
|
21954
|
-
"datahub.record.addToFavorites": "",
|
|
21955
21997
|
"datahub.search.back": "",
|
|
21956
21998
|
"datahub.search.filter.all": "",
|
|
21957
21999
|
"datahub.search.filter.generatedByAPI": "",
|
|
@@ -21961,6 +22003,7 @@ var pt = {
|
|
|
21961
22003
|
"dataset.error.http": "",
|
|
21962
22004
|
"dataset.error.network": "",
|
|
21963
22005
|
"dataset.error.parse": "",
|
|
22006
|
+
"dataset.error.restrictedAccess": "",
|
|
21964
22007
|
"dataset.error.unknown": "",
|
|
21965
22008
|
"dataset.error.unsupportedType": "",
|
|
21966
22009
|
"domain.contact.role.author": "",
|
|
@@ -22220,6 +22263,7 @@ var pt = {
|
|
|
22220
22263
|
"map.wms.urlInput.hint": "",
|
|
22221
22264
|
"multiselect.filter.placeholder": "",
|
|
22222
22265
|
"nav.back": "",
|
|
22266
|
+
"navbar.mobile.menuTitle": "",
|
|
22223
22267
|
next: next,
|
|
22224
22268
|
"ogc.unreachable.unknown": "",
|
|
22225
22269
|
"organisation.filter.placeholder": "",
|
|
@@ -22243,8 +22287,12 @@ var pt = {
|
|
|
22243
22287
|
"record.action.duplicating": "",
|
|
22244
22288
|
"record.action.rollback": "",
|
|
22245
22289
|
"record.action.view": "",
|
|
22290
|
+
"record.card.metadata.contact": "",
|
|
22246
22291
|
"record.externalViewer.open": "",
|
|
22247
22292
|
"record.feature.limit": "",
|
|
22293
|
+
"record.kind.dataset": "",
|
|
22294
|
+
"record.kind.reuse": "",
|
|
22295
|
+
"record.kind.service": "",
|
|
22248
22296
|
"record.metadata.about": "",
|
|
22249
22297
|
"record.metadata.api": "",
|
|
22250
22298
|
"record.metadata.api.form.closeButton": "",
|
|
@@ -22278,6 +22326,7 @@ var pt = {
|
|
|
22278
22326
|
"record.metadata.api.form.zoneTitle": "",
|
|
22279
22327
|
"record.metadata.api.form.zoneTooltip": "",
|
|
22280
22328
|
"record.metadata.api.gpfdl": "",
|
|
22329
|
+
"record.metadata.capabilities": "",
|
|
22281
22330
|
"record.metadata.catalog": "",
|
|
22282
22331
|
"record.metadata.contact": "",
|
|
22283
22332
|
"record.metadata.creation": "",
|
|
@@ -22709,6 +22758,10 @@ class Gn4FieldMapper {
|
|
|
22709
22758
|
const url = getAsUrl(selectFallback(selectTranslatedField(sourceLink, 'urlObject', this.lang3), selectField(sourceLink, 'url')));
|
|
22710
22759
|
const name = selectFallback(selectTranslatedField(sourceLink, 'nameObject', this.lang3), selectField(sourceLink, 'name'));
|
|
22711
22760
|
const description = selectFallback(selectTranslatedField(sourceLink, 'descriptionObject', this.lang3), selectField(sourceLink, 'description'));
|
|
22761
|
+
const descriptionLink = selectField(sourceLink, 'descriptionObject');
|
|
22762
|
+
const accessRestricted = descriptionLink &&
|
|
22763
|
+
'link' in descriptionLink &&
|
|
22764
|
+
descriptionLink.link.toString().includes('#MD_RestrictionCode_restricted');
|
|
22712
22765
|
// no url: fail early
|
|
22713
22766
|
if (url === null) {
|
|
22714
22767
|
// TODO: collect errors at the record level?
|
|
@@ -22731,6 +22784,7 @@ class Gn4FieldMapper {
|
|
|
22731
22784
|
type,
|
|
22732
22785
|
url: url,
|
|
22733
22786
|
accessServiceProtocol,
|
|
22787
|
+
accessRestricted: accessRestricted,
|
|
22734
22788
|
};
|
|
22735
22789
|
case 'link':
|
|
22736
22790
|
return {
|
|
@@ -25367,7 +25421,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
25367
25421
|
|
|
25368
25422
|
class AnchorLinkDirective {
|
|
25369
25423
|
get elementClass() {
|
|
25370
|
-
|
|
25424
|
+
if (this.disabled) {
|
|
25425
|
+
return this.disabledClass;
|
|
25426
|
+
}
|
|
25427
|
+
if (this.inView) {
|
|
25428
|
+
return `${this.inViewClass} ${this.enabledClass}`;
|
|
25429
|
+
}
|
|
25430
|
+
else {
|
|
25431
|
+
return `${this.outOfViewClass} ${this.enabledClass}`;
|
|
25432
|
+
}
|
|
25371
25433
|
}
|
|
25372
25434
|
constructor(changeDetector) {
|
|
25373
25435
|
this.changeDetector = changeDetector;
|
|
@@ -25375,6 +25437,8 @@ class AnchorLinkDirective {
|
|
|
25375
25437
|
this.observer = new MutationObserver(() => {
|
|
25376
25438
|
this.refreshDisabledState();
|
|
25377
25439
|
});
|
|
25440
|
+
this.inView = false;
|
|
25441
|
+
this.initialized = false;
|
|
25378
25442
|
}
|
|
25379
25443
|
ngOnInit() {
|
|
25380
25444
|
this.observer.observe(document.body, {
|
|
@@ -25383,8 +25447,32 @@ class AnchorLinkDirective {
|
|
|
25383
25447
|
});
|
|
25384
25448
|
this.refreshDisabledState();
|
|
25385
25449
|
}
|
|
25450
|
+
ngAfterViewChecked() {
|
|
25451
|
+
if (!this.initialized && !this.disabled) {
|
|
25452
|
+
const target = document.getElementById(this.targetId);
|
|
25453
|
+
if (target) {
|
|
25454
|
+
this.initializeIntersectionObserver(target);
|
|
25455
|
+
this.initialized = true;
|
|
25456
|
+
}
|
|
25457
|
+
}
|
|
25458
|
+
}
|
|
25459
|
+
initializeIntersectionObserver(target) {
|
|
25460
|
+
this.intersectionObserver = new IntersectionObserver((entries) => {
|
|
25461
|
+
entries.forEach((entry) => {
|
|
25462
|
+
this.inView = entry.isIntersecting;
|
|
25463
|
+
this.changeDetector.detectChanges();
|
|
25464
|
+
});
|
|
25465
|
+
}, {
|
|
25466
|
+
root: null,
|
|
25467
|
+
rootMargin: '-30% 0% -60% 0%',
|
|
25468
|
+
});
|
|
25469
|
+
this.intersectionObserver.observe(target);
|
|
25470
|
+
}
|
|
25386
25471
|
ngOnDestroy() {
|
|
25387
25472
|
this.observer.disconnect();
|
|
25473
|
+
if (this.intersectionObserver) {
|
|
25474
|
+
this.intersectionObserver.disconnect();
|
|
25475
|
+
}
|
|
25388
25476
|
}
|
|
25389
25477
|
refreshDisabledState() {
|
|
25390
25478
|
const targetNotPresent = !document.getElementById(this.targetId);
|
|
@@ -25403,7 +25491,7 @@ class AnchorLinkDirective {
|
|
|
25403
25491
|
});
|
|
25404
25492
|
}
|
|
25405
25493
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AnchorLinkDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
25406
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: AnchorLinkDirective, selector: "[gnUiAnchorLink]", inputs: { targetId: ["gnUiAnchorLink", "targetId"], disabledClass: ["gnUiAnchorLinkDisabledClass", "disabledClass"], enabledClass: ["gnUiAnchorLinkEnabledClass", "enabledClass"] }, host: { listeners: { "click": "scrollToTarget()" }, properties: { "class": "this.elementClass" } }, ngImport: i0 }); }
|
|
25494
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: AnchorLinkDirective, selector: "[gnUiAnchorLink]", inputs: { targetId: ["gnUiAnchorLink", "targetId"], disabledClass: ["gnUiAnchorLinkDisabledClass", "disabledClass"], enabledClass: ["gnUiAnchorLinkEnabledClass", "enabledClass"], inViewClass: ["gnUiAnchorLinkInViewClass", "inViewClass"], outOfViewClass: ["gnUiAnchorLinkOutOfViewClass", "outOfViewClass"] }, host: { listeners: { "click": "scrollToTarget()" }, properties: { "class": "this.elementClass" } }, ngImport: i0 }); }
|
|
25407
25495
|
}
|
|
25408
25496
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: AnchorLinkDirective, decorators: [{
|
|
25409
25497
|
type: Directive,
|
|
@@ -25419,6 +25507,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
25419
25507
|
}], enabledClass: [{
|
|
25420
25508
|
type: Input,
|
|
25421
25509
|
args: ['gnUiAnchorLinkEnabledClass']
|
|
25510
|
+
}], inViewClass: [{
|
|
25511
|
+
type: Input,
|
|
25512
|
+
args: ['gnUiAnchorLinkInViewClass']
|
|
25513
|
+
}], outOfViewClass: [{
|
|
25514
|
+
type: Input,
|
|
25515
|
+
args: ['gnUiAnchorLinkOutOfViewClass']
|
|
25422
25516
|
}], elementClass: [{
|
|
25423
25517
|
type: HostBinding,
|
|
25424
25518
|
args: ['class']
|
|
@@ -25952,11 +26046,11 @@ class ProgressBarComponent {
|
|
|
25952
26046
|
}
|
|
25953
26047
|
}
|
|
25954
26048
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
25955
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ProgressBarComponent, isStandalone: true, selector: "gn-ui-progress-bar", inputs: { value: "value", type: "type" }, ngImport: i0, template: "<ng-container [ngSwitch]=\"type\">\n <!-- Light Theme -->\n <ng-container *ngSwitchCase=\"'light'\">\n <div class=\"flex items-center relative\">\n <div\n class=\"flex-shrink-0 {{ color.text }} text-xs font-medium mr-2\n text-opacity-100 !text-slate-800\"\n >\n {{ progress }}%\n </div>\n <div class=\"flex-grow h-[
|
|
26049
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ProgressBarComponent, isStandalone: true, selector: "gn-ui-progress-bar", inputs: { value: "value", type: "type" }, ngImport: i0, template: "<ng-container [ngSwitch]=\"type\">\n <!-- Light Theme -->\n <ng-container *ngSwitchCase=\"'light'\">\n <div class=\"flex items-center relative\">\n <div\n class=\"flex-shrink-0 {{ color.text }} text-xs font-medium mr-2\n text-opacity-100 !text-slate-800\"\n >\n {{ progress }}%\n </div>\n <div class=\"flex-grow h-[4px] w-[52px] {{ color.outerBar }} rounded-full\">\n <div\n [style.width.%]=\"progress\"\n class=\"{{ color.innerBar }} transition-width duration-500\n ease-in-out rounded-full shadow-sm w-[52px] h-[4px]\"\n ></div>\n </div>\n </div>\n </ng-container>\n\n <!-- Default / Primary / Secondary Themes -->\n <ng-container *ngSwitchDefault>\n <div class=\"flex h-full {{ color.outerBar }} rounded-t-lg rounded-b-lg\">\n <div\n [style.width.%]=\"progress\"\n class=\"flex {{ color.innerBar }} my-1 mx-1 transition-width\n duration-500 ease-in-out rounded-t-md rounded-b-md shadow-xl\"\n >\n <div\n class=\"flex items-center pl-2 py-1 {{ color.text }} font-bold text-4\"\n >\n {{ progress }}%\n </div>\n </div>\n </div>\n </ng-container>\n</ng-container>\n", styles: [".font-bold{font-weight:var(--progress-bar-font-weight, \"bold\")}\n"], dependencies: [{ kind: "directive", type: NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: NgSwitchDefault, selector: "[ngSwitchDefault]" }] }); }
|
|
25956
26050
|
}
|
|
25957
26051
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
25958
26052
|
type: Component,
|
|
25959
|
-
args: [{ selector: 'gn-ui-progress-bar', standalone: true, imports: [NgSwitch, NgSwitchCase, NgSwitchDefault], template: "<ng-container [ngSwitch]=\"type\">\n <!-- Light Theme -->\n <ng-container *ngSwitchCase=\"'light'\">\n <div class=\"flex items-center relative\">\n <div\n class=\"flex-shrink-0 {{ color.text }} text-xs font-medium mr-2\n text-opacity-100 !text-slate-800\"\n >\n {{ progress }}%\n </div>\n <div class=\"flex-grow h-[
|
|
26053
|
+
args: [{ selector: 'gn-ui-progress-bar', standalone: true, imports: [NgSwitch, NgSwitchCase, NgSwitchDefault], template: "<ng-container [ngSwitch]=\"type\">\n <!-- Light Theme -->\n <ng-container *ngSwitchCase=\"'light'\">\n <div class=\"flex items-center relative\">\n <div\n class=\"flex-shrink-0 {{ color.text }} text-xs font-medium mr-2\n text-opacity-100 !text-slate-800\"\n >\n {{ progress }}%\n </div>\n <div class=\"flex-grow h-[4px] w-[52px] {{ color.outerBar }} rounded-full\">\n <div\n [style.width.%]=\"progress\"\n class=\"{{ color.innerBar }} transition-width duration-500\n ease-in-out rounded-full shadow-sm w-[52px] h-[4px]\"\n ></div>\n </div>\n </div>\n </ng-container>\n\n <!-- Default / Primary / Secondary Themes -->\n <ng-container *ngSwitchDefault>\n <div class=\"flex h-full {{ color.outerBar }} rounded-t-lg rounded-b-lg\">\n <div\n [style.width.%]=\"progress\"\n class=\"flex {{ color.innerBar }} my-1 mx-1 transition-width\n duration-500 ease-in-out rounded-t-md rounded-b-md shadow-xl\"\n >\n <div\n class=\"flex items-center pl-2 py-1 {{ color.text }} font-bold text-4\"\n >\n {{ progress }}%\n </div>\n </div>\n </div>\n </ng-container>\n</ng-container>\n", styles: [".font-bold{font-weight:var(--progress-bar-font-weight, \"bold\")}\n"] }]
|
|
25960
26054
|
}], propDecorators: { value: [{
|
|
25961
26055
|
type: Input
|
|
25962
26056
|
}], type: [{
|
|
@@ -27350,19 +27444,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
27350
27444
|
type: Input
|
|
27351
27445
|
}] } });
|
|
27352
27446
|
|
|
27353
|
-
class NavigationButtonComponent {
|
|
27354
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NavigationButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
27355
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: NavigationButtonComponent, isStandalone: true, selector: "gn-ui-navigation-button", inputs: { label: "label", icon: "icon" }, ngImport: i0, template: "<button\n class=\"group flex items-center justify-center gap-1 backdrop-blur p-1 bg-primary-opacity-30 rounded content-center\"\n>\n <ng-icon [name]=\"icon\" class=\"align-middle w-[18px]\"></ng-icon>\n <span\n class=\"mx-2 mt-0.5 text-[16px] tracking-widest content-center opacity-75\"\n >{{ label.toUpperCase() }}</span\n >\n</button>\n", styles: ["button{color:var(--navigation-button-color, --color-background)}\n"], dependencies: [{ kind: "component", type: NgIcon, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
27356
|
-
}
|
|
27357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NavigationButtonComponent, decorators: [{
|
|
27358
|
-
type: Component,
|
|
27359
|
-
args: [{ selector: 'gn-ui-navigation-button', changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgIcon], standalone: true, template: "<button\n class=\"group flex items-center justify-center gap-1 backdrop-blur p-1 bg-primary-opacity-30 rounded content-center\"\n>\n <ng-icon [name]=\"icon\" class=\"align-middle w-[18px]\"></ng-icon>\n <span\n class=\"mx-2 mt-0.5 text-[16px] tracking-widest content-center opacity-75\"\n >{{ label.toUpperCase() }}</span\n >\n</button>\n", styles: ["button{color:var(--navigation-button-color, --color-background)}\n"] }]
|
|
27360
|
-
}], propDecorators: { label: [{
|
|
27361
|
-
type: Input
|
|
27362
|
-
}], icon: [{
|
|
27363
|
-
type: Input
|
|
27364
|
-
}] } });
|
|
27365
|
-
|
|
27366
27447
|
class SearchInputComponent {
|
|
27367
27448
|
constructor() {
|
|
27368
27449
|
this.value = '';
|
|
@@ -27421,11 +27502,11 @@ class StarToggleComponent {
|
|
|
27421
27502
|
event.preventDefault();
|
|
27422
27503
|
}
|
|
27423
27504
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: StarToggleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
27424
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: StarToggleComponent, isStandalone: true, selector: "gn-ui-star-toggle", inputs: { toggled: "toggled", disabled: "disabled" }, outputs: { newValue: "newValue" }, viewQueries: [{ propertyName: "overlay", first: true, predicate: ["starOverlay"], descendants: true }], ngImport: i0, template: "<div class=\"inline-block relative align-middle\" style=\"line-height: 0.7em\">\n <button\n type=\"
|
|
27505
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: StarToggleComponent, isStandalone: true, selector: "gn-ui-star-toggle", inputs: { toggled: "toggled", disabled: "disabled" }, outputs: { newValue: "newValue" }, viewQueries: [{ propertyName: "overlay", first: true, predicate: ["starOverlay"], descendants: true }], ngImport: i0, template: "<div class=\"inline-block relative align-middle\" style=\"line-height: 0.7em\">\n <gn-ui-button\n [type]=\"'outline'\"\n class=\"-m-[8px] p-[8px]\"\n (buttonClick)=\"toggle($event)\"\n [ngClass]=\"{\n enabled: toggled,\n disabled: !toggled,\n 'transition hover:scale-125 will-change-transform': !disabled,\n 'cursor-default': disabled,\n }\"\n >\n <ng-icon [name]=\"toggled ? 'matStar' : 'matStarBorder'\"></ng-icon>\n </gn-ui-button>\n <svg\n #starOverlay\n class=\"star-toggle-overlay\"\n width=\"40px\"\n height=\"40px\"\n viewBox=\"-15 -15 30 30\"\n >\n <g>\n <path d=\"M 0,13.229167 V 0\" />\n <path d=\"M -12.484186,4.0880377 0,0\" />\n <path d=\"M -7.6784102,-10.70262 0,0\" />\n <path d=\"M 7.8734079,-10.70262 0,0\" />\n <path d=\"M 12.679184,4.0880376 0,0\" />\n </g>\n </svg>\n</div>\n", styles: ["button.enabled{color:var(--star-toggle-enabled-color, var(--color-secondary))}button.disabled{color:var(--star-toggle-disabled-color, var(--color-primary))}.star-filled{font-variation-settings:\"FILL\" 1}.star-toggle-overlay{stroke:var(--color-secondary);stroke-width:3.5px;stroke-linecap:round;position:absolute;top:50%;left:50%;width:2.5em;height:2.5em;transform:translate(-50%,-50%);pointer-events:none;stroke-dasharray:5 20;stroke-dashoffset:-15;animation:overlay-dash .8s cubic-bezier(.16,.66,.44,.96) forwards;animation-play-state:paused}@keyframes overlay-dash{to{stroke-dashoffset:7}}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: NgIcon, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }], viewProviders: [provideIcons({ matStar, matStarBorder })], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
27425
27506
|
}
|
|
27426
27507
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: StarToggleComponent, decorators: [{
|
|
27427
27508
|
type: Component,
|
|
27428
|
-
args: [{ selector: 'gn-ui-star-toggle', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, NgIcon], viewProviders: [provideIcons({ matStar, matStarBorder })], template: "<div class=\"inline-block relative align-middle\" style=\"line-height: 0.7em\">\n <button\n type=\"
|
|
27509
|
+
args: [{ selector: 'gn-ui-star-toggle', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, NgIcon, ButtonComponent], viewProviders: [provideIcons({ matStar, matStarBorder })], template: "<div class=\"inline-block relative align-middle\" style=\"line-height: 0.7em\">\n <gn-ui-button\n [type]=\"'outline'\"\n class=\"-m-[8px] p-[8px]\"\n (buttonClick)=\"toggle($event)\"\n [ngClass]=\"{\n enabled: toggled,\n disabled: !toggled,\n 'transition hover:scale-125 will-change-transform': !disabled,\n 'cursor-default': disabled,\n }\"\n >\n <ng-icon [name]=\"toggled ? 'matStar' : 'matStarBorder'\"></ng-icon>\n </gn-ui-button>\n <svg\n #starOverlay\n class=\"star-toggle-overlay\"\n width=\"40px\"\n height=\"40px\"\n viewBox=\"-15 -15 30 30\"\n >\n <g>\n <path d=\"M 0,13.229167 V 0\" />\n <path d=\"M -12.484186,4.0880377 0,0\" />\n <path d=\"M -7.6784102,-10.70262 0,0\" />\n <path d=\"M 7.8734079,-10.70262 0,0\" />\n <path d=\"M 12.679184,4.0880376 0,0\" />\n </g>\n </svg>\n</div>\n", styles: ["button.enabled{color:var(--star-toggle-enabled-color, var(--color-secondary))}button.disabled{color:var(--star-toggle-disabled-color, var(--color-primary))}.star-filled{font-variation-settings:\"FILL\" 1}.star-toggle-overlay{stroke:var(--color-secondary);stroke-width:3.5px;stroke-linecap:round;position:absolute;top:50%;left:50%;width:2.5em;height:2.5em;transform:translate(-50%,-50%);pointer-events:none;stroke-dasharray:5 20;stroke-dashoffset:-15;animation:overlay-dash .8s cubic-bezier(.16,.66,.44,.96) forwards;animation-play-state:paused}@keyframes overlay-dash{to{stroke-dashoffset:7}}\n"] }]
|
|
27429
27510
|
}], propDecorators: { toggled: [{
|
|
27430
27511
|
type: Input
|
|
27431
27512
|
}], disabled: [{
|
|
@@ -28472,7 +28553,7 @@ class MetadataQualityComponent {
|
|
|
28472
28553
|
size: '1.2em',
|
|
28473
28554
|
strokeWidth: '1.5px',
|
|
28474
28555
|
}),
|
|
28475
|
-
], usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"metadataQualityDisplay\" class=\"
|
|
28556
|
+
], usesOnChanges: true, ngImport: i0, template: "<div *ngIf=\"metadataQualityDisplay\" class=\"metadata-quality\">\n <div\n class=\"flex items-center\"\n [class]=\"\n smaller ? 'leading-[8px] min-w-[120px] m-h-[120px]' : 'min-w-[200px]'\n \"\n >\n <gn-ui-progress-bar\n tabindex=\"0\"\n [value]=\"qualityScore\"\n [type]=\"'light'\"\n class=\"flex-grow\"\n ></gn-ui-progress-bar>\n <gn-ui-popover\n [content]=\"popoverItems\"\n theme=\"light-border\"\n [class]=\"smaller ? 'ml-2' : 'ml-2 mt-1'\"\n >\n <ng-icon\n name=\"matInfoOutline\"\n class=\"flex-shrink-0 text-gray-600\"\n ></ng-icon>\n </gn-ui-popover>\n </div>\n</div>\n<ng-template #popoverItems>\n <div class=\"p-2 py-4\">\n <div class=\"mb-4 font-bold\" translate>record.metadata.quality.details</div>\n <gn-ui-metadata-quality-item\n *ngFor=\"let e of items\"\n [name]=\"e.name\"\n [value]=\"e.value\"\n ></gn-ui-metadata-quality-item>\n </div>\n</ng-template>\n", styles: [":host gn-ui-progress-bar{--progress-bar-font-weight: \"normal\"}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: PopoverComponent, selector: "gn-ui-popover", inputs: ["content", "theme"] }, { kind: "component", type: ProgressBarComponent, selector: "gn-ui-progress-bar", inputs: ["value", "type"] }, { kind: "component", type: MetadataQualityItemComponent, selector: "gn-ui-metadata-quality-item", inputs: ["name", "value"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: NgIcon, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
28476
28557
|
}
|
|
28477
28558
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MetadataQualityComponent, decorators: [{
|
|
28478
28559
|
type: Component,
|
|
@@ -28491,7 +28572,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
28491
28572
|
size: '1.2em',
|
|
28492
28573
|
strokeWidth: '1.5px',
|
|
28493
28574
|
}),
|
|
28494
|
-
], template: "<div *ngIf=\"metadataQualityDisplay\" class=\"
|
|
28575
|
+
], template: "<div *ngIf=\"metadataQualityDisplay\" class=\"metadata-quality\">\n <div\n class=\"flex items-center\"\n [class]=\"\n smaller ? 'leading-[8px] min-w-[120px] m-h-[120px]' : 'min-w-[200px]'\n \"\n >\n <gn-ui-progress-bar\n tabindex=\"0\"\n [value]=\"qualityScore\"\n [type]=\"'light'\"\n class=\"flex-grow\"\n ></gn-ui-progress-bar>\n <gn-ui-popover\n [content]=\"popoverItems\"\n theme=\"light-border\"\n [class]=\"smaller ? 'ml-2' : 'ml-2 mt-1'\"\n >\n <ng-icon\n name=\"matInfoOutline\"\n class=\"flex-shrink-0 text-gray-600\"\n ></ng-icon>\n </gn-ui-popover>\n </div>\n</div>\n<ng-template #popoverItems>\n <div class=\"p-2 py-4\">\n <div class=\"mb-4 font-bold\" translate>record.metadata.quality.details</div>\n <gn-ui-metadata-quality-item\n *ngFor=\"let e of items\"\n [name]=\"e.name\"\n [value]=\"e.value\"\n ></gn-ui-metadata-quality-item>\n </div>\n</ng-template>\n", styles: [":host gn-ui-progress-bar{--progress-bar-font-weight: \"normal\"}\n"] }]
|
|
28495
28576
|
}], propDecorators: { metadata: [{
|
|
28496
28577
|
type: Input
|
|
28497
28578
|
}], smaller: [{
|
|
@@ -29914,6 +29995,154 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
29914
29995
|
type: Input
|
|
29915
29996
|
}] } });
|
|
29916
29997
|
|
|
29998
|
+
marker('record.kind.dataset');
|
|
29999
|
+
marker('record.kind.reuse');
|
|
30000
|
+
marker('record.kind.service');
|
|
30001
|
+
class InternalLinkCardComponent {
|
|
30002
|
+
set size(value) {
|
|
30003
|
+
this._size = value;
|
|
30004
|
+
this.cardClass = this.sizeClassMap[value] || '';
|
|
30005
|
+
this.thumbnailContainerClass = this.thumbnailSizeClassMap[value] || 'hidden';
|
|
30006
|
+
}
|
|
30007
|
+
get size() {
|
|
30008
|
+
return this._size;
|
|
30009
|
+
}
|
|
30010
|
+
constructor(elementRef) {
|
|
30011
|
+
this.elementRef = elementRef;
|
|
30012
|
+
this.linkHref = null;
|
|
30013
|
+
this.mdSelect = new EventEmitter();
|
|
30014
|
+
this.subscription = new Subscription();
|
|
30015
|
+
this.cardClass = '';
|
|
30016
|
+
this.thumbnailContainerClass = '';
|
|
30017
|
+
this._size = 'M';
|
|
30018
|
+
this.sizeClassMap = {
|
|
30019
|
+
L: 'min-h-[190px] md:w-[992px] py-3 px-3 flex items-start gap-5',
|
|
30020
|
+
M: 'min-h-[140px] md:w-[570px] py-3 px-3 flex items-start gap-4',
|
|
30021
|
+
S: 'min-h-[220px] md:w-[370px] py-3 px-3 flex gap-4',
|
|
30022
|
+
XS: 'min-h-[108px] md:w-[570px] py-3 px-3 flex gap-4',
|
|
30023
|
+
};
|
|
30024
|
+
this.thumbnailSizeClassMap = {
|
|
30025
|
+
L: 'w-[190px] h-[180px] rounded-lg overflow-hidden shrink-0',
|
|
30026
|
+
M: 'w-[110px] h-[140px] rounded-lg overflow-hidden shrink-0',
|
|
30027
|
+
S: 'hidden',
|
|
30028
|
+
XS: 'hidden',
|
|
30029
|
+
};
|
|
30030
|
+
this.titleClassMap = {
|
|
30031
|
+
L: 'text-xl line-clamp-2',
|
|
30032
|
+
M: 'text-base line-clamp-2',
|
|
30033
|
+
S: 'text-base line-clamp-3',
|
|
30034
|
+
XS: 'text-base mt-3 line-clamp-2',
|
|
30035
|
+
};
|
|
30036
|
+
}
|
|
30037
|
+
ngOnInit() {
|
|
30038
|
+
this.abstract = removeWhitespace(stripHtml(this.record?.abstract));
|
|
30039
|
+
this.subscription.add(fromEvent(this.elementRef.nativeElement, 'click').subscribe((event) => {
|
|
30040
|
+
event.preventDefault();
|
|
30041
|
+
propagateToDocumentOnly(event);
|
|
30042
|
+
this.mdSelect.emit(this.record);
|
|
30043
|
+
}));
|
|
30044
|
+
}
|
|
30045
|
+
get organization() {
|
|
30046
|
+
return this.record.ownerOrganization;
|
|
30047
|
+
}
|
|
30048
|
+
get contacts() {
|
|
30049
|
+
return ((this.record.kind === 'dataset'
|
|
30050
|
+
? this.record.contactsForResource
|
|
30051
|
+
: this.record.contacts) || []);
|
|
30052
|
+
}
|
|
30053
|
+
getTitleClass() {
|
|
30054
|
+
return (this.titleClassMap[this._size] +
|
|
30055
|
+
' ' +
|
|
30056
|
+
(this.record.ownerOrganization?.name ? '' : 'mt-3') || '');
|
|
30057
|
+
}
|
|
30058
|
+
openExternalUrl(event, url) {
|
|
30059
|
+
event.stopPropagation();
|
|
30060
|
+
window.open(url, '_blank');
|
|
30061
|
+
}
|
|
30062
|
+
openMailto(event, email) {
|
|
30063
|
+
event.stopPropagation();
|
|
30064
|
+
window.open(`mailto:${email}`, '_blank');
|
|
30065
|
+
}
|
|
30066
|
+
copyToClipboard(event, text) {
|
|
30067
|
+
event.stopPropagation();
|
|
30068
|
+
navigator.clipboard.writeText(text);
|
|
30069
|
+
}
|
|
30070
|
+
get shouldShowThumbnail() {
|
|
30071
|
+
return this.size === 'L' || this.size === 'M';
|
|
30072
|
+
}
|
|
30073
|
+
getKindInfo() {
|
|
30074
|
+
if (!this.record?.kind)
|
|
30075
|
+
return { text: '', icon: '' };
|
|
30076
|
+
switch (this.record.kind.toLowerCase()) {
|
|
30077
|
+
case 'dataset':
|
|
30078
|
+
return { text: 'record.kind.dataset', icon: 'iconoirDatabase' };
|
|
30079
|
+
case 'reuse':
|
|
30080
|
+
return { text: 'record.kind.reuse', icon: 'iconoirMap' };
|
|
30081
|
+
case 'service':
|
|
30082
|
+
return { text: 'record.kind.service', icon: 'matCode' };
|
|
30083
|
+
default:
|
|
30084
|
+
return { text: '', icon: '' };
|
|
30085
|
+
}
|
|
30086
|
+
}
|
|
30087
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InternalLinkCardComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
30088
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: InternalLinkCardComponent, isStandalone: true, selector: "gn-ui-internal-link-card", inputs: { record: "record", metadataQualityDisplay: "metadataQualityDisplay", favoriteTemplate: "favoriteTemplate", linkHref: "linkHref", isGeodata: "isGeodata", size: "size" }, outputs: { mdSelect: "mdSelect" }, providers: [
|
|
30089
|
+
provideIcons({
|
|
30090
|
+
matLocationSearchingOutline,
|
|
30091
|
+
matCode,
|
|
30092
|
+
iconoirDatabase,
|
|
30093
|
+
iconoirMap,
|
|
30094
|
+
iconoirInternet,
|
|
30095
|
+
matEmailOutline,
|
|
30096
|
+
matPhoneOutline,
|
|
30097
|
+
matLocationOnOutline,
|
|
30098
|
+
}),
|
|
30099
|
+
provideNgIconsConfig({
|
|
30100
|
+
size: '1.2em',
|
|
30101
|
+
}),
|
|
30102
|
+
], ngImport: i0, template: "<div\n class=\"rounded-lg group card-shadow cursor-pointer overflow-hidden hover:bg-gray-50\"\n [ngClass]=\"cardClass\"\n>\n <div class=\"flex flex-row justify-between w-full\">\n <div\n *ngIf=\"shouldShowThumbnail\"\n [ngClass]=\"thumbnailContainerClass\"\n class=\"mr-4 flex flex-col\"\n >\n <gn-ui-thumbnail\n class=\"w-full h-full object-cover\"\n [thumbnailUrl]=\"record.overviews?.[0]?.url?.toString() || ''\"\n [fit]=\"'cover'\"\n ></gn-ui-thumbnail>\n </div>\n <div\n class=\"flex flex-col flex-1 relative\"\n [ngClass]=\"{\n 'justify-between': record.ownerOrganization?.name && size !== 'XS',\n }\"\n >\n <div class=\"flex items-center space-x-2\">\n <span\n *ngIf=\"getKindInfo().text\"\n class=\"badge-btn text-white text-xs px-2 py-0.5 font-bold shrink-0 bg-primary leading-tight flex items-center justify-evenly h-6 min-h-6\"\n >\n <ng-icon\n class=\"text-[0.9em] text-white mr-1\"\n [name]=\"getKindInfo().icon\"\n ></ng-icon>\n <span class=\"font-medium text-white text-xs\" translate>\n {{ getKindInfo().text }}\n </span>\n </span>\n <span\n *ngIf=\"isGeodata\"\n class=\"badge-btn text-black text-xs px-2 py-0.5 font-bold shrink-0 bg-primary-white leading-tight flex items-center justify-evenly h-6 min-h-6\"\n [ngClass]=\"size === 'L' ? 'w-[164px]' : 'w-8'\"\n >\n <ng-icon\n class=\"text-[0.9em] text-primary-darkest\"\n name=\"matLocationSearchingOutline\"\n ></ng-icon>\n <ng-container *ngIf=\"size === 'L'\">\n <span\n class=\"font-medium text-primary-darkest text-xs ml-1\"\n translate\n >\n record.metadata.type\n </span>\n </ng-container>\n </span>\n <div class=\"flex items-center\">\n <gn-ui-metadata-quality\n [smaller]=\"true\"\n [metadata]=\"record\"\n [metadataQualityDisplay]=\"metadataQualityDisplay\"\n ></gn-ui-metadata-quality>\n </div>\n <div class=\"absolute top-0 right-0 items-center\">\n <ng-container\n *ngIf=\"size !== 'XS'\"\n [ngTemplateOutlet]=\"favoriteTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: record }\"\n ></ng-container>\n </div>\n </div>\n <div\n class=\"font-medium text-title group-hover:text-primary overflow-hidden break-words\"\n [ngClass]=\"getTitleClass()\"\n >\n {{ record.title }}\n </div>\n <div\n *ngIf=\"size === 'L'\"\n class=\"mt-1 mb-2 font-normal text-xs text-gray-900 line-clamp-2 overflow-hidden\"\n >\n <gn-ui-markdown-parser\n [textContent]=\"abstract\"\n [whitoutStyles]=\"true\"\n ></gn-ui-markdown-parser>\n </div>\n <div\n *ngIf=\"size !== 'XS' && record.ownerOrganization?.name\"\n class=\"flex items-center justify-evenly bg-gray-50 rounded-lg h-[53px] px-2\"\n >\n <div class=\"flex items-center flex-1 min-w-0\">\n <div\n class=\"w-[45px] h-[45px] rounded-lg overflow-hidden shrink-0 mr-3\"\n >\n <gn-ui-thumbnail\n [thumbnailUrl]=\"\n record.ownerOrganization?.logoUrl?.toString() || ''\n \"\n [fit]=\"'contain'\"\n class=\"w-full h-full rounded-lg\"\n ></gn-ui-thumbnail>\n </div>\n <div *ngIf=\"organization?.name\" class=\"flex-1 w-0 overflow-hidden\">\n <div\n class=\"text-xs text-black font-normal leading-tight truncate\"\n translate\n >\n record.card.metadata.contact\n </div>\n <div class=\"text-xl text-primary-black font-medium truncate\">\n {{ organization.name }}\n </div>\n </div>\n </div>\n <div *ngIf=\"size === 'L'\" class=\"ml-2 flex space-x-2\">\n <div *ngIf=\"organization?.website\" class=\"flex\">\n <button\n [title]=\"organization.website\"\n class=\"w-[40px] h-[32px] flex items-center justify-center rounded-lg border border-[#D4D3D7] px-[8px] py-[4px] hover:bg-primary-lightest\"\n (click)=\"openExternalUrl($event, organization.website)\"\n >\n <ng-icon name=\"iconoirInternet\"></ng-icon>\n </button>\n </div>\n <div *ngIf=\"contacts[0]?.email\" class=\"flex\">\n <button\n [title]=\"contacts[0].email\"\n class=\"w-[40px] h-[32px] flex items-center justify-center rounded-lg border border-[#D4D3D7] px-[8px] py-[4px] hover:bg-primary-lightest\"\n data-cy=\"contact-email\"\n (click)=\"openMailto($event, contacts[0].email)\"\n >\n <ng-icon name=\"matEmailOutline\"></ng-icon>\n </button>\n </div>\n <div *ngIf=\"contacts[0]?.phone\" class=\"flex\">\n <button\n [title]=\"'Copy to clipboard'\"\n class=\"w-[40px] h-[32px] flex items-center justify-center rounded-lg border border-[#D4D3D7] px-[8px] py-[4px] hover:bg-primary-lightest relative group\"\n data-cy=\"contact-phone\"\n (click)=\"copyToClipboard($event, contacts[0].phone)\"\n >\n <ng-icon name=\"matPhoneOutline\"></ng-icon>\n </button>\n </div>\n <div *ngIf=\"contacts[0]?.address\" class=\"flex\">\n <button\n [title]=\"'Copy to clipboard'\"\n class=\"w-[40px] h-[32px] flex items-center justify-center rounded-lg border border-[#D4D3D7] px-[8px] py-[4px] hover:bg-primary-lightest relative group\"\n data-cy=\"contact-phone\"\n (click)=\"copyToClipboard($event, contacts[0].address)\"\n >\n <ng-icon name=\"matLocationOnOutline\"></ng-icon>\n </button>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ThumbnailComponent, selector: "gn-ui-thumbnail", inputs: ["thumbnailUrl", "fit"], outputs: ["placeholderShown"] }, { kind: "component", type: MetadataQualityComponent, selector: "gn-ui-metadata-quality", inputs: ["metadata", "smaller", "metadataQualityDisplay"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: NgIconComponent, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: MarkdownParserComponent, selector: "gn-ui-markdown-parser", inputs: ["textContent", "whitoutStyles"] }] }); }
|
|
30103
|
+
}
|
|
30104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: InternalLinkCardComponent, decorators: [{
|
|
30105
|
+
type: Component,
|
|
30106
|
+
args: [{ selector: 'gn-ui-internal-link-card', standalone: true, imports: [
|
|
30107
|
+
NgClass,
|
|
30108
|
+
NgIf,
|
|
30109
|
+
ThumbnailComponent,
|
|
30110
|
+
MetadataQualityComponent,
|
|
30111
|
+
NgTemplateOutlet,
|
|
30112
|
+
NgIconComponent,
|
|
30113
|
+
TranslateModule,
|
|
30114
|
+
MarkdownParserComponent,
|
|
30115
|
+
], providers: [
|
|
30116
|
+
provideIcons({
|
|
30117
|
+
matLocationSearchingOutline,
|
|
30118
|
+
matCode,
|
|
30119
|
+
iconoirDatabase,
|
|
30120
|
+
iconoirMap,
|
|
30121
|
+
iconoirInternet,
|
|
30122
|
+
matEmailOutline,
|
|
30123
|
+
matPhoneOutline,
|
|
30124
|
+
matLocationOnOutline,
|
|
30125
|
+
}),
|
|
30126
|
+
provideNgIconsConfig({
|
|
30127
|
+
size: '1.2em',
|
|
30128
|
+
}),
|
|
30129
|
+
], template: "<div\n class=\"rounded-lg group card-shadow cursor-pointer overflow-hidden hover:bg-gray-50\"\n [ngClass]=\"cardClass\"\n>\n <div class=\"flex flex-row justify-between w-full\">\n <div\n *ngIf=\"shouldShowThumbnail\"\n [ngClass]=\"thumbnailContainerClass\"\n class=\"mr-4 flex flex-col\"\n >\n <gn-ui-thumbnail\n class=\"w-full h-full object-cover\"\n [thumbnailUrl]=\"record.overviews?.[0]?.url?.toString() || ''\"\n [fit]=\"'cover'\"\n ></gn-ui-thumbnail>\n </div>\n <div\n class=\"flex flex-col flex-1 relative\"\n [ngClass]=\"{\n 'justify-between': record.ownerOrganization?.name && size !== 'XS',\n }\"\n >\n <div class=\"flex items-center space-x-2\">\n <span\n *ngIf=\"getKindInfo().text\"\n class=\"badge-btn text-white text-xs px-2 py-0.5 font-bold shrink-0 bg-primary leading-tight flex items-center justify-evenly h-6 min-h-6\"\n >\n <ng-icon\n class=\"text-[0.9em] text-white mr-1\"\n [name]=\"getKindInfo().icon\"\n ></ng-icon>\n <span class=\"font-medium text-white text-xs\" translate>\n {{ getKindInfo().text }}\n </span>\n </span>\n <span\n *ngIf=\"isGeodata\"\n class=\"badge-btn text-black text-xs px-2 py-0.5 font-bold shrink-0 bg-primary-white leading-tight flex items-center justify-evenly h-6 min-h-6\"\n [ngClass]=\"size === 'L' ? 'w-[164px]' : 'w-8'\"\n >\n <ng-icon\n class=\"text-[0.9em] text-primary-darkest\"\n name=\"matLocationSearchingOutline\"\n ></ng-icon>\n <ng-container *ngIf=\"size === 'L'\">\n <span\n class=\"font-medium text-primary-darkest text-xs ml-1\"\n translate\n >\n record.metadata.type\n </span>\n </ng-container>\n </span>\n <div class=\"flex items-center\">\n <gn-ui-metadata-quality\n [smaller]=\"true\"\n [metadata]=\"record\"\n [metadataQualityDisplay]=\"metadataQualityDisplay\"\n ></gn-ui-metadata-quality>\n </div>\n <div class=\"absolute top-0 right-0 items-center\">\n <ng-container\n *ngIf=\"size !== 'XS'\"\n [ngTemplateOutlet]=\"favoriteTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: record }\"\n ></ng-container>\n </div>\n </div>\n <div\n class=\"font-medium text-title group-hover:text-primary overflow-hidden break-words\"\n [ngClass]=\"getTitleClass()\"\n >\n {{ record.title }}\n </div>\n <div\n *ngIf=\"size === 'L'\"\n class=\"mt-1 mb-2 font-normal text-xs text-gray-900 line-clamp-2 overflow-hidden\"\n >\n <gn-ui-markdown-parser\n [textContent]=\"abstract\"\n [whitoutStyles]=\"true\"\n ></gn-ui-markdown-parser>\n </div>\n <div\n *ngIf=\"size !== 'XS' && record.ownerOrganization?.name\"\n class=\"flex items-center justify-evenly bg-gray-50 rounded-lg h-[53px] px-2\"\n >\n <div class=\"flex items-center flex-1 min-w-0\">\n <div\n class=\"w-[45px] h-[45px] rounded-lg overflow-hidden shrink-0 mr-3\"\n >\n <gn-ui-thumbnail\n [thumbnailUrl]=\"\n record.ownerOrganization?.logoUrl?.toString() || ''\n \"\n [fit]=\"'contain'\"\n class=\"w-full h-full rounded-lg\"\n ></gn-ui-thumbnail>\n </div>\n <div *ngIf=\"organization?.name\" class=\"flex-1 w-0 overflow-hidden\">\n <div\n class=\"text-xs text-black font-normal leading-tight truncate\"\n translate\n >\n record.card.metadata.contact\n </div>\n <div class=\"text-xl text-primary-black font-medium truncate\">\n {{ organization.name }}\n </div>\n </div>\n </div>\n <div *ngIf=\"size === 'L'\" class=\"ml-2 flex space-x-2\">\n <div *ngIf=\"organization?.website\" class=\"flex\">\n <button\n [title]=\"organization.website\"\n class=\"w-[40px] h-[32px] flex items-center justify-center rounded-lg border border-[#D4D3D7] px-[8px] py-[4px] hover:bg-primary-lightest\"\n (click)=\"openExternalUrl($event, organization.website)\"\n >\n <ng-icon name=\"iconoirInternet\"></ng-icon>\n </button>\n </div>\n <div *ngIf=\"contacts[0]?.email\" class=\"flex\">\n <button\n [title]=\"contacts[0].email\"\n class=\"w-[40px] h-[32px] flex items-center justify-center rounded-lg border border-[#D4D3D7] px-[8px] py-[4px] hover:bg-primary-lightest\"\n data-cy=\"contact-email\"\n (click)=\"openMailto($event, contacts[0].email)\"\n >\n <ng-icon name=\"matEmailOutline\"></ng-icon>\n </button>\n </div>\n <div *ngIf=\"contacts[0]?.phone\" class=\"flex\">\n <button\n [title]=\"'Copy to clipboard'\"\n class=\"w-[40px] h-[32px] flex items-center justify-center rounded-lg border border-[#D4D3D7] px-[8px] py-[4px] hover:bg-primary-lightest relative group\"\n data-cy=\"contact-phone\"\n (click)=\"copyToClipboard($event, contacts[0].phone)\"\n >\n <ng-icon name=\"matPhoneOutline\"></ng-icon>\n </button>\n </div>\n <div *ngIf=\"contacts[0]?.address\" class=\"flex\">\n <button\n [title]=\"'Copy to clipboard'\"\n class=\"w-[40px] h-[32px] flex items-center justify-center rounded-lg border border-[#D4D3D7] px-[8px] py-[4px] hover:bg-primary-lightest relative group\"\n data-cy=\"contact-phone\"\n (click)=\"copyToClipboard($event, contacts[0].address)\"\n >\n <ng-icon name=\"matLocationOnOutline\"></ng-icon>\n </button>\n </div>\n </div>\n </div>\n </div>\n </div>\n</div>\n" }]
|
|
30130
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { record: [{
|
|
30131
|
+
type: Input
|
|
30132
|
+
}], metadataQualityDisplay: [{
|
|
30133
|
+
type: Input
|
|
30134
|
+
}], favoriteTemplate: [{
|
|
30135
|
+
type: Input
|
|
30136
|
+
}], linkHref: [{
|
|
30137
|
+
type: Input
|
|
30138
|
+
}], isGeodata: [{
|
|
30139
|
+
type: Input
|
|
30140
|
+
}], size: [{
|
|
30141
|
+
type: Input
|
|
30142
|
+
}], mdSelect: [{
|
|
30143
|
+
type: Output
|
|
30144
|
+
}] } });
|
|
30145
|
+
|
|
29917
30146
|
class UiElementsModule {
|
|
29918
30147
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiElementsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
29919
30148
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UiElementsModule, declarations: [AvatarComponent, UserPreviewComponent], imports: [CommonModule,
|
|
@@ -29932,12 +30161,14 @@ class UiElementsModule {
|
|
|
29932
30161
|
MaxLinesComponent,
|
|
29933
30162
|
TextInputComponent,
|
|
29934
30163
|
ImageInputComponent,
|
|
29935
|
-
ApplicationBannerComponent
|
|
30164
|
+
ApplicationBannerComponent,
|
|
30165
|
+
InternalLinkCardComponent], exports: [ThumbnailComponent,
|
|
29936
30166
|
AvatarComponent,
|
|
29937
30167
|
UserPreviewComponent,
|
|
29938
30168
|
MarkdownParserComponent,
|
|
29939
30169
|
ImageInputComponent,
|
|
29940
|
-
ApplicationBannerComponent
|
|
30170
|
+
ApplicationBannerComponent,
|
|
30171
|
+
InternalLinkCardComponent] }); }
|
|
29941
30172
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiElementsModule, providers: [
|
|
29942
30173
|
provideNgIconsConfig({
|
|
29943
30174
|
size: '1.5em',
|
|
@@ -29957,7 +30188,8 @@ class UiElementsModule {
|
|
|
29957
30188
|
MaxLinesComponent,
|
|
29958
30189
|
TextInputComponent,
|
|
29959
30190
|
ImageInputComponent,
|
|
29960
|
-
ApplicationBannerComponent
|
|
30191
|
+
ApplicationBannerComponent,
|
|
30192
|
+
InternalLinkCardComponent] }); }
|
|
29961
30193
|
}
|
|
29962
30194
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiElementsModule, decorators: [{
|
|
29963
30195
|
type: NgModule,
|
|
@@ -29982,6 +30214,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
29982
30214
|
TextInputComponent,
|
|
29983
30215
|
ImageInputComponent,
|
|
29984
30216
|
ApplicationBannerComponent,
|
|
30217
|
+
InternalLinkCardComponent,
|
|
29985
30218
|
],
|
|
29986
30219
|
providers: [
|
|
29987
30220
|
provideNgIconsConfig({
|
|
@@ -29996,6 +30229,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
29996
30229
|
MarkdownParserComponent,
|
|
29997
30230
|
ImageInputComponent,
|
|
29998
30231
|
ApplicationBannerComponent,
|
|
30232
|
+
InternalLinkCardComponent,
|
|
29999
30233
|
],
|
|
30000
30234
|
}]
|
|
30001
30235
|
}] });
|
|
@@ -31587,9 +31821,10 @@ class FavoriteStarComponent {
|
|
|
31587
31821
|
this.isAnonymous$ = this.platformService.isAnonymous();
|
|
31588
31822
|
this.loading = false;
|
|
31589
31823
|
this.loginUrl = this.authService.loginUrl;
|
|
31590
|
-
this.loginMessage$ = this.translateService.
|
|
31824
|
+
this.loginMessage$ = this.translateService.onLangChange.pipe(startWith(null), // make sure to wait for translations to be loaded with and without language change
|
|
31825
|
+
switchMap$1(() => this.translateService.get('favorite.not.authenticated.tooltip', {
|
|
31591
31826
|
link: this.loginUrl,
|
|
31592
|
-
});
|
|
31827
|
+
})));
|
|
31593
31828
|
}
|
|
31594
31829
|
ngAfterViewInit() {
|
|
31595
31830
|
this.subscription = this.isAnonymous$
|
|
@@ -31645,11 +31880,11 @@ class FavoriteStarComponent {
|
|
|
31645
31880
|
});
|
|
31646
31881
|
}
|
|
31647
31882
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FavoriteStarComponent, deps: [{ token: FavoritesService }, { token: PlatformServiceInterface }, { token: i0.ChangeDetectorRef }, { token: AuthService }, { token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
31648
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FavoriteStarComponent, isStandalone: true, selector: "gn-ui-favorite-star", inputs: { displayCount: "displayCount", record: "record" }, viewQueries: [{ propertyName: "starToggleRef", first: true, predicate: StarToggleComponent, descendants: true, read: ElementRef }], ngImport: i0, template: "<div class=\"flex flex-row items-center\">\n <span\n class=\"align-text-top mr-1.5\"\n data-test=\"favorite-count\"\n *ngIf=\"hasFavoriteCount && displayCount\"\n >{{ favoriteCount }}</span\n >\n <gn-ui-star-toggle\n [toggled]=\"isFavorite$ | async\"\n (newValue)=\"toggleFavorite($event)\"\n [disabled]=\"loading || (isAnonymous$ | async)\"\n ></gn-ui-star-toggle>\n
|
|
31883
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FavoriteStarComponent, isStandalone: true, selector: "gn-ui-favorite-star", inputs: { displayCount: "displayCount", record: "record" }, viewQueries: [{ propertyName: "starToggleRef", first: true, predicate: StarToggleComponent, descendants: true, read: ElementRef }], ngImport: i0, template: "<div class=\"flex flex-row items-center\">\n <span\n class=\"align-text-top mr-1.5 mt-0.5\"\n data-test=\"favorite-count\"\n *ngIf=\"hasFavoriteCount && displayCount\"\n >{{ favoriteCount }}</span\n >\n <gn-ui-star-toggle\n [toggled]=\"isFavorite$ | async\"\n (newValue)=\"toggleFavorite($event)\"\n [disabled]=\"loading || (isAnonymous$ | async)\"\n ></gn-ui-star-toggle>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }, { kind: "component", type: StarToggleComponent, selector: "gn-ui-star-toggle", inputs: ["toggled", "disabled"], outputs: ["newValue"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
31649
31884
|
}
|
|
31650
31885
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FavoriteStarComponent, decorators: [{
|
|
31651
31886
|
type: Component,
|
|
31652
|
-
args: [{ selector: 'gn-ui-favorite-star', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, StarToggleComponent], template: "<div class=\"flex flex-row items-center\">\n <span\n class=\"align-text-top mr-1.5\"\n data-test=\"favorite-count\"\n *ngIf=\"hasFavoriteCount && displayCount\"\n >{{ favoriteCount }}</span\n >\n <gn-ui-star-toggle\n [toggled]=\"isFavorite$ | async\"\n (newValue)=\"toggleFavorite($event)\"\n [disabled]=\"loading || (isAnonymous$ | async)\"\n ></gn-ui-star-toggle>\n
|
|
31887
|
+
args: [{ selector: 'gn-ui-favorite-star', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, StarToggleComponent], template: "<div class=\"flex flex-row items-center\">\n <span\n class=\"align-text-top mr-1.5 mt-0.5\"\n data-test=\"favorite-count\"\n *ngIf=\"hasFavoriteCount && displayCount\"\n >{{ favoriteCount }}</span\n >\n <gn-ui-star-toggle\n [toggled]=\"isFavorite$ | async\"\n (newValue)=\"toggleFavorite($event)\"\n [disabled]=\"loading || (isAnonymous$ | async)\"\n ></gn-ui-star-toggle>\n</div>\n" }]
|
|
31653
31888
|
}], ctorParameters: () => [{ type: FavoritesService }, { type: PlatformServiceInterface }, { type: i0.ChangeDetectorRef }, { type: AuthService }, { type: i1$1.TranslateService }], propDecorators: { displayCount: [{
|
|
31654
31889
|
type: Input
|
|
31655
31890
|
}], record: [{
|
|
@@ -31700,11 +31935,11 @@ class ResultsListContainerComponent {
|
|
|
31700
31935
|
return this.recordUrlTemplate.replace('${uuid}', metadata.uniqueIdentifier);
|
|
31701
31936
|
}
|
|
31702
31937
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ResultsListContainerComponent, deps: [{ token: SearchFacade }, { token: RESULTS_LAYOUT_CONFIG }, { token: RECORD_URL_TOKEN, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
31703
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ResultsListContainerComponent, selector: "gn-ui-results-list-container", inputs: { metadataQualityDisplay: "metadataQualityDisplay", layout: "layout", showMore: "showMore" }, outputs: { mdSelect: "mdSelect" }, ngImport: i0, template: "<div *ngIf=\"(error$ | async) === null\" class=\"search-results relative\">\n <gn-ui-results-list\n [records]=\"facade.results$ | async\"\n [layoutConfig]=\"layoutConfig$ | async\"\n [metadataQualityDisplay]=\"\n metadataQualityDisplay && (pipelineForQualityScoreActivated | async)\n \"\n [favoriteTemplate]=\"favoriteToggle\"\n [recordUrlGetter]=\"recordUrlGetter\"\n (mdSelect)=\"onMetadataSelection($event)\"\n ></gn-ui-results-list>\n <ng-container *ngIf=\"allowShowMore$ | async\">\n <div class=\"show-more h-[100px] pt-[30px]\" *ngIf=\"showMore === 'button'\">\n <gn-ui-button\n data-cy=\"addMoreBtn\"\n type=\"secondary\"\n (buttonClick)=\"onShowMore()\"\n extraClass=\"m-auto !p-[22px]\"\n >\n <span class=\"uppercase font-medium tracking-widest\" translate\n >results.showMore</span\n >\n </gn-ui-button>\n </div>\n <div class=\"show-more h-[100px]\" *ngIf=\"showMore === 'auto'\">\n <gn-ui-viewport-intersector\n (entersViewport)=\"onShowMore()\"\n ></gn-ui-viewport-intersector>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"(facade.isLoading$ | async) === true\">\n <div class=\"loading flex justify-center h-[100px] pt-[45px]\">\n <gn-ui-spinning-loader></gn-ui-spinning-loader>\n </div>\n </ng-container>\n</div>\n\n<div class=\"p-4 max-w-[600px] m-auto text-[13px]\">\n <gn-ui-error\n *ngIf=\"(errorCode$ | async) === 0\"\n [type]=\"errorTypes.COULD_NOT_REACH_API\"\n >\n </gn-ui-error>\n <gn-ui-error\n *ngIf=\"(error$ | async) !== null && (errorCode$ | async) !== 0\"\n [type]=\"errorTypes.RECEIVED_ERROR\"\n [error]=\"errorMessage$ | async\"\n ></gn-ui-error>\n</div>\n\n<ng-template #favoriteToggle let-record>\n <gn-ui-favorite-star [record]=\"record\"></gn-ui-favorite-star>\n</ng-template>\n", styles: [""], dependencies: [{ kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: ResultsListComponent, selector: "gn-ui-results-list", inputs: ["records", "layoutConfig", "favoriteTemplate", "recordUrlGetter", "metadataQualityDisplay"], outputs: ["mdSelect"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "component", type: ViewportIntersectorComponent, selector: "gn-ui-viewport-intersector", outputs: ["isInViewport", "entersViewport", "exitsViewport"] }, { kind: "component", type: SpinningLoaderComponent, selector: "gn-ui-spinning-loader" }, { kind: "component", type: ErrorComponent, selector: "gn-ui-error", inputs: ["type", "error", "recordId"] }, { kind: "component", type: FavoriteStarComponent, selector: "gn-ui-favorite-star", inputs: ["displayCount", "record"] }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }] }); }
|
|
31938
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ResultsListContainerComponent, selector: "gn-ui-results-list-container", inputs: { metadataQualityDisplay: "metadataQualityDisplay", layout: "layout", showMore: "showMore" }, outputs: { mdSelect: "mdSelect" }, ngImport: i0, template: "<div *ngIf=\"(error$ | async) === null\" class=\"search-results relative\">\n <gn-ui-results-list\n [records]=\"facade.results$ | async\"\n [layoutConfig]=\"layoutConfig$ | async\"\n [metadataQualityDisplay]=\"\n metadataQualityDisplay && (pipelineForQualityScoreActivated | async)\n \"\n [favoriteTemplate]=\"favoriteToggle\"\n [recordUrlGetter]=\"recordUrlGetter\"\n (mdSelect)=\"onMetadataSelection($event)\"\n ></gn-ui-results-list>\n <ng-container *ngIf=\"allowShowMore$ | async\">\n <div class=\"show-more h-[100px] pt-[30px]\" *ngIf=\"showMore === 'button'\">\n <gn-ui-button\n data-cy=\"addMoreBtn\"\n type=\"secondary\"\n (buttonClick)=\"onShowMore()\"\n extraClass=\"m-auto !p-[22px]\"\n >\n <span class=\"uppercase font-medium tracking-widest\" translate\n >results.showMore</span\n >\n </gn-ui-button>\n </div>\n <div class=\"show-more h-[100px]\" *ngIf=\"showMore === 'auto'\">\n <gn-ui-viewport-intersector\n (entersViewport)=\"onShowMore()\"\n ></gn-ui-viewport-intersector>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"(facade.isLoading$ | async) === true\">\n <div class=\"loading flex justify-center h-[100px] pt-[45px]\">\n <gn-ui-spinning-loader></gn-ui-spinning-loader>\n </div>\n </ng-container>\n</div>\n\n<div class=\"p-4 max-w-[600px] m-auto text-[13px]\">\n <gn-ui-error\n *ngIf=\"(errorCode$ | async) === 0\"\n [type]=\"errorTypes.COULD_NOT_REACH_API\"\n >\n </gn-ui-error>\n <gn-ui-error\n *ngIf=\"(error$ | async) !== null && (errorCode$ | async) !== 0\"\n [type]=\"errorTypes.RECEIVED_ERROR\"\n [error]=\"errorMessage$ | async\"\n ></gn-ui-error>\n</div>\n\n<ng-template #favoriteToggle let-record>\n <gn-ui-favorite-star [record]=\"record\"></gn-ui-favorite-star>\n</ng-template>\n", styles: [":host{--gn-ui-button-height: 24px;--gn-ui-button-width: 24px;--gn-ui-button-color: var(--color-secondary);--gn-ui-button-border-width: 0px}\n"], dependencies: [{ kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: ResultsListComponent, selector: "gn-ui-results-list", inputs: ["records", "layoutConfig", "favoriteTemplate", "recordUrlGetter", "metadataQualityDisplay"], outputs: ["mdSelect"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "component", type: ViewportIntersectorComponent, selector: "gn-ui-viewport-intersector", outputs: ["isInViewport", "entersViewport", "exitsViewport"] }, { kind: "component", type: SpinningLoaderComponent, selector: "gn-ui-spinning-loader" }, { kind: "component", type: ErrorComponent, selector: "gn-ui-error", inputs: ["type", "error", "recordId"] }, { kind: "component", type: FavoriteStarComponent, selector: "gn-ui-favorite-star", inputs: ["displayCount", "record"] }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }] }); }
|
|
31704
31939
|
}
|
|
31705
31940
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ResultsListContainerComponent, decorators: [{
|
|
31706
31941
|
type: Component,
|
|
31707
|
-
args: [{ selector: 'gn-ui-results-list-container', template: "<div *ngIf=\"(error$ | async) === null\" class=\"search-results relative\">\n <gn-ui-results-list\n [records]=\"facade.results$ | async\"\n [layoutConfig]=\"layoutConfig$ | async\"\n [metadataQualityDisplay]=\"\n metadataQualityDisplay && (pipelineForQualityScoreActivated | async)\n \"\n [favoriteTemplate]=\"favoriteToggle\"\n [recordUrlGetter]=\"recordUrlGetter\"\n (mdSelect)=\"onMetadataSelection($event)\"\n ></gn-ui-results-list>\n <ng-container *ngIf=\"allowShowMore$ | async\">\n <div class=\"show-more h-[100px] pt-[30px]\" *ngIf=\"showMore === 'button'\">\n <gn-ui-button\n data-cy=\"addMoreBtn\"\n type=\"secondary\"\n (buttonClick)=\"onShowMore()\"\n extraClass=\"m-auto !p-[22px]\"\n >\n <span class=\"uppercase font-medium tracking-widest\" translate\n >results.showMore</span\n >\n </gn-ui-button>\n </div>\n <div class=\"show-more h-[100px]\" *ngIf=\"showMore === 'auto'\">\n <gn-ui-viewport-intersector\n (entersViewport)=\"onShowMore()\"\n ></gn-ui-viewport-intersector>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"(facade.isLoading$ | async) === true\">\n <div class=\"loading flex justify-center h-[100px] pt-[45px]\">\n <gn-ui-spinning-loader></gn-ui-spinning-loader>\n </div>\n </ng-container>\n</div>\n\n<div class=\"p-4 max-w-[600px] m-auto text-[13px]\">\n <gn-ui-error\n *ngIf=\"(errorCode$ | async) === 0\"\n [type]=\"errorTypes.COULD_NOT_REACH_API\"\n >\n </gn-ui-error>\n <gn-ui-error\n *ngIf=\"(error$ | async) !== null && (errorCode$ | async) !== 0\"\n [type]=\"errorTypes.RECEIVED_ERROR\"\n [error]=\"errorMessage$ | async\"\n ></gn-ui-error>\n</div>\n\n<ng-template #favoriteToggle let-record>\n <gn-ui-favorite-star [record]=\"record\"></gn-ui-favorite-star>\n</ng-template>\n" }]
|
|
31942
|
+
args: [{ selector: 'gn-ui-results-list-container', template: "<div *ngIf=\"(error$ | async) === null\" class=\"search-results relative\">\n <gn-ui-results-list\n [records]=\"facade.results$ | async\"\n [layoutConfig]=\"layoutConfig$ | async\"\n [metadataQualityDisplay]=\"\n metadataQualityDisplay && (pipelineForQualityScoreActivated | async)\n \"\n [favoriteTemplate]=\"favoriteToggle\"\n [recordUrlGetter]=\"recordUrlGetter\"\n (mdSelect)=\"onMetadataSelection($event)\"\n ></gn-ui-results-list>\n <ng-container *ngIf=\"allowShowMore$ | async\">\n <div class=\"show-more h-[100px] pt-[30px]\" *ngIf=\"showMore === 'button'\">\n <gn-ui-button\n data-cy=\"addMoreBtn\"\n type=\"secondary\"\n (buttonClick)=\"onShowMore()\"\n extraClass=\"m-auto !p-[22px]\"\n >\n <span class=\"uppercase font-medium tracking-widest\" translate\n >results.showMore</span\n >\n </gn-ui-button>\n </div>\n <div class=\"show-more h-[100px]\" *ngIf=\"showMore === 'auto'\">\n <gn-ui-viewport-intersector\n (entersViewport)=\"onShowMore()\"\n ></gn-ui-viewport-intersector>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"(facade.isLoading$ | async) === true\">\n <div class=\"loading flex justify-center h-[100px] pt-[45px]\">\n <gn-ui-spinning-loader></gn-ui-spinning-loader>\n </div>\n </ng-container>\n</div>\n\n<div class=\"p-4 max-w-[600px] m-auto text-[13px]\">\n <gn-ui-error\n *ngIf=\"(errorCode$ | async) === 0\"\n [type]=\"errorTypes.COULD_NOT_REACH_API\"\n >\n </gn-ui-error>\n <gn-ui-error\n *ngIf=\"(error$ | async) !== null && (errorCode$ | async) !== 0\"\n [type]=\"errorTypes.RECEIVED_ERROR\"\n [error]=\"errorMessage$ | async\"\n ></gn-ui-error>\n</div>\n\n<ng-template #favoriteToggle let-record>\n <gn-ui-favorite-star [record]=\"record\"></gn-ui-favorite-star>\n</ng-template>\n", styles: [":host{--gn-ui-button-height: 24px;--gn-ui-button-width: 24px;--gn-ui-button-color: var(--color-secondary);--gn-ui-button-border-width: 0px}\n"] }]
|
|
31708
31943
|
}], ctorParameters: () => [{ type: SearchFacade }, { type: undefined, decorators: [{
|
|
31709
31944
|
type: Inject,
|
|
31710
31945
|
args: [RESULTS_LAYOUT_CONFIG]
|
|
@@ -36580,6 +36815,10 @@ class ChartViewComponent {
|
|
|
36580
36815
|
this.dataset$ = this.currentLink$.pipe(filter((link) => !!link), switchMap$1((link) => {
|
|
36581
36816
|
this.error = null;
|
|
36582
36817
|
this.loading = true;
|
|
36818
|
+
if (link.accessRestricted) {
|
|
36819
|
+
this.handleError('dataset.error.restrictedAccess');
|
|
36820
|
+
return EMPTY;
|
|
36821
|
+
}
|
|
36583
36822
|
return this.dataService.getDataset(link, this.cacheActive).pipe(catchError((error) => {
|
|
36584
36823
|
this.handleError(error);
|
|
36585
36824
|
return EMPTY;
|
|
@@ -36844,6 +37083,10 @@ class TableViewComponent {
|
|
|
36844
37083
|
this.error = null;
|
|
36845
37084
|
if (!link)
|
|
36846
37085
|
return of(undefined);
|
|
37086
|
+
if (link.accessRestricted) {
|
|
37087
|
+
this.handleError('dataset.error.restrictedAccess');
|
|
37088
|
+
return of([]);
|
|
37089
|
+
}
|
|
36847
37090
|
this.loading = true;
|
|
36848
37091
|
return this.getDatasetReader(link).pipe(catchError((error) => {
|
|
36849
37092
|
this.handleError(error);
|
|
@@ -37838,6 +38081,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
37838
38081
|
|
|
37839
38082
|
marker('map.dropdown.placeholder');
|
|
37840
38083
|
marker('wfs.feature.limit');
|
|
38084
|
+
marker('dataset.error.restrictedAccess');
|
|
37841
38085
|
class MapViewComponent {
|
|
37842
38086
|
set exceedsLimit(value) {
|
|
37843
38087
|
this.excludeWfs$.next(value);
|
|
@@ -37889,6 +38133,10 @@ class MapViewComponent {
|
|
|
37889
38133
|
this.hidePreview = false;
|
|
37890
38134
|
this.loading = true;
|
|
37891
38135
|
this.error = null;
|
|
38136
|
+
if (link.accessRestricted) {
|
|
38137
|
+
this.handleError('dataset.error.restrictedAccess');
|
|
38138
|
+
return of([]);
|
|
38139
|
+
}
|
|
37892
38140
|
return this.getLayerFromLink(link).pipe(map$1((layer) => [layer]), catchError((e) => {
|
|
37893
38141
|
this.handleError(e);
|
|
37894
38142
|
return of([]);
|
|
@@ -41708,5 +41956,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
41708
41956
|
* Generated bundle index. Do not edit.
|
|
41709
41957
|
*/
|
|
41710
41958
|
|
|
41711
|
-
export { ADD_RESULTS, ADD_SEARCH, AbstractAction, AbstractSearchField, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetBlockStubComponent, FacetItemComponent, FacetItemStubComponent, FacetListComponent, FacetsContainerComponent, FacetsModule, FavoriteStarComponent, FavoritesService, FeatureAuthModule, FeatureCatalogModule, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureNotificationsModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GN_UI_VERSION, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InteractiveTableColumnComponent, InteractiveTableComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LANG_3_TO_2_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LangService, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkCardComponent, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, METADATA_LANGUAGE, MY_FORMATS, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, ModalDialogComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NavigationButtonComponent, NotificationComponent, NotificationsContainerComponent, NotificationsService, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PopoverComponent, PopupAlertComponent, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_SEARCH, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordsMetricsComponent, RecordsService, RelatedRecordCardComponent, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SearchEffects, SearchFacade, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortableListComponent, SourceLabelComponent, SourcesService, SpinningLoaderComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UiDatavizModule, UiElementsModule, FacetsModule$1 as UiFacetsModule, UiInputsModule, UiLayoutModule, UiSearchModule, UiWidgetsModule, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, UtilI18nModule, UtilSharedModule, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, WizardComponent, WizardFieldComponent, WizardFieldType, WizardService, WizardSummarizeComponent, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryFromGeoJSON, getGlobalConfig, getJsonDataItemsProxy, getLangFromBrowser, getLayers, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer$2 as reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setFieldVisibility, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateRecordField, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
41959
|
+
export { ADD_RESULTS, ADD_SEARCH, AbstractAction, AbstractSearchField, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetBlockStubComponent, FacetItemComponent, FacetItemStubComponent, FacetListComponent, FacetsContainerComponent, FacetsModule, FavoriteStarComponent, FavoritesService, FeatureAuthModule, FeatureCatalogModule, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureNotificationsModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GN_UI_VERSION, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LANG_3_TO_2_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LangService, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkCardComponent, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, METADATA_LANGUAGE, MY_FORMATS, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, ModalDialogComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PopoverComponent, PopupAlertComponent, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_SEARCH, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordsMetricsComponent, RecordsService, RelatedRecordCardComponent, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SearchEffects, SearchFacade, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortableListComponent, SourceLabelComponent, SourcesService, SpinningLoaderComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UiDatavizModule, UiElementsModule, FacetsModule$1 as UiFacetsModule, UiInputsModule, UiLayoutModule, UiSearchModule, UiWidgetsModule, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, UtilI18nModule, UtilSharedModule, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, WizardComponent, WizardFieldComponent, WizardFieldType, WizardService, WizardSummarizeComponent, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryFromGeoJSON, getGlobalConfig, getJsonDataItemsProxy, getLangFromBrowser, getLayers, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer$2 as reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setFieldVisibility, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateRecordField, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
41712
41960
|
//# sourceMappingURL=geonetwork-ui.mjs.map
|