geonetwork-ui 2.3.0-dev.c3722986 → 2.3.0-dev.c4b41b40
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/index.mjs +2 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +6 -2
- package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +1 -1
- package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +12 -1
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +36 -3
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +19 -7
- package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
- package/esm2022/libs/common/domain/src/lib/model/record/user-feedbacks.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/user/index.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +53 -2
- package/esm2022/libs/feature/editor/src/index.mjs +2 -2
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +6 -2
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +11 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +28 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +64 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +11 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +15 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +45 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +50 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +121 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +2 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +10 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +29 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -10
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +16 -1
- package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +1 -1
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +1 -1
- package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
- package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
- package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
- package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
- package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +4 -4
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +3 -2
- package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +22 -4
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +37 -10
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +22 -7
- package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +52 -17
- package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +18 -3
- package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
- package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/index.mjs +15 -15
- package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +16 -3
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +45 -0
- package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
- package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +34 -7
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +10 -7
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +59 -0
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +62 -0
- package/esm2022/libs/ui/inputs/src/index.mjs +16 -16
- package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +22 -0
- package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +7 -5
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +17 -8
- package/esm2022/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +29 -0
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +27 -4
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +19 -3
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +11 -28
- package/esm2022/libs/ui/layout/src/index.mjs +7 -5
- package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +76 -0
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +42 -18
- package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +18 -0
- package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +3 -8
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +2 -2
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +22 -1
- package/esm2022/translations/de.json +34 -0
- package/esm2022/translations/en.json +34 -0
- package/esm2022/translations/es.json +34 -0
- package/esm2022/translations/fr.json +34 -0
- package/esm2022/translations/it.json +34 -0
- package/esm2022/translations/nl.json +34 -0
- package/esm2022/translations/pt.json +34 -0
- package/fesm2022/geonetwork-ui.mjs +2797 -1712
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -1
- package/index.ts +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +6 -2
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +9 -6
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
- package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +15 -0
- package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/user/index.d.ts +2 -0
- package/libs/common/domain/src/lib/model/user/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -0
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +3 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/editor/src/index.d.ts +1 -1
- package/libs/feature/editor/src/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +39 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +8 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +16 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.d.ts +2 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
- package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.d.ts +12 -4
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.d.ts +3 -3
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +1 -1
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/fields.model.d.ts +1 -1
- package/libs/feature/notifications/src/index.d.ts +4 -0
- package/libs/feature/notifications/src/index.d.ts.map +1 -0
- package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
- package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
- package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
- package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
- package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
- package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
- package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
- package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +40 -6
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +24 -4
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +14 -4
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +8 -5
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +12 -9
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +14 -14
- 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/link-card/link-card.component.d.ts +3 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +13 -0
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
- package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +4 -2
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +16 -15
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +11 -0
- package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +22 -0
- package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/index.d.ts +15 -15
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts +9 -0
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +12 -0
- package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +7 -1
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +4 -1
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +35 -43
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
- package/libs/ui/layout/src/index.d.ts +6 -4
- package/libs/ui/layout/src/index.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +25 -0
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +13 -6
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +8 -0
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts +4 -5
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +18 -0
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +7 -1
- package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +1 -0
- package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +12 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +51 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +34 -7
- package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
- package/src/libs/common/domain/src/lib/model/record/user-feedbacks.model.ts +15 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +3 -0
- package/src/libs/common/fixtures/src/index.ts +8 -6
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +3 -3
- package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +83 -0
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +68 -1
- package/src/libs/feature/editor/src/index.ts +1 -1
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.ts +1 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.ts +4 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +8 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +64 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +15 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +20 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +44 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.ts +4 -1
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +1 -0
- package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +92 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +137 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.html +1 -0
- package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.ts +4 -4
- package/src/libs/feature/editor/src/lib/feature-editor.module.ts +9 -9
- package/src/libs/feature/editor/src/lib/fields.config.ts +15 -0
- package/src/libs/feature/editor/src/lib/models/fields.model.ts +1 -1
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
- package/src/libs/feature/notifications/src/index.ts +3 -0
- package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
- package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
- package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
- package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
- package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
- package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
- package/src/libs/feature/record/src/lib/feature-record.module.ts +5 -2
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -1
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +51 -6
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +82 -7
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +48 -8
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +81 -24
- package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +40 -10
- package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
- package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
- package/src/libs/ui/elements/src/index.ts +14 -14
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +38 -20
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +0 -5
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +0 -21
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -14
- package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
- package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
- package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +40 -4
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +5 -2
- package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +54 -0
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.css +0 -0
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +75 -0
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +63 -0
- package/src/libs/ui/inputs/src/index.ts +15 -15
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +11 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +16 -0
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +8 -1
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +13 -0
- package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.css +6 -0
- package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.html +26 -0
- package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts +32 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +29 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +16 -1
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +2 -21
- package/src/libs/ui/layout/src/index.ts +6 -4
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +23 -0
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +20 -0
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +84 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +7 -4
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +4 -4
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +45 -15
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +0 -0
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +18 -0
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +16 -0
- package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -2
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +1 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +21 -0
- package/tailwind.base.css +36 -0
- package/translations/de.json +34 -0
- package/translations/en.json +34 -0
- package/translations/es.json +34 -0
- package/translations/fr.json +34 -0
- package/translations/it.json +34 -0
- package/translations/nl.json +34 -0
- package/translations/pt.json +34 -0
- package/translations/sk.json +34 -0
- package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +0 -30
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +0 -11
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +0 -27
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +0 -11
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +0 -27
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +0 -49
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -11
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +0 -11
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +0 -76
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +0 -2
- package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +0 -10
- package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +0 -11
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +0 -1
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +0 -11
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +0 -15
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +0 -68
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +0 -80
- /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.d.ts +0 -0
- /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.d.ts +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.css +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.css +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.html +0 -0
- /package/src/libs/feature/editor/src/lib/{record-form/record-form.component.css → components/record-form/form-field/form-field-license/form-field-license.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.css +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib/form-field/form-field.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css} +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.ts +0 -0
- /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feature-notifications.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/notifications/src/lib/feature-notifications.module.ts"],"names":[],"mappings":";AAGA,qBAMa,0BAA0B;yCAA1B,0BAA0B;0CAA1B,0BAA0B;0CAA1B,0BAA0B;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notification.model.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/notifications/src/lib/notification.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,CAAA;IAC9C,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NotificationsService } from '../notifications.service';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NotificationsContainerComponent {
|
|
4
|
+
protected notificationsService: NotificationsService;
|
|
5
|
+
constructor(notificationsService: NotificationsService);
|
|
6
|
+
trackById(index: number, notification: {
|
|
7
|
+
id: number;
|
|
8
|
+
}): number;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsContainerComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsContainerComponent, "gn-ui-notifications-container", never, {}, {}, never, never, true, never>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=notifications-container.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notifications-container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;;AAU/D,qBAyBa,+BAA+B;IAC9B,SAAS,CAAC,oBAAoB,EAAE,oBAAoB;gBAA1C,oBAAoB,EAAE,oBAAoB;IAEhE,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE;yCAH1C,+BAA+B;2CAA/B,+BAA+B;CAM3C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { NotificationContent } from './notification.model';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
type NotificationWithIdentity = NotificationContent & {
|
|
5
|
+
id: number;
|
|
6
|
+
};
|
|
7
|
+
export declare class NotificationsService {
|
|
8
|
+
notifications$: BehaviorSubject<NotificationWithIdentity[]>;
|
|
9
|
+
showNotification(content: NotificationContent, timeoutMs?: number): void;
|
|
10
|
+
removeNotificationById(id: number): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=notifications.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notifications.service.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/notifications/src/lib/notifications.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAA;;AAEtC,KAAK,wBAAwB,GAAG,mBAAmB,GAAG;IAAE,EAAE,EAAE,MAAM,CAAA;CAAE,CAAA;AAEpE,qBAGa,oBAAoB;IAC/B,cAAc,8CAAsD;IAEpE,gBAAgB,CAAC,OAAO,EAAE,mBAAmB,EAAE,SAAS,CAAC,EAAE,MAAM;IASjE,sBAAsB,CAAC,EAAE,EAAE,MAAM;yCAZtB,oBAAoB;6CAApB,oBAAoB;CAiBhC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-record.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/feature-record.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"feature-record.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/feature-record.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AA6BA,qBAmCa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"map-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/map-view/map-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAEjB,SAAS,EACT,MAAM,EACP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EAEpB,eAAe,EACf,iBAAiB,EACjB,eAAe,EACf,eAAe,EAChB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAwB,SAAS,EAAE,MAAM,4CAA4C,CAAA;AAE5F,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EACL,eAAe,EAIf,UAAU,EAMX,MAAM,MAAM,CAAA;AASb,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAA;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;AAE/F,qBAMa,gBAAiB,YAAW,MAAM,EAAE,SAAS;IAsFtD,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,YAAY;IA3FtB,SAAS,EAAE,SAAS,CAAyB;IAC7C,SAAS,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAA;IAC5B,OAAO,CAAC,YAAY,CAAqB;IACzC,OAAO,CAAC,cAAc,CAAW;IAEjC,mBAAmB,oCAKlB;IAED,gBAAgB;;;SASf;IACD,kBAAkB,0BAAyB;IAE3C,OAAO,UAAQ;IACf,KAAK,MAAO;IAEZ,aAAa,kCAGiC;IAE9C,cAAc,oBAiBb;IAED,WAAW,8BA+BV;gBAGS,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,iBAAiB,EAC7B,QAAQ,EAAE,eAAe,EACzB,WAAW,EAAE,WAAW,EACxB,WAAW,EAAE,kBAAkB,EAC/B,SAAS,EAAE,iBAAiB,EAC5B,YAAY,EAAE,eAAe;IAGvC,WAAW,IAAI,IAAI;IAInB,QAAQ,IAAI,IAAI;IAWhB,kBAAkB,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,EAAE,GAAG,IAAI;IASvD,cAAc,IAAI,IAAI;IAOtB,gBAAgB,CACd,IAAI,EAAE,mBAAmB,GACxB,UAAU,CAAC,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"map-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/map-view/map-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAEjB,SAAS,EACT,MAAM,EACP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EAEpB,eAAe,EACf,iBAAiB,EACjB,eAAe,EACf,eAAe,EAChB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAwB,SAAS,EAAE,MAAM,4CAA4C,CAAA;AAE5F,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EACL,eAAe,EAIf,UAAU,EAMX,MAAM,MAAM,CAAA;AASb,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAA;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;AAE/F,qBAMa,gBAAiB,YAAW,MAAM,EAAE,SAAS;IAsFtD,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,YAAY;IA3FtB,SAAS,EAAE,SAAS,CAAyB;IAC7C,SAAS,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAA;IAC5B,OAAO,CAAC,YAAY,CAAqB;IACzC,OAAO,CAAC,cAAc,CAAW;IAEjC,mBAAmB,oCAKlB;IAED,gBAAgB;;;SASf;IACD,kBAAkB,0BAAyB;IAE3C,OAAO,UAAQ;IACf,KAAK,MAAO;IAEZ,aAAa,kCAGiC;IAE9C,cAAc,oBAiBb;IAED,WAAW,8BA+BV;gBAGS,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,iBAAiB,EAC7B,QAAQ,EAAE,eAAe,EACzB,WAAW,EAAE,WAAW,EACxB,WAAW,EAAE,kBAAkB,EAC/B,SAAS,EAAE,iBAAiB,EAC5B,YAAY,EAAE,eAAe;IAGvC,WAAW,IAAI,IAAI;IAInB,QAAQ,IAAI,IAAI;IAWhB,kBAAkB,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,EAAE,GAAG,IAAI;IASvD,cAAc,IAAI,IAAI;IAOtB,gBAAgB,CACd,IAAI,EAAE,mBAAmB,GACxB,UAAU,CAAC,oBAAoB,CAAC;IAiCnC,mBAAmB,CAAC,IAAI,EAAE,MAAM;yCAjKrB,gBAAgB;2CAAhB,gBAAgB;CAoK5B"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model';
|
|
2
|
-
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
2
|
+
import { CatalogRecord, UserFeedback } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
3
3
|
export declare const loadFullMetadata: import("@ngrx/store").ActionCreator<"[Metadata view] Load full metadata", (props: {
|
|
4
4
|
uuid: string;
|
|
5
5
|
}) => {
|
|
@@ -10,18 +10,19 @@ export declare const setIncompleteMetadata: import("@ngrx/store").ActionCreator<
|
|
|
10
10
|
}) => {
|
|
11
11
|
incomplete: Partial<CatalogRecord>;
|
|
12
12
|
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Set incomplete metadata">>;
|
|
13
|
-
export declare const
|
|
13
|
+
export declare const loadFullMetadataSuccess: import("@ngrx/store").ActionCreator<"[Metadata view] Load full metadata success", (props: {
|
|
14
14
|
full: CatalogRecord;
|
|
15
15
|
}) => {
|
|
16
16
|
full: CatalogRecord;
|
|
17
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full success">>;
|
|
18
|
-
export declare const
|
|
17
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full metadata success">>;
|
|
18
|
+
export declare const loadFullMetadataFailure: import("@ngrx/store").ActionCreator<"[Metadata view] Load full metadata failure", (props: {
|
|
19
19
|
otherError?: string;
|
|
20
20
|
notFound?: boolean;
|
|
21
21
|
}) => {
|
|
22
22
|
otherError?: string;
|
|
23
23
|
notFound?: boolean;
|
|
24
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full failure">>;
|
|
24
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full metadata failure">>;
|
|
25
|
+
export declare const closeMetadata: import("@ngrx/store").ActionCreator<"[Metadata view] close", () => import("@ngrx/store/src/models").TypedAction<"[Metadata view] close">>;
|
|
25
26
|
export declare const setRelated: import("@ngrx/store").ActionCreator<"[Metadata view] Set related records", (props: {
|
|
26
27
|
related: CatalogRecord[];
|
|
27
28
|
}) => {
|
|
@@ -32,5 +33,38 @@ export declare const setChartConfig: import("@ngrx/store").ActionCreator<"[Metad
|
|
|
32
33
|
}) => {
|
|
33
34
|
chartConfig: DatavizConfigurationModel;
|
|
34
35
|
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Set chart config">>;
|
|
35
|
-
export declare const
|
|
36
|
+
export declare const addUserFeedback: import("@ngrx/store").ActionCreator<"[Metadata view] Add UserFeedback", (props: {
|
|
37
|
+
userFeedback: UserFeedback;
|
|
38
|
+
}) => {
|
|
39
|
+
userFeedback: UserFeedback;
|
|
40
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback">>;
|
|
41
|
+
export declare const addUserFeedbackSuccess: import("@ngrx/store").ActionCreator<"[Metadata view] Add UserFeedback Success", (props: {
|
|
42
|
+
datasetUuid: string;
|
|
43
|
+
}) => {
|
|
44
|
+
datasetUuid: string;
|
|
45
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback Success">>;
|
|
46
|
+
export declare const addUserFeedbackFailure: import("@ngrx/store").ActionCreator<"[Metadata view] Add UserFeedback Failure", (props: {
|
|
47
|
+
otherError?: string;
|
|
48
|
+
notFound?: boolean;
|
|
49
|
+
}) => {
|
|
50
|
+
otherError?: string;
|
|
51
|
+
notFound?: boolean;
|
|
52
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback Failure">>;
|
|
53
|
+
export declare const loadUserFeedbacks: import("@ngrx/store").ActionCreator<"[Metadata view] Load UserFeedbacks", (props: {
|
|
54
|
+
datasetUuid: string;
|
|
55
|
+
}) => {
|
|
56
|
+
datasetUuid: string;
|
|
57
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks">>;
|
|
58
|
+
export declare const loadUserFeedbacksSuccess: import("@ngrx/store").ActionCreator<"[Metadata view] Load UserFeedbacks Success", (props: {
|
|
59
|
+
userFeedbacks: UserFeedback[];
|
|
60
|
+
}) => {
|
|
61
|
+
userFeedbacks: UserFeedback[];
|
|
62
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Success">>;
|
|
63
|
+
export declare const loadUserFeedbacksFailure: import("@ngrx/store").ActionCreator<"[Metadata view] Load UserFeedbacks Failure", (props: {
|
|
64
|
+
otherError?: string;
|
|
65
|
+
notFound?: boolean;
|
|
66
|
+
}) => {
|
|
67
|
+
otherError?: string;
|
|
68
|
+
notFound?: boolean;
|
|
69
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Failure">>;
|
|
36
70
|
//# sourceMappingURL=mdview.actions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mdview.actions.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAElI,OAAO,
|
|
1
|
+
{"version":3,"file":"mdview.actions.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAElI,OAAO,EACL,aAAa,EACb,YAAY,EACb,MAAM,2DAA2D,CAAA;AAKlE,eAAO,MAAM,gBAAgB;UAEb,MAAM;;UAAN,MAAM;uFACrB,CAAA;AAED,eAAO,MAAM,qBAAqB;gBAEZ,QAAQ,aAAa,CAAC;;gBAAtB,QAAQ,aAAa,CAAC;4FAC3C,CAAA;AAED,eAAO,MAAM,uBAAuB;UAEpB,aAAa;;UAAb,aAAa;+FAC5B,CAAA;AAED,eAAO,MAAM,uBAAuB;iBAEb,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;+FAChD,CAAA;AAED,eAAO,MAAM,aAAa,2IAAwC,CAAA;AAKlE,eAAO,MAAM,UAAU;aAEJ,aAAa,EAAE;;aAAf,aAAa,EAAE;wFACjC,CAAA;AAKD,eAAO,MAAM,cAAc;iBAEJ,yBAAyB;;iBAAzB,yBAAyB;qFAC/C,CAAA;AAKD,eAAO,MAAM,eAAe;kBAEJ,YAAY;;kBAAZ,YAAY;qFACnC,CAAA;AAED,eAAO,MAAM,sBAAsB;iBAEZ,MAAM;;iBAAN,MAAM;6FAC5B,CAAA;AAED,eAAO,MAAM,sBAAsB;iBAEZ,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;6FAChD,CAAA;AAED,eAAO,MAAM,iBAAiB;iBAEP,MAAM;;iBAAN,MAAM;uFAC5B,CAAA;AAED,eAAO,MAAM,wBAAwB;mBAEZ,YAAY,EAAE;;mBAAd,YAAY,EAAE;+FACtC,CAAA;AAED,eAAO,MAAM,wBAAwB;iBAEd,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;+FAChD,CAAA"}
|
|
@@ -1,19 +1,39 @@
|
|
|
1
1
|
import { Actions } from '@ngrx/effects';
|
|
2
2
|
import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface';
|
|
3
|
+
import { PlatformServiceInterface } from '../../../../../../libs/common/domain/src/lib/platform.service.interface';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class MdViewEffects {
|
|
5
6
|
private actions$;
|
|
6
7
|
private recordsRepository;
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
private platformServiceInterface;
|
|
9
|
+
constructor(actions$: Actions, recordsRepository: RecordsRepositoryInterface, platformServiceInterface: PlatformServiceInterface);
|
|
10
|
+
loadFullMetadata$: import("rxjs").Observable<({
|
|
9
11
|
full: import("../../../../../common/domain/src/lib/model/record").CatalogRecord;
|
|
10
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full success">) | ({
|
|
12
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full metadata success">) | ({
|
|
11
13
|
otherError?: string;
|
|
12
14
|
notFound?: boolean;
|
|
13
|
-
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
15
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full metadata failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
14
16
|
loadRelatedRecords$: import("rxjs").Observable<{
|
|
15
17
|
related: import("../../../../../common/domain/src/lib/model/record").CatalogRecord[];
|
|
16
18
|
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Set related records">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
19
|
+
loadUserFeedbacks$: import("rxjs").Observable<({
|
|
20
|
+
userFeedbacks: import("../../../../../common/domain/src/lib/model/record").UserFeedback[];
|
|
21
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Success">) | ({
|
|
22
|
+
otherError?: string;
|
|
23
|
+
notFound?: boolean;
|
|
24
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
25
|
+
reloadUserFeedbacks$: import("rxjs").Observable<({
|
|
26
|
+
userFeedbacks: import("../../../../../common/domain/src/lib/model/record").UserFeedback[];
|
|
27
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Success">) | ({
|
|
28
|
+
otherError?: string;
|
|
29
|
+
notFound?: boolean;
|
|
30
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
31
|
+
addUserFeedback$: import("rxjs").Observable<({
|
|
32
|
+
datasetUuid: string;
|
|
33
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback Success">) | ({
|
|
34
|
+
otherError?: string;
|
|
35
|
+
notFound?: boolean;
|
|
36
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
17
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<MdViewEffects, never>;
|
|
18
38
|
static ɵprov: i0.ɵɵInjectableDeclaration<MdViewEffects>;
|
|
19
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mdview.effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAA;AAI7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;;
|
|
1
|
+
{"version":3,"file":"mdview.effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAA;AAI7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AACjI,OAAO,EAAE,wBAAwB,EAAE,MAAM,yEAAyE,CAAA;;AAElH,qBACa,aAAa;IAEtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,wBAAwB;gBAFxB,QAAQ,EAAE,OAAO,EACjB,iBAAiB,EAAE,0BAA0B,EAC7C,wBAAwB,EAAE,wBAAwB;IAM5D,iBAAiB;;;;;oJAgBhB;IAKD,mBAAmB;;4IASlB;IAKD,kBAAkB;;;;;oJAkBjB;IAED,oBAAoB;;;;;oJAkBnB;IAED,gBAAgB;;;;;kJAsBf;yCA3GU,aAAa;6CAAb,aAAa;CA4GzB"}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { Store } from '@ngrx/store';
|
|
2
2
|
import { LinkClassifierService } from '../../../../../../libs/util/shared/src';
|
|
3
3
|
import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model';
|
|
4
|
-
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
4
|
+
import { CatalogRecord, UserFeedback } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
5
|
+
import { AvatarServiceInterface } from '../../../../../../libs/api/repository/src';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class MdViewFacade {
|
|
7
8
|
private store;
|
|
8
9
|
private linkClassifier;
|
|
10
|
+
private avatarService;
|
|
11
|
+
constructor(store: Store, linkClassifier: LinkClassifierService, avatarService: AvatarServiceInterface);
|
|
9
12
|
isPresent$: import("rxjs").Observable<boolean>;
|
|
10
|
-
|
|
13
|
+
isMetadataLoading$: import("rxjs").Observable<boolean>;
|
|
11
14
|
metadata$: import("rxjs").Observable<Partial<CatalogRecord>>;
|
|
12
15
|
isIncomplete$: import("rxjs").Observable<boolean>;
|
|
13
16
|
error$: import("rxjs").Observable<{
|
|
@@ -24,7 +27,9 @@ export declare class MdViewFacade {
|
|
|
24
27
|
geoDataLinks$: import("rxjs").Observable<import("../../../../../common/domain/src/lib/model/record/metadata.model").DatasetDistribution[]>;
|
|
25
28
|
landingPageLinks$: import("rxjs").Observable<URL[]>;
|
|
26
29
|
otherLinks$: import("rxjs").Observable<import("../../../../../common/domain/src/lib/model/record/metadata.model").DatasetDistribution[]>;
|
|
27
|
-
|
|
30
|
+
userFeedbacks$: import("rxjs").Observable<UserFeedback[]>;
|
|
31
|
+
isAllUserFeedbackLoading$: import("rxjs").Observable<boolean>;
|
|
32
|
+
isAddUserFeedbackLoading$: import("rxjs").Observable<boolean>;
|
|
28
33
|
/**
|
|
29
34
|
* This will show an incomplete record (e.g. from a search result) as a preview
|
|
30
35
|
* Note: the full record will not be loaded automatically; use the `loadFull` method for that
|
|
@@ -34,8 +39,13 @@ export declare class MdViewFacade {
|
|
|
34
39
|
* This will trigger the load of a full metadata record
|
|
35
40
|
*/
|
|
36
41
|
loadFull(uuid: string): void;
|
|
37
|
-
|
|
42
|
+
closeMetadata(): void;
|
|
38
43
|
setChartConfig(chartConfig: DatavizConfigurationModel): void;
|
|
44
|
+
/**
|
|
45
|
+
* UserFeedbacks
|
|
46
|
+
*/
|
|
47
|
+
addUserFeedback(userFeedback: UserFeedback): void;
|
|
48
|
+
loadUserFeedbacks(datasetUuid: string): void;
|
|
39
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<MdViewFacade, never>;
|
|
40
50
|
static ɵprov: i0.ɵɵInjectableDeclaration<MdViewFacade>;
|
|
41
51
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mdview.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAI3C,OAAO,EAAE,qBAAqB,EAAa,MAAM,wCAAwC,CAAA;AACzF,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,
|
|
1
|
+
{"version":3,"file":"mdview.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAI3C,OAAO,EAAE,qBAAqB,EAAa,MAAM,wCAAwC,CAAA;AACzF,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EACL,aAAa,EACb,YAAY,EACb,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,sBAAsB,EAAE,MAAM,2CAA2C,CAAA;;AAElF,qBAOa,YAAY;IAErB,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,aAAa;gBAFb,KAAK,EAAE,KAAK,EACZ,cAAc,EAAE,qBAAqB,EACrC,aAAa,EAAE,sBAAsB;IAG/C,UAAU,qCAGT;IAED,kBAAkB,qCAEjB;IAED,SAAS,oDAGR;IAED,aAAa,qCAGZ;IAED,MAAM;;;OAA4D;IAElE,QAAQ,6CAAsD;IAE9D,YAAY,uDAA0D;IAEtE,SAAS,8HAER;IAED,SAAS,8HAIR;IAED,YAAY,8HAMX;IAED,cAAc,8HAMb;IAED,UAAU,8HAIT;IAED,aAAa,8HAMZ;IAED,iBAAiB,mCAEhB;IAED,WAAW,8HAMV;IAED,cAAc,4CAA4D;IAC1E,yBAAyB,qCAExB;IACD,yBAAyB,qCAExB;IAED;;;OAGG;IACH,qBAAqB,CAAC,UAAU,EAAE,aAAa;IAI/C;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM;IAIrB,aAAa;IAIb,cAAc,CAAC,WAAW,EAAE,yBAAyB;IAIrD;;OAEG;IACH,eAAe,CAAC,YAAY,EAAE,YAAY;IAI1C,iBAAiB,CAAC,WAAW,EAAE,MAAM;yCA1H1B,YAAY;6CAAZ,YAAY;CA6HxB"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Action } from '@ngrx/store';
|
|
2
2
|
import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model';
|
|
3
|
-
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
4
|
-
export declare const
|
|
5
|
-
export interface
|
|
3
|
+
import { CatalogRecord, UserFeedback } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
4
|
+
export declare const METADATA_VIEW_FEATURE_STATE_KEY = "metadataView";
|
|
5
|
+
export interface MetadataViewState {
|
|
6
6
|
loadingFull: boolean;
|
|
7
7
|
error: {
|
|
8
8
|
notFound?: boolean;
|
|
@@ -10,8 +10,11 @@ export interface MdViewState {
|
|
|
10
10
|
} | null;
|
|
11
11
|
metadata?: Partial<CatalogRecord>;
|
|
12
12
|
related?: CatalogRecord[];
|
|
13
|
+
userFeedbacks?: UserFeedback[];
|
|
14
|
+
allUserFeedbacksLoading: boolean;
|
|
15
|
+
addUserFeedbackLoading: boolean;
|
|
13
16
|
chartConfig?: DatavizConfigurationModel;
|
|
14
17
|
}
|
|
15
|
-
export declare const
|
|
16
|
-
export declare function reducer(
|
|
18
|
+
export declare const initialMetadataViewState: MetadataViewState;
|
|
19
|
+
export declare function reducer(metadataViewState: MetadataViewState | undefined, action: Action): MetadataViewState;
|
|
17
20
|
//# sourceMappingURL=mdview.reducer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mdview.reducer.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAqB,MAAM,aAAa,CAAA;AAEvD,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,
|
|
1
|
+
{"version":3,"file":"mdview.reducer.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAqB,MAAM,aAAa,CAAA;AAEvD,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EACL,aAAa,EACb,YAAY,EACb,MAAM,2DAA2D,CAAA;AAElE,eAAO,MAAM,+BAA+B,iBAAiB,CAAA;AAE7D,MAAM,WAAW,iBAAiB;IAChC,WAAW,EAAE,OAAO,CAAA;IACpB,KAAK,EAAE;QAAE,QAAQ,CAAC,EAAE,OAAO,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAA;IACzD,QAAQ,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IACjC,OAAO,CAAC,EAAE,aAAa,EAAE,CAAA;IACzB,aAAa,CAAC,EAAE,YAAY,EAAE,CAAA;IAC9B,uBAAuB,EAAE,OAAO,CAAA;IAChC,sBAAsB,EAAE,OAAO,CAAA;IAC/B,WAAW,CAAC,EAAE,yBAAyB,CAAA;CACxC;AAED,eAAO,MAAM,wBAAwB,EAAE,iBAKtC,CAAA;AAsFD,wBAAgB,OAAO,CACrB,iBAAiB,EAAE,iBAAiB,GAAG,SAAS,EAChD,MAAM,EAAE,MAAM,qBAGf"}
|
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const getMdViewState: import("@ngrx/store").MemoizedSelector<object,
|
|
3
|
-
export declare const getMetadataUuid: import("@ngrx/store").MemoizedSelector<object, string, (s1:
|
|
4
|
-
export declare const getMetadata: import("@ngrx/store").MemoizedSelector<object, Partial<import("../../../../../common/domain/src/lib/model/record").CatalogRecord>, (s1:
|
|
5
|
-
export declare const getMetadataIsIncomplete: import("@ngrx/store").MemoizedSelector<object, boolean, (s1:
|
|
6
|
-
export declare const getMetadataIsLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1:
|
|
1
|
+
import { MetadataViewState } from './mdview.reducer';
|
|
2
|
+
export declare const getMdViewState: import("@ngrx/store").MemoizedSelector<object, MetadataViewState, import("@ngrx/store").DefaultProjectorFn<MetadataViewState>>;
|
|
3
|
+
export declare const getMetadataUuid: import("@ngrx/store").MemoizedSelector<object, string, (s1: MetadataViewState) => string>;
|
|
4
|
+
export declare const getMetadata: import("@ngrx/store").MemoizedSelector<object, Partial<import("../../../../../common/domain/src/lib/model/record").CatalogRecord>, (s1: MetadataViewState) => Partial<import("../../../../../common/domain/src/lib/model/record").CatalogRecord>>;
|
|
5
|
+
export declare const getMetadataIsIncomplete: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MetadataViewState) => boolean>;
|
|
6
|
+
export declare const getMetadataIsLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MetadataViewState) => boolean>;
|
|
7
7
|
export declare const getMetadataError: import("@ngrx/store").MemoizedSelector<object, {
|
|
8
8
|
notFound?: boolean;
|
|
9
9
|
otherError?: string;
|
|
10
|
-
}, (s1:
|
|
10
|
+
}, (s1: MetadataViewState) => {
|
|
11
11
|
notFound?: boolean;
|
|
12
12
|
otherError?: string;
|
|
13
13
|
}>;
|
|
14
|
-
export declare const getRelated: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/record").CatalogRecord[], (s1:
|
|
15
|
-
export declare const getChartConfig: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/dataviz/dataviz-configuration.model").DatavizConfigurationModel, (s1:
|
|
14
|
+
export declare const getRelated: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/record").CatalogRecord[], (s1: MetadataViewState) => import("../../../../../common/domain/src/lib/model/record").CatalogRecord[]>;
|
|
15
|
+
export declare const getChartConfig: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/dataviz/dataviz-configuration.model").DatavizConfigurationModel, (s1: MetadataViewState) => import("../../../../../common/domain/src/lib/model/dataviz/dataviz-configuration.model").DatavizConfigurationModel>;
|
|
16
|
+
export declare const getUserFeedbacks: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/record").UserFeedback[], (s1: MetadataViewState) => import("../../../../../common/domain/src/lib/model/record").UserFeedback[]>;
|
|
17
|
+
export declare const getAllUserFeedbacksLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MetadataViewState) => boolean>;
|
|
18
|
+
export declare const getAddUserFeedbacksLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MetadataViewState) => boolean>;
|
|
16
19
|
//# sourceMappingURL=mdview.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mdview.selectors.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.selectors.ts"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"mdview.selectors.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAClB,MAAM,kBAAkB,CAAA;AAEzB,eAAO,MAAM,cAAc,gIAE1B,CAAA;AAKD,eAAO,MAAM,eAAe,2FAI3B,CAAA;AACD,eAAO,MAAM,WAAW,mPAGvB,CAAA;AACD,eAAO,MAAM,uBAAuB,6FAGnC,CAAA;AACD,eAAO,MAAM,oBAAoB,6FAGhC,CAAA;AACD,eAAO,MAAM,gBAAgB;;;;;;EAG5B,CAAA;AAKD,eAAO,MAAM,UAAU,qOAGtB,CAAA;AAKD,eAAO,MAAM,cAAc,mTAG1B,CAAA;AAKD,eAAO,MAAM,gBAAgB,mOAG5B,CAAA;AACD,eAAO,MAAM,0BAA0B,6FAGtC,CAAA;AACD,eAAO,MAAM,0BAA0B,6FAGtC,CAAA"}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
export * from './lib/ui-elements.module';
|
|
2
|
-
export * from './lib/metadata-info/metadata-info.component';
|
|
3
|
-
export * from './lib/metadata-contact/metadata-contact.component';
|
|
4
|
-
export * from './lib/metadata-catalog/metadata-catalog.component';
|
|
5
|
-
export * from './lib/metadata-quality/metadata-quality.component';
|
|
6
|
-
export * from './lib/metadata-quality-item/metadata-quality-item.component';
|
|
7
|
-
export * from './lib/search-results-error/search-results-error.component';
|
|
8
|
-
export * from './lib/thumbnail/thumbnail.component';
|
|
9
|
-
export * from './lib/content-ghost/content-ghost.component';
|
|
10
|
-
export * from './lib/pagination-buttons/pagination-buttons.component';
|
|
11
1
|
export * from './lib/api-card/api-card.component';
|
|
12
2
|
export * from './lib/avatar/avatar.component';
|
|
13
3
|
export * from './lib/content-ghost/content-ghost.component';
|
|
14
4
|
export * from './lib/download-item/download-item.component';
|
|
15
5
|
export * from './lib/downloads-list/downloads-list.component';
|
|
6
|
+
export * from './lib/image-overlay-preview/image-overlay-preview.component';
|
|
16
7
|
export * from './lib/link-card/link-card.component';
|
|
8
|
+
export * from './lib/markdown-editor/markdown-editor.component';
|
|
9
|
+
export * from './lib/markdown-parser/markdown-parser.component';
|
|
10
|
+
export * from './lib/max-lines/max-lines.component';
|
|
11
|
+
export * from './lib/metadata-catalog/metadata-catalog.component';
|
|
12
|
+
export * from './lib/metadata-contact/metadata-contact.component';
|
|
13
|
+
export * from './lib/metadata-info/metadata-info.component';
|
|
14
|
+
export * from './lib/metadata-quality-item/metadata-quality-item.component';
|
|
15
|
+
export * from './lib/metadata-quality/metadata-quality.component';
|
|
16
|
+
export * from './lib/pagination-buttons/pagination-buttons.component';
|
|
17
17
|
export * from './lib/pagination/pagination.component';
|
|
18
|
+
export * from './lib/record-api-form/record-api-form.component';
|
|
18
19
|
export * from './lib/related-record-card/related-record-card.component';
|
|
19
20
|
export * from './lib/search-results-error/search-results-error.component';
|
|
21
|
+
export * from './lib/thumbnail/thumbnail.component';
|
|
22
|
+
export * from './lib/ui-elements.module';
|
|
20
23
|
export * from './lib/user-preview/user-preview.component';
|
|
21
|
-
export * from './lib/
|
|
22
|
-
export * from './lib/record-api-form/record-api-form.component';
|
|
23
|
-
export * from './lib/markdown-parser/markdown-parser.component';
|
|
24
|
-
export * from './lib/image-overlay-preview/image-overlay-preview.component';
|
|
24
|
+
export * from './lib/notification/notification.component';
|
|
25
25
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/elements/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/elements/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAA;AACjD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6CAA6C,CAAA;AAC3D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,6DAA6D,CAAA;AAC3E,cAAc,qCAAqC,CAAA;AACnD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iDAAiD,CAAA;AAC/D,cAAc,qCAAqC,CAAA;AACnD,cAAc,mDAAmD,CAAA;AACjE,cAAc,mDAAmD,CAAA;AACjE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6DAA6D,CAAA;AAC3E,cAAc,mDAAmD,CAAA;AACjE,cAAc,uDAAuD,CAAA;AACrE,cAAc,uCAAuC,CAAA;AACrD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,yDAAyD,CAAA;AACvE,cAAc,2DAA2D,CAAA;AACzE,cAAc,qCAAqC,CAAA;AACnD,cAAc,0BAA0B,CAAA;AACxC,cAAc,2CAA2C,CAAA;AACzD,cAAc,2CAA2C,CAAA"}
|
|
@@ -14,7 +14,7 @@ export declare class DownloadsListComponent {
|
|
|
14
14
|
isFilterActive(filter: FilterFormat): boolean;
|
|
15
15
|
getFilterFormatTitle(format: FilterFormat): any;
|
|
16
16
|
isLinkOfFormat(link: DatasetDistribution, format: FilterFormat): boolean;
|
|
17
|
-
getLinkFormat(link: DatasetDistribution): "json" | "pdf" | "geojson" | "svg" | "csv" | "excel" | "shp" | "gml" | "kml" | "gpkg" | "zip" | "jpg" | "dxf";
|
|
17
|
+
getLinkFormat(link: DatasetDistribution): "json" | "html" | "pdf" | "geojson" | "svg" | "csv" | "excel" | "shp" | "gml" | "kml" | "gpkg" | "zip" | "jpg" | "dxf" | "fgb" | "jsonfg";
|
|
18
18
|
getLinkColor(link: DatasetDistribution): string;
|
|
19
19
|
isFromWfs(link: DatasetDistribution): boolean;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DownloadsListComponent, never>;
|
|
@@ -2,7 +2,9 @@ import { DatasetDistribution } from '../../../../../../libs/common/domain/src/li
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class LinkCardComponent {
|
|
4
4
|
link: DatasetDistribution;
|
|
5
|
+
compact: boolean;
|
|
6
|
+
get title(): string;
|
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<LinkCardComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LinkCardComponent, "gn-ui-link-card", never, { "link": { "alias": "link"; "required": false; }; }, {}, never, never,
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkCardComponent, "gn-ui-link-card", never, { "link": { "alias": "link"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
9
|
}
|
|
8
10
|
//# sourceMappingURL=link-card.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"link-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/link-card/link-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;
|
|
1
|
+
{"version":3,"file":"link-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/link-card/link-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;AAI/F,qBAQa,iBAAiB;IACnB,IAAI,EAAE,mBAAmB,CAAA;IACzB,OAAO,UAAQ;IAExB,IAAI,KAAK,WAKR;yCATU,iBAAiB;2CAAjB,iBAAiB;CAU7B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MarkdownEditorComponent {
|
|
4
|
+
preview: boolean;
|
|
5
|
+
helperText?: string;
|
|
6
|
+
placeholder: string;
|
|
7
|
+
textContent: string;
|
|
8
|
+
textContentChanged: EventEmitter<string>;
|
|
9
|
+
textContentChangedHandler(textContent: string): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MarkdownEditorComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownEditorComponent, "gn-ui-markdown-editor", never, { "preview": { "alias": "preview"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "textContent": { "alias": "textContent"; "required": false; }; }, { "textContentChanged": "textContentChanged"; }, never, never, true, never>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=markdown-editor.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"markdown-editor.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAQtB,qBAiBa,uBAAuB;IACzB,OAAO,UAAQ;IACf,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,WAAW,EAAE,MAAM,CAAA;IACnB,WAAW,EAAE,MAAM,CAAA;IAClB,kBAAkB,EAAE,YAAY,CAAC,MAAM,CAAC,CACtB;IAE5B,yBAAyB,CAAC,WAAW,EAAE,MAAM;yCARlC,uBAAuB;2CAAvB,uBAAuB;CAYnC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NotificationComponent {
|
|
4
|
+
type: 'info' | 'warning' | 'error' | 'success';
|
|
5
|
+
title: string;
|
|
6
|
+
text: string;
|
|
7
|
+
closeMessage?: string;
|
|
8
|
+
notificationClose: EventEmitter<void>;
|
|
9
|
+
handleClose(event?: Event): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "gn-ui-notification", never, { "type": { "alias": "type"; "required": false; }; "title": { "alias": "title"; "required": false; }; "text": { "alias": "text"; "required": false; }; "closeMessage": { "alias": "closeMessage"; "required": false; }; }, { "notificationClose": "notificationClose"; }, never, never, true, never>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=notification.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notification.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/notification/notification.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAKtB,qBAQa,qBAAqB;IACvB,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,CAAS;IACvD,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;IACpB,iBAAiB,qBAA2B;IAEtD,WAAW,CAAC,KAAK,CAAC,EAAE,KAAK;yCAPd,qBAAqB;2CAArB,qBAAqB;CAWjC"}
|
|
@@ -7,9 +7,9 @@ export declare class RecordApiFormComponent {
|
|
|
7
7
|
limit$: BehaviorSubject<string>;
|
|
8
8
|
format$: BehaviorSubject<string>;
|
|
9
9
|
apiBaseUrl: string;
|
|
10
|
-
|
|
11
|
-
label: string;
|
|
10
|
+
outputFormats: {
|
|
12
11
|
value: string;
|
|
12
|
+
label: string;
|
|
13
13
|
}[];
|
|
14
14
|
apiQueryUrl$: import("rxjs").Observable<any>;
|
|
15
15
|
noLimitChecked$: import("rxjs").Observable<boolean>;
|
|
@@ -18,6 +18,8 @@ export declare class RecordApiFormComponent {
|
|
|
18
18
|
setLimit(value: string): void;
|
|
19
19
|
setFormat(value: string | unknown): void;
|
|
20
20
|
resetUrl(): void;
|
|
21
|
+
parseOutputFormats(): void;
|
|
22
|
+
getOutputFormats(url: any): Promise<import("@camptocamp/ogc-client").OgcApiCollectionInfo>;
|
|
21
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordApiFormComponent, never>;
|
|
22
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordApiFormComponent, "gn-ui-record-api-form", never, { "apiLink": { "alias": "apiLink"; "required": false; }; }, {}, never, never, false, never>;
|
|
23
25
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"record-api-form.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"record-api-form.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AAEtG,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;;AAO1D,qBAMa,sBAAsB;IACjC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EAKrD;IACD,OAAO,0BAA0B;IACjC,MAAM,0BAA0B;IAChC,OAAO,0BAA0B;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,aAAa;;;QAAqC;IAClD,YAAY,iCAiBX;IACD,eAAe,qCAEd;IAED,aAAa,oCAEZ;IAED,SAAS,CAAC,KAAK,EAAE,MAAM;IAIvB,QAAQ,CAAC,KAAK,EAAE,MAAM;IAKtB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAIjC,QAAQ;IAMR,kBAAkB;IA6BZ,gBAAgB,CAAC,GAAG,KAAA;yCAtFf,sBAAsB;2CAAtB,sBAAsB;CA2FlC"}
|
|
@@ -4,20 +4,20 @@ import * as i2 from "./content-ghost/content-ghost.component";
|
|
|
4
4
|
import * as i3 from "./download-item/download-item.component";
|
|
5
5
|
import * as i4 from "./downloads-list/downloads-list.component";
|
|
6
6
|
import * as i5 from "./api-card/api-card.component";
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./metadata-
|
|
10
|
-
import * as i9 from "./metadata-
|
|
11
|
-
import * as i10 from "./metadata-quality/metadata-quality.component";
|
|
12
|
-
import * as i11 from "./
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "./
|
|
16
|
-
import * as i15 from "./
|
|
17
|
-
import * as i16 from "./
|
|
18
|
-
import * as i17 from "./
|
|
19
|
-
import * as i18 from "./
|
|
20
|
-
import * as i19 from "./
|
|
7
|
+
import * as i6 from "./related-record-card/related-record-card.component";
|
|
8
|
+
import * as i7 from "./metadata-contact/metadata-contact.component";
|
|
9
|
+
import * as i8 from "./metadata-catalog/metadata-catalog.component";
|
|
10
|
+
import * as i9 from "./metadata-quality/metadata-quality.component";
|
|
11
|
+
import * as i10 from "./metadata-quality-item/metadata-quality-item.component";
|
|
12
|
+
import * as i11 from "./search-results-error/search-results-error.component";
|
|
13
|
+
import * as i12 from "./pagination/pagination.component";
|
|
14
|
+
import * as i13 from "./avatar/avatar.component";
|
|
15
|
+
import * as i14 from "./user-preview/user-preview.component";
|
|
16
|
+
import * as i15 from "./metadata-info/linkify.directive";
|
|
17
|
+
import * as i16 from "./pagination-buttons/pagination-buttons.component";
|
|
18
|
+
import * as i17 from "./max-lines/max-lines.component";
|
|
19
|
+
import * as i18 from "./record-api-form/record-api-form.component";
|
|
20
|
+
import * as i19 from "./user-feedback-item/user-feedback-item.component";
|
|
21
21
|
import * as i20 from "./image-overlay-preview/image-overlay-preview.component";
|
|
22
22
|
import * as i21 from "@angular/common";
|
|
23
23
|
import * as i22 from "@angular/material/icon";
|
|
@@ -31,9 +31,10 @@ import * as i29 from "../../../inputs/src/lib/ui-inputs.module";
|
|
|
31
31
|
import * as i30 from "@angular/forms";
|
|
32
32
|
import * as i31 from "./markdown-parser/markdown-parser.component";
|
|
33
33
|
import * as i32 from "./thumbnail/thumbnail.component";
|
|
34
|
+
import * as i33 from "./user-feedback-item/time-since.pipe";
|
|
34
35
|
export declare class UiElementsModule {
|
|
35
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiElementsModule, never>;
|
|
36
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.
|
|
37
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.RelatedRecordCardComponent, typeof i7.MetadataContactComponent, typeof i8.MetadataCatalogComponent, typeof i9.MetadataQualityComponent, typeof i10.MetadataQualityItemComponent, typeof i11.SearchResultsErrorComponent, typeof i12.PaginationComponent, typeof i13.AvatarComponent, typeof i14.UserPreviewComponent, typeof i15.GnUiLinkifyDirective, typeof i16.PaginationButtonsComponent, typeof i17.MaxLinesComponent, typeof i18.RecordApiFormComponent, typeof i19.UserFeedbackItemComponent, typeof i20.ImageOverlayPreviewComponent], [typeof i21.CommonModule, typeof i22.MatIconModule, typeof i23.MatTooltipModule, typeof i24.UiWidgetsModule, typeof i25.UiLayoutModule, typeof i26.TranslateModule, typeof i27.UtilSharedModule, typeof i28.RouterModule, typeof i29.UiInputsModule, typeof i30.FormsModule, typeof i21.NgOptimizedImage, typeof i31.MarkdownParserComponent, typeof i32.ThumbnailComponent, typeof i33.TimeSincePipe], [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.RelatedRecordCardComponent, typeof i7.MetadataContactComponent, typeof i8.MetadataCatalogComponent, typeof i9.MetadataQualityComponent, typeof i10.MetadataQualityItemComponent, typeof i11.SearchResultsErrorComponent, typeof i12.PaginationComponent, typeof i32.ThumbnailComponent, typeof i13.AvatarComponent, typeof i14.UserPreviewComponent, typeof i16.PaginationButtonsComponent, typeof i17.MaxLinesComponent, typeof i18.RecordApiFormComponent, typeof i31.MarkdownParserComponent, typeof i19.UserFeedbackItemComponent, typeof i20.ImageOverlayPreviewComponent]>;
|
|
37
38
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiElementsModule>;
|
|
38
39
|
}
|
|
39
40
|
//# sourceMappingURL=ui-elements.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCA,qBA+Da,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TimeSincePipe implements PipeTransform {
|
|
5
|
+
private translate;
|
|
6
|
+
constructor(translate: TranslateService);
|
|
7
|
+
transform(value: Date): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimeSincePipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TimeSincePipe, "timeSince", true>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=time-since.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"time-since.pipe.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAA;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAItD,qBAIa,aAAc,YAAW,aAAa;IACrC,OAAO,CAAC,SAAS;gBAAT,SAAS,EAAE,gBAAgB;IAE/C,SAAS,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM;yCAHnB,aAAa;uCAAb,aAAa;CA4CzB"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { UserFeedback, UserFeedbackViewModel } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
3
|
+
import { UserModel } from '../../../../../../libs/common/domain/src/lib/model/user';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class UserFeedbackItemComponent implements OnInit {
|
|
6
|
+
userFeedbackParent: UserFeedbackViewModel;
|
|
7
|
+
userFeedBacksAnswers: UserFeedbackViewModel[];
|
|
8
|
+
isActiveUserEditor: boolean;
|
|
9
|
+
activeUser: UserModel;
|
|
10
|
+
isLastComment: boolean;
|
|
11
|
+
isAddUserFeedbackLoading: boolean;
|
|
12
|
+
newUserFeedbackAnswer: EventEmitter<UserFeedback>;
|
|
13
|
+
isAnAnswer: boolean;
|
|
14
|
+
newAnswer: string;
|
|
15
|
+
isAnswerEmpty: boolean;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
onNewAnswerValueChange(): void;
|
|
18
|
+
publishNewAnswer(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserFeedbackItemComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserFeedbackItemComponent, "gn-ui-user-feedback-item", never, { "userFeedbackParent": { "alias": "userFeedbackParent"; "required": false; }; "userFeedBacksAnswers": { "alias": "userFeedBacksAnswers"; "required": false; }; "isActiveUserEditor": { "alias": "isActiveUserEditor"; "required": false; }; "activeUser": { "alias": "activeUser"; "required": false; }; "isLastComment": { "alias": "isLastComment"; "required": false; }; "isAddUserFeedbackLoading": { "alias": "isAddUserFeedbackLoading"; "required": false; }; }, { "newUserFeedbackAnswer": "newUserFeedbackAnswer"; }, never, never, false, never>;
|
|
21
|
+
}
|
|
22
|
+
//# sourceMappingURL=user-feedback-item.component.d.ts.map
|