geonetwork-ui 2.4.1-dev.a28bdabc1 → 2.4.1-dev.bf3be28aa

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 (42) hide show
  1. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +4 -4
  2. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +10 -57
  3. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +23 -36
  4. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +3 -4
  5. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +3 -3
  6. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -40
  7. package/esm2022/translations/de.json +0 -2
  8. package/esm2022/translations/en.json +0 -2
  9. package/esm2022/translations/es.json +0 -2
  10. package/esm2022/translations/fr.json +0 -2
  11. package/esm2022/translations/it.json +0 -2
  12. package/esm2022/translations/nl.json +0 -2
  13. package/esm2022/translations/pt.json +0 -2
  14. package/fesm2022/geonetwork-ui.mjs +38 -150
  15. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  16. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +5 -16
  17. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
  18. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +4 -4
  19. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  20. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +1 -1
  21. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -1
  22. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  23. package/libs/util/shared/src/lib/links/link-utils.d.ts +1 -2
  24. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  25. package/package.json +1 -1
  26. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +3 -3
  27. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +7 -38
  28. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +3 -62
  29. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +1 -1
  30. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +19 -31
  31. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +9 -11
  32. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +2 -3
  33. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +2 -2
  34. package/src/libs/util/shared/src/lib/links/link-utils.ts +1 -51
  35. package/translations/de.json +0 -2
  36. package/translations/en.json +0 -2
  37. package/translations/es.json +0 -2
  38. package/translations/fr.json +0 -2
  39. package/translations/it.json +0 -2
  40. package/translations/nl.json +0 -2
  41. package/translations/pt.json +0 -2
  42. package/translations/sk.json +0 -2
@@ -1,37 +1,26 @@
1
- import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit } from '@angular/core';
1
+ import { EventEmitter, OnChanges } from '@angular/core';
2
2
  import { DatasetServiceDistribution, ServiceProtocol } from '../../../../../../../libs/common/domain/src/lib/model/record';
3
- import { DropdownChoice } from '../../../../../../../libs/ui/inputs/src';
4
3
  import * as i0 from "@angular/core";
5
- export declare class OnlineServiceResourceInputComponent implements OnChanges, OnInit {
6
- private cdr;
7
- service: DatasetServiceDistribution;
4
+ export declare class OnlineServiceResourceInputComponent implements OnChanges {
5
+ service: Omit<DatasetServiceDistribution, 'url'>;
8
6
  protocolHint?: string;
9
7
  disabled?: boolean;
10
- modifyMode?: boolean;
11
8
  urlChange: EventEmitter<string>;
12
9
  identifierSubmit: EventEmitter<{
13
10
  url: string;
14
11
  identifier: string;
15
12
  }>;
16
- errorMessage: boolean;
17
13
  selectedProtocol: ServiceProtocol;
18
14
  url: string;
19
- layers: DropdownChoice[] | undefined;
20
15
  protocolOptions: {
21
16
  label: string;
22
17
  value: ServiceProtocol;
23
18
  }[];
24
- constructor(cdr: ChangeDetectorRef);
25
- get activeLayerSuggestion(): boolean;
26
19
  ngOnChanges(): void;
27
- ngOnInit(): void;
28
- handleUrlValueChange(url: string): void;
29
- handleUploadClick(url: string): Promise<void>;
30
- handleSelectValue(val: string): void;
31
- resetLayersSuggestion(): void;
20
+ handleUrlChange(url: string): void;
32
21
  submitIdentifier(identifier: string): void;
33
22
  getIdentifierPlaceholder(): string;
34
23
  static ɵfac: i0.ɵɵFactoryDeclaration<OnlineServiceResourceInputComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<OnlineServiceResourceInputComponent, "gn-ui-online-service-resource-input", never, { "service": { "alias": "service"; "required": false; }; "protocolHint": { "alias": "protocolHint"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "modifyMode": { "alias": "modifyMode"; "required": false; }; }, { "urlChange": "urlChange"; "identifierSubmit": "identifierSubmit"; }, never, ["*"], true, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<OnlineServiceResourceInputComponent, "gn-ui-online-service-resource-input", never, { "service": { "alias": "service"; "required": false; }; "protocolHint": { "alias": "protocolHint"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "urlChange": "urlChange"; "identifierSubmit": "identifierSubmit"; }, never, never, true, never>;
36
25
  }
37
26
  //# sourceMappingURL=online-service-resource-input.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"online-service-resource-input.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAEZ,SAAS,EACT,MAAM,EAEP,MAAM,eAAe,CAAA;AAKtB,OAAO,EACL,0BAA0B,EAC1B,eAAe,EAChB,MAAM,8DAA8D,CAAA;AACrE,OAAO,EAEL,cAAc,EAIf,MAAM,yCAAyC,CAAA;;AAUhD,qBAyBa,mCAAoC,YAAW,SAAS,EAAE,MAAM;IAkD/D,OAAO,CAAC,GAAG;IAjDd,OAAO,EAAE,0BAA0B,CAAA;IACnC,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,QAAQ,CAAC,UAAQ;IACjB,UAAU,CAAC,UAAQ;IAClB,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,gBAAgB,EAAE,YAAY,CAAC;QACvC,GAAG,EAAE,MAAM,CAAA;QACX,UAAU,EAAE,MAAM,CAAA;KACnB,CAAC,CAAqB;IAEvB,YAAY,UAAQ;IACpB,gBAAgB,EAAE,eAAe,CAAA;IACjC,GAAG,EAAE,MAAM,CAAA;IACX,MAAM,EAAE,cAAc,EAAE,GAAG,SAAS,CAAY;IAEhD,eAAe,EAAE;QACf,KAAK,EAAE,MAAM,CAAA;QACb,KAAK,EAAE,eAAe,CAAA;KACvB,EAAE,CA6BF;gBAEmB,GAAG,EAAE,iBAAiB;IAE1C,IAAI,qBAAqB,YAIxB;IAED,WAAW;IAOX,QAAQ;IAMR,oBAAoB,CAAC,GAAG,EAAE,MAAM;IAO1B,iBAAiB,CAAC,GAAG,EAAE,MAAM;IAuBnC,iBAAiB,CAAC,GAAG,EAAE,MAAM;IAI7B,qBAAqB;IAMrB,gBAAgB,CAAC,UAAU,EAAE,MAAM;IAMnC,wBAAwB,IAAI,MAAM;yCArHvB,mCAAmC;2CAAnC,mCAAmC;CA4H/C"}
1
+ {"version":3,"file":"online-service-resource-input.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAEZ,SAAS,EAEV,MAAM,eAAe,CAAA;AAKtB,OAAO,EACL,0BAA0B,EAC1B,eAAe,EAChB,MAAM,8DAA8D,CAAA;;AAcrE,qBAwBa,mCAAoC,YAAW,SAAS;IAC1D,OAAO,EAAE,IAAI,CAAC,0BAA0B,EAAE,KAAK,CAAC,CAAA;IAChD,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,QAAQ,CAAC,UAAQ;IAChB,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,gBAAgB,EAAE,YAAY,CAAC;QACvC,GAAG,EAAE,MAAM,CAAA;QACX,UAAU,EAAE,MAAM,CAAA;KACnB,CAAC,CAAqB;IAEvB,gBAAgB,EAAE,eAAe,CAAA;IACjC,GAAG,EAAE,MAAM,CAAA;IAEX,eAAe,EAAE;QACf,KAAK,EAAE,MAAM,CAAA;QACb,KAAK,EAAE,eAAe,CAAA;KACvB,EAAE,CA6BF;IAED,WAAW;IAOX,eAAe,CAAC,GAAG,EAAE,MAAM;IAI3B,gBAAgB,CAAC,UAAU,EAAE,MAAM;IAMnC,wBAAwB,IAAI,MAAM;yCAhEvB,mCAAmC;2CAAnC,mCAAmC;CAuE/C"}
@@ -7,14 +7,14 @@ type Licence = {
7
7
  };
8
8
  export declare class FormFieldLicenseComponent implements OnInit {
9
9
  label: string;
10
- recordLicences: Constraint[];
11
- recordLicencesChange: EventEmitter<Constraint[]>;
12
- choices: Licence[];
10
+ recordConstraints: Constraint[];
11
+ recordConstraintsChange: EventEmitter<Constraint[]>;
13
12
  selectedLicence: string;
14
13
  ngOnInit(): void;
14
+ get licenceOptions(): Licence[];
15
15
  handleLicenceSelection(licenceValue: string): void;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldLicenseComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldLicenseComponent, "gn-ui-form-field-license", never, { "label": { "alias": "label"; "required": false; }; "recordLicences": { "alias": "recordLicences"; "required": false; }; }, { "recordLicencesChange": "recordLicencesChange"; }, never, never, true, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldLicenseComponent, "gn-ui-form-field-license", never, { "label": { "alias": "label"; "required": false; }; "recordConstraints": { "alias": "recordConstraints"; "required": false; }; }, { "recordConstraintsChange": "recordConstraintsChange"; }, never, never, true, never>;
18
18
  }
19
19
  export {};
20
20
  //# sourceMappingURL=form-field-license.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-license.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,UAAU,EAAE,MAAM,oEAAoE,CAAA;;AAI/F,KAAK,OAAO,GAAG;IACb,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AAED,qBAQa,yBAA0B,YAAW,MAAM;IAC7C,KAAK,EAAE,MAAM,CAAA;IACb,cAAc,EAAE,UAAU,EAAE,CAAK;IAChC,oBAAoB,EAAE,YAAY,CAAC,UAAU,EAAE,CAAC,CACtC;IAEpB,OAAO,EAAE,OAAO,EAAE,CAGf;IAEH,eAAe,EAAE,MAAM,CAAA;IAEvB,QAAQ,IAAI,IAAI;IAuBhB,sBAAsB,CAAC,YAAY,EAAE,MAAM;yCApChC,yBAAyB;2CAAzB,yBAAyB;CA6CrC"}
1
+ {"version":3,"file":"form-field-license.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,UAAU,EAAE,MAAM,oEAAoE,CAAA;;AAI/F,KAAK,OAAO,GAAG;IACb,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AAED,qBAQa,yBAA0B,YAAW,MAAM;IAC7C,KAAK,EAAE,MAAM,CAAA;IACb,iBAAiB,EAAE,UAAU,EAAE,CAAK;IACnC,uBAAuB,EAAE,YAAY,CAAC,UAAU,EAAE,CAAC,CACzC;IAEpB,eAAe,EAAE,MAAM,CAAA;IAEvB,QAAQ,IAAI,IAAI;IAchB,IAAI,cAAc,IAAI,OAAO,EAAE,CAK9B;IAED,sBAAsB,CAAC,YAAY,EAAE,MAAM;yCA7BhC,yBAAyB;2CAAzB,yBAAyB;CAiCrC"}
@@ -24,7 +24,7 @@ export declare class FormFieldOnlineResourcesComponent {
24
24
  notLinkResources: OnlineNotLinkResource[];
25
25
  uploadProgress: any;
26
26
  uploadSubscription: Subscription;
27
- newService: DatasetServiceDistribution;
27
+ newService: Omit<DatasetServiceDistribution, "url">;
28
28
  protected MAX_UPLOAD_SIZE_MB: number;
29
29
  constructor(notificationsService: NotificationsService, translateService: TranslateService, platformService: PlatformServiceInterface, cd: ChangeDetectorRef, dialog: MatDialog);
30
30
  onSelectedTypeChange(selectedType: unknown): void;
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-online-resources.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGZ,WAAW,EAEZ,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AAEpD,OAAO,EACL,2BAA2B,EAC3B,0BAA0B,EAC1B,cAAc,EACd,eAAe,EAChB,MAAM,oEAAoE,CAAA;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAC3H,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAA;AAChG,OAAO,EAGL,kBAAkB,EAInB,MAAM,+CAA+C,CAAA;AAKtD,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACvE,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAKnC,KAAK,qBAAqB,GACtB,2BAA2B,GAC3B,0BAA0B,GAC1B,eAAe,CAAA;AAEnB,qBAmBa,iCAAiC;IAyC1C,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,MAAM;IA5CP,YAAY,EAAE,MAAM,CAAA;IAC7B,IAAa,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,cAAc,CAAC,EAKxD;IACS,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CACtC;IAES,cAAc,EAAE,WAAW,CAAC,cAAc,CAAC,CAAA;IAExE,WAAW,EAAE,kBAAkB,EAAE,CAWhC;IACD,YAAY,EAAE,UAAU,GAAG,SAAS,CAAa;IAEjD,OAAO,CAAC,YAAY,CAAuB;IAC3C,gBAAgB,EAAE,qBAAqB,EAAE,CAAK;IAC9C,cAAc,MAAY;IAC1B,kBAAkB,EAAE,YAAY,CAAO;IACvC,UAAU,EAAI,0BAA0B,CAKvC;IAED,SAAS,CAAC,kBAAkB,SAAqB;gBAGvC,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB,EAClC,eAAe,EAAE,wBAAwB,EACzC,EAAE,EAAE,iBAAiB,EACrB,MAAM,EAAE,SAAS;IAG3B,oBAAoB,CAAC,YAAY,EAAE,OAAO;IAI1C,gBAAgB,CAAC,IAAI,EAAE,IAAI;IAyB3B,kBAAkB;IAOlB,uBAAuB,CAAC,GAAG,EAAE,MAAM;IAcnC,sBAAsB,CAAC,GAAG,EAAE,MAAM;IAUlC,sBAAsB,CAAC,OAAO,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE;IAUnE,mBAAmB,CACjB,UAAU,EAAE,0BAA0B,EACtC,UAAU,EAAE,0BAA0B;IAOxC,qBAAqB,CAAC,KAAK,EAAE,OAAO,EAAE;IAStC,oBAAoB,CAAC,QAAQ,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM;IAInE,OAAO,CAAC,WAAW;IAoBnB,OAAO,CAAC,cAAc;yCAhKX,iCAAiC;2CAAjC,iCAAiC;CAgM7C"}
1
+ {"version":3,"file":"form-field-online-resources.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGZ,WAAW,EAEZ,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAA;AAEpD,OAAO,EACL,2BAA2B,EAC3B,0BAA0B,EAC1B,cAAc,EACd,eAAe,EAChB,MAAM,oEAAoE,CAAA;AAC3E,OAAO,EAAE,wBAAwB,EAAE,MAAM,kFAAkF,CAAA;AAC3H,OAAO,EAAE,oBAAoB,EAAE,MAAM,2DAA2D,CAAA;AAChG,OAAO,EAGL,kBAAkB,EAInB,MAAM,+CAA+C,CAAA;AAKtD,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACvE,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAKnC,KAAK,qBAAqB,GACtB,2BAA2B,GAC3B,0BAA0B,GAC1B,eAAe,CAAA;AAEnB,qBAmBa,iCAAiC;IAwC1C,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,eAAe;IACvB,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,MAAM;IA3CP,YAAY,EAAE,MAAM,CAAA;IAC7B,IAAa,KAAK,CAAC,eAAe,EAAE,KAAK,CAAC,cAAc,CAAC,EAKxD;IACS,WAAW,EAAE,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CACtC;IAES,cAAc,EAAE,WAAW,CAAC,cAAc,CAAC,CAAA;IAExE,WAAW,EAAE,kBAAkB,EAAE,CAWhC;IACD,YAAY,EAAE,UAAU,GAAG,SAAS,CAAa;IAEjD,OAAO,CAAC,YAAY,CAAuB;IAC3C,gBAAgB,EAAE,qBAAqB,EAAE,CAAK;IAC9C,cAAc,MAAY;IAC1B,kBAAkB,EAAE,YAAY,CAAO;IACvC,UAAU,EAIL,IAAI,CAAC,0BAA0B,EAAE,KAAK,CAAC,CAAA;IAE5C,SAAS,CAAC,kBAAkB,SAAqB;gBAGvC,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB,EAClC,eAAe,EAAE,wBAAwB,EACzC,EAAE,EAAE,iBAAiB,EACrB,MAAM,EAAE,SAAS;IAG3B,oBAAoB,CAAC,YAAY,EAAE,OAAO;IAI1C,gBAAgB,CAAC,IAAI,EAAE,IAAI;IAyB3B,kBAAkB;IAOlB,uBAAuB,CAAC,GAAG,EAAE,MAAM;IAcnC,sBAAsB,CAAC,GAAG,EAAE,MAAM;IAUlC,sBAAsB,CAAC,OAAO,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE;IAUnE,mBAAmB,CACjB,UAAU,EAAE,0BAA0B,EACtC,UAAU,EAAE,0BAA0B;IAOxC,qBAAqB,CAAC,KAAK,EAAE,OAAO,EAAE;IAStC,oBAAoB,CAAC,QAAQ,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM;IAInE,OAAO,CAAC,WAAW;IAoBnB,OAAO,CAAC,cAAc;yCA/JX,iCAAiC;2CAAjC,iCAAiC;CA+L7C"}
@@ -8,7 +8,7 @@ export declare class RecordApiFormComponent {
8
8
  offset$: BehaviorSubject<string>;
9
9
  limit$: BehaviorSubject<string>;
10
10
  format$: BehaviorSubject<string>;
11
- endpoint$: BehaviorSubject<OgcApiEndpoint | WfsEndpoint>;
11
+ endpoint$: BehaviorSubject<WfsEndpoint | OgcApiEndpoint>;
12
12
  apiBaseUrl: string;
13
13
  apiFeatureType: string;
14
14
  supportOffset: boolean;
@@ -1,4 +1,4 @@
1
- import { DatasetOnlineResource, ServiceProtocol } from '../../../../../../libs/common/domain/src/lib/model/record';
1
+ import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record';
2
2
  export declare const FORMATS: {
3
3
  readonly csv: {
4
4
  readonly extensions: readonly ["csv"];
@@ -107,6 +107,5 @@ export declare function mimeTypeToFormat(mimeType: string): FileFormat;
107
107
  export declare function checkFileFormat(link: DatasetOnlineResource, format: FileFormat): boolean;
108
108
  export declare function getBadgeColor(linkFormat: FileFormat): string;
109
109
  export declare function getLinkLabel(link: DatasetOnlineResource): string;
110
- export declare function getLayers(url: string, serviceProtocol: ServiceProtocol): Promise<any[]>;
111
110
  export declare function getMimeTypeForFormat(format: FileFormat): string | null;
112
111
  //# sourceMappingURL=link-utils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"link-utils.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/util/shared/src/lib/links/link-utils.ts"],"names":[],"mappings":"AACA,OAAO,EACL,qBAAqB,EACrB,eAAe,EAChB,MAAM,2DAA2D,CAAA;AAUlE,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgHV,CAAA;AAEV,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,OAAO,CAAA;AAE7C,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAUhE;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,qBAAqB,GAAG,MAAM,CAEnE;AAED,wBAAgB,8BAA8B,CAC5C,aAAa,EAAE,MAAM,GACpB,UAAU,GAAG,IAAI,CAgBnB;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,qBAAqB,GAAG,UAAU,CAcrE;AAED,wBAAgB,oBAAoB,CAClC,IAAI,EAAE,qBAAqB,EAC3B,KAAK,EAAE,MAAM,GACZ,OAAO,CAQT;AAED,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAO7D;AAED,wBAAgB,eAAe,CAC7B,IAAI,EAAE,qBAAqB,EAC3B,MAAM,EAAE,UAAU,GACjB,OAAO,CAMT;AAED,wBAAgB,aAAa,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAQ5D;AAED,wBAAgB,YAAY,CAAC,IAAI,EAAE,qBAAqB,GAAG,MAAM,CA0BhE;AAED,wBAAsB,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,eAAe,EAAE,eAAe,kBA2B5E;AAcD,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,UAAU,GAAG,MAAM,GAAG,IAAI,CAEtE"}
1
+ {"version":3,"file":"link-utils.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/util/shared/src/lib/links/link-utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;AAIjG,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgHV,CAAA;AAEV,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,OAAO,CAAA;AAE7C,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAUhE;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,qBAAqB,GAAG,MAAM,CAEnE;AAED,wBAAgB,8BAA8B,CAC5C,aAAa,EAAE,MAAM,GACpB,UAAU,GAAG,IAAI,CAgBnB;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,qBAAqB,GAAG,UAAU,CAcrE;AAED,wBAAgB,oBAAoB,CAClC,IAAI,EAAE,qBAAqB,EAC3B,KAAK,EAAE,MAAM,GACZ,OAAO,CAQT;AAED,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAO7D;AAED,wBAAgB,eAAe,CAC7B,IAAI,EAAE,qBAAqB,EAC3B,MAAM,EAAE,UAAU,GACjB,OAAO,CAMT;AAED,wBAAgB,aAAa,CAAC,UAAU,EAAE,UAAU,GAAG,MAAM,CAQ5D;AAED,wBAAgB,YAAY,CAAC,IAAI,EAAE,qBAAqB,GAAG,MAAM,CA0BhE;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,UAAU,GAAG,MAAM,GAAG,IAAI,CAEtE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geonetwork-ui",
3
- "version": "2.4.1-dev.a28bdabc1",
3
+ "version": "2.4.1-dev.bf3be28aa",
4
4
  "engines": {
5
5
  "node": ">=20"
6
6
  },
@@ -43,11 +43,11 @@ export const selectCurrentPage = createSelector(
43
43
  export const selectRecordSections = createSelector(
44
44
  selectEditorState,
45
45
  (state: EditorState) => {
46
- const currentPageConfig = state.editorConfig.pages[state.currentPage]
47
- if (!currentPageConfig) {
46
+ const currentPage = state.editorConfig.pages[state.currentPage]
47
+ if (!currentPage) {
48
48
  return [] as EditorSectionWithValues[]
49
49
  }
50
- return currentPageConfig.sections.map((section) => ({
50
+ return currentPage.sections.map((section) => ({
51
51
  ...section,
52
52
  fieldsWithValues: section.fields.map((fieldConfig) => ({
53
53
  config: fieldConfig,
@@ -17,7 +17,6 @@
17
17
  class="flex flex-row gap-[8px]"
18
18
  [(ngModel)]="service.accessServiceProtocol"
19
19
  [disabled]="disabled"
20
- (change)="resetLayersSuggestion()"
21
20
  >
22
21
  <mat-radio-button
23
22
  *ngFor="let protocolOption of protocolOptions"
@@ -31,59 +30,29 @@
31
30
  <div class="flex flex-col gap-4">
32
31
  <gn-ui-url-input
33
32
  class="w-full"
34
- (uploadClick)="handleUploadClick($event)"
35
- (valueChange)="handleUrlValueChange($event)"
33
+ (valueChange)="handleUrlChange($event)"
36
34
  [disabled]="disabled"
37
35
  [value]="url"
38
- [showValidateButton]="activeLayerSuggestion"
36
+ [showValidateButton]="false"
39
37
  >
40
- <ng-content *ngIf="activeLayerSuggestion">
41
- <ng-icon name="iconoirCloudUpload"></ng-icon>
42
- </ng-content>
38
+ <ng-icon name="iconoirCloudUpload"></ng-icon>
43
39
  </gn-ui-url-input>
44
40
 
45
- <p class="text-sm text-red-500 pl-4" *ngIf="errorMessage" translate>
46
- editor.record.form.field.onlineResource.edit.identifier.error
47
- </p>
48
-
49
41
  <gn-ui-text-input
50
42
  class="grow border-b border-gray-300 pb-4"
51
43
  [(value)]="service.identifierInService"
52
44
  [placeholder]="getIdentifierPlaceholder() | translate"
53
45
  data-cy="identifier-in-service"
54
46
  [disabled]="disabled"
55
- *ngIf="
56
- !activeLayerSuggestion ||
57
- (url && errorMessage) ||
58
- (modifyMode && layers === undefined)
59
- "
60
47
  ></gn-ui-text-input>
61
- <gn-ui-dropdown-selector
62
- class="border-b border-gray-300 pb-4"
63
- [showTitle]="false"
64
- [title]="
65
- 'editor.record.form.field.onlineResource.edit.identifier.select.label'
66
- | translate
67
- "
68
- [choices]="layers || []"
69
- *ngIf="activeLayerSuggestion && layers !== undefined"
70
- [selected]="service.identifierInService"
71
- (selectValue)="handleSelectValue($event)"
72
- >
73
- </gn-ui-dropdown-selector>
48
+
74
49
  <gn-ui-button
75
50
  (buttonClick)="submitIdentifier(service.identifierInService)"
76
- [disabled]="disabled || !service.identifierInService"
51
+ [disabled]="disabled || !service.identifierInService || !url"
77
52
  type="primary"
78
- *ngIf="
79
- !modifyMode &&
80
- ((activeLayerSuggestion && layers) ||
81
- !activeLayerSuggestion ||
82
- (url && errorMessage))
83
- "
84
53
  >
85
- <span class="text-white font-bold" translate>
86
- editor.record.form.field.onlineResource.edit.identifier.submit</span
54
+ <span class="text-white font-bold" translate
55
+ >editor.record.form.field.onlineResource.edit.identifier.submit</span
87
56
  >
88
57
  </gn-ui-button>
89
58
  </div>
@@ -1,12 +1,10 @@
1
1
  import { CommonModule } from '@angular/common'
2
2
  import {
3
3
  ChangeDetectionStrategy,
4
- ChangeDetectorRef,
5
4
  Component,
6
5
  EventEmitter,
7
6
  Input,
8
7
  OnChanges,
9
- OnInit,
10
8
  Output,
11
9
  } from '@angular/core'
12
10
  import { FormsModule } from '@angular/forms'
@@ -19,8 +17,6 @@ import {
19
17
  } from '../../../../../../../libs/common/domain/src/lib/model/record'
20
18
  import {
21
19
  ButtonComponent,
22
- DropdownChoice,
23
- DropdownSelectorComponent,
24
20
  TextInputComponent,
25
21
  UrlInputComponent,
26
22
  } from '../../../../../../../libs/ui/inputs/src'
@@ -31,7 +27,6 @@ import {
31
27
  provideNgIconsConfig,
32
28
  } from '@ng-icons/core'
33
29
  import { iconoirCloudUpload } from '@ng-icons/iconoir'
34
- import { getLayers } from '../../../../../../../libs/util/shared/src'
35
30
 
36
31
  @Component({
37
32
  selector: 'gn-ui-online-service-resource-input',
@@ -40,7 +35,6 @@ import { getLayers } from '../../../../../../../libs/util/shared/src'
40
35
  changeDetection: ChangeDetectionStrategy.OnPush,
41
36
  standalone: true,
42
37
  imports: [
43
- DropdownSelectorComponent,
44
38
  ButtonComponent,
45
39
  CommonModule,
46
40
  FormsModule,
@@ -58,21 +52,18 @@ import { getLayers } from '../../../../../../../libs/util/shared/src'
58
52
  }),
59
53
  ],
60
54
  })
61
- export class OnlineServiceResourceInputComponent implements OnChanges, OnInit {
62
- @Input() service: DatasetServiceDistribution
55
+ export class OnlineServiceResourceInputComponent implements OnChanges {
56
+ @Input() service: Omit<DatasetServiceDistribution, 'url'>
63
57
  @Input() protocolHint?: string
64
58
  @Input() disabled? = false
65
- @Input() modifyMode? = false
66
59
  @Output() urlChange: EventEmitter<string> = new EventEmitter()
67
60
  @Output() identifierSubmit: EventEmitter<{
68
61
  url: string
69
62
  identifier: string
70
63
  }> = new EventEmitter()
71
64
 
72
- errorMessage = false
73
65
  selectedProtocol: ServiceProtocol
74
66
  url: string
75
- layers: DropdownChoice[] | undefined = undefined
76
67
 
77
68
  protocolOptions: {
78
69
  label: string
@@ -108,14 +99,6 @@ export class OnlineServiceResourceInputComponent implements OnChanges, OnInit {
108
99
  },
109
100
  ]
110
101
 
111
- constructor(private cdr: ChangeDetectorRef) {}
112
-
113
- get activeLayerSuggestion() {
114
- return !['wps', 'GPFDL', 'esriRest', 'other'].includes(
115
- this.service.accessServiceProtocol
116
- )
117
- }
118
-
119
102
  ngOnChanges() {
120
103
  this.selectedProtocol =
121
104
  this.protocolOptions.find(
@@ -123,50 +106,8 @@ export class OnlineServiceResourceInputComponent implements OnChanges, OnInit {
123
106
  )?.value ?? 'other'
124
107
  }
125
108
 
126
- ngOnInit() {
127
- if (this.service.url) {
128
- this.url = this.service.url.toString()
129
- }
130
- }
131
-
132
- handleUrlValueChange(url: string) {
133
- this.url = url
134
- this.service.url = new URL(url)
135
- this.resetLayersSuggestion()
136
- this.urlChange.emit(this.url)
137
- }
138
-
139
- async handleUploadClick(url: string) {
109
+ handleUrlChange(url: string) {
140
110
  this.url = url
141
-
142
- try {
143
- const layers = await getLayers(url, this.service.accessServiceProtocol)
144
- this.layers = layers.map((l) => {
145
- return {
146
- label: l.title ? `${l.title} ${l.name ? `(${l.name})` : ''}` : l.name,
147
- value: l.name || l.title,
148
- }
149
- })
150
-
151
- if (this.layers.length === 0) {
152
- throw new Error('No layers found')
153
- }
154
- } catch (e) {
155
- this.errorMessage = true
156
- this.layers = undefined
157
- }
158
-
159
- this.cdr.detectChanges()
160
- }
161
-
162
- handleSelectValue(val: string) {
163
- this.service.identifierInService = val
164
- }
165
-
166
- resetLayersSuggestion() {
167
- this.errorMessage = false
168
- this.layers = undefined
169
- this.service.identifierInService = null
170
111
  }
171
112
 
172
113
  submitIdentifier(identifier: string) {
@@ -2,7 +2,7 @@
2
2
  <gn-ui-dropdown-selector
3
3
  [title]="label"
4
4
  [showTitle]="false"
5
- [choices]="choices"
5
+ [choices]="licenceOptions"
6
6
  [selected]="selectedLicence"
7
7
  (selectValue)="handleLicenceSelection($event)"
8
8
  [extraBtnClass]="'input-as-button gn-ui-text-input'"
@@ -26,47 +26,35 @@ type Licence = {
26
26
  })
27
27
  export class FormFieldLicenseComponent implements OnInit {
28
28
  @Input() label: string
29
- @Input() recordLicences: Constraint[] = []
30
- @Output() recordLicencesChange: EventEmitter<Constraint[]> =
29
+ @Input() recordConstraints: Constraint[] = []
30
+ @Output() recordConstraintsChange: EventEmitter<Constraint[]> =
31
31
  new EventEmitter()
32
32
 
33
- choices: Licence[] = AVAILABLE_LICENSES.map((license) => ({
34
- label: marker(`editor.record.form.license.${license}`),
35
- value: license,
36
- }))
37
-
38
33
  selectedLicence: string
39
34
 
40
35
  ngOnInit(): void {
41
- if (this.recordLicences.length === 0) {
42
- this.selectedLicence = 'unknown'
43
- } else {
44
- this.selectedLicence = this.recordLicences.find((constraint) => {
45
- return this.choices.find((licence) => {
46
- return licence.value === constraint.text
47
- })
48
- })?.text
49
- }
50
-
36
+ // get the licence from the record constraints if it is one of the open data licence list
37
+ this.selectedLicence = this.recordConstraints.find((constraint) => {
38
+ return this.licenceOptions.find((licence) => {
39
+ return licence.value === constraint.text
40
+ })
41
+ })?.text
42
+ // otherwise pre-select the first licence option
51
43
  if (this.selectedLicence === undefined) {
52
- this.choices = [
53
- {
54
- value: this.recordLicences[0].text,
55
- label: this.recordLicences[0].text,
56
- },
57
- ...this.choices,
58
- ]
59
- this.selectedLicence = this.recordLicences[0].text
44
+ this.selectedLicence = this.licenceOptions[0].value // cannot select 'etalab' as default as this would toggle the OpenData Toggle
45
+ this.recordConstraintsChange.emit([{ text: this.selectedLicence }])
60
46
  }
61
47
  }
62
48
 
49
+ get licenceOptions(): Licence[] {
50
+ return AVAILABLE_LICENSES.map((license) => ({
51
+ label: marker(`editor.record.form.license.${license}`),
52
+ value: license,
53
+ }))
54
+ }
55
+
63
56
  handleLicenceSelection(licenceValue: string) {
64
57
  this.selectedLicence = licenceValue
65
- if (licenceValue === 'unknown') {
66
- this.recordLicencesChange.emit([])
67
- return
68
- } else {
69
- this.recordLicencesChange.emit([{ text: licenceValue }])
70
- }
58
+ this.recordConstraintsChange.emit([{ text: licenceValue }])
71
59
  }
72
60
  }
@@ -21,6 +21,7 @@
21
21
  <gn-ui-online-service-resource-input
22
22
  [service]="newService"
23
23
  [disabled]="disabled$ | async"
24
+ (urlChange)="handleServiceUrlChange($event)"
24
25
  (identifierSubmit)="handleIdentifierSubmit($event)"
25
26
  ></gn-ui-online-service-resource-input>
26
27
  </div>
@@ -54,22 +55,19 @@
54
55
  [(value)]="onlineResource.description"
55
56
  ></gn-ui-text-area>
56
57
  </div>
57
- <ng-container *ngIf="onlineResource.type === 'service'; else urlInput">
58
+ <ng-container *ngIf="onlineResource.type === 'service'">
58
59
  <span class="w-full border-b border-gray-300"></span>
59
60
  <gn-ui-online-service-resource-input
60
61
  [service]="onlineResource"
61
- [modifyMode]="true"
62
62
  ></gn-ui-online-service-resource-input>
63
63
  </ng-container>
64
- <ng-template #urlInput>
65
- <span class="w-full border-b border-gray-300"></span>
66
- <gn-ui-url-input
67
- class="w-full"
68
- [disabled]="true"
69
- [value]="onlineResource.url"
70
- [showValidateButton]="false"
71
- ></gn-ui-url-input>
72
- </ng-template>
64
+ <span class="w-full border-b border-gray-300"></span>
65
+ <gn-ui-url-input
66
+ class="w-full"
67
+ [disabled]="true"
68
+ [value]="onlineResource.url"
69
+ [showValidateButton]="false"
70
+ ></gn-ui-url-input>
73
71
  </div>
74
72
  </ng-template>
75
73
  </div>
@@ -92,12 +92,11 @@ export class FormFieldOnlineResourcesComponent {
92
92
  notLinkResources: OnlineNotLinkResource[] = []
93
93
  uploadProgress = undefined
94
94
  uploadSubscription: Subscription = null
95
- newService = <DatasetServiceDistribution>{
95
+ newService = {
96
96
  type: 'service',
97
97
  accessServiceProtocol: 'ogcFeatures',
98
98
  identifierInService: '',
99
- url: undefined,
100
- }
99
+ } as Omit<DatasetServiceDistribution, 'url'>
101
100
 
102
101
  protected MAX_UPLOAD_SIZE_MB = MAX_UPLOAD_SIZE_MB
103
102
 
@@ -112,8 +112,8 @@
112
112
  <ng-container *ngSwitchCase="'licenses'">
113
113
  <gn-ui-form-field-license
114
114
  [label]="config.labelKey! | translate"
115
- [recordLicences]="valueAsConstraints"
116
- (recordLicencesChange)="valueChange.emit($event)"
115
+ [recordConstraints]="valueAsConstraints"
116
+ (recordConstraintsChange)="valueChange.emit($event)"
117
117
  ></gn-ui-form-field-license>
118
118
  </ng-container>
119
119
 
@@ -1,14 +1,5 @@
1
1
  import { marker } from '@biesbjerg/ngx-translate-extract-marker'
2
- import {
3
- DatasetOnlineResource,
4
- ServiceProtocol,
5
- } from '../../../../../../libs/common/domain/src/lib/model/record'
6
- import {
7
- OgcApiEndpoint,
8
- WfsEndpoint,
9
- WmsEndpoint,
10
- WmtsEndpoint,
11
- } from '@camptocamp/ogc-client'
2
+ import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record'
12
3
 
13
4
  marker('downloads.wfs.featuretype.not.found')
14
5
 
@@ -251,47 +242,6 @@ export function getLinkLabel(link: DatasetOnlineResource): string {
251
242
  return format ? `${label} (${format})` : label
252
243
  }
253
244
 
254
- export async function getLayers(url: string, serviceProtocol: ServiceProtocol) {
255
- switch (serviceProtocol) {
256
- case 'ogcFeatures': {
257
- const layers = await new OgcApiEndpoint(url).allCollections
258
- return layers
259
- }
260
- case 'wfs': {
261
- const endpointWfs = new WfsEndpoint(url)
262
- await endpointWfs.isReady()
263
- return endpointWfs.getFeatureTypes()
264
- }
265
- case 'wms': {
266
- const endpointWms = new WmsEndpoint(url)
267
- await endpointWms.isReady()
268
- return endpointWms
269
- .getLayers()
270
- .flatMap(wmsLayerFlatten)
271
- .filter((l) => l.name)
272
- }
273
- case 'wmts': {
274
- const endpointWmts = new WmtsEndpoint(url)
275
- await endpointWmts.isReady()
276
- return endpointWmts.getLayers()
277
- }
278
- default:
279
- return undefined
280
- }
281
- }
282
-
283
- function wmsLayerFlatten(layerFull) {
284
- const layer = {
285
- title: layerFull.title,
286
- name: layerFull.name,
287
- abstract: layerFull.abstract,
288
- }
289
-
290
- return 'children' in layerFull && Array.isArray(layerFull.children)
291
- ? [layer, ...layerFull.children.flatMap(wmsLayerFlatten)]
292
- : [layer]
293
- }
294
-
295
245
  export function getMimeTypeForFormat(format: FileFormat): string | null {
296
246
  return format in FORMATS ? FORMATS[format.toLowerCase()].mimeTypes[0] : null
297
247
  }
@@ -238,10 +238,8 @@
238
238
  "editor.record.form.field.onlineResource.dialogTitle": "",
239
239
  "editor.record.form.field.onlineResource.edit.description": "",
240
240
  "editor.record.form.field.onlineResource.edit.protocol": "",
241
- "editor.record.form.field.onlineResource.edit.identifier.error": "Schichten konnten nicht vom Protokoll abgerufen werden",
242
241
  "editor.record.form.field.onlineResource.edit.identifier.placeholder": "Ebenenname",
243
242
  "editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Prozessname",
244
- "editor.record.form.field.onlineResource.edit.identifier.select.label": "Wählen Sie eine Ebene",
245
243
  "editor.record.form.field.onlineResource.edit.identifier.submit": "Link zum Dienst",
246
244
  "editor.record.form.field.onlineResource.edit.title": "",
247
245
  "editor.record.form.field.onlineResource.fileSize": "",
@@ -238,10 +238,8 @@
238
238
  "editor.record.form.field.onlineResource.dialogTitle": "Modify the dataset preview",
239
239
  "editor.record.form.field.onlineResource.edit.description": "Description",
240
240
  "editor.record.form.field.onlineResource.edit.protocol": "Protocol",
241
- "editor.record.form.field.onlineResource.edit.identifier.error": "Unable to retrieve layers from protocol",
242
241
  "editor.record.form.field.onlineResource.edit.identifier.placeholder": "Layer name",
243
242
  "editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Process name",
244
- "editor.record.form.field.onlineResource.edit.identifier.select.label": "Select a layer",
245
243
  "editor.record.form.field.onlineResource.edit.identifier.submit": "Link to the service",
246
244
  "editor.record.form.field.onlineResource.edit.title": "Title",
247
245
  "editor.record.form.field.onlineResource.fileSize": "{sizeMB}MB",
@@ -238,10 +238,8 @@
238
238
  "editor.record.form.field.onlineResource.dialogTitle": "",
239
239
  "editor.record.form.field.onlineResource.edit.description": "",
240
240
  "editor.record.form.field.onlineResource.edit.protocol": "",
241
- "editor.record.form.field.onlineResource.edit.identifier.error": "No se pueden recuperar las capas del protocolo",
242
241
  "editor.record.form.field.onlineResource.edit.identifier.placeholder": "Nombre de la capa",
243
242
  "editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Nombre del proceso",
244
- "editor.record.form.field.onlineResource.edit.identifier.select.label": "Selecciona una capa",
245
243
  "editor.record.form.field.onlineResource.edit.identifier.submit": "Enlace al servicio",
246
244
  "editor.record.form.field.onlineResource.edit.title": "",
247
245
  "editor.record.form.field.onlineResource.fileSize": "",
@@ -238,10 +238,8 @@
238
238
  "editor.record.form.field.onlineResource.dialogTitle": "Modifier l'aperçu du jeu de données",
239
239
  "editor.record.form.field.onlineResource.edit.description": "Description",
240
240
  "editor.record.form.field.onlineResource.edit.protocol": "Protocole",
241
- "editor.record.form.field.onlineResource.edit.identifier.error": "Impossible de récupérer les couches depuis le protocole",
242
241
  "editor.record.form.field.onlineResource.edit.identifier.placeholder": "Nom de la couche",
243
242
  "editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Nom du processus",
244
- "editor.record.form.field.onlineResource.edit.identifier.select.label": "Sélectionner une couche",
245
243
  "editor.record.form.field.onlineResource.edit.identifier.submit": "Lier le service",
246
244
  "editor.record.form.field.onlineResource.edit.title": "Titre",
247
245
  "editor.record.form.field.onlineResource.fileSize": "{sizeMB} Mo",
@@ -232,10 +232,8 @@
232
232
  "editor.record.form.field.keywords": "Parole chiave",
233
233
  "editor.record.form.field.legalConstraints": "Vincolo legale",
234
234
  "editor.record.form.field.license": "Licenza",
235
- "editor.record.form.field.onlineResource.edit.identifier.error": "Impossibile recuperare i livelli dal protocollo",
236
235
  "editor.record.form.field.onlineResource.edit.identifier.placeholder": "Nome del livello",
237
236
  "editor.record.form.field.onlineResource.edit.identifier.placeholder.wps": "Nome del processo",
238
- "editor.record.form.field.onlineResource.edit.identifier.select.label": "Seleziona un livello",
239
237
  "editor.record.form.field.onlineResource.edit.identifier.submit": "Collegare il servizio",
240
238
  "editor.record.form.field.title.placeholder": "Inserisci un titolo",
241
239
  "editor.record.form.field.onlineLinkResources": "Risorse allegate",