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. EntitaetsreferenzView 2. LiteraturquelleView 3. WeblinkView 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 EntitaetsreferenzView must contain the following fields: - name: EntitaetSchluessel type: LONG - name: Entitaetstyp type: STRING - name: Hinweise type: STRING - name: Literaturquelle type: Literaturquelle - name: Weblink type: Weblink The data source for the [Weblink] select control should be loaded from the relative URL: "/LiteraturquelleService/weblink" (HTTP-GET) The data source for the [Literaturquelle] select control should be loaded from the relative URL: "/LiteraturquelleService/literaturquelle" (HTTP-GET) An existing Entitaetsreferenz entity should be loaded from the relative URL: "/LiteraturquelleService/entitaetsreferenz/{id}" (HTTP-GET) If a new Entitaetsreferenz entity has been created, the new entity should be posted to the relative URL: "/LiteraturquelleService/entitaetsreferenz" (HTTP-POST) If an existing Entitaetsreferenz entity has been updated, the modified entity should be sent to the relative URL: "/LiteraturquelleService/entitaetsreferenz/{id}" (HTTP-PUT) If an existing Entitaetsreferenz entity has to be deleted, the following relative URL should be called: "/LiteraturquelleService/entitaetsreferenz/{id}" (HTTP-DELETE) 2. The LiteraturquelleView must contain the following fields: - name: Autoren type: STRING - name: Erscheinungsjahr type: LONG - name: Hinweise type: STRING - name: Isbn type: STRING - name: Titel type: STRING - name: Verlag type: STRING - name: Zitiercode 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 Entitaetsreferenz columns: - column: Literaturquelle - column: Weblink - column: Entitaetstyp - column: EntitaetSchluessel - column: Hinweise The table should have the title "Entitaetsreferenzs" und the data must be loaded from the server with the following relative URL: "/LiteraturquelleService/entitaetsreferenz/literaturquelle/{id}" 3. The WeblinkView must contain the following fields: - name: Abrufdatum type: DATE - name: Beschreibung type: STRING - name: Linktitel type: STRING - name: Url type: STRING An existing Weblink entity should be loaded from the relative URL: "/LiteraturquelleService/weblink/{id}" (HTTP-GET) If a new Weblink entity has been created, the new entity should be posted to the relative URL: "/LiteraturquelleService/weblink" (HTTP-POST) If an existing Weblink entity has been updated, the modified entity should be sent to the relative URL: "/LiteraturquelleService/weblink/{id}" (HTTP-PUT) If an existing Weblink entity has to be deleted, the following relative URL should be called: "/LiteraturquelleService/weblink/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Entitaetsreferenz columns: - column: Literaturquelle - column: Weblink - column: Entitaetstyp - column: EntitaetSchluessel - column: Hinweise The table should have the title "Entitaetsreferenzs" und the data must be loaded from the server with the following relative URL: "/LiteraturquelleService/entitaetsreferenz/weblink/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum