Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ZooApp
Please create a React-JS application for the ZooModule. The application has to offer the following views for the user interface: 1. PublikationZooView 2. ZooView 3. ZooHabitatKonzeptNutzungView 4. ZooVerbandMitgliedschaftView 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 PublikationZooView must contain the following fields: - name: ForschungsPublikation type: ForschungsPublikation - name: Rolle type: STRING - name: Zoo type: Zoo The data source for the [Zoo] select control should be loaded from the relative URL: "/ZooService/zoo" (HTTP-GET) The data source for the [ForschungsPublikation] select control should be loaded from the relative URL: "/ForschungsPublikationService/forschungspublikation" (HTTP-GET) An existing PublikationZoo entity should be loaded from the relative URL: "/ZooService/publikationzoo/{id}" (HTTP-GET) If a new PublikationZoo entity has been created, the new entity should be posted to the relative URL: "/ZooService/publikationzoo" (HTTP-POST) If an existing PublikationZoo entity has been updated, the modified entity should be sent to the relative URL: "/ZooService/publikationzoo/{id}" (HTTP-PUT) If an existing PublikationZoo entity has to be deleted, the following relative URL should be called: "/ZooService/publikationzoo/{id}" (HTTP-DELETE) 2. The ZooView must contain the following fields: - name: Alternativname type: STRING - name: Beschreibung type: STRING - name: FlaecheHektar type: STRING - name: Gruendungsjahr type: LONG - name: IstPrivat type: BOOL - name: Land type: STRING - name: Name type: STRING - name: Region type: STRING - name: Stadt type: STRING - name: ZooTyp type: ZooTyp The data source for the [ZooTyp] select control should be loaded from the relative URL: "/AuswilderungsprojektService/zootyp" (HTTP-GET) An existing Zoo entity should be loaded from the relative URL: "/ZooService/zoo/{id}" (HTTP-GET) If a new Zoo entity has been created, the new entity should be posted to the relative URL: "/ZooService/zoo" (HTTP-POST) If an existing Zoo entity has been updated, the modified entity should be sent to the relative URL: "/ZooService/zoo/{id}" (HTTP-PUT) If an existing Zoo entity has to be deleted, the following relative URL should be called: "/ZooService/zoo/{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/zoo/{id}" Add a HTML table to the view with the following Bildungsprogramm columns: - column: Zielgruppe - column: Zoo - column: IstGefuehrt - column: DauerMinuten - column: Beschreibung - column: Name The table should have the title "Bildungsprogramms" und the data must be loaded from the server with the following relative URL: "/ForschungsinstitutService/bildungsprogramm/zoo/{id}" Add a HTML table to the view with the following ZooArchitekturmerkmal columns: - column: MerkmalTyp - column: Name - column: Zoo - column: Beschreibung - column: IstDenkmalschutz - column: Baujahr The table should have the title "ZooArchitekturmerkmals" und the data must be loaded from the server with the following relative URL: "/RechtsdefinitionService/zooarchitekturmerkmal/zoo/{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/zoo/{id}" Add a HTML table to the view with the following Gehege columns: - column: Eroeffnungsjahr - column: Beschreibung - column: InnenAussen - column: Themenregion - column: FlaecheQuadratmeter - column: Name - column: IstGeoBereich - column: Zoo - column: GehegeTyp - column: IstImmersiv The table should have the title "Geheges" und the data must be loaded from the server with the following relative URL: "/GehegeService/gehege/zoo/{id}" Add a HTML table to the view with the following ZooKontroverse columns: - column: AuswirkungBeschreibung - column: Zoo - column: Kontroverse The table should have the title "ZooKontroverses" und the data must be loaded from the server with the following relative URL: "/KontroverseService/zookontroverse/zoo/{id}" Add a HTML table to the view with the following ZooRechtsstatus columns: - column: Zoo - column: Notizen - column: SeitDatum - column: Rechtsdefinition The table should have the title "ZooRechtsstatuss" und the data must be loaded from the server with the following relative URL: "/RechtsdefinitionService/zoorechtsstatus/zoo/{id}" Add a HTML table to the view with the following Besucherstatistik columns: - column: TicketEinnahmen - column: Jahr - column: Notizen - column: Zoo - column: BesucherAnzahl The table should have the title "Besucherstatistiks" und the data must be loaded from the server with the following relative URL: "/RechtsdefinitionService/besucherstatistik/zoo/{id}" 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/zoo/{id}" Add a HTML table to the view with the following ZooHabitatKonzeptNutzung columns: - column: ErstesGehege - column: Notizen - column: HabitatKonzept - column: Zoo The table should have the title "ZooHabitatKonzeptNutzungs" und the data must be loaded from the server with the following relative URL: "/ZooService/zoohabitatkonzeptnutzung/zoo/{id}" Add a HTML table to the view with the following ForschungsKooperation columns: - column: Beschreibung - column: Zoo - column: Forschungsinstitut - column: Startjahr - column: Endjahr - column: Thema The table should have the title "ForschungsKooperations" und the data must be loaded from the server with the following relative URL: "/ForschungsinstitutService/forschungskooperation/zoo/{id}" Add a HTML table to the view with the following ProjektZooPartner columns: - column: BeitragBeschreibung - column: Rolle - column: Auswilderungsprojekt - column: Zoo The table should have the title "ProjektZooPartners" und the data must be loaded from the server with the following relative URL: "/AuswilderungsprojektService/projektzoopartner/zoo/{id}" 3. The ZooHabitatKonzeptNutzungView must contain the following fields: - name: ErstesGehege type: STRING - name: HabitatKonzept type: HabitatKonzept - name: Notizen type: STRING - name: Zoo type: Zoo The data source for the [HabitatKonzept] select control should be loaded from the relative URL: "/ForschungsinstitutService/habitatkonzept" (HTTP-GET) The data source for the [Zoo] select control should be loaded from the relative URL: "/ZooService/zoo" (HTTP-GET) An existing ZooHabitatKonzeptNutzung entity should be loaded from the relative URL: "/ZooService/zoohabitatkonzeptnutzung/{id}" (HTTP-GET) If a new ZooHabitatKonzeptNutzung entity has been created, the new entity should be posted to the relative URL: "/ZooService/zoohabitatkonzeptnutzung" (HTTP-POST) If an existing ZooHabitatKonzeptNutzung entity has been updated, the modified entity should be sent to the relative URL: "/ZooService/zoohabitatkonzeptnutzung/{id}" (HTTP-PUT) If an existing ZooHabitatKonzeptNutzung entity has to be deleted, the following relative URL should be called: "/ZooService/zoohabitatkonzeptnutzung/{id}" (HTTP-DELETE) 4. The ZooVerbandMitgliedschaftView must contain the following fields: - name: MitgliedschaftTyp type: STRING - name: Notizen type: STRING - name: SeitDatum type: DATE - name: Verband type: Verband - name: Zoo type: Zoo The data source for the [Zoo] select control should be loaded from the relative URL: "/ZooService/zoo" (HTTP-GET) The data source for the [Verband] select control should be loaded from the relative URL: "/TierTaxonService/verband" (HTTP-GET) An existing ZooVerbandMitgliedschaft entity should be loaded from the relative URL: "/ZooService/zooverbandmitgliedschaft/{id}" (HTTP-GET) If a new ZooVerbandMitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/ZooService/zooverbandmitgliedschaft" (HTTP-POST) If an existing ZooVerbandMitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/ZooService/zooverbandmitgliedschaft/{id}" (HTTP-PUT) If an existing ZooVerbandMitgliedschaft entity has to be deleted, the following relative URL should be called: "/ZooService/zooverbandmitgliedschaft/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum