Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RegelwerkApp
Please create a React-JS application for the RegelwerkModule. The application has to offer the following views for the user interface: 1. AnlagengeregeltheitView 2. RegelwerkView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The AnlagengeregeltheitView must contain the following fields: - name: Aufbereitungsanlage type: Aufbereitungsanlage - name: Bewertungsdatum type: DATE - name: Kommentar type: STRING - name: Regelwerk type: Regelwerk - name: Status type: STRING The data source for the [Aufbereitungsanlage] select control should be loaded from the relative URL: "/AufbereitungsanlageService/aufbereitungsanlage" (HTTP-GET) The data source for the [Regelwerk] select control should be loaded from the relative URL: "/RegelwerkService/regelwerk" (HTTP-GET) An existing Anlagengeregeltheit entity should be loaded from the relative URL: "/RegelwerkService/anlagengeregeltheit/{id}" (HTTP-GET) If a new Anlagengeregeltheit entity has been created, the new entity should be posted to the relative URL: "/RegelwerkService/anlagengeregeltheit" (HTTP-POST) If an existing Anlagengeregeltheit entity has been updated, the modified entity should be sent to the relative URL: "/RegelwerkService/anlagengeregeltheit/{id}" (HTTP-PUT) If an existing Anlagengeregeltheit entity has to be deleted, the following relative URL should be called: "/RegelwerkService/anlagengeregeltheit/{id}" (HTTP-DELETE) 2. The RegelwerkView must contain the following fields: - name: Beschreibung type: STRING - name: GueltigAb type: DATE - name: GueltigBis type: DATE - name: Herausgeber type: STRING - name: Land type: STRING - name: Name type: STRING An existing Regelwerk entity should be loaded from the relative URL: "/RegelwerkService/regelwerk/{id}" (HTTP-GET) If a new Regelwerk entity has been created, the new entity should be posted to the relative URL: "/RegelwerkService/regelwerk" (HTTP-POST) If an existing Regelwerk entity has been updated, the modified entity should be sent to the relative URL: "/RegelwerkService/regelwerk/{id}" (HTTP-PUT) If an existing Regelwerk entity has to be deleted, the following relative URL should be called: "/RegelwerkService/regelwerk/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Anlagengeregeltheit columns: - column: Status - column: Aufbereitungsanlage - column: Regelwerk - column: Kommentar - column: Bewertungsdatum The table should have the title "Anlagengeregeltheits" und the data must be loaded from the server with the following relative URL: "/RegelwerkService/anlagengeregeltheit/regelwerk/{id}" Add a HTML table to the view with the following Grenzwert columns: - column: Grenzwertwert - column: Grenzwerttyp - column: Regelwerk - column: Nutzungsart - column: Kommentar - column: Wasserparameter The table should have the title "Grenzwerts" und the data must be loaded from the server with the following relative URL: "/WasserparameterService/grenzwert/regelwerk/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum