geonetwork-ui 2.10.3-dev.4154db07d → 2.11.0-dev.4976ded4f

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.
Files changed (94) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1473 -811
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +230 -82
  4. package/index.d.ts.map +1 -1
  5. package/package.json +8 -8
  6. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +5 -5
  7. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -5
  8. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +43 -13
  9. package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +13 -1
  10. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
  11. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +9 -5
  12. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/association-type.mapper.ts +12 -0
  13. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +2 -2
  14. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +70 -10
  15. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +40 -16
  16. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +40 -2
  17. package/src/libs/common/domain/src/lib/model/search/filter.model.ts +13 -1
  18. package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +1 -5
  19. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -2
  20. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -2
  21. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +2 -1
  22. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +22 -22
  23. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.css +0 -0
  24. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.html +33 -0
  25. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.ts +94 -0
  26. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +16 -12
  27. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +6 -0
  28. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +6 -0
  29. package/src/libs/feature/editor/src/lib/fields.config.ts +5 -0
  30. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -0
  31. package/src/libs/feature/notifications/src/lib/notifications.service.ts +6 -4
  32. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +4 -8
  33. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +7 -16
  34. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +1 -3
  35. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +4 -9
  36. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +2 -7
  37. package/src/libs/feature/router/src/lib/default/router.service.ts +1 -1
  38. package/src/libs/feature/router/src/lib/default/state/query-params.utils.ts +1 -1
  39. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +9 -4
  40. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +46 -19
  41. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +17 -8
  42. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +1 -1
  43. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +3 -1
  44. package/src/libs/feature/search/src/lib/utils/service/fields.ts +27 -2
  45. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -7
  46. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +31 -19
  47. package/src/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.ts +2 -2
  48. package/src/libs/ui/inputs/src/index.ts +2 -0
  49. package/src/libs/ui/inputs/src/lib/date-adapter.providers.ts +30 -0
  50. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +3 -24
  51. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +37 -3
  52. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +135 -16
  53. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +166 -29
  54. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +3 -7
  55. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.css +1 -0
  56. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +20 -7
  57. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +46 -5
  58. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  59. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.css +0 -0
  60. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.html +117 -0
  61. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.ts +191 -0
  62. package/src/libs/util/app-config/src/lib/app-config.ts +3 -0
  63. package/src/libs/util/app-config/src/lib/model.ts +1 -0
  64. package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +19 -22
  65. package/src/libs/util/data-fetcher/src/lib/engine/duckdb.ts +185 -0
  66. package/src/libs/util/data-fetcher/src/lib/engine/results.ts +63 -0
  67. package/src/libs/util/data-fetcher/src/lib/{sql-utils.ts → engine/sql-utils.ts} +28 -13
  68. package/src/libs/util/data-fetcher/src/lib/model.ts +2 -1
  69. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +53 -38
  70. package/src/libs/util/data-fetcher/src/lib/readers/base.ts +11 -0
  71. package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +9 -47
  72. package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +27 -27
  73. package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +5 -24
  74. package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +5 -49
  75. package/src/libs/util/data-fetcher/src/lib/readers/json.ts +5 -23
  76. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +184 -128
  77. package/src/libs/util/data-fetcher/src/lib/utils.ts +0 -143
  78. package/src/libs/util/shared/src/index.ts +1 -0
  79. package/src/libs/util/shared/src/lib/autofocus.directive.ts +26 -0
  80. package/src/libs/util/shared/src/lib/gn-ui-version.ts +1 -1
  81. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  82. package/src/libs/util/shared/src/lib/utils/file.ts +15 -0
  83. package/src/libs/util/shared/src/lib/utils/geojson.ts +8 -0
  84. package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
  85. package/tailwind.base.css +5 -0
  86. package/translations/de.json +26 -3
  87. package/translations/en.json +25 -2
  88. package/translations/es.json +23 -0
  89. package/translations/fr.json +26 -3
  90. package/translations/it.json +24 -1
  91. package/translations/nl.json +23 -0
  92. package/translations/pt.json +23 -0
  93. package/translations/sk.json +24 -1
  94. package/src/libs/util/data-fetcher/src/lib/readers/base-cache.ts +0 -14
@@ -0,0 +1,191 @@
1
+ import {
2
+ ChangeDetectionStrategy,
3
+ ChangeDetectorRef,
4
+ Component,
5
+ EventEmitter,
6
+ Input,
7
+ Output,
8
+ ViewChild,
9
+ inject,
10
+ } from '@angular/core'
11
+ import {
12
+ CdkConnectedOverlay,
13
+ CdkOverlayOrigin,
14
+ ConnectedPosition,
15
+ OverlayModule,
16
+ ScrollStrategyOptions,
17
+ } from '@angular/cdk/overlay'
18
+
19
+ import { ButtonComponent } from '../button/button.component'
20
+ import { NgIcon, provideIcons } from '@ng-icons/core'
21
+ import {
22
+ iconoirCheckCircle,
23
+ iconoirImport,
24
+ iconoirSquareDashed,
25
+ iconoirTrash,
26
+ } from '@ng-icons/iconoir'
27
+ import {
28
+ matClose,
29
+ matExpandLess,
30
+ matExpandMore,
31
+ } from '@ng-icons/material-icons/baseline'
32
+ import { TranslatePipe } from '@ngx-translate/core'
33
+ import { marker } from '@biesbjerg/ngx-translate-extract-marker'
34
+ import {
35
+ BoundingBox,
36
+ getGeometryBoundingBox,
37
+ getGeometryFromGeoJSON,
38
+ propagateToDocumentOnly,
39
+ readFileAsText,
40
+ } from '../../../../../../libs/util/shared/src'
41
+ import {
42
+ DragAndDropFileInputComponent,
43
+ DragAndDropFileInputError,
44
+ } from '../drag-and-drop-file-input/drag-and-drop-file-input.component'
45
+
46
+ marker('search.filters.spatialExtent.import')
47
+ marker('search.filters.spatialExtent.helpText')
48
+ marker('search.filters.spatialExtent.error.title')
49
+ marker('search.filters.spatialExtent.bboxPrefix')
50
+
51
+ export interface SpatialExtentDropdownError {
52
+ key: string
53
+ params?: Record<string, string | number>
54
+ }
55
+ marker('search.filters.spatialExtent.bboxDelete')
56
+
57
+ @Component({
58
+ selector: 'gn-ui-spatial-extent-dropdown',
59
+ standalone: true,
60
+ imports: [
61
+ ButtonComponent,
62
+ NgIcon,
63
+ OverlayModule,
64
+ TranslatePipe,
65
+ DragAndDropFileInputComponent,
66
+ ],
67
+ providers: [
68
+ provideIcons({
69
+ iconoirCheckCircle,
70
+ iconoirImport,
71
+ iconoirSquareDashed,
72
+ iconoirTrash,
73
+ matClose,
74
+ matExpandLess,
75
+ matExpandMore,
76
+ }),
77
+ ],
78
+ templateUrl: './spatial-extent-dropdown.component.html',
79
+ styleUrls: ['./spatial-extent-dropdown.component.css'],
80
+ changeDetection: ChangeDetectionStrategy.OnPush,
81
+ })
82
+ export class SpatialExtentDropdownComponent {
83
+ private cd = inject(ChangeDetectorRef)
84
+ private scrollStrategies = inject(ScrollStrategyOptions)
85
+
86
+ @Input() title: string
87
+ @Input() maxFileSizeMb: number | null = null
88
+
89
+ @Output() bboxChange = new EventEmitter<BoundingBox | null>()
90
+ @Output() errorChange = new EventEmitter<SpatialExtentDropdownError>()
91
+
92
+ bbox: BoundingBox | null = null
93
+ fileName = ''
94
+
95
+ @ViewChild('overlayOrigin') overlayOrigin: CdkOverlayOrigin
96
+ @ViewChild(CdkConnectedOverlay) overlay: CdkConnectedOverlay
97
+ @ViewChild(DragAndDropFileInputComponent)
98
+ fileInput: DragAndDropFileInputComponent
99
+
100
+ overlayPositions: ConnectedPosition[] = [
101
+ {
102
+ originX: 'start',
103
+ originY: 'bottom',
104
+ overlayX: 'start',
105
+ overlayY: 'top',
106
+ offsetY: 8,
107
+ },
108
+ {
109
+ originX: 'start',
110
+ originY: 'top',
111
+ overlayX: 'start',
112
+ overlayY: 'bottom',
113
+ offsetY: -8,
114
+ },
115
+ ]
116
+ scrollStrategy = this.scrollStrategies.reposition()
117
+ overlayOpen = false
118
+ overlayMinWidth = 'none'
119
+
120
+ errorKey: string | null = null
121
+
122
+ get hasSelection() {
123
+ return !!this.bbox
124
+ }
125
+
126
+ openOverlay() {
127
+ this.overlayMinWidth =
128
+ this.overlayOrigin.elementRef.nativeElement.getBoundingClientRect()
129
+ .width + 'px'
130
+ this.overlayOpen = true
131
+ }
132
+
133
+ closeOverlay() {
134
+ this.overlayOpen = false
135
+ }
136
+
137
+ toggleOverlay() {
138
+ if (this.overlayOpen) {
139
+ this.closeOverlay()
140
+ } else {
141
+ this.openOverlay()
142
+ }
143
+ }
144
+
145
+ async handleFileSelected(file: File) {
146
+ this.errorKey = null
147
+ let content: string
148
+ try {
149
+ content = await readFileAsText(file)
150
+ const parsed = JSON.parse(content)
151
+ const geometry = getGeometryFromGeoJSON(parsed)
152
+ if (!geometry) {
153
+ this.setError(marker('search.filters.spatialExtent.error.noGeometry'))
154
+ return
155
+ }
156
+ const bbox = getGeometryBoundingBox(geometry)
157
+ this.bbox = bbox
158
+ this.fileName = file.name
159
+ this.bboxChange.emit(bbox)
160
+ this.cd.markForCheck()
161
+ } catch {
162
+ this.setError(marker('search.filters.spatialExtent.error.invalidFormat'))
163
+ return
164
+ }
165
+ }
166
+
167
+ handleFileError(error: DragAndDropFileInputError) {
168
+ if (error === 'file-too-large') {
169
+ this.setError(marker('search.filters.spatialExtent.error.fileTooLarge'), {
170
+ maxSize: this.maxFileSizeMb,
171
+ })
172
+ } else {
173
+ this.setError(marker('search.filters.spatialExtent.error.invalidFormat'))
174
+ }
175
+ }
176
+
177
+ private setError(errorKey: string, params?: Record<string, string | number>) {
178
+ this.errorKey = errorKey
179
+ this.errorChange.emit({ key: errorKey, params })
180
+ this.cd.markForCheck()
181
+ }
182
+
183
+ removeSelection(event: Event) {
184
+ this.bbox = null
185
+ this.fileName = ''
186
+ this.errorKey = null
187
+ this.fileInput?.clear()
188
+ this.bboxChange.emit(null)
189
+ propagateToDocumentOnly(event)
190
+ }
191
+ }
@@ -252,6 +252,7 @@ export function loadAppConfig(configUrl = 'assets/configuration/default.toml') {
252
252
  'search_preset',
253
253
  'advanced_filters',
254
254
  'limit',
255
+ 'spatial_extent_max_file_size',
255
256
  ],
256
257
  warnings,
257
258
  errors
@@ -281,6 +282,8 @@ export function loadAppConfig(configUrl = 'assets/configuration/default.toml') {
281
282
  })),
282
283
  ADVANCED_FILTERS: parsedSearchSection.advanced_filters,
283
284
  LIMIT: parsedSearchSection.limit,
285
+ SPATIAL_EXTENT_MAX_FILE_SIZE:
286
+ parsedSearchSection.spatial_extent_max_file_size,
284
287
  } as SearchConfig)
285
288
 
286
289
  const parsedMetadataQualitySection = parseConfigSection(
@@ -63,6 +63,7 @@ export interface SearchConfig {
63
63
  SEARCH_PRESET?: SearchPreset[]
64
64
  ADVANCED_FILTERS?: []
65
65
  LIMIT?: number
66
+ SPATIAL_EXTENT_MAX_FILE_SIZE?: number
66
67
  }
67
68
 
68
69
  export interface MetadataQualityConfig {
@@ -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
- typeHint?: SupportedType,
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, options.namespace, options.wfsVersion)
45
+ reader = new GmlReader(url)
47
46
  break
48
47
  case 'wfs':
49
- reader = await WfsReader.createReader(url, options.wfsFeatureType)
48
+ reader = new WfsReader(url, options?.wfsFeatureType)
50
49
  break
51
50
  }
52
- reader.setCacheActive(cacheActive)
51
+ reader.enableCache(options?.enableCache ?? true)
53
52
  reader.load()
54
53
  return reader
55
- } catch (e: any) {
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 liked so:
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
- typeHint?: SupportedType,
74
- options?: any,
75
- cacheActive = true
72
+ options?: OpenDatasetOptions
76
73
  ): Promise<DataItem[]> {
77
- const reader = await openDataset(url, typeHint, options, cacheActive)
74
+ const reader = await openDataset(url, options)
78
75
  try {
79
76
  return await reader.read()
80
- } catch (e: any) {
81
- throw FetchError.parsingFailed(e.message)
77
+ } catch (e: unknown) {
78
+ throw FetchError.parsingFailed((e as Error).message)
82
79
  }
83
80
  }
84
81
 
@@ -0,0 +1,185 @@
1
+ import * as duckdb from '@duckdb/duckdb-wasm'
2
+ import { DataItem, FetchError, PropertyInfo } from '../model'
3
+ import { arrowTableToDataItems } from './results'
4
+ import { Table } from 'apache-arrow'
5
+
6
+ // init code taken from https://github.com/duckdb/duckdb-wasm/blob/main/packages/duckdb-wasm/README.md
7
+ const JSDELIVR_BUNDLES = duckdb.getJsDelivrBundles()
8
+
9
+ // from https://duckdb.org/docs/current/sql/data_types/overview
10
+ const typesMapping: Record<string, PropertyInfo['type']> = {
11
+ INTEGER: 'number',
12
+ SMALLINT: 'number',
13
+ TINYINT: 'number',
14
+ BIGINT: 'number',
15
+ HUGEINT: 'number',
16
+ UINTEGER: 'number',
17
+ USMALLINT: 'number',
18
+ UTINYINT: 'number',
19
+ UBIGINT: 'number',
20
+ UHUGEINT: 'number',
21
+ DOUBLE: 'number',
22
+ BIGNUM: 'number',
23
+ DECIMAL: 'number',
24
+ NUMERIC: 'number',
25
+ FLOAT: 'number',
26
+ REAL: 'number',
27
+ 'TIMESTAMP WITH TIME ZONE': 'date',
28
+ TIMESTAMP: 'date',
29
+ DATE: 'date',
30
+ CHAR: 'string',
31
+ VARCHAR: 'string',
32
+ TEXT: 'string',
33
+ UUID: 'string',
34
+ BLOB: 'string',
35
+ BIT: 'string',
36
+ INTERVAL: 'string',
37
+ LIST: 'string',
38
+ BOOLEAN: 'boolean',
39
+ }
40
+
41
+ export class Engine {
42
+ private db: duckdb.AsyncDuckDB
43
+ private init_: Promise<Engine>
44
+
45
+ private async makeInit(): Promise<Engine> {
46
+ const bundle = await duckdb.selectBundle(JSDELIVR_BUNDLES)
47
+ let worker_url = bundle.mainWorker
48
+
49
+ // this is necessary to let browsers execute WASM code coming from a cross-origin host
50
+ if (worker_url.startsWith('https://')) {
51
+ worker_url = URL.createObjectURL(
52
+ new Blob([`importScripts("${worker_url}");`], {
53
+ type: 'text/javascript',
54
+ })
55
+ )
56
+ }
57
+ const worker = new Worker(worker_url)
58
+ const logger = new duckdb.ConsoleLogger(duckdb.LogLevel.WARNING)
59
+ this.db = new duckdb.AsyncDuckDB(logger, worker)
60
+ await this.db.instantiate(bundle.mainModule, bundle.pthreadWorker)
61
+
62
+ // setup duckdb options
63
+ const conn = await this.db.connect()
64
+ const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
65
+ await conn.query(`INSTALL spatial; LOAD spatial;`)
66
+ await conn.query(`SET TimeZone = '${timezone}';`)
67
+ await conn.query(`SET threads = 1;`)
68
+ // await conn.query(`SET memory_limit = '2GB';`) // used for experimenting when we encounter memory issues
69
+ await conn.query(`SET preserve_insertion_order = false;`) // this reduces memory usage when loading a dataset
70
+ conn.close()
71
+ return this
72
+ }
73
+
74
+ isReady(): Promise<Engine> {
75
+ if (!this.init_) {
76
+ this.init_ = this.makeInit()
77
+ }
78
+ return this.init_
79
+ }
80
+
81
+ /**
82
+ * Returns information about a dataset once it's loaded:
83
+ * - a list of properties description
84
+ * - the name of the dataset geometry column (null if no geometry present)
85
+ * @param datasetId name of the table under which the dataset will be stored
86
+ * @param loadQuery duckdb-specific query for creating a table out of the data
87
+ * @param forceReload if true, any existing data will be dropped and redownloaded
88
+ */
89
+ async loadFile(
90
+ datasetId: string,
91
+ loadQuery: string,
92
+ forceReload = false
93
+ ): Promise<{
94
+ properties: PropertyInfo[]
95
+ geometryColumn: string | null
96
+ rowsCount: number
97
+ }> {
98
+ const conn = await this.db.connect()
99
+ let results: Table
100
+
101
+ // either we want to recreate the table, or we keep it if it already exists
102
+ const safeLoadQuery = forceReload
103
+ ? `DROP TABLE IF EXISTS ${datasetId};
104
+ ${loadQuery}`
105
+ : loadQuery.replace(
106
+ /CREATE TABLE(?! IF NOT EXISTS)/gi,
107
+ 'CREATE TABLE IF NOT EXISTS'
108
+ )
109
+
110
+ // create the table
111
+ try {
112
+ results = await conn.query(safeLoadQuery)
113
+ } catch (e: unknown) {
114
+ throw new FetchError(
115
+ 'parse',
116
+ `DuckDB encountered an error when loading the data: ${(e as Error).message}`
117
+ )
118
+ }
119
+
120
+ // read rows count
121
+ results = await conn.query(`SELECT count(*) FROM ${datasetId}`)
122
+ const { 'count_star()': recordsCount } = results.toArray()[0].toJSON()
123
+
124
+ // read columns
125
+ results = await conn.query(
126
+ `SELECT * FROM information_schema.columns WHERE table_name = '${datasetId}';`
127
+ )
128
+ let geometryColumn: string | null = null
129
+
130
+ const properties = results
131
+ .toArray()
132
+ .map((row) => {
133
+ const rowObj = row.toJSON()
134
+ if (rowObj['data_type'] === 'GEOMETRY') {
135
+ // the geometry is not part of the properties
136
+ // note: right now we only keep one geometry column name, but if there are multiple they will
137
+ // all get discarded
138
+ geometryColumn = rowObj['column_name']
139
+ return null
140
+ }
141
+ return {
142
+ name: rowObj['column_name'],
143
+ label: rowObj['column_name'],
144
+ type: typesMapping[rowObj['data_type']] ?? 'other',
145
+ } as PropertyInfo
146
+ })
147
+ .filter((prop) => prop !== null)
148
+
149
+ conn.close()
150
+
151
+ return {
152
+ properties,
153
+ geometryColumn,
154
+ rowsCount: Number(recordsCount),
155
+ }
156
+ }
157
+
158
+ // register a Uint8 buffer using a handle in the duckdb instance
159
+ async registerData(name: string, buffer: Uint8Array) {
160
+ return this.db.registerFileBuffer(name, buffer)
161
+ }
162
+
163
+ /**
164
+ * @param query duckdb-specific query for fetching items
165
+ */
166
+ async queryItems(query: string): Promise<DataItem[]> {
167
+ const conn = await this.db.connect()
168
+ const results = await conn.query(query)
169
+ conn.close()
170
+ return arrowTableToDataItems(results)
171
+ }
172
+
173
+ close() {
174
+ this.db?.terminate()
175
+ }
176
+ }
177
+
178
+ let engine: Engine | null = null
179
+
180
+ export async function getEngine(): Promise<Engine> {
181
+ if (!engine) {
182
+ engine = new Engine()
183
+ }
184
+ return engine.isReady()
185
+ }
@@ -0,0 +1,63 @@
1
+ import { DataItem } from '../model'
2
+ import { Feature } from 'geojson'
3
+ import { DataType, StructRow, Table, Vector } from 'apache-arrow'
4
+ import { GEOMETRY_COLUMN_ALIAS } from './sql-utils'
5
+
6
+ export function arrowTableToDataItems(
7
+ table: Table<{ [key: string]: DataType }>
8
+ ): DataItem[] {
9
+ const fields = table.schema.fields
10
+
11
+ return table.toArray().map((row: StructRow) => {
12
+ const rowJson = row.toJSON()
13
+ const feature: Feature = {
14
+ type: 'Feature',
15
+ geometry: null,
16
+ properties: {},
17
+ }
18
+ const keys = Object.keys(rowJson)
19
+ for (let i = 0; i < keys.length; i++) {
20
+ const key = keys[i]
21
+ const dataType = fields[i].type
22
+ let value = rowJson[key]
23
+ // this might happen if we get an array inside a field
24
+ if (value instanceof Vector) {
25
+ value = Array.from(value)
26
+ }
27
+ // cast bigints to ints
28
+ if (typeof value === 'bigint') {
29
+ value = Number(value)
30
+ }
31
+ // rename columns with empty name
32
+ if (!key) {
33
+ feature.properties['unknown'] = value
34
+ continue
35
+ }
36
+ // assign properties that look like an id to the geojson `id` field
37
+ if (
38
+ /^(object|feature)?_?id$/.test(key.toLowerCase()) &&
39
+ (typeof value == 'string' || typeof value === 'number')
40
+ ) {
41
+ feature.id = value
42
+ }
43
+ // if a date is in timestamp (number) format, convert it to native
44
+ if (
45
+ typeof value === 'number' &&
46
+ (DataType.isTimestamp(dataType) || DataType.isDate(dataType))
47
+ ) {
48
+ value = new Date(value)
49
+ }
50
+ // if a binary field (most likely a geometry column): skip
51
+ if (DataType.isBinary(dataType)) {
52
+ continue
53
+ }
54
+ // geometry column
55
+ if (key === GEOMETRY_COLUMN_ALIAS && DataType.isUtf8(dataType)) {
56
+ feature.geometry = JSON.parse(value)
57
+ continue
58
+ }
59
+ feature.properties[key] = value
60
+ }
61
+ return feature
62
+ })
63
+ }
@@ -4,7 +4,13 @@ import {
4
4
  FieldGroupBy,
5
5
  FieldName,
6
6
  FieldSort,
7
- } from './model'
7
+ } from '../model'
8
+
9
+ export const GEOMETRY_COLUMN_ALIAS = '__geometry__'
10
+
11
+ function fieldToSql(name: string): string {
12
+ return `"${name.replace(/"/g, '""')}"` // escape double quotes in field names
13
+ }
8
14
 
9
15
  function filterToSql(filter: FieldFilter): string {
10
16
  const operator = filter[0]
@@ -20,12 +26,12 @@ function filterToSql(filter: FieldFilter): string {
20
26
  case '=':
21
27
  case '!=':
22
28
  case 'like':
23
- return `[${args[0]}] ${operator.toUpperCase()} ${valueToSql(
29
+ return `${fieldToSql(args[0] as string)} ${operator.toUpperCase()} ${valueToSql(
24
30
  args[1] as string | number
25
31
  )}`
26
32
  case 'in': {
27
33
  const values = args.slice(1) as string[] | number[]
28
- return `[${args[0]}] IN (${values.map(valueToSql).join(', ')})`
34
+ return `${fieldToSql(args[0] as string)} IN (${values.map(valueToSql).join(', ')})`
29
35
  }
30
36
  case 'and':
31
37
  case 'or': {
@@ -48,18 +54,19 @@ function aggregationToSql(aggregation: FieldAggregation): string {
48
54
 
49
55
  switch (operation) {
50
56
  case 'average':
51
- return `AVG([${field}]) as [average(${field})]`
57
+ return `CAST(AVG(${fieldToSql(field)}) AS DOUBLE) as ${fieldToSql(`average(${field})`)}`
52
58
  case 'sum':
53
59
  case 'max':
54
60
  case 'min':
55
- return `${operation.toUpperCase()}([${field}]) as [${operation}(${field})]`
61
+ return `CAST(${operation.toUpperCase()}(${fieldToSql(field)}) AS DOUBLE) as ${fieldToSql(`${operation}(${field})`)}`
56
62
  case 'count':
57
- return 'COUNT(*) as [count()]'
63
+ return 'CAST(COUNT(*) AS INTEGER) as "count()"' // we don't need Bigint precision here
58
64
  }
59
65
  }
60
66
 
61
67
  /**
62
68
  * Leave arguments at null if not used
69
+ * @param tableName
63
70
  * @param selected
64
71
  * @param filter
65
72
  * @param sort
@@ -69,29 +76,34 @@ function aggregationToSql(aggregation: FieldAggregation): string {
69
76
  * @param aggregations
70
77
  */
71
78
  export function generateSqlQuery(
79
+ tableName: string,
72
80
  selected: FieldName[] = null,
73
81
  filter: FieldFilter = null,
74
82
  sort: FieldSort[] = null,
75
83
  startIndex: number = null,
76
84
  count: number = null,
77
85
  groupBy: FieldGroupBy[] = null,
78
- aggregations: FieldAggregation[] = null
86
+ aggregations: FieldAggregation[] = null,
87
+ geometryColumn: string = null
79
88
  ): string {
80
89
  let sqlSelect = 'SELECT *'
81
- const sqlFrom = ' FROM ?'
90
+ const sqlFrom = ` FROM ${tableName}`
82
91
  let sqlOrderBy = ''
83
92
  let sqlWhere = ''
84
93
  let sqlLimit = ''
85
94
  let sqlGroupBy = ''
86
95
  if (selected !== null) {
87
- sqlSelect = `SELECT ${selected.map((name) => `[${name}]`).join(', ')}`
96
+ sqlSelect = `SELECT ${selected.map(fieldToSql).join(', ')}`
97
+ }
98
+ if (geometryColumn !== null) {
99
+ sqlSelect += `, ST_AsGeoJSON(${fieldToSql(geometryColumn)}) as ${GEOMETRY_COLUMN_ALIAS}`
88
100
  }
89
101
  if (filter !== null) {
90
102
  sqlWhere = ` WHERE ${filterToSql(filter)}`
91
103
  }
92
104
  if (sort?.length) {
93
105
  sqlOrderBy = ` ORDER BY ${sort
94
- .map((sort) => `[${sort[1]}] ${sort[0].toUpperCase()}`)
106
+ .map((sort) => `${fieldToSql(sort[1])} ${sort[0].toUpperCase()}`)
95
107
  .join(', ')}`
96
108
  }
97
109
  if (startIndex !== null && count !== null) {
@@ -101,15 +113,18 @@ export function generateSqlQuery(
101
113
  sqlSelect = `SELECT ${aggregations.map(aggregationToSql).join(', ')}`
102
114
  const groupedByDistinct = groupBy.filter((group) => group[0] === 'distinct')
103
115
  const sqlGroupByFields = groupedByDistinct
104
- .map((group) => `[${group[1]}]`)
116
+ .map((group) => fieldToSql(group[1]))
105
117
  .join(', ')
106
118
  const sqlGroupBySelect = groupedByDistinct
107
- .map((group) => `[${group[1]}] as [distinct(${group[1]})]`)
119
+ .map(
120
+ (group) =>
121
+ `${fieldToSql(group[1])} as ${fieldToSql(`distinct(${group[1]})`)}`
122
+ )
108
123
  .join(', ')
109
124
  if (sqlGroupByFields && sqlGroupBySelect) {
110
125
  sqlGroupBy = ` GROUP BY ${sqlGroupByFields}`
111
126
  sqlSelect += `, ${sqlGroupBySelect}`
112
127
  }
113
128
  }
114
- return sqlSelect + sqlFrom + sqlGroupBy + sqlOrderBy + sqlWhere + sqlLimit
129
+ return sqlSelect + sqlFrom + sqlGroupBy + sqlWhere + sqlOrderBy + sqlLimit
115
130
  }
@@ -97,11 +97,12 @@ export interface DatasetHeaders {
97
97
  export interface PropertyInfo {
98
98
  name: string
99
99
  label: string
100
- type: 'number' | 'date' | 'url' | 'string'
100
+ type: 'number' | 'date' | 'boolean' | 'string' | 'other'
101
101
  }
102
102
 
103
103
  export interface DatasetInfo {
104
104
  itemsCount: number
105
+ hasGeometry: boolean
105
106
  }
106
107
 
107
108
  export type FieldName = string