geonetwork-ui 2.2.0-dev.177cac3b → 2.2.0-dev.2a6e8d6d
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/repository/src/lib/gn4/index.mjs +3 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +5 -4
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +106 -0
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +11 -3
- package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +76 -0
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +5 -4
- package/esm2022/libs/ui/elements/src/index.mjs +2 -1
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +3 -1
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -2
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +2 -2
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +29 -13
- package/esm2022/translations/de.json +99 -96
- package/esm2022/translations/en.json +19 -16
- package/esm2022/translations/es.json +3 -0
- package/esm2022/translations/fr.json +3 -0
- package/esm2022/translations/it.json +3 -0
- package/esm2022/translations/nl.json +3 -0
- package/esm2022/translations/pt.json +3 -0
- package/fesm2022/geonetwork-ui.mjs +351 -140
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/repository/src/lib/gn4/index.d.ts +2 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +1 -0
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +15 -2
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +22 -0
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts +15 -13
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +20 -0
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -0
- 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/downloads-list/downloads-list.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +19 -7
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/package.json +3 -1
- package/src/libs/api/repository/src/lib/gn4/index.ts +2 -0
- package/src/libs/common/domain/src/lib/index.ts +2 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +1 -0
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +8 -5
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.css +0 -0
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +21 -0
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +107 -0
- package/src/libs/feature/map/src/lib/feature-map.module.ts +5 -0
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.css +0 -0
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.html +39 -0
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +83 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +3 -1
- package/src/libs/ui/elements/src/index.ts +1 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +4 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +52 -52
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +1 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.css +1 -1
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +1 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +34 -11
- package/translations/de.json +99 -96
- package/translations/en.json +19 -16
- package/translations/es.json +3 -0
- package/translations/fr.json +3 -0
- package/translations/it.json +3 -0
- package/translations/nl.json +3 -0
- package/translations/pt.json +3 -0
- package/translations/sk.json +3 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { Component, OnDestroy } from '@angular/core'
|
|
2
|
+
import { queryGeoadmin, GeoadminOptions } from '@geospatial-sdk/geocoding'
|
|
3
|
+
import { catchError, from, Subject, takeUntil } from 'rxjs'
|
|
4
|
+
import { debounceTime, switchMap } from 'rxjs/operators'
|
|
5
|
+
import { MapManagerService } from '../manager/map-manager.service'
|
|
6
|
+
import { fromLonLat } from 'ol/proj'
|
|
7
|
+
import { Polygon } from 'ol/geom'
|
|
8
|
+
|
|
9
|
+
@Component({
|
|
10
|
+
selector: 'gn-ui-geocoding',
|
|
11
|
+
templateUrl: './geocoding.component.html',
|
|
12
|
+
styleUrls: ['./geocoding.component.css'],
|
|
13
|
+
})
|
|
14
|
+
export class GeocodingComponent implements OnDestroy {
|
|
15
|
+
searchText = ''
|
|
16
|
+
results: any[] = []
|
|
17
|
+
searchTextChanged = new Subject<string>()
|
|
18
|
+
destroy$ = new Subject<void>()
|
|
19
|
+
|
|
20
|
+
constructor(private mapManager: MapManagerService) {
|
|
21
|
+
this.searchTextChanged
|
|
22
|
+
.pipe(
|
|
23
|
+
debounceTime(300),
|
|
24
|
+
switchMap((searchText) => {
|
|
25
|
+
const options: GeoadminOptions = {
|
|
26
|
+
origins: ['zipcode', 'gg25', 'address'],
|
|
27
|
+
limit: 6,
|
|
28
|
+
}
|
|
29
|
+
return from(queryGeoadmin(searchText, options)).pipe(
|
|
30
|
+
catchError((error) => {
|
|
31
|
+
console.error(error)
|
|
32
|
+
return []
|
|
33
|
+
})
|
|
34
|
+
)
|
|
35
|
+
}),
|
|
36
|
+
takeUntil(this.destroy$)
|
|
37
|
+
)
|
|
38
|
+
.subscribe((results) => {
|
|
39
|
+
this.results = results
|
|
40
|
+
})
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
ngOnDestroy() {
|
|
44
|
+
this.destroy$.next()
|
|
45
|
+
this.destroy$.complete()
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
onSearchChange(searchText: string) {
|
|
49
|
+
if (!searchText) {
|
|
50
|
+
this.clearSearch()
|
|
51
|
+
return
|
|
52
|
+
} else {
|
|
53
|
+
this.searchTextChanged.next(searchText)
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
clearSearch() {
|
|
58
|
+
this.searchText = ''
|
|
59
|
+
this.results = []
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
zoomToLocation(result) {
|
|
63
|
+
const map = this.mapManager.map
|
|
64
|
+
const view = map.getView()
|
|
65
|
+
const geometry = result.geom
|
|
66
|
+
|
|
67
|
+
const polygonCoords = geometry.coordinates
|
|
68
|
+
const transformedCoords = polygonCoords[0].map((coord) => fromLonLat(coord))
|
|
69
|
+
|
|
70
|
+
const polygon = new Polygon([transformedCoords])
|
|
71
|
+
|
|
72
|
+
view.fit(polygon, {
|
|
73
|
+
duration: 100,
|
|
74
|
+
maxZoom: 12,
|
|
75
|
+
})
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
onEnterPress() {
|
|
79
|
+
if (this.results && this.results.length > 0) {
|
|
80
|
+
this.zoomToLocation(this.results[0])
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -41,7 +41,9 @@
|
|
|
41
41
|
</div>
|
|
42
42
|
</mat-tab>
|
|
43
43
|
<mat-tab [label]="'map.add.layer.file' | translate" bodyClass="h-full">
|
|
44
|
-
<div class="p-3
|
|
44
|
+
<div class="p-3">
|
|
45
|
+
<gn-ui-add-layer-from-file></gn-ui-add-layer-from-file>
|
|
46
|
+
</div>
|
|
45
47
|
</mat-tab>
|
|
46
48
|
</mat-tab-group>
|
|
47
49
|
</gn-ui-expandable-panel-button>
|
|
@@ -18,6 +18,7 @@ export * from './lib/pagination/pagination.component'
|
|
|
18
18
|
export * from './lib/related-record-card/related-record-card.component'
|
|
19
19
|
export * from './lib/search-results-error/search-results-error.component'
|
|
20
20
|
export * from './lib/user-preview/user-preview.component'
|
|
21
|
+
export * from './lib/max-lines/max-lines.component'
|
|
21
22
|
export * from './lib/record-api-form/record-api-form.component'
|
|
22
23
|
export * from './lib/markdown-parser/markdown-parser.component'
|
|
23
24
|
export * from './lib/image-overlay-preview/image-overlay-preview.component'
|
|
@@ -8,7 +8,10 @@
|
|
|
8
8
|
>
|
|
9
9
|
record.metadata.download
|
|
10
10
|
</p>
|
|
11
|
-
<div
|
|
11
|
+
<div
|
|
12
|
+
class="flex flex-wrap justify-start sm:justify-end sm:pb-4"
|
|
13
|
+
data-cy="download-format-filters"
|
|
14
|
+
>
|
|
12
15
|
<gn-ui-button
|
|
13
16
|
class="m-1 format-filter"
|
|
14
17
|
[extraClass]="
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** Body **/
|
|
2
|
-
:host
|
|
2
|
+
:host ::ng-deep .markdown-body {
|
|
3
3
|
-ms-text-size-adjust: 100%;
|
|
4
4
|
-webkit-text-size-adjust: 100%;
|
|
5
5
|
margin: 0px 0px 1.5rem 0px;
|
|
@@ -9,68 +9,68 @@
|
|
|
9
9
|
|
|
10
10
|
/** Emphasis **/
|
|
11
11
|
|
|
12
|
-
:host
|
|
12
|
+
:host ::ng-deep .markdown-body strong {
|
|
13
13
|
@apply font-bold;
|
|
14
14
|
color: var(--color-secondary-darker);
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
/** Headings **/
|
|
18
18
|
|
|
19
|
-
:host
|
|
20
|
-
:host
|
|
21
|
-
:host
|
|
22
|
-
:host
|
|
23
|
-
:host
|
|
24
|
-
:host
|
|
19
|
+
:host ::ng-deep .markdown-body h1,
|
|
20
|
+
:host ::ng-deep .markdown-body h2,
|
|
21
|
+
:host ::ng-deep .markdown-body h3,
|
|
22
|
+
:host ::ng-deep .markdown-body h4,
|
|
23
|
+
:host ::ng-deep .markdown-body h5,
|
|
24
|
+
:host ::ng-deep .markdown-body h6 {
|
|
25
25
|
margin-top: 24px;
|
|
26
26
|
margin-bottom: 16px;
|
|
27
27
|
line-height: 1.25;
|
|
28
28
|
@apply text-title font-title font-bold;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
:host
|
|
31
|
+
:host ::ng-deep .markdown-body h1 {
|
|
32
32
|
margin: 0.67em 0;
|
|
33
33
|
padding-bottom: 0.3em;
|
|
34
34
|
font-size: 2em;
|
|
35
35
|
color: var(--color-primary);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
:host
|
|
38
|
+
:host ::ng-deep .markdown-body h2 {
|
|
39
39
|
padding-bottom: 0.3em;
|
|
40
40
|
font-size: 1.5em;
|
|
41
41
|
color: var(--color-secondary);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
:host
|
|
44
|
+
:host ::ng-deep .markdown-body h3 {
|
|
45
45
|
font-size: 1.25em;
|
|
46
46
|
color: var(--color-secondary);
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
:host
|
|
49
|
+
:host ::ng-deep .markdown-body h4 {
|
|
50
50
|
font-size: 1em;
|
|
51
51
|
color: var(--color-secondary);
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
:host
|
|
54
|
+
:host ::ng-deep .markdown-body h5 {
|
|
55
55
|
font-size: 0.875em;
|
|
56
56
|
color: var(--color-secondary);
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
:host
|
|
59
|
+
:host ::ng-deep .markdown-body h6 {
|
|
60
60
|
font-size: 0.85em;
|
|
61
61
|
color: var(--color-secondary-lighter);
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
/** Paragraphs **/
|
|
65
65
|
|
|
66
|
-
:host
|
|
66
|
+
:host ::ng-deep .markdown-body p {
|
|
67
67
|
margin-top: 0;
|
|
68
68
|
margin-bottom: 10px;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
/** Links **/
|
|
72
72
|
|
|
73
|
-
:host
|
|
73
|
+
:host ::ng-deep .markdown-body p > a {
|
|
74
74
|
margin-top: 0;
|
|
75
75
|
margin-bottom: 10px;
|
|
76
76
|
color: var(--color-primary) !important;
|
|
@@ -78,13 +78,13 @@
|
|
|
78
78
|
@apply font-bold;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
:host
|
|
81
|
+
:host ::ng-deep .markdown-body p > a:hover {
|
|
82
82
|
color: var(--color-primary-darker) !important;
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
/** Blockquotes **/
|
|
86
86
|
|
|
87
|
-
:host
|
|
87
|
+
:host ::ng-deep .markdown-body blockquote {
|
|
88
88
|
margin: 0;
|
|
89
89
|
padding: 0 1em;
|
|
90
90
|
color: var(--color-secondary-lighter);
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
|
|
94
94
|
/** Code **/
|
|
95
95
|
|
|
96
|
-
:host
|
|
96
|
+
:host ::ng-deep .markdown-body pre {
|
|
97
97
|
margin-top: 0;
|
|
98
98
|
margin-bottom: 0;
|
|
99
99
|
font-size: 12px;
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
word-wrap: normal;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
:host
|
|
104
|
+
:host ::ng-deep .markdown-body pre {
|
|
105
105
|
padding: 16px;
|
|
106
106
|
overflow: auto;
|
|
107
107
|
font-size: 85%;
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
border-radius: 6px;
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
:host
|
|
113
|
+
:host ::ng-deep .markdown-body code {
|
|
114
114
|
padding: 0.2em 0.4em;
|
|
115
115
|
margin: 0;
|
|
116
116
|
font-size: 85%;
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
border-radius: 6px;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
:host
|
|
121
|
+
:host ::ng-deep .markdown-body pre code {
|
|
122
122
|
display: inline;
|
|
123
123
|
max-width: auto;
|
|
124
124
|
padding: 0;
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
|
|
132
132
|
/** Horizontal rules **/
|
|
133
133
|
|
|
134
|
-
:host
|
|
134
|
+
:host ::ng-deep .markdown-body hr {
|
|
135
135
|
box-sizing: content-box;
|
|
136
136
|
overflow: hidden;
|
|
137
137
|
background: transparent;
|
|
@@ -143,12 +143,12 @@
|
|
|
143
143
|
border: 0;
|
|
144
144
|
}
|
|
145
145
|
|
|
146
|
-
:host
|
|
146
|
+
:host ::ng-deep .markdown-body hr::before {
|
|
147
147
|
display: table;
|
|
148
148
|
content: '';
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
-
:host
|
|
151
|
+
:host ::ng-deep .markdown-body hr::after {
|
|
152
152
|
display: table;
|
|
153
153
|
clear: both;
|
|
154
154
|
content: '';
|
|
@@ -156,55 +156,55 @@
|
|
|
156
156
|
|
|
157
157
|
/** Lists **/
|
|
158
158
|
|
|
159
|
-
:host
|
|
160
|
-
:host
|
|
159
|
+
:host ::ng-deep .markdown-body ul,
|
|
160
|
+
:host ::ng-deep .markdown-body ol {
|
|
161
161
|
margin-top: 0;
|
|
162
162
|
margin-bottom: 0;
|
|
163
163
|
padding-left: 2em;
|
|
164
164
|
list-style: revert;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
-
:host
|
|
168
|
-
:host
|
|
167
|
+
:host ::ng-deep .markdown-body ol ol,
|
|
168
|
+
:host ::ng-deep .markdown-body ul ol {
|
|
169
169
|
list-style-type: lower-roman;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
:host
|
|
173
|
-
:host
|
|
174
|
-
:host
|
|
175
|
-
:host
|
|
172
|
+
:host ::ng-deep .markdown-body ul ul ol,
|
|
173
|
+
:host ::ng-deep .markdown-body ul ol ol,
|
|
174
|
+
:host ::ng-deep .markdown-body ol ul ol,
|
|
175
|
+
:host ::ng-deep .markdown-body ol ol ol {
|
|
176
176
|
list-style-type: lower-alpha;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
-
:host
|
|
179
|
+
:host ::ng-deep .markdown-body ol[type='a s'] {
|
|
180
180
|
list-style-type: lower-alpha;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
:host
|
|
183
|
+
:host ::ng-deep .markdown-body ol[type='A s'] {
|
|
184
184
|
list-style-type: upper-alpha;
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
-
:host
|
|
187
|
+
:host ::ng-deep .markdown-body ol[type='i s'] {
|
|
188
188
|
list-style-type: lower-roman;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
-
:host
|
|
191
|
+
:host ::ng-deep .markdown-body ol[type='I s'] {
|
|
192
192
|
list-style-type: upper-roman;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
:host
|
|
195
|
+
:host ::ng-deep .markdown-body ol[type='1'] {
|
|
196
196
|
list-style: unset;
|
|
197
197
|
list-style-type: decimal;
|
|
198
198
|
}
|
|
199
199
|
|
|
200
|
-
:host
|
|
200
|
+
:host ::ng-deep .markdown-body div > ol:not([type]) {
|
|
201
201
|
list-style: unset;
|
|
202
202
|
list-style-type: decimal;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
/** Table **/
|
|
206
206
|
|
|
207
|
-
:host
|
|
207
|
+
:host ::ng-deep .markdown-body table {
|
|
208
208
|
border-spacing: 0;
|
|
209
209
|
border-collapse: collapse;
|
|
210
210
|
display: block;
|
|
@@ -214,51 +214,51 @@
|
|
|
214
214
|
padding-bottom: 15px;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
-
:host
|
|
218
|
-
:host
|
|
217
|
+
:host ::ng-deep .markdown-body td,
|
|
218
|
+
:host ::ng-deep .markdown-body th {
|
|
219
219
|
padding: 0;
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
-
:host
|
|
222
|
+
:host ::ng-deep .markdown-body th {
|
|
223
223
|
color: var(--color-secondary);
|
|
224
224
|
}
|
|
225
225
|
|
|
226
|
-
:host
|
|
227
|
-
:host
|
|
226
|
+
:host ::ng-deep .markdown-body table th,
|
|
227
|
+
:host ::ng-deep .markdown-body table td {
|
|
228
228
|
padding: 6px 13px;
|
|
229
229
|
border: 1px solid var(--color-gray-500);
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
-
:host
|
|
232
|
+
:host ::ng-deep .markdown-body table td > :last-child {
|
|
233
233
|
margin-bottom: 0;
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
:host
|
|
236
|
+
:host ::ng-deep .markdown-body table tr {
|
|
237
237
|
background-color: #ffffff;
|
|
238
238
|
border-top: 1px solid var(--color-secondary-lighter);
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
-
:host
|
|
241
|
+
:host ::ng-deep .markdown-body table tr:nth-child(2n) {
|
|
242
242
|
background-color: var(--color-gray-100);
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
-
:host
|
|
245
|
+
:host ::ng-deep .markdown-body table img {
|
|
246
246
|
background-color: transparent;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
/** Images **/
|
|
250
250
|
|
|
251
|
-
:host
|
|
251
|
+
:host ::ng-deep .markdown-body img {
|
|
252
252
|
border-style: none;
|
|
253
253
|
max-width: 100%;
|
|
254
254
|
box-sizing: content-box;
|
|
255
255
|
background-color: transparent;
|
|
256
256
|
}
|
|
257
257
|
|
|
258
|
-
:host
|
|
258
|
+
:host ::ng-deep .markdown-body img[align='right'] {
|
|
259
259
|
padding-left: 20px;
|
|
260
260
|
}
|
|
261
261
|
|
|
262
|
-
:host
|
|
262
|
+
:host ::ng-deep .markdown-body img[align='left'] {
|
|
263
263
|
padding-right: 20px;
|
|
264
264
|
}
|
|
@@ -88,6 +88,7 @@ import { ImageOverlayPreviewComponent } from './image-overlay-preview/image-over
|
|
|
88
88
|
AvatarComponent,
|
|
89
89
|
UserPreviewComponent,
|
|
90
90
|
PaginationButtonsComponent,
|
|
91
|
+
MaxLinesComponent,
|
|
91
92
|
RecordApiFormComponent,
|
|
92
93
|
MarkdownParserComponent,
|
|
93
94
|
ImageOverlayPreviewComponent,
|
|
@@ -43,9 +43,15 @@ export const FORMATS = {
|
|
|
43
43
|
color: '#328556',
|
|
44
44
|
mimeTypes: ['x-gis/x-shapefile'],
|
|
45
45
|
},
|
|
46
|
+
gml: {
|
|
47
|
+
extensions: ['gml'],
|
|
48
|
+
priority: 5,
|
|
49
|
+
color: '#c92bce',
|
|
50
|
+
mimeTypes: ['application/gml+xml', 'text/xml; subtype=gml'],
|
|
51
|
+
},
|
|
46
52
|
kml: {
|
|
47
53
|
extensions: ['kml', 'kmz'],
|
|
48
|
-
priority:
|
|
54
|
+
priority: 6,
|
|
49
55
|
color: '#348009',
|
|
50
56
|
mimeTypes: [
|
|
51
57
|
'application/vnd.google-earth.kml+xml',
|
|
@@ -54,34 +60,40 @@ export const FORMATS = {
|
|
|
54
60
|
},
|
|
55
61
|
gpkg: {
|
|
56
62
|
extensions: ['gpkg', 'geopackage'],
|
|
57
|
-
priority:
|
|
63
|
+
priority: 7,
|
|
58
64
|
color: '#ea79ba',
|
|
59
65
|
mimeTypes: ['application/geopackage+sqlite3'],
|
|
60
66
|
},
|
|
61
67
|
zip: {
|
|
62
68
|
extensions: ['zip', 'tar.gz'],
|
|
63
|
-
priority:
|
|
69
|
+
priority: 8,
|
|
64
70
|
color: '#f2bb3a',
|
|
65
71
|
mimeTypes: ['application/zip', 'application/x-zip'],
|
|
66
72
|
},
|
|
67
73
|
pdf: {
|
|
68
74
|
extensions: ['pdf'],
|
|
69
|
-
priority:
|
|
75
|
+
priority: 9,
|
|
70
76
|
color: '#db544a',
|
|
71
77
|
mimeTypes: ['application/pdf'],
|
|
72
78
|
},
|
|
73
79
|
jpg: {
|
|
74
80
|
extensions: ['jpg', 'jpeg', 'jfif', 'pjpeg', 'pjp'],
|
|
75
|
-
priority:
|
|
81
|
+
priority: 9,
|
|
76
82
|
color: '#673ab7',
|
|
77
83
|
mimeTypes: ['image/jpg'],
|
|
78
84
|
},
|
|
79
85
|
svg: {
|
|
80
86
|
extensions: ['svg'],
|
|
81
|
-
priority:
|
|
87
|
+
priority: 10,
|
|
82
88
|
color: '#d98294',
|
|
83
89
|
mimeTypes: ['image/svg+xml'],
|
|
84
90
|
},
|
|
91
|
+
dxf: {
|
|
92
|
+
extensions: ['dxf'],
|
|
93
|
+
priority: 11,
|
|
94
|
+
color: '#de630b',
|
|
95
|
+
mimeTypes: ['application/x-dxf', 'image/x-dxf'],
|
|
96
|
+
},
|
|
85
97
|
} as const
|
|
86
98
|
|
|
87
99
|
export type FileFormat = keyof typeof FORMATS
|
|
@@ -102,13 +114,24 @@ export function getLinkPriority(link: DatasetDistribution): number {
|
|
|
102
114
|
return getFormatPriority(getFileFormat(link))
|
|
103
115
|
}
|
|
104
116
|
|
|
105
|
-
export function
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
117
|
+
export function getFileFormatFromServiceOutput(
|
|
118
|
+
serviceOutput: string
|
|
119
|
+
): FileFormat | null {
|
|
120
|
+
function formatMatcher(format: typeof FORMATS[FileFormat]): boolean {
|
|
121
|
+
const output = serviceOutput.toLowerCase()
|
|
122
|
+
return (
|
|
123
|
+
format.extensions.some((extension: string) =>
|
|
124
|
+
output.includes(extension)
|
|
125
|
+
) ||
|
|
126
|
+
format.mimeTypes.some((mimeType: string) => output.includes(mimeType))
|
|
127
|
+
)
|
|
128
|
+
}
|
|
129
|
+
for (const formatName in FORMATS) {
|
|
130
|
+
if (formatMatcher(FORMATS[formatName])) {
|
|
131
|
+
return formatName as FileFormat
|
|
109
132
|
}
|
|
110
133
|
}
|
|
111
|
-
return
|
|
134
|
+
return null
|
|
112
135
|
}
|
|
113
136
|
|
|
114
137
|
export function getFileFormat(link: DatasetDistribution): FileFormat {
|