Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SteuerungsTypApp
Please create a React-JS application for the SteuerungsTypModule. The application has to offer the following views for the user interface: 1. GeraetSteuerungView 2. SpeicherKategorieView 3. SteuerungsTypView 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 GeraetSteuerungView must contain the following fields: - name: SpeicherGeraet type: SpeicherGeraet - name: SteuerungsTyp type: SteuerungsTyp The data source for the [SteuerungsTyp] select control should be loaded from the relative URL: "/SteuerungsTypService/steuerungstyp" (HTTP-GET) The data source for the [SpeicherGeraet] select control should be loaded from the relative URL: "/SpeicherGeraetService/speichergeraet" (HTTP-GET) An existing GeraetSteuerung entity should be loaded from the relative URL: "/SteuerungsTypService/geraetsteuerung/{id}" (HTTP-GET) If a new GeraetSteuerung entity has been created, the new entity should be posted to the relative URL: "/SteuerungsTypService/geraetsteuerung" (HTTP-POST) If an existing GeraetSteuerung entity has been updated, the modified entity should be sent to the relative URL: "/SteuerungsTypService/geraetsteuerung/{id}" (HTTP-PUT) If an existing GeraetSteuerung entity has to be deleted, the following relative URL should be called: "/SteuerungsTypService/geraetsteuerung/{id}" (HTTP-DELETE) 2. The SpeicherKategorieView must contain the following fields: - name: IstDirektentnahme type: BOOL - name: IstKombi type: BOOL - name: IstPuffer type: BOOL - name: IstSaisonal type: BOOL - name: Name type: STRING An existing SpeicherKategorie entity should be loaded from the relative URL: "/SteuerungsTypService/speicherkategorie/{id}" (HTTP-GET) If a new SpeicherKategorie entity has been created, the new entity should be posted to the relative URL: "/SteuerungsTypService/speicherkategorie" (HTTP-POST) If an existing SpeicherKategorie entity has been updated, the modified entity should be sent to the relative URL: "/SteuerungsTypService/speicherkategorie/{id}" (HTTP-PUT) If an existing SpeicherKategorie entity has to be deleted, the following relative URL should be called: "/SteuerungsTypService/speicherkategorie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following SpeicherGeraet columns: - column: IstTrinkwassergeeignet - column: MinBetriebstemperatur - column: Name - column: SpeicherKategorie - column: HatHeizstab - column: KalkVerhalten - column: LegionellenRisikoProfil - column: SchichtungsDesign - column: IstSolarBereit - column: Bauart - column: IstNurPuffer - column: IstDirektentnahme - column: HatWaermetauscher - column: VolumenLiter - column: MaxBetriebstemperatur - column: Beschreibung The table should have the title "SpeicherGeraets" und the data must be loaded from the server with the following relative URL: "/SpeicherGeraetService/speichergeraet/speicherkategorie/{id}" 3. The SteuerungsTypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing SteuerungsTyp entity should be loaded from the relative URL: "/SteuerungsTypService/steuerungstyp/{id}" (HTTP-GET) If a new SteuerungsTyp entity has been created, the new entity should be posted to the relative URL: "/SteuerungsTypService/steuerungstyp" (HTTP-POST) If an existing SteuerungsTyp entity has been updated, the modified entity should be sent to the relative URL: "/SteuerungsTypService/steuerungstyp/{id}" (HTTP-PUT) If an existing SteuerungsTyp entity has to be deleted, the following relative URL should be called: "/SteuerungsTypService/steuerungstyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GeraetSteuerung columns: - column: SteuerungsTyp - column: SpeicherGeraet The table should have the title "GeraetSteuerungs" und the data must be loaded from the server with the following relative URL: "/SteuerungsTypService/geraetsteuerung/steuerungstyp/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum