geonetwork-ui 2.4.0-dev.7a893adc → 2.4.0-dev.80a79eca

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 (299) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
  2. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +5 -5
  3. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
  4. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +10 -7
  5. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +7 -14
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +6 -6
  7. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +28 -18
  8. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +41 -7
  9. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  10. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  11. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  12. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
  13. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
  14. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  15. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
  16. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
  17. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +3 -3
  18. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
  19. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +8 -29
  20. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
  21. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +86 -11
  22. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +29 -3
  23. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +32 -59
  24. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +10 -3
  25. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +3 -3
  26. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +29 -3
  27. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +1 -1
  28. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +2 -2
  29. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
  30. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  31. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +1 -1
  32. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +1 -1
  33. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +4 -2
  34. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +5 -4
  35. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
  36. package/esm2022/libs/ui/elements/src/index.mjs +2 -2
  37. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
  38. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
  39. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
  40. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  41. package/esm2022/libs/ui/inputs/src/index.mjs +4 -1
  42. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
  43. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +5 -4
  44. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -4
  45. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +4 -3
  46. package/esm2022/libs/ui/layout/src/index.mjs +3 -1
  47. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
  48. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
  49. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
  50. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +8 -8
  51. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
  52. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
  53. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
  54. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
  55. package/esm2022/translations/de.json +15 -2
  56. package/esm2022/translations/en.json +15 -2
  57. package/esm2022/translations/es.json +13 -0
  58. package/esm2022/translations/fr.json +16 -3
  59. package/esm2022/translations/it.json +15 -2
  60. package/esm2022/translations/nl.json +13 -0
  61. package/esm2022/translations/pt.json +13 -0
  62. package/fesm2022/geonetwork-ui.mjs +2888 -2477
  63. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  64. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
  65. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  66. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
  67. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  68. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -1
  69. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  70. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  71. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +4 -5
  72. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  73. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +7 -6
  74. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  75. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +21 -2
  76. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  77. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +6 -6
  78. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  79. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  80. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  81. package/libs/common/domain/src/lib/platform.service.interface.d.ts +15 -0
  82. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  83. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
  84. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
  85. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
  86. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
  87. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
  88. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  89. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
  90. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  91. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
  92. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  93. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
  94. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
  95. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +2 -5
  96. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
  97. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
  98. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
  99. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +20 -2
  100. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
  101. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +7 -2
  102. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
  103. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +9 -15
  104. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
  105. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +5 -3
  106. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  107. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +3 -2
  108. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  109. package/libs/feature/editor/src/lib/fields.config.d.ts +9 -1
  110. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  111. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +5 -0
  112. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -1
  113. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +5 -5
  114. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  115. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
  116. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
  117. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
  118. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  119. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -2
  120. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  121. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +2 -2
  122. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  123. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
  124. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  125. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +1 -0
  126. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  127. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
  128. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
  129. package/libs/ui/elements/src/index.d.ts +1 -1
  130. package/libs/ui/elements/src/index.d.ts.map +1 -1
  131. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
  132. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  133. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
  134. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  135. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
  136. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  137. package/libs/ui/inputs/src/index.d.ts +3 -0
  138. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  139. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
  140. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
  141. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +1 -1
  142. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  143. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +0 -1
  144. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -1
  145. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  146. package/libs/ui/layout/src/index.d.ts +2 -0
  147. package/libs/ui/layout/src/index.d.ts.map +1 -1
  148. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
  149. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
  150. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
  151. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
  152. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
  153. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
  154. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +2 -2
  155. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  156. package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
  157. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  158. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  159. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  160. package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
  161. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  162. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
  163. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
  164. package/package.json +1 -1
  165. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -1
  166. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -1
  167. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
  168. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -1
  169. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
  170. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +4 -4
  171. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
  172. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +14 -8
  173. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +4 -12
  174. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +13 -15
  175. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +48 -36
  176. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +47 -3
  177. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +7 -7
  178. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  179. package/src/libs/common/domain/src/lib/platform.service.interface.ts +26 -0
  180. package/src/libs/common/fixtures/src/index.ts +1 -1
  181. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +37 -37
  182. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
  183. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
  184. package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
  185. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
  186. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
  187. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
  188. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
  189. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
  190. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
  191. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
  192. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
  193. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
  194. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +37 -3
  195. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
  196. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +9 -9
  197. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
  198. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
  199. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
  200. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +32 -15
  201. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
  202. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
  203. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
  204. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
  205. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
  206. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
  207. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
  208. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +9 -9
  209. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
  210. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
  211. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +14 -4
  212. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +5 -44
  213. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +33 -0
  214. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
  215. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -5
  216. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +93 -4
  217. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +6 -1
  218. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +46 -1
  219. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +21 -2
  220. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +35 -69
  221. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +8 -0
  222. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +8 -1
  223. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +1 -0
  224. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -1
  225. package/src/libs/feature/editor/src/lib/fields.config.ts +32 -2
  226. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +9 -0
  227. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +7 -7
  228. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +26 -22
  229. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
  230. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
  231. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +2 -2
  232. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -2
  233. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +5 -1
  234. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
  235. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -1
  236. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
  237. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
  238. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
  239. package/src/libs/ui/elements/src/index.ts +1 -1
  240. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  241. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
  242. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
  243. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +5 -0
  244. package/src/libs/ui/inputs/src/index.ts +3 -0
  245. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +1 -1
  246. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +2 -1
  247. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +1 -1
  248. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +2 -1
  249. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +0 -1
  250. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -2
  251. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +1 -1
  252. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +1 -1
  253. package/src/libs/ui/layout/src/index.ts +2 -0
  254. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
  255. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
  256. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
  257. package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +13 -16
  258. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
  259. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +9 -2
  260. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +5 -6
  261. package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
  262. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
  263. package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
  264. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
  265. package/tailwind.base.css +5 -0
  266. package/translations/de.json +15 -2
  267. package/translations/en.json +15 -2
  268. package/translations/es.json +13 -0
  269. package/translations/fr.json +16 -3
  270. package/translations/it.json +15 -2
  271. package/translations/nl.json +13 -0
  272. package/translations/pt.json +13 -0
  273. package/translations/sk.json +13 -0
  274. package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +0 -96
  275. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
  276. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
  277. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -39
  278. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +0 -27
  279. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +0 -1
  280. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
  281. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
  282. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
  283. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
  284. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -17
  285. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  286. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
  287. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
  288. package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
  289. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -9
  290. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -113
  291. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
  292. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
  293. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
  294. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
  295. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -29
  296. /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → online-resource-card/online-resource-card.component.css} +0 -0
  297. /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → form-field-online-link-resources/form-field-online-link-resources.component.css} +0 -0
  298. /package/src/libs/{feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → ui/layout/src/lib/modal-dialog/modal-dialog.component.css} +0 -0
  299. /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
@@ -8,4 +8,6 @@ export * from './lib/interactive-table/interactive-table-column/interactive-tabl
8
8
  export * from './lib/interactive-table/interactive-table.component'
9
9
  export * from './lib/sticky-header/sticky-header.component'
10
10
  export * from './lib/block-list/block-list.component'
11
+ export * from './lib/sortable-list/sortable-list.component'
12
+ export * from './lib/modal-dialog/modal-dialog.component'
11
13
  export * from './lib/ui-layout.module'
@@ -0,0 +1,15 @@
1
+ <h1 mat-dialog-title>{{ data.title }}</h1>
2
+ <div mat-dialog-content>
3
+ <ng-container
4
+ *ngTemplateOutlet="data.body; context: { $implicit: data.bodyContext }"
5
+ ></ng-container>
6
+ </div>
7
+ <div mat-dialog-actions>
8
+ <gn-ui-button (buttonClick)="onCancel()">{{ data.cancelText }}</gn-ui-button>
9
+ <gn-ui-button
10
+ (buttonClick)="onConfirm()"
11
+ class="ml-2"
12
+ data-cy="confirm-button"
13
+ >{{ data.confirmText }}</gn-ui-button
14
+ >
15
+ </div>
@@ -0,0 +1,44 @@
1
+ import {
2
+ ChangeDetectionStrategy,
3
+ Component,
4
+ Inject,
5
+ TemplateRef,
6
+ } from '@angular/core'
7
+ import { CommonModule } from '@angular/common'
8
+ import {
9
+ MAT_DIALOG_DATA,
10
+ MatDialogModule,
11
+ MatDialogRef,
12
+ } from '@angular/material/dialog'
13
+ import { ButtonComponent } from '../../../../../../libs/ui/inputs/src'
14
+
15
+ export interface ModalDialogData {
16
+ title: string
17
+ body: TemplateRef<unknown>
18
+ bodyContext: unknown
19
+ confirmText: string
20
+ cancelText: string
21
+ }
22
+
23
+ @Component({
24
+ selector: 'gn-ui-modal-dialog',
25
+ standalone: true,
26
+ imports: [CommonModule, MatDialogModule, ButtonComponent],
27
+ templateUrl: './modal-dialog.component.html',
28
+ styleUrls: ['./modal-dialog.component.css'],
29
+ changeDetection: ChangeDetectionStrategy.OnPush,
30
+ })
31
+ export class ModalDialogComponent {
32
+ constructor(
33
+ public dialogRef: MatDialogRef<ModalDialogComponent>,
34
+ @Inject(MAT_DIALOG_DATA) public data: ModalDialogData
35
+ ) {}
36
+
37
+ onConfirm() {
38
+ this.dialogRef.close(true)
39
+ }
40
+
41
+ onCancel() {
42
+ this.dialogRef.close(false)
43
+ }
44
+ }
@@ -0,0 +1,37 @@
1
+ <div
2
+ cdkDropList
3
+ class="sortable-list flex flex-col gap-3 p-2"
4
+ (cdkDropListDropped)="drop($event)"
5
+ >
6
+ <ng-container *ngFor="let item of items; index as index; trackBy: trackByFn">
7
+ <div class="sortable-box bg-white flex items-center" cdkDrag>
8
+ <span
9
+ cdkDragHandle
10
+ class="material-symbols-outlined mx-[10px] cursor-grab gn-ui-icon-medium flex-none"
11
+ >
12
+ drag_handle
13
+ </span>
14
+ <div class="flex-1">
15
+ <ng-container
16
+ *ngTemplateOutlet="
17
+ elementTemplate;
18
+ context: { $implicit: item, index }
19
+ "
20
+ ></ng-container>
21
+ </div>
22
+
23
+ <gn-ui-button
24
+ type="light"
25
+ style="
26
+ --gn-ui-button-padding: 0px;
27
+ --gn-ui-button-width: 24px;
28
+ --gn-ui-button-height: 24px;
29
+ "
30
+ class="ml-[8px] mr-[10px]"
31
+ (buttonClick)="removeItem(index)"
32
+ data-cy="remove-item"
33
+ ><span class="material-symbols-outlined gn-ui-icon-medium">close</span>
34
+ </gn-ui-button>
35
+ </div>
36
+ </ng-container>
37
+ </div>
@@ -5,21 +5,17 @@ import {
5
5
  CdkDropList,
6
6
  moveItemInArray,
7
7
  } from '@angular/cdk/drag-drop'
8
- import { NgComponentOutlet, NgFor } from '@angular/common'
8
+ import { CommonModule } from '@angular/common'
9
9
  import {
10
10
  ChangeDetectionStrategy,
11
11
  Component,
12
12
  EventEmitter,
13
13
  Input,
14
14
  Output,
15
- Type,
15
+ TemplateRef,
16
16
  } from '@angular/core'
17
17
  import { MatIconModule } from '@angular/material/icon'
18
-
19
- export type DynamicElement = {
20
- component: Type<unknown>
21
- inputs: Record<string, unknown>
22
- }
18
+ import { ButtonComponent } from '../../../../../../libs/ui/inputs/src'
23
19
 
24
20
  @Component({
25
21
  selector: 'gn-ui-sortable-list',
@@ -28,26 +24,27 @@ export type DynamicElement = {
28
24
  changeDetection: ChangeDetectionStrategy.OnPush,
29
25
  standalone: true,
30
26
  imports: [
31
- NgFor,
32
- NgComponentOutlet,
27
+ CommonModule,
33
28
  CdkDropList,
34
29
  CdkDrag,
35
30
  CdkDragHandle,
36
31
  MatIconModule,
32
+ ButtonComponent,
37
33
  ],
38
34
  })
39
35
  export class SortableListComponent {
40
- @Input() elements: Array<DynamicElement>
41
- @Output() elementsChange = new EventEmitter<Array<DynamicElement>>()
36
+ @Input() elementTemplate: TemplateRef<unknown>
37
+ @Input() items: unknown[]
38
+ @Output() itemsOrderChange = new EventEmitter<unknown[]>()
42
39
 
43
40
  drop(event: CdkDragDrop<string[]>) {
44
- moveItemInArray(this.elements, event.previousIndex, event.currentIndex)
45
- this.elementsChange.emit(this.elements)
41
+ moveItemInArray(this.items, event.previousIndex, event.currentIndex)
42
+ this.itemsOrderChange.emit([...this.items])
46
43
  }
47
44
 
48
- removeElement(index: number) {
49
- this.elements = this.elements.filter((_, i) => i !== index)
50
- this.elementsChange.emit(this.elements)
45
+ removeItem(index: number) {
46
+ this.items = this.items.filter((_, i) => i !== index)
47
+ this.itemsOrderChange.emit(this.items)
51
48
  }
52
49
 
53
50
  trackByFn(index: number) {
@@ -1,6 +1,6 @@
1
1
  import { ModelBlock, ModelItem } from '../facets.model'
2
2
 
3
- export const BLOCK_MODEL_FIXTURE: ModelBlock = {
3
+ export const blockModelFixture = (): ModelBlock => ({
4
4
  key: 'tag',
5
5
  items: [
6
6
  { value: 'Hungary', count: 20, path: ['tag', 'Hungary'] },
@@ -31,8 +31,9 @@ export const BLOCK_MODEL_FIXTURE: ModelBlock = {
31
31
  more: true,
32
32
  includeFilter: true,
33
33
  excludeFilter: false,
34
- }
35
- export const EMPTY_BLOCK_MODEL_FIXTURE: ModelBlock = {
34
+ })
35
+
36
+ export const emptyBlockModelFixture = (): ModelBlock => ({
36
37
  key: 'emptytag',
37
38
  items: [],
38
39
  path: ['emptytag'],
@@ -41,12 +42,12 @@ export const EMPTY_BLOCK_MODEL_FIXTURE: ModelBlock = {
41
42
  more: true,
42
43
  includeFilter: false,
43
44
  excludeFilter: false,
44
- }
45
+ })
45
46
 
46
- export const FACET_ITEM_FIXTURE: ModelItem = {
47
+ export const itemModelFixture = (): ModelItem => ({
47
48
  path: ['tag.default', 'land use'],
48
49
  value: 'land use',
49
50
  count: 500,
50
51
  selected: true,
51
52
  inverted: false,
52
- }
53
+ })
@@ -103,7 +103,12 @@
103
103
  <span translate>record.metadata.status</span>
104
104
  </ng-template>
105
105
  <ng-template #cell let-item>
106
- {{ item.status }}
106
+ {{
107
+ (isUnsavedDraft(item)
108
+ ? 'record.metadata.status.notPublished'
109
+ : 'record.metadata.status.published'
110
+ ) | translate
111
+ }}
107
112
  </ng-template>
108
113
  </gn-ui-interactive-table-column>
109
114
 
@@ -117,7 +122,9 @@
117
122
  <span translate>record.metadata.updatedOn</span>
118
123
  </ng-template>
119
124
  <ng-template #cell let-item>
120
- {{ dateToString(item.recordUpdated) }}
125
+ <div class="flex justify-center w-full">
126
+ {{ isUnsavedDraft(item) ? '-' : dateToString(item.recordUpdated) }}
127
+ </div>
121
128
  </ng-template>
122
129
  </gn-ui-interactive-table-column>
123
130
 
@@ -42,6 +42,7 @@ export class ResultsTableComponent {
42
42
  @Input() sortOrder: SortByField = null
43
43
  @Input() hasDraft: (record: CatalogRecord) => boolean = () => false
44
44
  @Input() canDuplicate: (record: CatalogRecord) => boolean = () => true
45
+ @Input() isUnsavedDraft: (record: CatalogRecord) => boolean = () => true
45
46
  @Input() canDelete: (record: CatalogRecord) => boolean = () => true
46
47
 
47
48
  // emits the column (field) as well as the order
@@ -62,17 +63,15 @@ export class ResultsTableComponent {
62
63
  })
63
64
  }
64
65
 
65
- getStatus(isPublishedToAll: boolean | unknown) {
66
- return isPublishedToAll ? 'published' : 'not published'
67
- }
68
-
69
66
  getRecordFormats(record: CatalogRecord): FileFormat[] {
70
- if (record.kind === 'service' || !('distributions' in record)) {
67
+ if (record.kind === 'service' || !('onlineResources' in record)) {
71
68
  return []
72
69
  }
73
70
  const formats = Array.from(
74
71
  new Set(
75
- record.distributions.map((distribution) => getFileFormat(distribution))
72
+ record.onlineResources.map((onlineResource) =>
73
+ getFileFormat(onlineResource)
74
+ )
76
75
  )
77
76
  ).filter((format) => !!format)
78
77
  formats.sort((a, b) => getFormatPriority(b) - getFormatPriority(a))
@@ -1,6 +1,6 @@
1
1
  import { MapConfig } from './model'
2
2
 
3
- export const CONFIG_OK = `
3
+ export const okAppConfigFixture = () => `
4
4
  [global]
5
5
  geonetwork4_api_url = "/geonetwork/srv/api"
6
6
  proxy_path = "/proxy/?url="
@@ -63,9 +63,9 @@ my.sample.text = "Un bon exemple de texte."
63
63
  "my.quoted.text" = 'du texte entre guillements.'
64
64
  `
65
65
 
66
- export const CONFIG_WITH_TRANSLATIONS = CONFIG_OK
66
+ export const appConfigWithTranslationFixture = () => okAppConfigFixture()
67
67
 
68
- export const CONFIG_MINIMAL = `
68
+ export const minimalAppConfigFixture = () => `
69
69
  [global]
70
70
  geonetwork4_api_url = "/geonetwork/srv/api"
71
71
  proxy_path = "/proxy/?url="
@@ -77,7 +77,7 @@ main_color = "#212029" # All-purpose text color
77
77
  background_color = "#fdfbff"
78
78
  `
79
79
 
80
- export const MAP_CONFIG_FIXTURE: MapConfig = {
80
+ export const mapConfigFixture = (): MapConfig => ({
81
81
  MAX_ZOOM: 10,
82
82
  MAX_EXTENT: [-418263.418776, 5251529.591305, 961272.067714, 6706890.609855],
83
83
  DO_NOT_USE_DEFAULT_BASEMAP: false,
@@ -101,15 +101,15 @@ export const MAP_CONFIG_FIXTURE: MapConfig = {
101
101
  NAME: 'some_layername',
102
102
  },
103
103
  ],
104
- }
104
+ })
105
105
 
106
- export const CONFIG_MALFORMED = `
106
+ export const malformedConfigFixture = () => `
107
107
  {
108
108
  "I thought": "we were still doing json"
109
109
  }
110
110
  `
111
111
 
112
- export const CONFIG_MISSING_MANDATORY = `
112
+ export const missingMandatoryConfigFixture = () => `
113
113
  [theme]
114
114
  primary_color = "#093564"
115
115
  secondary_color = "#c2e9dc"
@@ -117,7 +117,7 @@ background_color = "#fdfbff"
117
117
  main_font = 'sans-serif'
118
118
  `
119
119
 
120
- export const CONFIG_WRONG_LANGUAGE_CODE = `
120
+ export const wrongLanguageCodeConfigFixture = () => `
121
121
  [global]
122
122
  geonetwork4_api_url = "/geonetwork/srv/api"
123
123
  proxy_path = "/proxy/?url="
@@ -132,7 +132,7 @@ main_color = "#212029" # All-purpose text color
132
132
  background_color = "#fdfbff"
133
133
  `
134
134
 
135
- export const CONFIG_UNRECOGNIZED_KEYS = `
135
+ export const unrecognizedKeysConfigFixture = () => `
136
136
  [global]
137
137
  geonetwork4_api_url = "/geonetwork/srv/api"
138
138
  proxy_path = "/proxy/?url="
@@ -1,6 +1,7 @@
1
1
  import { Injectable } from '@angular/core'
2
- import { DatasetDistribution } from '../../../../../../libs/common/domain/src/lib/model/record'
2
+ import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record'
3
3
  import { getFileFormat } from './link-utils'
4
+
4
5
  export enum LinkUsage {
5
6
  API = 'api',
6
7
  MAP_API = 'mapapi',
@@ -15,7 +16,7 @@ export enum LinkUsage {
15
16
  providedIn: 'root',
16
17
  })
17
18
  export class LinkClassifierService {
18
- getUsagesForLink(link: DatasetDistribution): LinkUsage[] {
19
+ getUsagesForLink(link: DatasetOnlineResource): LinkUsage[] {
19
20
  switch (link.type) {
20
21
  case 'service': {
21
22
  switch (link.accessServiceProtocol) {
@@ -51,7 +52,7 @@ export class LinkClassifierService {
51
52
  }
52
53
  }
53
54
 
54
- hasUsage(link: DatasetDistribution, usage: LinkUsage) {
55
+ hasUsage(link: DatasetOnlineResource, usage: LinkUsage) {
55
56
  return this.getUsagesForLink(link).indexOf(usage) > -1
56
57
  }
57
58
  }
@@ -1,5 +1,5 @@
1
1
  import { marker } from '@biesbjerg/ngx-translate-extract-marker'
2
- import { DatasetDistribution } from '../../../../../../libs/common/domain/src/lib/model/record'
2
+ import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record'
3
3
 
4
4
  marker('downloads.wfs.featuretype.not.found')
5
5
 
@@ -131,7 +131,7 @@ export function getFormatPriority(linkFormat: FileFormat): number {
131
131
  return 0
132
132
  }
133
133
 
134
- export function getLinkPriority(link: DatasetDistribution): number {
134
+ export function getLinkPriority(link: DatasetOnlineResource): number {
135
135
  return getFormatPriority(getFileFormat(link))
136
136
  }
137
137
 
@@ -155,7 +155,7 @@ export function getFileFormatFromServiceOutput(
155
155
  return null
156
156
  }
157
157
 
158
- export function getFileFormat(link: DatasetDistribution): FileFormat {
158
+ export function getFileFormat(link: DatasetOnlineResource): FileFormat {
159
159
  if ('mimeType' in link) {
160
160
  const mimeTypeFormat = mimeTypeToFormat(link.mimeType)
161
161
  if (mimeTypeFormat !== null) {
@@ -172,7 +172,7 @@ export function getFileFormat(link: DatasetDistribution): FileFormat {
172
172
  }
173
173
 
174
174
  export function isFormatInQueryParam(
175
- link: DatasetDistribution,
175
+ link: DatasetOnlineResource,
176
176
  alias: string
177
177
  ): boolean {
178
178
  const queryParams = link.url.searchParams
@@ -194,7 +194,7 @@ export function mimeTypeToFormat(mimeType: string): FileFormat {
194
194
  }
195
195
 
196
196
  export function checkFileFormat(
197
- link: DatasetDistribution,
197
+ link: DatasetOnlineResource,
198
198
  format: FileFormat
199
199
  ): boolean {
200
200
  return (
@@ -214,7 +214,7 @@ export function getBadgeColor(linkFormat: FileFormat): string {
214
214
  return 'var(--color-gray-700)' // Default color ?
215
215
  }
216
216
 
217
- export function getLinkLabel(link: DatasetDistribution): string {
217
+ export function getLinkLabel(link: DatasetOnlineResource): string {
218
218
  let format = ''
219
219
  switch (link.type) {
220
220
  case 'service':
@@ -1,3 +1,6 @@
1
- export function megabytesToBytes(megabytes) {
1
+ export function megabytesToBytes(megabytes: number) {
2
2
  return megabytes * 1048576
3
3
  }
4
+ export function bytesToMegabytes(bytes: number) {
5
+ return bytes / 1048576
6
+ }
package/tailwind.base.css CHANGED
@@ -141,6 +141,11 @@
141
141
  disabled:cursor-not-allowed disabled:border-gray-100 disabled:placeholder-gray-300 disabled:text-gray-700 disabled:bg-white;
142
142
  }
143
143
 
144
+ /* GENERIC CARD */
145
+ .gn-ui-card {
146
+ @apply flex flex-row border border-gray-200 rounded-xl p-4 gap-2 w-full;
147
+ }
148
+
144
149
  /* TODO: add prefix */
145
150
  .card-icon {
146
151
  @apply text-primary opacity-50 group-hover:text-secondary group-hover:opacity-100 transition-colors transition-opacity;
@@ -204,6 +204,14 @@
204
204
  "editor.record.form.field.contactsForResource.noContact": "",
205
205
  "editor.record.form.field.keywords": "Schlagwörter",
206
206
  "editor.record.form.field.license": "Lizenz",
207
+ "editor.record.form.field.onlineLinkResources": "",
208
+ "editor.record.form.field.onlineResource.cancel": "",
209
+ "editor.record.form.field.onlineResource.confirm": "",
210
+ "editor.record.form.field.onlineResource.dialogTitle": "",
211
+ "editor.record.form.field.onlineResource.edit.description": "",
212
+ "editor.record.form.field.onlineResource.edit.title": "",
213
+ "editor.record.form.field.onlineResource.fileSize": "",
214
+ "editor.record.form.field.onlineResource.modify": "",
207
215
  "editor.record.form.field.overviews": "",
208
216
  "editor.record.form.field.recordUpdated": "Datensatz zuletzt aktualisiert",
209
217
  "editor.record.form.field.resourceUpdated": "Letztes Aktualisierungsdatum",
@@ -245,6 +253,9 @@
245
253
  "editor.record.loadError.body": "Der Datensatz konnte nicht geladen werden:",
246
254
  "editor.record.loadError.closeMessage": "Verstanden",
247
255
  "editor.record.loadError.title": "Fehler beim Laden des Datensatzes",
256
+ "editor.record.onlineResourceError.body": "",
257
+ "editor.record.onlineResourceError.closeMessage": "",
258
+ "editor.record.onlineResourceError.title": "",
248
259
  "editor.record.placeKeywordWithoutLabel": "",
249
260
  "editor.record.publish": "Diesen Datensatz veröffentlichen",
250
261
  "editor.record.publishError.body": "Der Datensatz konnte nicht veröffentlicht werden:",
@@ -365,7 +376,7 @@
365
376
  "record.metadata.api.form.reset": "Zurücksetzen",
366
377
  "record.metadata.api.form.title": "Benutzerdefinierte URL generieren",
367
378
  "record.metadata.api.form.type": "Ausgabeformat",
368
- "record.metadata.author": "Autor",
379
+ "record.metadata.author": "Bearbeitet von",
369
380
  "record.metadata.catalog": "Katalog",
370
381
  "record.metadata.contact": "Kontakt",
371
382
  "record.metadata.creation": "Erstellungsdatum",
@@ -404,6 +415,8 @@
404
415
  "record.metadata.related": "Ähnliche Datensätze",
405
416
  "record.metadata.sheet": "Weitere Informationen verfügbar unter:",
406
417
  "record.metadata.status": "Status",
418
+ "record.metadata.status.notPublished": "",
419
+ "record.metadata.status.published": "",
407
420
  "record.metadata.technical": "Technische Informationen",
408
421
  "record.metadata.temporalExtent": "Zeitlicher Umfang",
409
422
  "record.metadata.temporalExtent.fromDateToDate": "Von {start} bis {end}",
@@ -414,7 +427,7 @@
414
427
  "record.metadata.type": "Geographischer Datensatz",
415
428
  "record.metadata.uniqueId": "Eindeutige Kennung",
416
429
  "record.metadata.updateFrequency": "Aktualisierungsfrequenz der Daten",
417
- "record.metadata.updatedOn": "Letzte Aktualisierung der Dateninformationen",
430
+ "record.metadata.updatedOn": "Geändert am",
418
431
  "record.metadata.usage": "Nutzung und Einschränkungen",
419
432
  "record.metadata.userFeedbacks": "",
420
433
  "record.metadata.userFeedbacks.anonymousUser": "",
@@ -204,6 +204,14 @@
204
204
  "editor.record.form.field.contactsForResource.noContact": "Please provide at least one point of contact responsible for the data.",
205
205
  "editor.record.form.field.keywords": "Keywords",
206
206
  "editor.record.form.field.license": "License",
207
+ "editor.record.form.field.onlineLinkResources": "Attached resources",
208
+ "editor.record.form.field.onlineResource.cancel": "Cancel",
209
+ "editor.record.form.field.onlineResource.confirm": "Confirm",
210
+ "editor.record.form.field.onlineResource.dialogTitle": "Modify the resource preview",
211
+ "editor.record.form.field.onlineResource.edit.description": "Description",
212
+ "editor.record.form.field.onlineResource.edit.title": "Title",
213
+ "editor.record.form.field.onlineResource.fileSize": "{sizeMB}MB",
214
+ "editor.record.form.field.onlineResource.modify": "Modify",
207
215
  "editor.record.form.field.overviews": "Overviews",
208
216
  "editor.record.form.field.recordUpdated": "Record Updated",
209
217
  "editor.record.form.field.resourceUpdated": "Resource Updated",
@@ -245,6 +253,9 @@
245
253
  "editor.record.loadError.body": "The record could not be loaded:",
246
254
  "editor.record.loadError.closeMessage": "Understood",
247
255
  "editor.record.loadError.title": "Error loading record",
256
+ "editor.record.onlineResourceError.body": "An error happened while adding the resource:",
257
+ "editor.record.onlineResourceError.closeMessage": "Understood",
258
+ "editor.record.onlineResourceError.title": "Error adding resource",
248
259
  "editor.record.placeKeywordWithoutLabel": "Unnamed location",
249
260
  "editor.record.publish": "Publish this record",
250
261
  "editor.record.publishError.body": "The record could not be published:",
@@ -365,7 +376,7 @@
365
376
  "record.metadata.api.form.reset": "Reset",
366
377
  "record.metadata.api.form.title": "Generate a custom URL",
367
378
  "record.metadata.api.form.type": "Output format",
368
- "record.metadata.author": "Author",
379
+ "record.metadata.author": "Edited by",
369
380
  "record.metadata.catalog": "Catalog",
370
381
  "record.metadata.contact": "Contact",
371
382
  "record.metadata.creation": "Date of creation",
@@ -404,6 +415,8 @@
404
415
  "record.metadata.related": "Related records",
405
416
  "record.metadata.sheet": "Original metadata",
406
417
  "record.metadata.status": "Status",
418
+ "record.metadata.status.notPublished": "Not published",
419
+ "record.metadata.status.published": "Published",
407
420
  "record.metadata.technical": "Technical information",
408
421
  "record.metadata.temporalExtent": "Temporal extent",
409
422
  "record.metadata.temporalExtent.fromDateToDate": "From { start } to { end }",
@@ -414,7 +427,7 @@
414
427
  "record.metadata.type": "Geographical dataset",
415
428
  "record.metadata.uniqueId": "Unique Identifier",
416
429
  "record.metadata.updateFrequency": "Data Update Frequency",
417
- "record.metadata.updatedOn": "Last Data Information Update",
430
+ "record.metadata.updatedOn": "Updated on",
418
431
  "record.metadata.usage": "License and Conditions",
419
432
  "record.metadata.userFeedbacks": "Questions / Answers",
420
433
  "record.metadata.userFeedbacks.anonymousUser": "In order to leave a comment, please log in.",
@@ -204,6 +204,14 @@
204
204
  "editor.record.form.field.contactsForResource.noContact": "",
205
205
  "editor.record.form.field.keywords": "",
206
206
  "editor.record.form.field.license": "",
207
+ "editor.record.form.field.onlineLinkResources": "",
208
+ "editor.record.form.field.onlineResource.cancel": "",
209
+ "editor.record.form.field.onlineResource.confirm": "",
210
+ "editor.record.form.field.onlineResource.dialogTitle": "",
211
+ "editor.record.form.field.onlineResource.edit.description": "",
212
+ "editor.record.form.field.onlineResource.edit.title": "",
213
+ "editor.record.form.field.onlineResource.fileSize": "",
214
+ "editor.record.form.field.onlineResource.modify": "",
207
215
  "editor.record.form.field.overviews": "",
208
216
  "editor.record.form.field.recordUpdated": "",
209
217
  "editor.record.form.field.resourceUpdated": "",
@@ -245,6 +253,9 @@
245
253
  "editor.record.loadError.body": "",
246
254
  "editor.record.loadError.closeMessage": "",
247
255
  "editor.record.loadError.title": "",
256
+ "editor.record.onlineResourceError.body": "",
257
+ "editor.record.onlineResourceError.closeMessage": "",
258
+ "editor.record.onlineResourceError.title": "",
248
259
  "editor.record.placeKeywordWithoutLabel": "",
249
260
  "editor.record.publish": "",
250
261
  "editor.record.publishError.body": "",
@@ -404,6 +415,8 @@
404
415
  "record.metadata.related": "",
405
416
  "record.metadata.sheet": "",
406
417
  "record.metadata.status": "",
418
+ "record.metadata.status.notPublished": "",
419
+ "record.metadata.status.published": "",
407
420
  "record.metadata.technical": "",
408
421
  "record.metadata.temporalExtent": "",
409
422
  "record.metadata.temporalExtent.fromDateToDate": "",
@@ -204,6 +204,14 @@
204
204
  "editor.record.form.field.contactsForResource.noContact": "Veuillez renseigner au moins un point de contact responsable de la donnée.",
205
205
  "editor.record.form.field.keywords": "Mots-clés",
206
206
  "editor.record.form.field.license": "Licence",
207
+ "editor.record.form.field.onlineLinkResources": "Annexes",
208
+ "editor.record.form.field.onlineResource.cancel": "Annuler",
209
+ "editor.record.form.field.onlineResource.confirm": "Valider",
210
+ "editor.record.form.field.onlineResource.dialogTitle": "Modifier l'aperçu de la ressource",
211
+ "editor.record.form.field.onlineResource.edit.description": "Description",
212
+ "editor.record.form.field.onlineResource.edit.title": "Titre",
213
+ "editor.record.form.field.onlineResource.fileSize": "{sizeMB} Mo",
214
+ "editor.record.form.field.onlineResource.modify": "Modifier",
207
215
  "editor.record.form.field.overviews": "Aperçus",
208
216
  "editor.record.form.field.recordUpdated": "Date de dernière révision",
209
217
  "editor.record.form.field.resourceUpdated": "Date de dernière révision",
@@ -245,6 +253,9 @@
245
253
  "editor.record.loadError.body": "La fiche n'a pas pu être chargée :",
246
254
  "editor.record.loadError.closeMessage": "Compris",
247
255
  "editor.record.loadError.title": "Erreur lors du chargement",
256
+ "editor.record.onlineResourceError.body": "Une erreur est survenue lors de l'ajout de la resource:",
257
+ "editor.record.onlineResourceError.closeMessage": "Compris",
258
+ "editor.record.onlineResourceError.title": "Erreur lors de l'ajout d'une ressource",
248
259
  "editor.record.placeKeywordWithoutLabel": "Localisation sans nom",
249
260
  "editor.record.publish": "Publier cette fiche",
250
261
  "editor.record.publishError.body": "La fiche n'a pas pu être publiée :",
@@ -283,7 +294,7 @@
283
294
  "input.file.orInputUrl": "ou",
284
295
  "input.file.selectFileLabel": "Sélectionnez un fichier ({sizeMB} Mo max.)",
285
296
  "input.file.uploadProgressCancel": "Annuler",
286
- "input.file.uploadProgressLabel": "Chargement en cours......",
297
+ "input.file.uploadProgressLabel": "Chargement en cours...",
287
298
  "input.image.altTextPlaceholder": "Texte alternatif de l'image",
288
299
  "input.image.delete": "Supprimer",
289
300
  "input.image.displayAltTextInput": "Texte alternatif",
@@ -365,7 +376,7 @@
365
376
  "record.metadata.api.form.reset": "Réinitialiser",
366
377
  "record.metadata.api.form.title": "Générer une URL personnalisée",
367
378
  "record.metadata.api.form.type": "Format en sortie",
368
- "record.metadata.author": "Auteur",
379
+ "record.metadata.author": "Modifié par",
369
380
  "record.metadata.catalog": "Catalogue",
370
381
  "record.metadata.contact": "Contact",
371
382
  "record.metadata.creation": "Date de création",
@@ -404,6 +415,8 @@
404
415
  "record.metadata.related": "Voir aussi",
405
416
  "record.metadata.sheet": "Fiche de métadonnées d'origine",
406
417
  "record.metadata.status": "Statut",
418
+ "record.metadata.status.notPublished": "Non publié",
419
+ "record.metadata.status.published": "Publié",
407
420
  "record.metadata.technical": "Informations techniques",
408
421
  "record.metadata.temporalExtent": "Etendue temporelle",
409
422
  "record.metadata.temporalExtent.fromDateToDate": "Du { start } au { end }",
@@ -414,7 +427,7 @@
414
427
  "record.metadata.type": "Donnée géographique",
415
428
  "record.metadata.uniqueId": "Identificateur de ressource unique",
416
429
  "record.metadata.updateFrequency": "Fréquence de mise à jour des données",
417
- "record.metadata.updatedOn": "Dernière mise à jour des informations sur les données",
430
+ "record.metadata.updatedOn": "Modifié le",
418
431
  "record.metadata.usage": "Licences et conditions d'utilisation",
419
432
  "record.metadata.userFeedbacks": "Questions / Réponses",
420
433
  "record.metadata.userFeedbacks.anonymousUser": "Pour rédiger un commentaire, veuillez vous identifier.",