Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RegionApp
Please create a React-JS application for the RegionModule. The application has to offer the following views for the user interface: 1. BehinderungsartView 2. KindergartenBehinderungsunterstuetzungView 3. RegionView 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 BehinderungsartView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Behinderungsart entity should be loaded from the relative URL: "/RegionService/behinderungsart/{id}" (HTTP-GET) If a new Behinderungsart entity has been created, the new entity should be posted to the relative URL: "/RegionService/behinderungsart" (HTTP-POST) If an existing Behinderungsart entity has been updated, the modified entity should be sent to the relative URL: "/RegionService/behinderungsart/{id}" (HTTP-PUT) If an existing Behinderungsart entity has to be deleted, the following relative URL should be called: "/RegionService/behinderungsart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following KindergartenBehinderungsunterstuetzung columns: - column: Behinderungsart - column: Kindergarten - column: IstExklusiv - column: Beschreibung The table should have the title "KindergartenBehinderungsunterstuetzungs" und the data must be loaded from the server with the following relative URL: "/RegionService/kindergartenbehinderungsunterstuetzung/behinderungsart/{id}" 2. The KindergartenBehinderungsunterstuetzungView must contain the following fields: - name: Behinderungsart type: Behinderungsart - name: Beschreibung type: STRING - name: IstExklusiv type: BOOL - name: Kindergarten type: Kindergarten The data source for the [Behinderungsart] select control should be loaded from the relative URL: "/RegionService/behinderungsart" (HTTP-GET) The data source for the [Kindergarten] select control should be loaded from the relative URL: "/KindergartenService/kindergarten" (HTTP-GET) An existing KindergartenBehinderungsunterstuetzung entity should be loaded from the relative URL: "/RegionService/kindergartenbehinderungsunterstuetzung/{id}" (HTTP-GET) If a new KindergartenBehinderungsunterstuetzung entity has been created, the new entity should be posted to the relative URL: "/RegionService/kindergartenbehinderungsunterstuetzung" (HTTP-POST) If an existing KindergartenBehinderungsunterstuetzung entity has been updated, the modified entity should be sent to the relative URL: "/RegionService/kindergartenbehinderungsunterstuetzung/{id}" (HTTP-PUT) If an existing KindergartenBehinderungsunterstuetzung entity has to be deleted, the following relative URL should be called: "/RegionService/kindergartenbehinderungsunterstuetzung/{id}" (HTTP-DELETE) 3. The RegionView must contain the following fields: - name: Land type: Land - name: Name type: STRING - name: Typ type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Region entity should be loaded from the relative URL: "/RegionService/region/{id}" (HTTP-GET) If a new Region entity has been created, the new entity should be posted to the relative URL: "/RegionService/region" (HTTP-POST) If an existing Region entity has been updated, the modified entity should be sent to the relative URL: "/RegionService/region/{id}" (HTTP-PUT) If an existing Region entity has to be deleted, the following relative URL should be called: "/RegionService/region/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Stadt columns: - column: Region - column: Name The table should have the title "Stadts" und the data must be loaded from the server with the following relative URL: "/KindergartenService/stadt/region/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum