Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandApp
Please create a React-JS application for the LandModule. The application has to offer the following views for the user interface: 1. LandView 2. NormView 3. RegulierungsrahmenView 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 LandView must contain the following fields: - name: Hinweise type: STRING - name: IsoCode type: STRING - name: Landesname type: STRING An existing Land entity should be loaded from the relative URL: "/LandService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/LandService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/LandService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/LandService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Organisation columns: - column: WebseiteUrl - column: Rechtsform - column: Gruendungsdatum - column: Land - column: Organisationstyp - column: Hinweise - column: SitzGemeinde - column: Organisationsname The table should have the title "Organisations" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/organisation/land/{id}" Add a HTML table to the view with the following Wasserverband columns: - column: Verbandsname - column: Land - column: Gruendungsdatum - column: Hinweise The table should have the title "Wasserverbands" und the data must be loaded from the server with the following relative URL: "/WasserverbandService/wasserverband/land/{id}" Add a HTML table to the view with the following Regulierungsrahmen columns: - column: Land - column: GueltigBis - column: GueltigAb - column: Rahmenname - column: Beschreibung The table should have the title "Regulierungsrahmens" und the data must be loaded from the server with the following relative URL: "/LandService/regulierungsrahmen/land/{id}" Add a HTML table to the view with the following Norm columns: - column: Beschreibung - column: Normcode - column: Normtitel - column: Herausgeber - column: Land - column: Veroeffentlichungsdatum The table should have the title "Norms" und the data must be loaded from the server with the following relative URL: "/LandService/norm/land/{id}" Add a HTML table to the view with the following BundeslandRegion columns: - column: Hinweise - column: Regionstyp - column: Land - column: Regionsname The table should have the title "BundeslandRegions" und the data must be loaded from the server with the following relative URL: "/VerteilnetzService/bundeslandregion/land/{id}" 2. The NormView must contain the following fields: - name: Beschreibung type: STRING - name: Herausgeber type: STRING - name: Land type: Land - name: Normcode type: STRING - name: Normtitel type: STRING - name: Veroeffentlichungsdatum type: DATE The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Norm entity should be loaded from the relative URL: "/LandService/norm/{id}" (HTTP-GET) If a new Norm entity has been created, the new entity should be posted to the relative URL: "/LandService/norm" (HTTP-POST) If an existing Norm entity has been updated, the modified entity should be sent to the relative URL: "/LandService/norm/{id}" (HTTP-PUT) If an existing Norm entity has to be deleted, the following relative URL should be called: "/LandService/norm/{id}" (HTTP-DELETE) 3. The RegulierungsrahmenView must contain the following fields: - name: Beschreibung type: STRING - name: GueltigAb type: DATE - name: GueltigBis type: DATE - name: Land type: Land - name: Rahmenname type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Regulierungsrahmen entity should be loaded from the relative URL: "/LandService/regulierungsrahmen/{id}" (HTTP-GET) If a new Regulierungsrahmen entity has been created, the new entity should be posted to the relative URL: "/LandService/regulierungsrahmen" (HTTP-POST) If an existing Regulierungsrahmen entity has been updated, the modified entity should be sent to the relative URL: "/LandService/regulierungsrahmen/{id}" (HTTP-PUT) If an existing Regulierungsrahmen entity has to be deleted, the following relative URL should be called: "/LandService/regulierungsrahmen/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum