Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LiteraturquelleApp
Please create a React-JS application for the LiteraturquelleModule. The application has to offer the following views for the user interface: 1. AnlagenLiteraturView 2. LiteraturquelleView 3. TechnologieLiteraturView 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 AnlagenLiteraturView must contain the following fields: - name: Aufbereitungsanlage type: Aufbereitungsanlage - name: Kommentar type: STRING - name: Literaturquelle type: Literaturquelle The data source for the [Aufbereitungsanlage] select control should be loaded from the relative URL: "/AufbereitungsanlageService/aufbereitungsanlage" (HTTP-GET) The data source for the [Literaturquelle] select control should be loaded from the relative URL: "/LiteraturquelleService/literaturquelle" (HTTP-GET) An existing AnlagenLiteratur entity should be loaded from the relative URL: "/LiteraturquelleService/anlagenliteratur/{id}" (HTTP-GET) If a new AnlagenLiteratur entity has been created, the new entity should be posted to the relative URL: "/LiteraturquelleService/anlagenliteratur" (HTTP-POST) If an existing AnlagenLiteratur entity has been updated, the modified entity should be sent to the relative URL: "/LiteraturquelleService/anlagenliteratur/{id}" (HTTP-PUT) If an existing AnlagenLiteratur entity has to be deleted, the following relative URL should be called: "/LiteraturquelleService/anlagenliteratur/{id}" (HTTP-DELETE) 2. The LiteraturquelleView must contain the following fields: - name: Autoren type: STRING - name: Beschreibung type: STRING - name: Isbn type: STRING - name: Jahr type: LONG - name: Titel type: STRING - name: Url type: STRING - name: Verlag type: STRING An existing Literaturquelle entity should be loaded from the relative URL: "/LiteraturquelleService/literaturquelle/{id}" (HTTP-GET) If a new Literaturquelle entity has been created, the new entity should be posted to the relative URL: "/LiteraturquelleService/literaturquelle" (HTTP-POST) If an existing Literaturquelle entity has been updated, the modified entity should be sent to the relative URL: "/LiteraturquelleService/literaturquelle/{id}" (HTTP-PUT) If an existing Literaturquelle entity has to be deleted, the following relative URL should be called: "/LiteraturquelleService/literaturquelle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AnlagenLiteratur columns: - column: Literaturquelle - column: Kommentar - column: Aufbereitungsanlage The table should have the title "AnlagenLiteraturs" und the data must be loaded from the server with the following relative URL: "/LiteraturquelleService/anlagenliteratur/literaturquelle/{id}" Add a HTML table to the view with the following TechnologieLiteratur columns: - column: Technologie - column: Kommentar - column: Literaturquelle The table should have the title "TechnologieLiteraturs" und the data must be loaded from the server with the following relative URL: "/LiteraturquelleService/technologieliteratur/literaturquelle/{id}" 3. The TechnologieLiteraturView must contain the following fields: - name: Kommentar type: STRING - name: Literaturquelle type: Literaturquelle - name: Technologie type: Technologie The data source for the [Literaturquelle] select control should be loaded from the relative URL: "/LiteraturquelleService/literaturquelle" (HTTP-GET) The data source for the [Technologie] select control should be loaded from the relative URL: "/TechnologieService/technologie" (HTTP-GET) An existing TechnologieLiteratur entity should be loaded from the relative URL: "/LiteraturquelleService/technologieliteratur/{id}" (HTTP-GET) If a new TechnologieLiteratur entity has been created, the new entity should be posted to the relative URL: "/LiteraturquelleService/technologieliteratur" (HTTP-POST) If an existing TechnologieLiteratur entity has been updated, the modified entity should be sent to the relative URL: "/LiteraturquelleService/technologieliteratur/{id}" (HTTP-PUT) If an existing TechnologieLiteratur entity has to be deleted, the following relative URL should be called: "/LiteraturquelleService/technologieliteratur/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum