Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ProzesstypApp
Please create a React-JS application for the ProzesstypModule. The application has to offer the following views for the user interface: 1. ChemikalieView 2. ChemikaliendosierungView 3. ProzesstypView 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 ChemikalieView must contain the following fields: - name: Beschreibung type: STRING - name: Formel type: STRING - name: Gefahrenklasse type: STRING - name: Name type: STRING An existing Chemikalie entity should be loaded from the relative URL: "/ProzesstypService/chemikalie/{id}" (HTTP-GET) If a new Chemikalie entity has been created, the new entity should be posted to the relative URL: "/ProzesstypService/chemikalie" (HTTP-POST) If an existing Chemikalie entity has been updated, the modified entity should be sent to the relative URL: "/ProzesstypService/chemikalie/{id}" (HTTP-PUT) If an existing Chemikalie entity has to be deleted, the following relative URL should be called: "/ProzesstypService/chemikalie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Chemikaliendosierung columns: - column: Aufbereitungsprozess - column: Chemikalie - column: Beschreibung - column: Regelverfahren - column: TypischeDosisMgL - column: ZielkonzentrationMgL The table should have the title "Chemikaliendosierungs" und the data must be loaded from the server with the following relative URL: "/ProzesstypService/chemikaliendosierung/chemikalie/{id}" 2. The ChemikaliendosierungView must contain the following fields: - name: Aufbereitungsprozess type: Aufbereitungsprozess - name: Beschreibung type: STRING - name: Chemikalie type: Chemikalie - name: Regelverfahren type: STRING - name: TypischeDosisMgL type: DOUBLE - name: ZielkonzentrationMgL type: DOUBLE The data source for the [Chemikalie] select control should be loaded from the relative URL: "/ProzesstypService/chemikalie" (HTTP-GET) The data source for the [Aufbereitungsprozess] select control should be loaded from the relative URL: "/AufbereitungsanlageService/aufbereitungsprozess" (HTTP-GET) An existing Chemikaliendosierung entity should be loaded from the relative URL: "/ProzesstypService/chemikaliendosierung/{id}" (HTTP-GET) If a new Chemikaliendosierung entity has been created, the new entity should be posted to the relative URL: "/ProzesstypService/chemikaliendosierung" (HTTP-POST) If an existing Chemikaliendosierung entity has been updated, the modified entity should be sent to the relative URL: "/ProzesstypService/chemikaliendosierung/{id}" (HTTP-PUT) If an existing Chemikaliendosierung entity has to be deleted, the following relative URL should be called: "/ProzesstypService/chemikaliendosierung/{id}" (HTTP-DELETE) 3. The ProzesstypView must contain the following fields: - name: Beschreibung type: STRING - name: Kategorie type: STRING - name: Name type: STRING An existing Prozesstyp entity should be loaded from the relative URL: "/ProzesstypService/prozesstyp/{id}" (HTTP-GET) If a new Prozesstyp entity has been created, the new entity should be posted to the relative URL: "/ProzesstypService/prozesstyp" (HTTP-POST) If an existing Prozesstyp entity has been updated, the modified entity should be sent to the relative URL: "/ProzesstypService/prozesstyp/{id}" (HTTP-PUT) If an existing Prozesstyp entity has to be deleted, the following relative URL should be called: "/ProzesstypService/prozesstyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Aufbereitungsprozess columns: - column: Name - column: Beschreibung - column: Prozesstyp - column: Verfahrenslinie - column: Reihenfolge - column: BemessungsdurchsatzM3ProStunde The table should have the title "Aufbereitungsprozesss" und the data must be loaded from the server with the following relative URL: "/AufbereitungsanlageService/aufbereitungsprozess/prozesstyp/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum