Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ForschungsPublikationApp
Please create a React-JS application for the ForschungsPublikationModule. The application has to offer the following views for the user interface: 1. ForschungsPublikationView 2. PublikationArtView 3. ZooProgrammTeilnahmeView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The ForschungsPublikationView must contain the following fields: - name: Doi type: STRING - name: HauptThema type: STRING - name: IstOpenAccess type: BOOL - name: Jahr type: LONG - name: Journal type: STRING - name: Notizen type: STRING - name: Titel type: STRING An existing ForschungsPublikation entity should be loaded from the relative URL: "/ForschungsPublikationService/forschungspublikation/{id}" (HTTP-GET) If a new ForschungsPublikation entity has been created, the new entity should be posted to the relative URL: "/ForschungsPublikationService/forschungspublikation" (HTTP-POST) If an existing ForschungsPublikation entity has been updated, the modified entity should be sent to the relative URL: "/ForschungsPublikationService/forschungspublikation/{id}" (HTTP-PUT) If an existing ForschungsPublikation entity has to be deleted, the following relative URL should be called: "/ForschungsPublikationService/forschungspublikation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PublikationZoo columns: - column: Zoo - column: ForschungsPublikation - column: Rolle The table should have the title "PublikationZoos" und the data must be loaded from the server with the following relative URL: "/ZooService/publikationzoo/forschungspublikation/{id}" Add a HTML table to the view with the following PublikationArt columns: - column: ForschungsPublikation - column: FokusTyp - column: TierTaxon The table should have the title "PublikationArts" und the data must be loaded from the server with the following relative URL: "/ForschungsPublikationService/publikationart/forschungspublikation/{id}" 2. The PublikationArtView must contain the following fields: - name: FokusTyp type: STRING - name: ForschungsPublikation type: ForschungsPublikation - name: TierTaxon type: TierTaxon The data source for the [TierTaxon] select control should be loaded from the relative URL: "/TierTaxonService/tiertaxon" (HTTP-GET) The data source for the [ForschungsPublikation] select control should be loaded from the relative URL: "/ForschungsPublikationService/forschungspublikation" (HTTP-GET) An existing PublikationArt entity should be loaded from the relative URL: "/ForschungsPublikationService/publikationart/{id}" (HTTP-GET) If a new PublikationArt entity has been created, the new entity should be posted to the relative URL: "/ForschungsPublikationService/publikationart" (HTTP-POST) If an existing PublikationArt entity has been updated, the modified entity should be sent to the relative URL: "/ForschungsPublikationService/publikationart/{id}" (HTTP-PUT) If an existing PublikationArt entity has to be deleted, the following relative URL should be called: "/ForschungsPublikationService/publikationart/{id}" (HTTP-DELETE) 3. The ZooProgrammTeilnahmeView must contain the following fields: - name: Artenschutzprogramm type: Artenschutzprogramm - name: Notizen type: STRING - name: Rolle type: STRING - name: SeitJahr type: LONG - name: Zoo type: Zoo The data source for the [Artenschutzprogramm] select control should be loaded from the relative URL: "/TierTaxonService/artenschutzprogramm" (HTTP-GET) The data source for the [Zoo] select control should be loaded from the relative URL: "/ZooService/zoo" (HTTP-GET) An existing ZooProgrammTeilnahme entity should be loaded from the relative URL: "/ForschungsPublikationService/zooprogrammteilnahme/{id}" (HTTP-GET) If a new ZooProgrammTeilnahme entity has been created, the new entity should be posted to the relative URL: "/ForschungsPublikationService/zooprogrammteilnahme" (HTTP-POST) If an existing ZooProgrammTeilnahme entity has been updated, the modified entity should be sent to the relative URL: "/ForschungsPublikationService/zooprogrammteilnahme/{id}" (HTTP-PUT) If an existing ZooProgrammTeilnahme entity has to be deleted, the following relative URL should be called: "/ForschungsPublikationService/zooprogrammteilnahme/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum