Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TierTaxonApp
Please create a React-JS application for the TierTaxonModule. The application has to offer the following views for the user interface: 1. ArtenschutzprogrammView 2. ProgrammArtView 3. TierTaxonView 4. VerbandView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The ArtenschutzprogrammView must contain the following fields: - name: Beschreibung type: STRING - name: Endjahr type: LONG - name: KoordinatorVerband type: Verband - name: Name type: STRING - name: ProgrammTyp type: STRING - name: Startjahr type: LONG The data source for the [KoordinatorVerband] select control should be loaded from the relative URL: "/TierTaxonService/verband" (HTTP-GET) An existing Artenschutzprogramm entity should be loaded from the relative URL: "/TierTaxonService/artenschutzprogramm/{id}" (HTTP-GET) If a new Artenschutzprogramm entity has been created, the new entity should be posted to the relative URL: "/TierTaxonService/artenschutzprogramm" (HTTP-POST) If an existing Artenschutzprogramm entity has been updated, the modified entity should be sent to the relative URL: "/TierTaxonService/artenschutzprogramm/{id}" (HTTP-PUT) If an existing Artenschutzprogramm entity has to be deleted, the following relative URL should be called: "/TierTaxonService/artenschutzprogramm/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ProgrammArt columns: - column: Notizen - column: Artenschutzprogramm - column: TierTaxon - column: Rolle The table should have the title "ProgrammArts" und the data must be loaded from the server with the following relative URL: "/TierTaxonService/programmart/artenschutzprogramm/{id}" Add a HTML table to the view with the following ZooProgrammTeilnahme columns: - column: Artenschutzprogramm - column: Notizen - column: Zoo - column: Rolle - column: SeitJahr The table should have the title "ZooProgrammTeilnahmes" und the data must be loaded from the server with the following relative URL: "/ForschungsPublikationService/zooprogrammteilnahme/artenschutzprogramm/{id}" 2. The ProgrammArtView must contain the following fields: - name: Artenschutzprogramm type: Artenschutzprogramm - name: Notizen type: STRING - name: Rolle type: STRING - 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 [Artenschutzprogramm] select control should be loaded from the relative URL: "/TierTaxonService/artenschutzprogramm" (HTTP-GET) An existing ProgrammArt entity should be loaded from the relative URL: "/TierTaxonService/programmart/{id}" (HTTP-GET) If a new ProgrammArt entity has been created, the new entity should be posted to the relative URL: "/TierTaxonService/programmart" (HTTP-POST) If an existing ProgrammArt entity has been updated, the modified entity should be sent to the relative URL: "/TierTaxonService/programmart/{id}" (HTTP-PUT) If an existing ProgrammArt entity has to be deleted, the following relative URL should be called: "/TierTaxonService/programmart/{id}" (HTTP-DELETE) 3. The TierTaxonView must contain the following fields: - name: ElternTaxon type: LONG - name: IstDomestiziert type: BOOL - name: IstInDerWildnisAusgestorben type: BOOL - name: Notizen type: STRING - name: Rang type: STRING - name: RoteListeKategorie type: STRING - name: Trivialname type: STRING - name: WissenschaftlicherName type: STRING An existing TierTaxon entity should be loaded from the relative URL: "/TierTaxonService/tiertaxon/{id}" (HTTP-GET) If a new TierTaxon entity has been created, the new entity should be posted to the relative URL: "/TierTaxonService/tiertaxon" (HTTP-POST) If an existing TierTaxon entity has been updated, the modified entity should be sent to the relative URL: "/TierTaxonService/tiertaxon/{id}" (HTTP-PUT) If an existing TierTaxon entity has to be deleted, the following relative URL should be called: "/TierTaxonService/tiertaxon/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ProgrammArt columns: - column: Notizen - column: Artenschutzprogramm - column: TierTaxon - column: Rolle The table should have the title "ProgrammArts" und the data must be loaded from the server with the following relative URL: "/TierTaxonService/programmart/tiertaxon/{id}" Add a HTML table to the view with the following ProjektArt columns: - column: IstLaufend - column: Notizen - column: AnzahlAusgewildert - column: Auswilderungsprojekt - column: TierTaxon The table should have the title "ProjektArts" und the data must be loaded from the server with the following relative URL: "/AuswilderungsprojektService/projektart/tiertaxon/{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/tiertaxon/{id}" Add a HTML table to the view with the following GehegeTier columns: - column: IstZuchtgruppe - column: TierTaxon - column: Gehege - column: Mindestanzahl - column: Maximalanzahl - column: Notizen The table should have the title "GehegeTiers" und the data must be loaded from the server with the following relative URL: "/GehegeService/gehegetier/tiertaxon/{id}" 4. The VerbandView must contain the following fields: - name: Akronym type: STRING - name: Beschreibung type: STRING - name: Gruendungsjahr type: LONG - name: Land type: STRING - name: Name type: STRING - name: Stadt type: STRING - name: Umfang type: STRING - name: VerbandTyp type: STRING - name: Webseite type: STRING An existing Verband entity should be loaded from the relative URL: "/TierTaxonService/verband/{id}" (HTTP-GET) If a new Verband entity has been created, the new entity should be posted to the relative URL: "/TierTaxonService/verband" (HTTP-POST) If an existing Verband entity has been updated, the modified entity should be sent to the relative URL: "/TierTaxonService/verband/{id}" (HTTP-PUT) If an existing Verband entity has to be deleted, the following relative URL should be called: "/TierTaxonService/verband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZooVerbandMitgliedschaft columns: - column: SeitDatum - column: Notizen - column: Verband - column: Zoo - column: MitgliedschaftTyp The table should have the title "ZooVerbandMitgliedschafts" und the data must be loaded from the server with the following relative URL: "/ZooService/zooverbandmitgliedschaft/verband/{id}" Add a HTML table to the view with the following Artenschutzprogramm columns: - column: Endjahr - column: ProgrammTyp - column: Startjahr - column: Beschreibung - column: KoordinatorVerband - column: Name The table should have the title "Artenschutzprogramms" und the data must be loaded from the server with the following relative URL: "/TierTaxonService/artenschutzprogramm/koordinatorverband/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum