geonetwork-ui 2.10.0 → 2.11.0-dev.68d9eaa3a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/geonetwork-ui.mjs +883 -632
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +101 -54
- package/index.d.ts.map +1 -1
- package/package.json +8 -8
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +5 -5
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -5
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +43 -13
- package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +13 -1
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +9 -5
- package/src/libs/api/metadata-converter/src/lib/iso19139/utils/association-type.mapper.ts +12 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +23 -3
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +40 -16
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +40 -2
- package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +1 -5
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -2
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -2
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +2 -1
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +22 -22
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.html +33 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.ts +94 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +16 -12
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +6 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +6 -0
- package/src/libs/feature/editor/src/lib/fields.config.ts +5 -0
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +4 -8
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +7 -16
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +1 -3
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +4 -9
- package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +2 -7
- package/src/libs/feature/router/src/lib/default/router.service.ts +1 -1
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +1 -1
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -7
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +31 -19
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.ts +2 -2
- package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +19 -22
- package/src/libs/util/data-fetcher/src/lib/engine/duckdb.ts +185 -0
- package/src/libs/util/data-fetcher/src/lib/engine/results.ts +63 -0
- package/src/libs/util/data-fetcher/src/lib/{sql-utils.ts → engine/sql-utils.ts} +28 -13
- package/src/libs/util/data-fetcher/src/lib/model.ts +2 -1
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +53 -38
- package/src/libs/util/data-fetcher/src/lib/readers/base.ts +11 -0
- package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +9 -47
- package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +27 -27
- package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +5 -24
- package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +5 -49
- package/src/libs/util/data-fetcher/src/lib/readers/json.ts +5 -23
- package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +184 -128
- package/src/libs/util/data-fetcher/src/lib/utils.ts +0 -143
- package/translations/de.json +14 -1
- package/translations/en.json +14 -1
- package/translations/es.json +13 -0
- package/translations/fr.json +14 -1
- package/translations/it.json +14 -1
- package/translations/nl.json +13 -0
- package/translations/pt.json +13 -0
- package/translations/sk.json +14 -1
- package/src/libs/util/data-fetcher/src/lib/readers/base-cache.ts +0 -14
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ChangeDetectionStrategy,
|
|
3
|
+
Component,
|
|
4
|
+
EventEmitter,
|
|
5
|
+
Input,
|
|
6
|
+
Output,
|
|
7
|
+
} from '@angular/core'
|
|
8
|
+
import {
|
|
9
|
+
AssociatedRecord,
|
|
10
|
+
AssociationType,
|
|
11
|
+
associationTypeValues,
|
|
12
|
+
} from '../../../../../../../../../libs/common/domain/src/lib/model/record'
|
|
13
|
+
import {
|
|
14
|
+
CheckToggleComponent,
|
|
15
|
+
DropdownChoice,
|
|
16
|
+
DropdownSelectorComponent,
|
|
17
|
+
TextInputComponent,
|
|
18
|
+
} from '../../../../../../../../../libs/ui/inputs/src'
|
|
19
|
+
import { FormFieldWrapperComponent } from '../../../../../../../../../libs/ui/layout/src'
|
|
20
|
+
import { TranslatePipe } from '@ngx-translate/core'
|
|
21
|
+
|
|
22
|
+
@Component({
|
|
23
|
+
selector: 'gn-ui-form-field-associated-records',
|
|
24
|
+
templateUrl: './form-field-associated-records.component.html',
|
|
25
|
+
styleUrls: ['./form-field-associated-records.component.css'],
|
|
26
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
27
|
+
standalone: true,
|
|
28
|
+
imports: [
|
|
29
|
+
CheckToggleComponent,
|
|
30
|
+
TextInputComponent,
|
|
31
|
+
DropdownSelectorComponent,
|
|
32
|
+
FormFieldWrapperComponent,
|
|
33
|
+
TranslatePipe,
|
|
34
|
+
],
|
|
35
|
+
})
|
|
36
|
+
export class FormFieldAssociatedRecordsComponent {
|
|
37
|
+
@Input() value?: AssociatedRecord[]
|
|
38
|
+
@Output() valueChange = new EventEmitter<AssociatedRecord[]>()
|
|
39
|
+
|
|
40
|
+
private get list() {
|
|
41
|
+
return this.value ?? []
|
|
42
|
+
}
|
|
43
|
+
private get first() {
|
|
44
|
+
return this.list[0]
|
|
45
|
+
}
|
|
46
|
+
private get rest() {
|
|
47
|
+
return this.list.slice(1)
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
get hasParentLink() {
|
|
51
|
+
return this.list.length > 0
|
|
52
|
+
}
|
|
53
|
+
get uniqueIdentifier() {
|
|
54
|
+
return this.first?.uniqueIdentifier ?? ''
|
|
55
|
+
}
|
|
56
|
+
get selectedType() {
|
|
57
|
+
return this.first?.associationType
|
|
58
|
+
}
|
|
59
|
+
get choices(): DropdownChoice[] {
|
|
60
|
+
return associationTypeValues.map((value) => ({
|
|
61
|
+
value,
|
|
62
|
+
label: `domain.record.associationType.${value}`,
|
|
63
|
+
}))
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
onToggle(checked: boolean) {
|
|
67
|
+
this.valueChange.emit(
|
|
68
|
+
checked
|
|
69
|
+
? [
|
|
70
|
+
{
|
|
71
|
+
uniqueIdentifier: '',
|
|
72
|
+
associationType: associationTypeValues[0],
|
|
73
|
+
},
|
|
74
|
+
...this.rest,
|
|
75
|
+
]
|
|
76
|
+
: this.rest
|
|
77
|
+
)
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
onUniqueIdentifierChange(uniqueIdentifier: string) {
|
|
81
|
+
this.valueChange.emit(
|
|
82
|
+
uniqueIdentifier
|
|
83
|
+
? [{ ...this.first, uniqueIdentifier }, ...this.rest]
|
|
84
|
+
: this.rest
|
|
85
|
+
)
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
onTypeChange(associationType: DropdownChoice['value']) {
|
|
89
|
+
this.valueChange.emit([
|
|
90
|
+
{ ...this.first, associationType: associationType as AssociationType },
|
|
91
|
+
...this.rest,
|
|
92
|
+
])
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -1,17 +1,21 @@
|
|
|
1
|
-
<div class="flex
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
<div class="flex flex-col gap-2">
|
|
2
|
+
<div class="flex gap-2">
|
|
3
|
+
@for (addOption of addOptions$ | async; track addOption) {
|
|
4
|
+
<gn-ui-button type="gray" (buttonClick)="onAdd(addOption.eventName)">
|
|
5
|
+
<ng-icon name="iconoirPlus" class="text-primary"></ng-icon> {{
|
|
6
|
+
addOption.buttonLabel
|
|
7
|
+
}}</gn-ui-button
|
|
8
|
+
>
|
|
9
|
+
}
|
|
10
|
+
</div>
|
|
11
|
+
@if (extents.length) {
|
|
12
|
+
<gn-ui-sortable-list
|
|
13
|
+
[items]="extents"
|
|
14
|
+
(itemsOrderChange)="onItemsOrderChange($event)"
|
|
15
|
+
[elementTemplate]="template"
|
|
16
|
+
></gn-ui-sortable-list>
|
|
8
17
|
}
|
|
9
18
|
</div>
|
|
10
|
-
<gn-ui-sortable-list
|
|
11
|
-
[items]="extents"
|
|
12
|
-
(itemsOrderChange)="onItemsOrderChange($event)"
|
|
13
|
-
[elementTemplate]="template"
|
|
14
|
-
></gn-ui-sortable-list>
|
|
15
19
|
<ng-template #template let-extent let-index="index">
|
|
16
20
|
@if (extent.end === undefined) {
|
|
17
21
|
<div class="border rounded-lg px-4 pb-4">
|
package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html
CHANGED
|
@@ -98,6 +98,12 @@
|
|
|
98
98
|
[recordKind]="recordKind"
|
|
99
99
|
></gn-ui-form-field-update-frequency>
|
|
100
100
|
</ng-container>
|
|
101
|
+
<ng-container *ngSwitchCase="'associatedRecords'">
|
|
102
|
+
<gn-ui-form-field-associated-records
|
|
103
|
+
[value]="valueAsAssociatedRecords"
|
|
104
|
+
(valueChange)="valueChange.emit($event)"
|
|
105
|
+
></gn-ui-form-field-associated-records>
|
|
106
|
+
</ng-container>
|
|
101
107
|
<ng-container *ngSwitchCase="'temporalExtents'">
|
|
102
108
|
<gn-ui-form-field-temporal-extents
|
|
103
109
|
[value]="valueAsTemporalExtents"
|
package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts
CHANGED
|
@@ -11,6 +11,7 @@ import {
|
|
|
11
11
|
} from '@angular/core'
|
|
12
12
|
import { MatTooltipModule } from '@angular/material/tooltip'
|
|
13
13
|
import {
|
|
14
|
+
AssociatedRecord,
|
|
14
15
|
CatalogRecordKeys,
|
|
15
16
|
Constraint,
|
|
16
17
|
DatasetTemporalExtent,
|
|
@@ -39,6 +40,7 @@ import {
|
|
|
39
40
|
FormFieldComponentName,
|
|
40
41
|
FormFieldConfig,
|
|
41
42
|
} from '../../../models'
|
|
43
|
+
import { FormFieldAssociatedRecordsComponent } from './form-field-associated-records/form-field-associated-records.component'
|
|
42
44
|
import { FormFieldContactsForResourceComponent } from './form-field-contacts-for-resource/form-field-contacts-for-resource.component'
|
|
43
45
|
import { FormFieldContactsComponent } from './form-field-contacts/form-field-contacts.component'
|
|
44
46
|
import { FormFieldKeywordsComponent } from './form-field-keywords/form-field-keywords.component'
|
|
@@ -70,6 +72,7 @@ import { FormFieldTopicsComponent } from './form-field-topics/form-field-topics.
|
|
|
70
72
|
FormFieldLicenseComponent,
|
|
71
73
|
FormFieldDateComponent,
|
|
72
74
|
FormFieldUpdateFrequencyComponent,
|
|
75
|
+
FormFieldAssociatedRecordsComponent,
|
|
73
76
|
FormFieldTemporalExtentsComponent,
|
|
74
77
|
FormFieldSimpleComponent,
|
|
75
78
|
FormFieldRichComponent,
|
|
@@ -140,6 +143,9 @@ export class FormFieldComponent {
|
|
|
140
143
|
get valueAsUpdateFrequency() {
|
|
141
144
|
return this.value as UpdateFrequency
|
|
142
145
|
}
|
|
146
|
+
get valueAsAssociatedRecords() {
|
|
147
|
+
return this.value as Array<AssociatedRecord>
|
|
148
|
+
}
|
|
143
149
|
get valueAsTemporalExtents() {
|
|
144
150
|
return this.value as Array<DatasetTemporalExtent>
|
|
145
151
|
}
|
|
@@ -3,6 +3,7 @@ import { createAction, props } from '@ngrx/store'
|
|
|
3
3
|
import {
|
|
4
4
|
CatalogRecord,
|
|
5
5
|
DatasetFeatureCatalog,
|
|
6
|
+
LinkedRecord,
|
|
6
7
|
UserFeedback,
|
|
7
8
|
} from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
8
9
|
|
|
@@ -54,14 +55,9 @@ export const setRelated = createAction(
|
|
|
54
55
|
props<{ related: CatalogRecord[] }>()
|
|
55
56
|
)
|
|
56
57
|
|
|
57
|
-
export const
|
|
58
|
-
'[Metadata view] Set
|
|
59
|
-
props<{
|
|
60
|
-
)
|
|
61
|
-
|
|
62
|
-
export const setSourceOf = createAction(
|
|
63
|
-
'[Metadata view] Set has sources',
|
|
64
|
-
props<{ sourceOf: CatalogRecord[] }>()
|
|
58
|
+
export const setLinkedRecords = createAction(
|
|
59
|
+
'[Metadata view] Set associated records',
|
|
60
|
+
props<{ linkedRecords: LinkedRecord[] }>()
|
|
65
61
|
)
|
|
66
62
|
|
|
67
63
|
/*
|
|
@@ -70,25 +70,16 @@ export class MdViewEffects {
|
|
|
70
70
|
)
|
|
71
71
|
)
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
loadLinkedRecords$ = createEffect(() =>
|
|
74
74
|
this.actions$.pipe(
|
|
75
75
|
ofType(MdViewActions.loadFullMetadataSuccess),
|
|
76
|
-
switchMap(({ full }) => this.recordsRepository.
|
|
77
|
-
map((
|
|
78
|
-
return MdViewActions.
|
|
76
|
+
switchMap(({ full }) => this.recordsRepository.getLinkedRecords(full)),
|
|
77
|
+
map((linkedRecords) => {
|
|
78
|
+
return MdViewActions.setLinkedRecords({ linkedRecords })
|
|
79
79
|
}),
|
|
80
|
-
catchError(() =>
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
loadSourceOf$ = createEffect(() =>
|
|
85
|
-
this.actions$.pipe(
|
|
86
|
-
ofType(MdViewActions.loadFullMetadataSuccess),
|
|
87
|
-
switchMap(({ full }) => this.recordsRepository.getSourceOf(full)),
|
|
88
|
-
map((sourceOf) => {
|
|
89
|
-
return MdViewActions.setSourceOf({ sourceOf })
|
|
90
|
-
}),
|
|
91
|
-
catchError(() => of(MdViewActions.setSourceOf({ sourceOf: null })))
|
|
80
|
+
catchError(() =>
|
|
81
|
+
of(MdViewActions.setLinkedRecords({ linkedRecords: null }))
|
|
82
|
+
)
|
|
92
83
|
)
|
|
93
84
|
)
|
|
94
85
|
|
|
@@ -74,9 +74,7 @@ export class MdViewFacade {
|
|
|
74
74
|
|
|
75
75
|
related$ = this.store.pipe(select(MdViewSelectors.getRelated))
|
|
76
76
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
sourceOf$ = this.store.pipe(select(MdViewSelectors.getSourceOf))
|
|
77
|
+
linkedRecords$ = this.store.pipe(select(MdViewSelectors.getLinkedRecords))
|
|
80
78
|
|
|
81
79
|
chartConfig$ = this.store.pipe(select(MdViewSelectors.getChartConfig))
|
|
82
80
|
|
|
@@ -4,6 +4,7 @@ import { DatavizChartConfigModel } from '../../../../../../libs/common/domain/sr
|
|
|
4
4
|
import {
|
|
5
5
|
CatalogRecord,
|
|
6
6
|
DatasetFeatureCatalog,
|
|
7
|
+
LinkedRecord,
|
|
7
8
|
UserFeedback,
|
|
8
9
|
} from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
9
10
|
|
|
@@ -14,8 +15,7 @@ export interface MetadataViewState {
|
|
|
14
15
|
error: { notFound?: boolean; otherError?: string } | null
|
|
15
16
|
metadata?: Partial<CatalogRecord>
|
|
16
17
|
related?: CatalogRecord[]
|
|
17
|
-
|
|
18
|
-
sourceOf?: CatalogRecord[]
|
|
18
|
+
linkedRecords?: LinkedRecord[]
|
|
19
19
|
userFeedbacks?: UserFeedback[]
|
|
20
20
|
allUserFeedbacksLoading: boolean
|
|
21
21
|
addUserFeedbackLoading: boolean
|
|
@@ -77,14 +77,9 @@ const metadataViewReducer = createReducer(
|
|
|
77
77
|
related,
|
|
78
78
|
})),
|
|
79
79
|
|
|
80
|
-
on(MetadataViewActions.
|
|
80
|
+
on(MetadataViewActions.setLinkedRecords, (state, { linkedRecords }) => ({
|
|
81
81
|
...state,
|
|
82
|
-
|
|
83
|
-
})),
|
|
84
|
-
|
|
85
|
-
on(MetadataViewActions.setSourceOf, (state, { sourceOf }) => ({
|
|
86
|
-
...state,
|
|
87
|
-
sourceOf,
|
|
82
|
+
linkedRecords,
|
|
88
83
|
})),
|
|
89
84
|
|
|
90
85
|
/*
|
|
@@ -41,14 +41,9 @@ export const getRelated = createSelector(
|
|
|
41
41
|
(state: MetadataViewState) => state.related
|
|
42
42
|
)
|
|
43
43
|
|
|
44
|
-
export const
|
|
44
|
+
export const getLinkedRecords = createSelector(
|
|
45
45
|
getMdViewState,
|
|
46
|
-
(state: MetadataViewState) => state.
|
|
47
|
-
)
|
|
48
|
-
|
|
49
|
-
export const getSourceOf = createSelector(
|
|
50
|
-
getMdViewState,
|
|
51
|
-
(state: MetadataViewState) => state.sourceOf
|
|
46
|
+
(state: MetadataViewState) => state.linkedRecords
|
|
52
47
|
)
|
|
53
48
|
/*
|
|
54
49
|
Metadata selectors
|
|
@@ -6,33 +6,32 @@
|
|
|
6
6
|
matSort
|
|
7
7
|
(matSortChange)="setSort($event)"
|
|
8
8
|
[matSortDisableClear]="true"
|
|
9
|
-
*ngrxLet="properties$ as properties"
|
|
10
9
|
>
|
|
11
|
-
@for (
|
|
12
|
-
<ng-container [matColumnDef]="
|
|
10
|
+
@for (column of columns; track column) {
|
|
11
|
+
<ng-container [matColumnDef]="column.name">
|
|
13
12
|
<th
|
|
14
13
|
mat-header-cell
|
|
15
14
|
*matHeaderCellDef
|
|
16
15
|
mat-sort-header
|
|
17
16
|
class="text-sm text-black bg-white"
|
|
18
17
|
>
|
|
19
|
-
{{
|
|
18
|
+
{{ column.label }}
|
|
20
19
|
</th>
|
|
21
20
|
<td
|
|
22
21
|
mat-cell
|
|
23
22
|
*matCellDef="let element"
|
|
24
23
|
class="whitespace-nowrap pr-1 truncate"
|
|
25
24
|
>
|
|
26
|
-
{{ element[
|
|
25
|
+
{{ element[column.name] }}
|
|
27
26
|
</td>
|
|
28
27
|
</ng-container>
|
|
29
28
|
}
|
|
30
29
|
|
|
31
|
-
<tr mat-header-row *matHeaderRowDef="
|
|
30
|
+
<tr mat-header-row *matHeaderRowDef="columnNames; sticky: true"></tr>
|
|
32
31
|
<tr
|
|
33
32
|
[id]="getRowEltId(row.id)"
|
|
34
33
|
mat-row
|
|
35
|
-
*matRowDef="let row; columns:
|
|
34
|
+
*matRowDef="let row; columns: columnNames"
|
|
36
35
|
(click)="selected.emit(row)"
|
|
37
36
|
[class.active]="
|
|
38
37
|
activeId !== undefined && activeId !== null && row.id === activeId
|
|
@@ -6,14 +6,14 @@ import {
|
|
|
6
6
|
Component,
|
|
7
7
|
ElementRef,
|
|
8
8
|
EventEmitter,
|
|
9
|
+
inject,
|
|
9
10
|
Input,
|
|
10
11
|
OnChanges,
|
|
11
12
|
OnInit,
|
|
12
13
|
Output,
|
|
13
14
|
ViewChild,
|
|
14
|
-
inject,
|
|
15
15
|
} from '@angular/core'
|
|
16
|
-
import { MatSort, MatSortModule } from '@angular/material/sort'
|
|
16
|
+
import { MatSort, MatSortModule, Sort } from '@angular/material/sort'
|
|
17
17
|
import { MatTableModule } from '@angular/material/table'
|
|
18
18
|
import {
|
|
19
19
|
TranslateDirective,
|
|
@@ -29,12 +29,11 @@ import {
|
|
|
29
29
|
} from '@angular/material/paginator'
|
|
30
30
|
import { CustomMatPaginatorIntl } from './custom.mat.paginator.intl'
|
|
31
31
|
import { CommonModule } from '@angular/common'
|
|
32
|
-
import { BehaviorSubject
|
|
32
|
+
import { BehaviorSubject } from 'rxjs'
|
|
33
33
|
import {
|
|
34
34
|
LoadingMaskComponent,
|
|
35
35
|
PopupAlertComponent,
|
|
36
36
|
} from '../../../../../../libs/ui/widgets/src'
|
|
37
|
-
import { LetDirective } from '@ngrx/component'
|
|
38
37
|
|
|
39
38
|
const rowIdPrefix = 'table-item-'
|
|
40
39
|
|
|
@@ -46,6 +45,11 @@ export interface TableItemModel {
|
|
|
46
45
|
[key: string]: TableItemType
|
|
47
46
|
}
|
|
48
47
|
|
|
48
|
+
interface TableColumn {
|
|
49
|
+
name: string
|
|
50
|
+
label: string
|
|
51
|
+
}
|
|
52
|
+
|
|
49
53
|
@Component({
|
|
50
54
|
standalone: true,
|
|
51
55
|
imports: [
|
|
@@ -56,7 +60,6 @@ export interface TableItemModel {
|
|
|
56
60
|
CommonModule,
|
|
57
61
|
LoadingMaskComponent,
|
|
58
62
|
PopupAlertComponent,
|
|
59
|
-
LetDirective,
|
|
60
63
|
TranslatePipe,
|
|
61
64
|
TranslateDirective,
|
|
62
65
|
],
|
|
@@ -71,15 +74,21 @@ export class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
|
71
74
|
private cdr = inject(ChangeDetectorRef)
|
|
72
75
|
private translateService = inject(TranslateService)
|
|
73
76
|
|
|
74
|
-
|
|
77
|
+
columnsFromFeatureCatalog: TableColumn[] = null
|
|
75
78
|
@Input() set featureAttributes(value: { value: string; label: string }[]) {
|
|
76
|
-
this.
|
|
77
|
-
|
|
79
|
+
this.columnsFromFeatureCatalog = value.map((attrs) => ({
|
|
80
|
+
name: attrs.value,
|
|
81
|
+
label: attrs.label,
|
|
82
|
+
}))
|
|
78
83
|
}
|
|
84
|
+
columnsFromDataset: TableColumn[] = []
|
|
79
85
|
@Input() set dataset(value: BaseReader) {
|
|
80
86
|
this.dataset_ = value
|
|
81
87
|
this.dataset_.load()
|
|
82
|
-
this.dataset_.info.then((info) =>
|
|
88
|
+
this.dataset_.info.then((info) => {
|
|
89
|
+
this.count = info.itemsCount
|
|
90
|
+
this.cdr.detectChanges()
|
|
91
|
+
})
|
|
83
92
|
}
|
|
84
93
|
@Input() activeId: TableItemId
|
|
85
94
|
@Output() selected = new EventEmitter<any>()
|
|
@@ -88,13 +97,19 @@ export class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
|
88
97
|
@ViewChild(MatPaginator) paginator: MatPaginator
|
|
89
98
|
|
|
90
99
|
dataset_: BaseReader
|
|
91
|
-
properties$ = new BehaviorSubject<string[]>(null)
|
|
92
100
|
dataSource: DataTableDataSource
|
|
93
101
|
headerHeight: number
|
|
94
102
|
count: number
|
|
95
103
|
loading$ = new BehaviorSubject<boolean>(false)
|
|
96
104
|
error = null
|
|
97
105
|
|
|
106
|
+
get columns() {
|
|
107
|
+
return this.columnsFromFeatureCatalog ?? this.columnsFromDataset
|
|
108
|
+
}
|
|
109
|
+
get columnNames() {
|
|
110
|
+
return this.columns.map((c) => c.name)
|
|
111
|
+
}
|
|
112
|
+
|
|
98
113
|
ngOnInit() {
|
|
99
114
|
this.dataSource = new DataTableDataSource()
|
|
100
115
|
}
|
|
@@ -110,7 +125,7 @@ export class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
|
110
125
|
this.setPagination()
|
|
111
126
|
}
|
|
112
127
|
|
|
113
|
-
setSort(sort:
|
|
128
|
+
setSort(sort: Sort) {
|
|
114
129
|
if (!this.dataset_) return
|
|
115
130
|
if (!sort.active) {
|
|
116
131
|
this.dataset_.orderBy()
|
|
@@ -132,15 +147,12 @@ export class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
|
132
147
|
|
|
133
148
|
async readData() {
|
|
134
149
|
this.loading$.next(true)
|
|
135
|
-
// wait for properties to be read
|
|
136
|
-
const properties = await firstValueFrom(
|
|
137
|
-
this.properties$.pipe(filter((p) => !!p))
|
|
138
|
-
)
|
|
139
|
-
const propsWithoutGeom = properties.filter(
|
|
140
|
-
(p) => !p.toLowerCase().startsWith('geom')
|
|
141
|
-
)
|
|
142
|
-
this.dataset_.select(...propsWithoutGeom)
|
|
143
150
|
try {
|
|
151
|
+
// wait for properties to be read
|
|
152
|
+
if (!this.columnsFromFeatureCatalog) {
|
|
153
|
+
this.columnsFromDataset = await this.dataset_.properties
|
|
154
|
+
}
|
|
155
|
+
this.dataset_.select(...this.columnNames)
|
|
144
156
|
await this.dataSource.showData(this.dataset_.read())
|
|
145
157
|
this.error = null
|
|
146
158
|
} catch (error) {
|
|
@@ -7,20 +7,19 @@ import { DataItem, DatasetHeaders, FetchError, SupportedType } from './model'
|
|
|
7
7
|
import { inferDatasetType } from './utils'
|
|
8
8
|
import { BaseReader } from './readers/base'
|
|
9
9
|
import { GmlReader } from './readers/gml'
|
|
10
|
-
import { WfsVersion } from '@camptocamp/ogc-client'
|
|
11
10
|
import { WfsReader } from './readers/wfs'
|
|
12
11
|
|
|
12
|
+
interface OpenDatasetOptions {
|
|
13
|
+
typeHint?: SupportedType
|
|
14
|
+
wfsFeatureType?: string
|
|
15
|
+
enableCache?: boolean // by default cache will be used if this is not set to false
|
|
16
|
+
}
|
|
17
|
+
|
|
13
18
|
export async function openDataset(
|
|
14
19
|
url: string,
|
|
15
|
-
|
|
16
|
-
options?: {
|
|
17
|
-
namespace?: string
|
|
18
|
-
wfsVersion?: WfsVersion
|
|
19
|
-
wfsFeatureType?: string
|
|
20
|
-
},
|
|
21
|
-
cacheActive?: boolean
|
|
20
|
+
options?: OpenDatasetOptions
|
|
22
21
|
): Promise<BaseReader> {
|
|
23
|
-
const fileType = await inferDatasetType(url, typeHint)
|
|
22
|
+
const fileType = await inferDatasetType(url, options?.typeHint)
|
|
24
23
|
let reader:
|
|
25
24
|
| CsvReader
|
|
26
25
|
| JsonReader
|
|
@@ -43,19 +42,19 @@ export async function openDataset(
|
|
|
43
42
|
reader = new ExcelReader(url)
|
|
44
43
|
break
|
|
45
44
|
case 'gml':
|
|
46
|
-
reader = new GmlReader(url
|
|
45
|
+
reader = new GmlReader(url)
|
|
47
46
|
break
|
|
48
47
|
case 'wfs':
|
|
49
|
-
reader =
|
|
48
|
+
reader = new WfsReader(url, options?.wfsFeatureType)
|
|
50
49
|
break
|
|
51
50
|
}
|
|
52
|
-
reader.
|
|
51
|
+
reader.enableCache(options?.enableCache ?? true)
|
|
53
52
|
reader.load()
|
|
54
53
|
return reader
|
|
55
|
-
} catch (e:
|
|
56
|
-
//WfsReader may already raise a FetchError
|
|
54
|
+
} catch (e: unknown) {
|
|
55
|
+
// WfsReader may already raise a FetchError
|
|
57
56
|
if (e instanceof FetchError) throw e
|
|
58
|
-
else throw FetchError.parsingFailed(e.message)
|
|
57
|
+
else throw FetchError.parsingFailed((e as Error).message)
|
|
59
58
|
}
|
|
60
59
|
}
|
|
61
60
|
|
|
@@ -63,22 +62,20 @@ export async function openDataset(
|
|
|
63
62
|
* This fetches the full dataset at the given URL and parses it according to its mime type.
|
|
64
63
|
* All items in the dataset are converted to GeoJSON features, even if they do not bear any spatial geometry.
|
|
65
64
|
* File type can be either inferred (from the HTTP headers or the URL), or hinted using the 2nd argument
|
|
66
|
-
* File type is determined
|
|
65
|
+
* File type is determined like so:
|
|
67
66
|
* 1. if a type hint is given, use it
|
|
68
67
|
* 2. otherwise, look for a Content-Type header in the response with a supported mime type
|
|
69
68
|
* 3. if no valid mime type was found, look for an explicit file extension in the url (.csv, .geojson etc.)
|
|
70
69
|
*/
|
|
71
70
|
export async function readDataset(
|
|
72
71
|
url: string,
|
|
73
|
-
|
|
74
|
-
options?: any,
|
|
75
|
-
cacheActive = true
|
|
72
|
+
options?: OpenDatasetOptions
|
|
76
73
|
): Promise<DataItem[]> {
|
|
77
|
-
const reader = await openDataset(url,
|
|
74
|
+
const reader = await openDataset(url, options)
|
|
78
75
|
try {
|
|
79
76
|
return await reader.read()
|
|
80
|
-
} catch (e:
|
|
81
|
-
throw FetchError.parsingFailed(e.message)
|
|
77
|
+
} catch (e: unknown) {
|
|
78
|
+
throw FetchError.parsingFailed((e as Error).message)
|
|
82
79
|
}
|
|
83
80
|
}
|
|
84
81
|
|