Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
StandardApp
Please create a React-JS application for the StandardModule. The application has to offer the following views for the user interface: 1. FahrzeugtypView 2. SignalgeraetStandardView 3. SignalSystemStandardView 4. StandardView 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 FahrzeugtypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING - name: Verkehrsart type: Verkehrsart The data source for the [Verkehrsart] select control should be loaded from the relative URL: "/VerkehrsartService/verkehrsart" (HTTP-GET) An existing Fahrzeugtyp entity should be loaded from the relative URL: "/StandardService/fahrzeugtyp/{id}" (HTTP-GET) If a new Fahrzeugtyp entity has been created, the new entity should be posted to the relative URL: "/StandardService/fahrzeugtyp" (HTTP-POST) If an existing Fahrzeugtyp entity has been updated, the modified entity should be sent to the relative URL: "/StandardService/fahrzeugtyp/{id}" (HTTP-PUT) If an existing Fahrzeugtyp entity has to be deleted, the following relative URL should be called: "/StandardService/fahrzeugtyp/{id}" (HTTP-DELETE) 2. The SignalgeraetStandardView must contain the following fields: - name: Beschreibung type: STRING - name: Signalgeraet type: Signalgeraet - name: Standard type: Standard The data source for the [Signalgeraet] select control should be loaded from the relative URL: "/SignalSystemService/signalgeraet" (HTTP-GET) The data source for the [Standard] select control should be loaded from the relative URL: "/StandardService/standard" (HTTP-GET) An existing SignalgeraetStandard entity should be loaded from the relative URL: "/StandardService/signalgeraetstandard/{id}" (HTTP-GET) If a new SignalgeraetStandard entity has been created, the new entity should be posted to the relative URL: "/StandardService/signalgeraetstandard" (HTTP-POST) If an existing SignalgeraetStandard entity has been updated, the modified entity should be sent to the relative URL: "/StandardService/signalgeraetstandard/{id}" (HTTP-PUT) If an existing SignalgeraetStandard entity has to be deleted, the following relative URL should be called: "/StandardService/signalgeraetstandard/{id}" (HTTP-DELETE) 3. The SignalSystemStandardView must contain the following fields: - name: Beschreibung type: STRING - name: SignalSystem type: SignalSystem - name: Standard type: Standard The data source for the [SignalSystem] select control should be loaded from the relative URL: "/SignalSystemService/signalsystem" (HTTP-GET) The data source for the [Standard] select control should be loaded from the relative URL: "/StandardService/standard" (HTTP-GET) An existing SignalSystemStandard entity should be loaded from the relative URL: "/StandardService/signalsystemstandard/{id}" (HTTP-GET) If a new SignalSystemStandard entity has been created, the new entity should be posted to the relative URL: "/StandardService/signalsystemstandard" (HTTP-POST) If an existing SignalSystemStandard entity has been updated, the modified entity should be sent to the relative URL: "/StandardService/signalsystemstandard/{id}" (HTTP-PUT) If an existing SignalSystemStandard entity has to be deleted, the following relative URL should be called: "/StandardService/signalsystemstandard/{id}" (HTTP-DELETE) 4. The StandardView must contain the following fields: - name: Beschreibung type: STRING - name: Herausgeber type: STRING - name: Land type: Land - name: Name type: STRING - name: Referenzcode type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Standard entity should be loaded from the relative URL: "/StandardService/standard/{id}" (HTTP-GET) If a new Standard entity has been created, the new entity should be posted to the relative URL: "/StandardService/standard" (HTTP-POST) If an existing Standard entity has been updated, the modified entity should be sent to the relative URL: "/StandardService/standard/{id}" (HTTP-PUT) If an existing Standard entity has to be deleted, the following relative URL should be called: "/StandardService/standard/{id}" (HTTP-DELETE) Add a HTML table to the view with the following LandStandard columns: - column: Standard - column: Land The table should have the title "LandStandards" und the data must be loaded from the server with the following relative URL: "/VerkehrsartService/landstandard/standard/{id}" Add a HTML table to the view with the following SignalgeraetStandard columns: - column: Signalgeraet - column: Beschreibung - column: Standard The table should have the title "SignalgeraetStandards" und the data must be loaded from the server with the following relative URL: "/StandardService/signalgeraetstandard/standard/{id}" Add a HTML table to the view with the following TechnischeBezeichnung columns: - column: Beschreibung - column: Name - column: Standard - column: Land - column: SignalSystem The table should have the title "TechnischeBezeichnungs" und the data must be loaded from the server with the following relative URL: "/SignalSystemService/technischebezeichnung/standard/{id}" Add a HTML table to the view with the following SignalSystemStandard columns: - column: SignalSystem - column: Beschreibung - column: Standard The table should have the title "SignalSystemStandards" und the data must be loaded from the server with the following relative URL: "/StandardService/signalsystemstandard/standard/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum