Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GlasFarbeApp
Please create a React-JS application for the GlasFarbeModule. The application has to offer the following views for the user interface: 1. FarbToleranzView 2. GlasFarbeView 3. OrganisationView 4. QualitaetsStandardView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The FarbToleranzView must contain the following fields: - name: FremdFarbe type: GlasFarbe - name: MaxProzent type: STRING - name: Notizen type: STRING - name: QualitaetsStandard type: QualitaetsStandard - name: ZielFarbe type: GlasFarbe The data source for the [FremdFarbe] select control should be loaded from the relative URL: "/GlasFarbeService/glasfarbe" (HTTP-GET) The data source for the [QualitaetsStandard] select control should be loaded from the relative URL: "/GlasFarbeService/qualitaetsstandard" (HTTP-GET) The data source for the [ZielFarbe] select control should be loaded from the relative URL: "/GlasFarbeService/glasfarbe" (HTTP-GET) An existing FarbToleranz entity should be loaded from the relative URL: "/GlasFarbeService/farbtoleranz/{id}" (HTTP-GET) If a new FarbToleranz entity has been created, the new entity should be posted to the relative URL: "/GlasFarbeService/farbtoleranz" (HTTP-POST) If an existing FarbToleranz entity has been updated, the modified entity should be sent to the relative URL: "/GlasFarbeService/farbtoleranz/{id}" (HTTP-PUT) If an existing FarbToleranz entity has to be deleted, the following relative URL should be called: "/GlasFarbeService/farbtoleranz/{id}" (HTTP-DELETE) 2. The GlasFarbeView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing GlasFarbe entity should be loaded from the relative URL: "/GlasFarbeService/glasfarbe/{id}" (HTTP-GET) If a new GlasFarbe entity has been created, the new entity should be posted to the relative URL: "/GlasFarbeService/glasfarbe" (HTTP-POST) If an existing GlasFarbe entity has been updated, the modified entity should be sent to the relative URL: "/GlasFarbeService/glasfarbe/{id}" (HTTP-PUT) If an existing GlasFarbe entity has to be deleted, the following relative URL should be called: "/GlasFarbeService/glasfarbe/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GlasProduktFarbe columns: - column: IstHauptfarbe - column: GlasProdukt - column: GlasFarbe The table should have the title "GlasProduktFarbes" und the data must be loaded from the server with the following relative URL: "/GlasProduktService/glasproduktfarbe/glasfarbe/{id}" Add a HTML table to the view with the following FarbToleranz columns: - column: MaxProzent - column: FremdFarbe - column: ZielFarbe - column: QualitaetsStandard - column: Notizen The table should have the title "FarbToleranzs" und the data must be loaded from the server with the following relative URL: "/GlasFarbeService/farbtoleranz/fremdfarbe/{id}" Add a HTML table to the view with the following FarbToleranz columns: - column: MaxProzent - column: FremdFarbe - column: ZielFarbe - column: QualitaetsStandard - column: Notizen The table should have the title "FarbToleranzs" und the data must be loaded from the server with the following relative URL: "/GlasFarbeService/farbtoleranz/zielfarbe/{id}" 3. The OrganisationView must contain the following fields: - name: Beschreibung type: STRING - 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 Organisation entity should be loaded from the relative URL: "/GlasFarbeService/organisation/{id}" (HTTP-GET) If a new Organisation entity has been created, the new entity should be posted to the relative URL: "/GlasFarbeService/organisation" (HTTP-POST) If an existing Organisation entity has been updated, the modified entity should be sent to the relative URL: "/GlasFarbeService/organisation/{id}" (HTTP-PUT) If an existing Organisation entity has to be deleted, the following relative URL should be called: "/GlasFarbeService/organisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Regelung columns: - column: Jahr - column: Beschreibung - column: Organisation - column: Name - column: Land - column: Region The table should have the title "Regelungs" und the data must be loaded from the server with the following relative URL: "/LandService/regelung/organisation/{id}" Add a HTML table to the view with the following QualitaetsStandard columns: - column: Beschreibung - column: Organisation - column: AnwendungsBereich - column: Jahr - column: Name The table should have the title "QualitaetsStandards" und the data must be loaded from the server with the following relative URL: "/GlasFarbeService/qualitaetsstandard/organisation/{id}" Add a HTML table to the view with the following HistorischesEreignis columns: - column: Organisation - column: Beschreibung - column: Region - column: Titel - column: Land - column: Jahr The table should have the title "HistorischesEreigniss" und the data must be loaded from the server with the following relative URL: "/LandService/historischesereignis/organisation/{id}" 4. The QualitaetsStandardView must contain the following fields: - name: AnwendungsBereich type: STRING - name: Beschreibung type: STRING - name: Jahr type: INT - name: Name type: STRING - name: Organisation type: Organisation The data source for the [Organisation] select control should be loaded from the relative URL: "/GlasFarbeService/organisation" (HTTP-GET) An existing QualitaetsStandard entity should be loaded from the relative URL: "/GlasFarbeService/qualitaetsstandard/{id}" (HTTP-GET) If a new QualitaetsStandard entity has been created, the new entity should be posted to the relative URL: "/GlasFarbeService/qualitaetsstandard" (HTTP-POST) If an existing QualitaetsStandard entity has been updated, the modified entity should be sent to the relative URL: "/GlasFarbeService/qualitaetsstandard/{id}" (HTTP-PUT) If an existing QualitaetsStandard entity has to be deleted, the following relative URL should be called: "/GlasFarbeService/qualitaetsstandard/{id}" (HTTP-DELETE) Add a HTML table to the view with the following FarbToleranz columns: - column: MaxProzent - column: FremdFarbe - column: ZielFarbe - column: QualitaetsStandard - column: Notizen The table should have the title "FarbToleranzs" und the data must be loaded from the server with the following relative URL: "/GlasFarbeService/farbtoleranz/qualitaetsstandard/{id}" Add a HTML table to the view with the following QualitaetsGrenzwert columns: - column: QualitaetsStandard - column: VerunreinigungsTyp - column: Einheit - column: Notizen - column: MaxWert - column: Abfallstrom - column: MinWert The table should have the title "QualitaetsGrenzwerts" und the data must be loaded from the server with the following relative URL: "/AbfallstromService/qualitaetsgrenzwert/qualitaetsstandard/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum